-
Plotting a single categorical variable works great. This code plots two categorical variables together.
Problems:
- [ ] The legend gets mixed; I would consider adding two legends.
- [ ] The plot …
-
Hi,
I would like to know if it is possible to recover the random number generator state of the library. I saw there is a method to choice the seed at the beggining but I do not find the method to r…
-
right now unseeded calls to e.g. `keras.random.uniform` are going to acquire static seeds at trace time. this has a few undesirable consequences:
1) subsequent calls will have the same randomness e…
-
In some cases, the Copy method is used to copy only certain ExcelRangeCopyOptionFlagof , instead of copying all types and excluding certain ExcelRangeCopyOptionFlags. For example, I just want to copy …
-
Hi, this looks like really nice work, and I'm impressed with the speedups you're getting over Zygote AD.
Have you thought about reversible random number generation? Random number generation is reve…
-
As discussed with @karlnapf in #4424, there are several improvements/additions that could be made to the random number generation(RNG) API for SGMatrix/SGVector. Neither take advantage of the `CRandom…
-
First and foremost, thanks for your great work bringing us and maintaining reikna!
Some time ago, I tried to compute an FFT using reikna. The program code does not work anymore (meanwhile using a new…
-
### Description
The [Contexts](https://docs.pola.rs/user-guide/concepts/contexts/) page in the user guide (and possibly more pages like [Basic operators](https://docs.pola.rs/user-guide/expressions…
cbrnr updated
3 months ago
-
run code below , get the error "ValueError: 'x0' must only have one dimension."
``` python
# Fit synthetic control
sc = Synth(data, "gdp", "country", "year", 1990, "West Germany", n_optim=100)
```…
PG408 updated
1 month ago
-
```python
import numba
import numpy as np
def sum_np(x):
return np.sum(x)
@numba.njit
def sum_np_overloaded(x):
return np.sum(x)
@numba.njit
def sum_flat(x):
acc = 0.0
…