I’ve completed C2W1 programming assignment. When I run it on the google colab notebook, everything runs fine and gives the expected output. When I download the .ipynb file, upload and submit it, the grader output always shows -
“Grader Output - There was a problem compiling the code from your notebook. Details: No module named ‘IPython’.” and assignment is not evaluated. I did import IPython into the notebook and submitted it again. But I get the same above message. what did I do wrong ?
Any help in getting this problem resolved is greatly appreciated.
Hi @Peesa_Santhi_Prasann, DM me with a copy of your notebook so I can take a look. You should not add imports to your notebook since all of the necessary imports are already there and the grader will not install new libraries, so if an import is added it is very likely not included in the env where grading happens.
I have the same issue. I haven’t added any imports other than inline one for the optimizer >> model.compile(optimizer=tf.keras.optimizers.RMSprop(learning_rate=0.001), … )