How are you all? Hope this email find all of you well.
I am trying to run C1_W3_Lab09 lab in Google Colab environment. But it cannot find some of the modules needed for the lab. I was able to install few of them using “pip install” but failed when trying “pip install plt_overfit”.
How can I utilize the downloaded plt_over.py from the course so it can be installed in Google Colab?
Thank you, I did download all utilities and lab files to my google drive. But I still receive an error message when I try to run “from plt_overfit import overfit_example, output”.
I fixed that problem, just do it:
import numpy as np
%matplotlib widget
import matplotlib.pyplot as plt
from plt_overfit import overfit_example, output
from lab_utils_common import sigmoid
np.set_printoptions(precision=8)