fastai
fastai copied to clipboard
The fastai deep learning library
Be sure you've searched [the forums](https://forums.fast.ai) for the error message you received. Also, unless you're an experienced fastai developer, first ask on the forums to see if someone else has...
Referring to: [PoolingLinearClassifier](https://docs.fast.ai/text.models.core.html#poolinglinearclassifier) The example code given is as below, which is the same code for [SentenceEncoder](https://docs.fast.ai/text.models.core.html#sentenceencoder) ```python mod = nn.Embedding(5, 10) tst = SentenceEncoder(5, mod, pad_idx=0) x = torch.randint(1,...
**Is your feature request related to a problem? Please describe.** For a regression problem, you are often not interested in the actual outcome but more in the boundary where the...
Be sure you've searched [the forums](https://forums.fast.ai) for the error message you received. Also, unless you're an experienced fastai developer, first ask on the forums to see if someone else has...
Goal: create a model using FastAI's `DataBlock()`. I want to create a `DataBrick()` based on [documentation][1]. I think 'L' object refers to [fastcore.foundation.L type][2]. How can I fix this? Error...
This PR attempts to add `timm` models to the `unet_learner`, as per conversations during Live Coding 17: https://forums.fast.ai/t/live-coding-17/97166 I have several issues so far: 1) I don't know if theres...
Fixes #3676
Please confirm you have the latest versions of fastai, fastcore, and nbdev prior to reporting a bug (delete one): YES **Describe the bug** Probability returns the Probability of the predicted...
Update Optimizer docs with additional clarity relative to PyTorch optimizers. Fix the SGD with Momentum Weight Decay comparison test/example. Move `OptimWrapper` usage example to right after the `OptimWrapper` definition.
Please confirm you have the latest versions of fastai, fastcore, and nbdev prior to reporting a bug (delete one): YES / NO The problem is visible in fastai v2.7.4 and...