Skip to content
#

fastai

Here are 720 public repositories matching this topic...

nbdev
jvivian
jvivian commented Mar 1, 2022

Version: 1.2.2

Summary of issue
Including a @dataclass decorated class breaks getsource in show_doc

Minimal example

  • Clone nbdev_tutorial
  • Add new cell in 00_core.ipynb
#export
from dataclasses import dataclass

@dataclass
class Foo:
    a: int
    b: str
    c: float
  • Run nbdev_build_lib
  • Run nbdev_build_docs
nbdev_build_docs
bug good first issue

Time series Timeseries Deep Learning Machine Learning Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai

  • Updated May 27, 2022
  • Jupyter Notebook
Brainkite
Brainkite commented May 9, 2022

Is there a convenient way to export models to ONNX?

I have a pretty satisfying mmdet.retinanet model with backbone resnet50_fpn_1x but I have a hard time exporting it to ONNX format

I've tried with the pytorch2onnx.py script from mmdetection but it was unsuccessful

and torch.onnx.export doesn't work:

torch.onnx.export(torch_model, 
                  (img, img_metas), 
            
documentation help wanted good first issue example request
lorenzoh
lorenzoh commented Aug 10, 2021

With #151, FastAI.jl is getting high-level interfaces for searching datasets (finddatasets) and loading datasets into task-specific data containers (loaddataset). There is also a new DatasetRecipe that encapsulates configuration for loading a data container and the block information from a path. These recipes can be registered with a dataset so that they can be found using the above high-lev

help wanted good first issue

Improve this page

Add a description, image, and links to the fastai topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the fastai topic, visit your repo's landing page and select "manage topics."

Learn more