I have a helper_functions.py file that I want to use some functions from, but nothing seems to work.
from helper_functions import plot_decision_boundary
ImportError: cannot import name 'plot_decision_boundary' from 'helper_functions' (/content/helper_functions.py)
from helper_functions import *
runs, but when I call any function I get
name 'plot_decision_boundary' is not defined
I tried the solutions to the two most similar questions this and this, but nothing seems to work.
I am working on collab and have manually uploaded the file.
!ls lists the file