Reputation: 461
I am following ImageCaption generation project guided by Oreilly in the following link
https://www.oreilly.com/learning/caption-this-with-tensorflow
But while I am following the github docker option A where the github correpondent to the above insturction, I installed docker and ran jupyter but keep shown with token authentication page.
https://github.com/mlberkeley/oreilly-captions?utm_source=newsite&utm_medium=content&utm_campaign=lgen&utm_content=caption-this-with-tensorflow-top-cta
But whenever I copy and paste the token I've given from the terminal windows, it keep returning "invalid credentials"
What would be the possible cause of it?
Upvotes: 7
Views: 9753
Reputation: 319
If you look carefully at the description given below, it explains the scenario pretty much.
Steps to perform:
-- Open another terminal
-- type in: jupyter notebook list
-- copy the link given here (which certainly would have a
different token)
-- paste and run it in the browser
Upvotes: 1
Reputation: 13
I think you need to:
docker run -p 8888:8888 <your image>
Upvotes: 1
Reputation: 145
I also had same problem, if you are using Windows: start jupyter and go to Anaconda Prompt and use this command:
jupyter notebook list
command output:
Currently running servers:
http://localhost:8888/?token=9a24db0b60370b1cb3fed2fb06b3acd316c59f50388e3711 :: C:\Users\user_name
http://localhost:8888/?token=10a787bf262f214bd14ef31f869f3090f126ba252443a048 :: C:\Users\user_name
I copy pasted the second token 10a787bf262f214bd14ef31f869f3090f126ba252443a048 from the second URL and then it worked!!
Upvotes: 3