Hello @Menelaos_Gkikas,
Yes
Coursera should keep your notebook throughout the period of your current subscription. So yes, you can save it and it will remain on coursera. Or you can download the whole notebook for future reference. Note that, after your current subscription period is ended, based on what I know, you won’t have access to any assignment or lab notebooks. If you want to know how to backup, check this instruction out.
Also, you can save your notebook on coursera as many times as you like. You can close and reopen it as many times as you like. You can submit your notebook for grading as many times as you like. There is no penalty. There is no time limit except for your subscription period.
The thing that I would strongly recommend is for you to finish the whole assignment on the coursera environment. There have been reports of problem when learners had finished the assignments on their machine and uploaded it back for submission but failed. Most of the time the quickest fix is for the learners to copy-and-paste the work from the notebook on the local machine to that on coursera.
If you follow the instruction in the link I provided, you will download your assignment/lab as a “jupyter notebook” which has a file extension called “.ipynb”. You will need to install “jupyter lab” to open, edit, and run it. For details, please google “How to install jupyter lab on XXX” and replace “XXX” with the name of your OS. You will end up a interface quite similar to coursera’s but with more functionality.
This is how this place works. If you want to ask about an error, take a screenshot of the full error traceback or the full error message that inform you of a problem. Then open a new thread in the corresponding category of this community, and share the screenshot(s) and tell us which notebook it is and any other relevant information. Mentors or fellow learners who have some suggestions for you will reply to your thread. However, sharing assignment code is against the rules of this community, so please don’t do it.
As far as I know, we don’t have tutoring sections or individual sections here. So, your first aid would be the hints provided in the assignment notebook under each exercise, googling the internet, and searching in this community. Second aid will be posting in the community.
If you have any question about your account or any problem with the Coursera platform, they should be sent to Coursera directly. Check this out for contacts.

Nothing seems to happen because the data is loaded into the variables x_train
and y_train
quietly. However, in the next few cells, you will run through some commands to visualize part of the data. If you want to really look at the data, this is how you can trace back to its source:

The load_data
function comes from util
which is a script file called “util.py” and you can locate it by clicking “File” > “Open” to open a file browser, and you can click “util.py” to check out the loaddata function. It will have a source file path of the data, and you only need to follow that path in the file browser to get to that source.
Cheers,
Raymond