-
I was using `randperm`, but I didn't want to store the whole permutation all the time since I only accessed it rarely and the permutation was fairly large. I did some research into whether it would be…
-
I was doing some numerical tests where I ended up comparing rng results from this package by using the characteristic function of the target distribution. At least for alpha in (1,2), the results here…
-
Hello community.
Kindly consider:
```smalltalk
| n i r |
n := ( 2 ** 256 ) - 1 . "the largest 256-bit value"
i := ( 0 to: n ) . "the interval 0 to 2**256-1"
"Produce three sets of computed…
-
I'm getting an error
> ERROR(msp430-rt): .vector_table is shorter than expected.
when I attempt to compile a dependent of this crate:
```
= note: c:/ti/msp430-gcc/bin/../lib/gcc/msp430-elf/9…
-
Please include the following in your bug report:
**Version of emscripten/emsdk:**
```
emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 3.1.46-git
clang version 18.0.0 (ht…
-
```julia
using Enzyme
using Random
using Lux, Optimisers, MLUtils
testmodel() = Chain(
Dense(4=>8, relu),
Dense(8=>8, relu),
Dense(8=>2),
)
testdata() = (randn(4, 256), randn(2, 256))
…
-
Hi!
Just wondering how the RNN could be mixed into the `ODEProblem`
In flux times, it seems a Recur layer need to be created. However there is already a `Recurrence` in Lux.jl
[Training of UDEs w…
-
Hi @avik-pal!
I'm heading towards multi-argument and non-array support in DI, and I'd like to start testing Lux layers. For this I would need two things:
- Suggestions for a test suite of layers s…
-
```
~/Local/laminar (master) $ cargo bench
Updating crates.io index
Downloaded bincode v1.2.0
Downloaded quickcheck v0.9.0
Downloaded rand v0.7.2
Downloaded either v1.5.3
Download…
-
PRNGs generally create 64-bit integers. To get a value in [0, 1), you have to use your integer to get a float in the appropriate range.
This is a somewhat subtle problem. I think **the best approac…