Some notes to the Fastai course
Practical Deep Learning for Coders 2022
If you intend use Pytorch and python 3.7 for adopting fastai core, maybe you got some problems and this pages will collect the error which I have search and solve some problems
Lession 1:
Bug 1: If you use windows and it cant create a folder and download data as below:
Use the command path.mkdir() will permit create folder in current workbook of windows system
Use max_workers=1 will solve the problems of BrokenProcessPool. python - How to fix BrokenProcessPool: error for concurrent.futures ProcessPoolExecutor - Stack Overflow
I guess that this arose since the pytorch not support to multiprocessing well in miniconda envinronment.
For the verify_images error in the commands:
we can replace with:
Comments
Post a Comment