jovian.commit(project=project)
The above code is what I type and run for committing my code but I am getting the following error:
File upload failed: (HTTP 400) Uploaded notebook file seems to be corrupt.
Please help!!
@poddargarvit2000 Make sure you have imported jovian. Also here is the code in the notebooks that is used to commit the project. Make sure it is the same.
project='python-hash-tables-assignment'
!pip install jovian --upgrade --quiet
import jovian
jovian.commit(project=project, privacy='secret', environment=None)
Let me know if it works.
1 Like
It was pretty much the same. Didnt know what went wrong, so just changed the name of the notebook and went forward, it worked.
Thanks for the advice though!