-
Notifications
You must be signed in to change notification settings - Fork 45.7k
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
new object_detection error from today's commis: 'ManualStepLearningRate' object has no attribute 'warmup' #3705
Comments
I had the same problem, but then realized I need to update my pipeline.config to conform to the new manualsteplearningrate. After I made the adjustments I get this error:
|
I get this error too |
I believe it is the same Python3 incompatibility that has crept up before (see #3443 ). The issue is with
Wrap list() around the range() like this:
and you should be good to go. Mine is off and training. @jwnsu make sure you change your pipeline.config from:
to the new slightly different:
|
same problem as here #3605 |
manual_step_learning_rate is not used directly, seems a new bug, here is the config:
|
@learnbott I was having the errors you had mentioned before: |
remember to recompile protobufs after upgrade:
|
I meet this issue too, but thanks to @learnbott , and now I can move on. |
you rock @learnbott |
when will this fix be merged? |
@learnbott
Then it works |
please help me to resolve the issue (py36_tf_cpu) C:\tensorflow\models\research\object_detection>python train.py --l |
The wrapping did now work for me. I also tried what AliceDinh Suggested. But it is still giving me the same error. |
@srunitha same here did u find the solution See @{tf.nn.softmax_cross_entropy_with_logits_v2}. Traceback (most recent call last): |
list wrapping and python setup build and install worked for me |
@learnbott solution didn't work for me. |
how can i solve this error? |
ImportError Traceback (most recent call last) ~\AppData\Roaming\Python\Python36\site-packages\matplotlib\pyplot.py in ~\AppData\Roaming\Python\Python36\site-packages\matplotlib\colorbar.py in ~\AppData\Roaming\Python\Python36\site-packages\matplotlib\artist.py in ~\AppData\Roaming\Python\Python36\site-packages\matplotlib\path.py in ImportError: cannot import name '_path' |
in the last section of code:- NameError: name 'Image' is not defined |
…375563179, use list(range(...)) rather than range(...) for Python 3
While executing the train.py file i get the following error: |
Where do i need to change some line codes about boxes because i'm planning to set color green if the accuracy >=98 then red if not. i'm using real-time :D |
Though running successfully the jupyter notebook, the output images is not displaying. anywhere I gone wrng? PLSS HELP!! :) |
@yadnyeshn It‘s easy~ Confirm your pythonpath is added again~ |
from nets import inception_resnet_v2 |
After pulled today's changes, got an error in previously working training (warmup was not in config file at all)
The text was updated successfully, but these errors were encountered: