Here it is:
(I cut it off at the right, because otherwise the image text gets too small.)
Great.
This is exactly what I have in my case.
Now please open the link shown at the bottom of the picture in your browser.
When I run the docker image I get the following messages:
[I 19:45:24.388 NotebookApp] 302 GET /?token=b99228c9e0c896f2466868696761bbc4bc70d318e35c8520 (172.17.0.1) 1.370000ms
[I 19:45:30.573 NotebookApp] Writing notebook-signing key to /home/jovyan/.local/share/jupyter/notebook_secret
[W 19:45:30.576 NotebookApp] Notebook work/server.ipynb is not trusted
[W 19:45:30.677 NotebookApp] 404 GET /nbextensions/widgets/notebook/js/extension.js?v=20210909194303 (172.17.0.1) 15.620000ms referer=http://127.0.0.1:8888/notebooks/work/server.ipynb
[I 19:45:31.756 NotebookApp] Kernel started: 3823d733-3656-4ad5-b097-6d292fc2d9e9, name: python3
[I 19:47:32.165 NotebookApp] Saving file at /work/server.ipynb
[I 19:51:32.179 NotebookApp] Saving file at /work/server.ipynb
Hi @Jacob
have you been able to manage the issue?
I cannot figure out what is wrong.
Can you verify the settings under "Resources/Proxiesââ of the your Docker Desktop? Mine is disabled.
BR
@fabioantonini - thank you very much for following up!
I was - it was a third-party security software that was running on my device. They were able to resolve the issue for me.
Great to hear that!
Can you share some additional details about the fix? It might be helpful to any other learner.
Happy learning and best regards
Sorry, I donât know the details - they did it on their end.
Itâs a company called Techloq.
No problem @Jacob
Itâs important you can move ahead!
Keep in touch
Br
Hi, I am facing the exact same issue. Only difference is I am using the Method 1: Python Virtual Environment with Conda. I did verify that the URLs are accessible from my browser and there are no proxy setup either. Could you please help trouble shooting this issue?
Downloading yolov3-tiny.cfg from https://github.com/pjreddie/darknet/raw/master/cfg/yolov3-tiny.cfg
Could not establish connection. Download failed
Downloading yolov3_classes.txt from https://github.com/arunponnusamy/object-detection-opencv/raw/master/yolov3.txt
Could not establish connection. Download failed
Please ignore. Manually downloaded the respective files and placed in the folder. This resolved the issues.
Hiďź which folder should i put them ? thank you.
[quote=âVighnesh_M_Rajan, post:29, topic:10884â]
yolov3.txt
[/quote] change the file name âyolov3.txtâ to âyolov3_classes.txtâ, then it will be ok
download all the required files from below commands in ubuntu
wget https://github.com/pjreddie/darknet/raw/master/cfg/yolov3-tiny.cfg
wget https://pjreddie.com/media/files/yolov3-tiny.weights
wget https://github.com/arunponnusamy/object-detection-opencv/raw/master/yolov3.txt
copy all these downloaded files in running container
docker cp yolov3_classes.txt container_id:/home/jovyan/.cvlib/object_detection/yolo/yolov3
docker cp yolov3-tiny.weights container_id:/home/jovyan/.cvlib/object_detection/yolo/yolov3
docker cp yolov3-tiny.cfg container_id:/home/jovyan/.cvlib/object_detection/yolo/yolov3
Hello, I have faced the same problem on my Ubuntu18.04 host machine. I have downloaded all the dependent packages in the directory same as the server.ipynb. But when I run the docker cp commands you mentioned, the terminal just report an error msg which says: Error: No such container:path: 3f2e553c3a27:/home/jovyan/.cvlib/object_detection/yolo where 3f2e553c3a27 is my container id. Is there any solutions for that? Thanks a lot
Sorry⌠I miss to respond your query.
Is it resolved now ?
If not then:
hint1: please cross check you are running cp command in right directory ??
I encountered the same error, and I resolved it by updating the model version. Specifically, I replaced âyolov3-tinyâ with the more recent âyolov4_tinyâ. Similarly, if you are using âyolov3â, you might consider upgrading to âyolov4â. I am running this code in a Conda environment on Windows. Although this is a response to an old post, I thought this someone might find it useful as a quick fix.
Downloading yolov3.cfg from https://github.com/arunponnusamy/object-detection-opencv/raw/master/yolov3.cfg
Could not establish connection. Download failed