-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code does not run as it is #17
Comments
It uses Python2.7 |
Do the python files in "DeepLearning" folder has same dependency on Python2.7? Do you have a plan to update to Python 3? With almost zero comments in the code it's difficult for someone else to do the same. |
When trying to run I get errors as shown below: |
That has to do with the python version. |
Hi, train_images_dict = {}
|
Is there a version dependency of "process.ipynb". When try to run the code as it is I get lots of errors in
Jupiter with Python 3, eg, following code does not run:
"c.items().sort(key=lambda x: x[0])"
has to be changed to ,
"sorted(c.items(), key=lambda x: x[0])"
No Print statements runs
The text was updated successfully, but these errors were encountered: