Jeremie Desgagne-Bouchard
Jeremie Desgagne-Bouchard
From the docs in `?html`, it can be read: ```julia layout::Union{String,Nothing}: layout file for rendering data ... layout::FilePath: filesystem path to the layout file as a Renderer.FilePath, ie Renderer.FilePath("/path/to/file.html.jl") ```...
This issue relates to the transformations dispatch mechanism that doesn't recognize Functors as Functions as discussed on [discourse ](https://discourse.julialang.org/t/apply-interpolation-functions-on-columns-of-a-dataframe/71257). I have a use case where I use Functors as pre-trained...
As discussed in #100 - [x] Identified largest child node to be subject to Histogram subtration (rather that fixed to right child) - [ ] Threaded gradient update & eval...
Support non one-hot encoded categorical features: features carrying item info as an Int (1 to N levels). Consider change from Matrix to DataFrames input structure to handle mixed feature. Consider...
Following error resulted from attempt to load the Style Transfer ONNX model from: https://github.com/onnx/models/blob/master/vision/style_transfer/fast_neural_style/models/opset8/mosaic.onnx ```julia using Flux using ONNX julia> ONNX.load_model("mosaic.onnx") ERROR: KeyError: key :Pad not found Stacktrace: [1] getindex(::Dict{Symbol,Any},...
I'm looking for the option to use a DataLoader with guaranteed non-shuffling when in a in a multi-thread Julia session. I noticed that the `parallel` keyword argument has been deprecated,...
2 bugs were identified in relation to markdown rendering. 1. If the Genie.config's `watch` is set to `true`, logging throws an error when parsing markdown files: ```julia julia> ┌ Error:...
The following minimal function results in a segfault (run on Enzyme's main as of 2023-11-26, Julia v1.10.0-rc1). If removing the `@turbo` annotation, the autodiff works fine. ```julia using LoopVectorization using...
The following minimal script hangs forever when launched on Windows machine with Julia 1.10. It works fine with Julia 1.9.4 and 1.8.3: ```julia using Enzyme @info "starting" f1(x) = x*x...
v1 roadmap
- [x] Table / DataFrame - [x] Hybrid features support (specify numeric, bool and cat data) - [ ] Online / streaming input - [ ] Custom loss function (loss...