Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 595 Bytes

tips_troubleshooting.md

File metadata and controls

23 lines (18 loc) · 595 Bytes

Solving Errors

  1. Do git pull of fastai library. Updates may sort out some errors.
git pull
  1. Update Anaconda packages
conda env update
conda update --all 
  1. Delete tmp directory and rerun

  2. CUDA out of memory error:

    • interrupt kernel
    • reduce batch size
    • RESTART kernel!

Debugging

Note from Jeremy:
Immediately after you get the error, type %debug in a cell to enter the debugger. Then use the standard python debugger commands to follow your code to see what’s happening.