Hi, I am able to run notebook and execute each cell and everything passes. However, when I submit my assignment, I run into the following error:
Cell #1. Can’t compile the student’s code. Error: ModuleNotFoundError(“No module named ‘tensorflow’”,)
I have:
import tensorflow as tf
and
print(tf.version)
is 2.9.1
Thanks in advance
Hi Vivek_Gaur!
Welcome to the community 
Before getting into it I need to know why you are importing Tensorflow here. The framework used in this notebook is PyTorch. In general, it is advised not to modify the already defined functions, written codes and also not to add additional cells because the grader might not identify them and will throw errors. Hope you get the point.
Regards,
Nithin
Hi Nitin,
Thanks for responding. I was thrown off by the following cell and ended up importing tensorflow.
print(tf.__version__)
After removing tensorflow import, I confirm I do not see that error anymore and able to submit the assignment.