This is interesting to me but the motivation behind this is unclear. Since FastAI.jl uses Flux, and not PyTorch, functionality has to be reimplemented. FastAI.jl has vision support but no text support yet. What does this mean for the development of fastai? What is the timeline for FastAI.jl to achieve parity? When should I choose FastAI.jl vs fastai?
I’m not the main dev on FastAI.jl, but I work on the Julia ML community team that supported this project. > Since FastAI.jl uses Flux, and not PyTorch, functionality has to be reimplemented. We are looking to offer a high level API for ML in Julia similar to fastai for PyTorch. The goal is to enrich the Flux ecosystem, so just calling into Python fastai wouldn’t be appropriate. FastAI.jl is built on top of several lo…
FastAI.jl: FastAI for Julia
21–24 of 24 posts
Re: FastAI.jl: FastAI for Julia
#22Earlier quoted context omitted.
I’m not the main dev on FastAI.jl, but I work on the Julia ML community team that supported this project. > Since FastAI.jl uses Flux, and not PyTorch, functionality has to be reimplemented. We are looking to offer a high level API for ML in Julia similar to fastai for PyTorch. The goal is to enrich the Flux ecosystem, so just calling into Python fastai wouldn’t be appropriate. FastAI.jl is built on top of several lo…
I didn't check the library yet, asking here in case of the quick answer - does it support GNN too via GeometricFlux.jl[1]? [1] https://github.com/FluxML/GeometricFlux.jl
Re: FastAI.jl: FastAI for Julia
#23Earlier quoted context omitted.
I didn't check the library yet, asking here in case of the quick answer - does it support GNN too via GeometricFlux.jl[1]? [1] https://github.com/FluxML/GeometricFlux.jl
You would have to add a learning method to tell it how to encode/decode graph data, but the framework is agnostic to the model choice. So any Flux model is supported.
Re: FastAI.jl: FastAI for Julia
#24Earlier quoted context omitted.
I’m not the main dev on FastAI.jl, but I work on the Julia ML community team that supported this project. > Since FastAI.jl uses Flux, and not PyTorch, functionality has to be reimplemented. We are looking to offer a high level API for ML in Julia similar to fastai for PyTorch. The goal is to enrich the Flux ecosystem, so just calling into Python fastai wouldn’t be appropriate. FastAI.jl is built on top of several lo…
It is not surprising to me that there is no text support yet, given the issues of integrating 3D (batch x sequence x features) RNN support (for CUDNN). This issue has prevailed so long that I came to believe it is impossible to integrate with the current Flux.jl stack.