cs230-stanford/cs230-code-examples

Error running data_loader.py

kgarg8 opened this issue · 0 comments

Since utils.py is not present in the same directory as data_loader.py, this will throw an error.

I did a workaround like this:
import sys sys.path.append("."); import utils # if running from root folder, else append '..'