We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What is the final command to create the prototxt?
When I tried the command
python create_yolo_prototxt.py yolo.cfg yolo.prototxt
I am getting the error
configparser.DuplicateOptionError: While reading from 'yolo.cfg' [line 38]: option 'batch_normalize' in section 'convolutional' already exists
NOTE: The module name is configparser in my system Hence I used the following import command inside create_yolo_prototxt.py
from configparser import ConfigParser
instead of
from ConfigParser import ConfigParser
The text was updated successfully, but these errors were encountered:
Having the same problem. Did you find a solution?
Sorry, something went wrong.
you must use Python 2.7@nikkris @mantoone
if you use Python3 and change ConfigParser to configparser, may be show that errors.
you must use Python 2.7@nikkris @mantoone if you use Python3 and change ConfigParser to configparser, may be show that errors.
thanks, same problem solved
No branches or pull requests
What is the final command to create the prototxt?
When I tried the command
python create_yolo_prototxt.py yolo.cfg yolo.prototxt
I am getting the error
configparser.DuplicateOptionError: While reading from 'yolo.cfg' [line 38]: option 'batch_normalize' in section 'convolutional' already exists
NOTE: The module name is configparser in my system
Hence I used the following import command inside create_yolo_prototxt.py
from configparser import ConfigParser
instead of
from ConfigParser import ConfigParser
The text was updated successfully, but these errors were encountered: