I am having trouble running the assignment files from bracket to chrome browser

I just wanted to mention some pointer for non-IT people, in case they encounter same issue in future.

  1. Please use bracket to do your assignment (meaning to write or edit your code)

  2. As mentioned by Chris, you need to have python 3 version and then in the terminal type as mentioned by Chris in your terminal the below
    python3 -m http.server
    FOR WHICH YOU WILL GET OUTPUT SOMETHING LIKE THIS(IT WILL BE DIFFERENT FOR YOUR SYSTEM)
    Serving HTTP on :: port 6000 (http://[0 0 ]:6000/)

  3. This part has to be done in Chrome browser. Next copy this part from the above output [0 0 ]:6000/(mention the file/assignment you are working) on the chrome browser. At this point was stuck as my download directory was not in the direct directory. So make sure you need to put the assignment folder for this course in your direct/local directory. In case you are not able to find your local directory. Open another browser and type this http://localhost:6000 to know where you file should be for the chrome browser to read/detect the file in your local directory.

  4. Once you have open the assignment in the chrome browser and enter the output from above statement like this [0 0 ]:6000/C1_W1_Assignment.html
    you need to follow the below image, you need to click to the developer tools in this image

  5. Once you click the developer tool, you will find the below image

Here the Sources will give you log about your code as well as epoch. if you click console, you will find your epoch log for model you trained

Hope it helps!!!

Regards
DP