Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Submitting Assignment on Coursera ML in Octave

Programming assignment Week 3, Machine Learning, Andrew-ng, Coursera
System: Ubuntu 16.04
Octave 4.0.0

Problem: Cannot submit the code to the server. This code was successfully submitted from Windows env.

octave:1> submit == Submitting solutions | Logistic Regression... Login (email address): ************* Token: ************   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current                                  Dload  Upload   Total   Spent    Left  Speed 100   983  100    25  100   958     11    436  0:00:02  0:00:02 --:--:--   437 error: structure has no member 'message' error: called from     submitWithConfiguration at line 35 column 5     submit at line 40 column 3 error: evaluating argument list element number 2 error: called from     submitWithConfiguration at line 35 column 5     submit at line 40 column 3 
like image 735
Muhriddin Ismoilov Avatar asked Aug 31 '17 02:08

Muhriddin Ismoilov


People also ask

How do I submit a coursera machine learning assignment?

Submit a programming assignmentOpen the assignment page for the assignment you want to submit. Read the assignment instructions and download any starter files. Finish the coding tasks in your local coding environment. Check the starter files and instructions when you need to.

Why can't I submit my Coursera assignment?

If you're having trouble submitting an assignment, make sure: You're submitting the right assignment in the right session. You're uploading the right kind of file (check the assignment information for any file type requirements) The file size isn't too big (we recommend files smaller than 10MB)

How do you submit an answer on Coursera?

Please go through the help link here: Get Help with Coursera. And make sure you are login into account and you will see technical or accessibility issue, you can email us here click on that and submit your query via email. Supporting team will get back to you as soon as possible.


1 Answers

Octave 4.0.0 doesn't work well with submit scripts (on Ubuntu).

Check the version on your terminal:

octave --version 

if it's 4.0.0 update it.

sudo add-apt-repository ppa:octave/stable  sudo apt update  sudo apt-get install octave 

There is also warning in the discussions.

like image 123
Vaibhav Pandey Avatar answered Sep 20 '22 16:09

Vaibhav Pandey