fastai1 icon indicating copy to clipboard operation
fastai1 copied to clipboard

v1 of the fastai library. v2 is the current version. v1 is still supported for bug fixes, but will not receive new features.

Results 16 fastai1 issues
Sort by recently updated
recently updated
newest added

Hi, I was wondering if it possible to run unet image segmentation training in fastai. All the code I have found sets up fastai with 2D files of data and...

**Describe the bug** **Provide your installation details** **To Reproduce** **Expected behavior** **Screenshots** **Additional context**

**Describe the bug** **Provide your installation details** **To Reproduce** **Expected behavior** **Screenshots** **Additional context**

### Unresolved on forum (Also this is bold and I can't unbold it) `#hide_output uploader = widgets.FileUpload() uploader --------------------------------------------------------------------------- NameError Traceback (most recent call last) in 1 #hide_output ----> 2...

https://github.com/fastai/fastai1/blob/a8327427ad5137c4899a1b4f74745193c9ea5be3/old/fastai/structured.py#L247 The call to sum() in this conditional statement should be changed to any() for a minor performance boost and to clarify the operation for people reading the code.

**Describe the bug** While trying to download COCO_SAMPLE dataset using Fastai in Google Colab the error message 'urlsave() got an unexpected keyword argument 'timeout' ' is thrown. Below is the...

--------------------------------------------------------------------------- TypeError Traceback (most recent call last) in ----> 1 learn.fine_tune(10) c:\users\moham\appdata\local\programs\python\python39\lib\site-packages\fastai\callback\schedule.py in fine_tune(self, epochs, base_lr, freeze_epochs, lr_mult, pct_start, div, **kwargs) 155 "Fine tune with `freeze` for `freeze_epochs` then with...

**Describe the bug** Getting following error ``` RuntimeError: diff_view_meta->output_nr_ == 0 INTERNAL ASSERT FAILED at "/opt/conda/conda-bld/pytorch_1607370141920/work/torch/csrc/autograd/variable.cpp":363, please report a bug to PyTorch. ``` **Provide your installation details** ```text === Software...

I'm having a constant exception after running the following code part: from fastai.vision import * import warnings warnings.filterwarnings('ignore') path = 'G:/DataScienceProject/Kaggle-Prostate-cANcer-graDe-Assessment/train' folderList = os.listdir(path) data = ImageDataBunch.from_folder(path, train=".", test="../cv", valid_pct=0.2,...