Elliot Saba
Elliot Saba
Hello there! This is an automated pull request submitted by `@staticfloat` to help package authors transition their Julia installation CI setups to the new binary provider URL. Please take a...
It'd be great to be able to set defaults for whether executables are checked or not in the timeline page. I tried to look into this, but it looks like...
It would be pretty cool to prepend output in the REPL when the main task is waiting for input. Use case: I spawn off a background task that is outputting...
If you provide both an element-wise function `f` and a dimension specification, `mean()` apparently causes array mutation, which breaks Zygote's ability to differentiate: ```julia julia> using Zygote, Statistics x =...
Since the original author's name was "Julius Von Hann", and referring to it as "hanning" is done only to draw similarities to the similar "hamming" window, let's export it under...
In the 60 minute blitz tutorial, [we use a sequence of stacked Dense layers, each with no activation function](https://github.com/FluxML/model-zoo/blob/52a7b8923ef7f0313b6e38765536166ae1ef7961/tutorials/60-minute-blitz/60-minute-blitz.jl#L333-L335). This doesn't make much sense, as multiple linear operators can always...
Because `TensorFlow.jl` `with_device()` expects 1-based device numberings, we cannot natively use the output of `DeviceList()` to be fed into `with_device()`, as `DeviceList()` gives zero-indexed device names. My current workaround is...
We need this for TPU work so that things like `XRTArrays` can be multiplied in.
I'm not certain if this is a DiffEqFlux error or a Zygote error, considering it triggers depending on some seemingly harmless changes to the source code. MWE: ``` julia> using...
``` Base.@pure calc_rounds(L; exponent=3) = ceil(UInt32, exponent * log(L) / log(typemax(UInt32))) function shuffle(x::XRTArray) rounds = calc_rounds(length(x)) round_idx = XRTArray(rounds) while round_idx > XRTArray(0) keys = rand(XRTArray{UInt32}, length(x)) x = sort(x,...