在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:FluxML/FastAI.jl开源软件地址:https://github.com/FluxML/FastAI.jl开源编程语言:Julia 100.0%开源软件介绍:FastAI.jlFastAI.jl is a Julia library for training state-of-the art deep learning models. From loading datasets and creating data preprocessing pipelines to training, FastAI.jl takes the boilerplate out of deep learning projects. It equips you with reusable components for every part of your project while remaining customizable at every layer. FastAI.jl comes with support for common computer vision and tabular data learning tasks, with more to come. FastAI.jl's high-level workflows combine functionality from many packages in the ecosystem, most notably Flux.jl, FluxTraining.jl, DataAugmentation.jl and MLUtils.jl. See our documentation to find out more. ExampleAs an example, here is how to train an image classification model: using FastAI
data, blocks = load(datarecipes()["imagenette2-320"])
task = ImageClassificationSingle(blocks)
learner = tasklearner(task, data, callbacks=[ToGPU()])
fitonecycle!(learner, 10)
showoutputs(task, learner) SetupTo get started, install FastAI.jl using the Julia package manager: using Pkg
Pkg.add("FastAI") or try it out with this Google Colab template. Getting startedTo dive in, you may be interested in
Get in touchYou can get in touch here on GitHub or on the JuliaLang Zulip in the AcknowledgementsFastAI.jl takes inspiration from the fantastic fastai library for Python. Jeremy Howard and the fastai team kindly approved this project and its use of the fastai name. This project also builds on many packages in the Julia ecosystem. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论