-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add ml-traffic-sign-training #28
base: master
Are you sure you want to change the base?
Conversation
Machine Learning codes in python to train a three layer neural network and two methods of TensorFlow library on German traffic sign dataset.
@ManashRaja, Good Work on the models. Couple of things. The code for the tensorflow1.py does not compile. Also send a link for the dataset and try to incorporate it in the code itself. Also change the names of tensorflow1.py and tensorflow2.py to appropriate names. |
# Author: Manash Pratim Das ([email protected]) | ||
######################################################################################## | ||
|
||
import cv2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add this in requirements.txt
.
Looks good. Nicely done. Please make time to document your functions. It will be a huge help to both you and others who will be referring to this code. |
######################################################################################## | ||
|
||
import cv2 | ||
import numpy as N |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And this one too. I am surprised this wasn't in the requirements till now.
Some nitpicks,
|
Thanks for all the suggestions. I will do the necessary changes and update the PR. |
@ManashRaja https://pip.pypa.io/en/stable/reference/pip_freeze/ See the 2nd example. |
Machine Learning codes in python to train a three layer neural network
and two methods of TensorFlow library on German traffic sign dataset.