Error).**Attempting to access one of the models at its URL reveals that the URL is down:
http://posefs1.perception.cs.cmu.edu/OpenPose/models/pose/body_25/pose_iter_584000.caffemodel
The build process fails when the URL is not accessible.
...the same is true for other models I attempted to download.
Hopefully, the server is just temporarily down - but in case nobody is aware and the problem remains, I am posting this issue.**
Note: add --logging_level 0 --disable_multi_thread to get higher debug information.
Attempt to access the model at the noted URL. As of the time I write this issue, there is a "Sorry, the page you are looking for is not found" error.
The URL with the models is inaccessible.
You might select multiple topics, delete the rest:
Installation error.
Whole console output (if errors appeared), paste the error to PasteBin and then paste the link here: LINK
OpenPose version: Latest GitHub code? Or specific commit (e.g., d52878f)? Or specific version from Release section (e.g., 1.2.0)?
General configuration:
lsb_release -a in Ubuntu):gcc --version in Ubuntu or VS version in Windows): 5.4.0, ... (Ubuntu); VS2015 Enterprise Update 3, VS2017 community, ... (Windows); ...?Non-default settings:
3rd-party software:
cmake --version in Ubuntu):apt-get install libopencv-dev (only Ubuntu); OpenPose default (only Windows); compiled from source? If so, 2.4.9, 2.4.12, 3.1, 3.2?; ...?If GPU mode issue:
cat /usr/local/cuda/version.txt in most cases):nvidia-smi in Ubuntu):If CPU-only mode issue:
If Python API:
python -c "import numpy; print numpy.version.version" in Ubuntu):If Windows system:
If speed performance issue:
So is it right that we can't access or download any of the models until they repair the server?
Thank you for the information! I was in such a panic due to the model http response errors.
I have 3 of the models on my Dropbox account (for the pose runs). Feel free to download.
https://www.dropbox.com/s/3x0xambj2rkyrap/pose_iter_584000.caffemodel?dl=0
https://www.dropbox.com/s/d08srojpvwnk252/pose_iter_116000.caffemodel?dl=0
https://www.dropbox.com/s/gqgsme6sgoo0zxf/pose_iter_102000.caffemodel?dl=0
In case you need other models, unfortunately I don't have those.
Also, to get OpenPose to build (assuming the models above are sufficient), you need to edit out the automated attempt to download these scripts. The following script does it - it is taken from a Dockerfile (remove the RUN command if executing directly at the command line, and replace the path to the OpenPose directory with your own):
RUN cd /home/${USERNAME}/openpose/models/pose/body_25 \
&& wget -c https://www.dropbox.com/s/3x0xambj2rkyrap/pose_iter_584000.caffemodel?dl=0
# pose_iter_116000.caffemodel
RUN cd /home/${USERNAME}/openpose/models/face \
&& wget -c https://www.dropbox.com/s/d08srojpvwnk252/pose_iter_116000.caffemodel?dl=0
# pose_iter_102000.caffemodel
RUN cd /home/${USERNAME}/openpose/models/hand \
&& wget -c https://www.dropbox.com/s/gqgsme6sgoo0zxf/pose_iter_102000.caffemodel?dl=0
# use 'sed' to comment out the line in the OpenPose repo that downloads the model from the failed link
RUN sed -i 's/executeShInItsFolder "getModels.sh"/# executeShInItsFolder "getModels.sh"/g' /home/${USERNAME}/openpose/scripts/ubuntu/install_openpose_JetsonTX2_JetPack3.1.sh
RUN sed -i 's/executeShInItsFolder "getModels.sh"/# executeShInItsFolder "getModels.sh"/g' /home/${USERNAME}/openpose/scripts/ubuntu/install_openpose_JetsonTX2_JetPack3.3.sh
RUN sed -i 's/download_model("BODY_25"/# download_model("BODY_25"/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/78287B57CF85FA89C03F1393D368E5B7/# 78287B57CF85FA89C03F1393D368E5B7/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/download_model("body (COCO)"/# download_model("body (COCO)"/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/5156d31f670511fce9b4e28b403f2939/# 5156d31f670511fce9b4e28b403f2939/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/download_model("body (MPI)"/# download_model("body (MPI)"/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/2ca0990c7562bd7ae03f3f54afa96e00/# 2ca0990c7562bd7ae03f3f54afa96e00/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/download_model("face"/# download_model("face"/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/e747180d728fa4e4418c465828384333/# e747180d728fa4e4418c465828384333/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/download_model("hand"/# download_model("hand"/g' /home/${USERNAME}/openpose/CMakeLists.txt
RUN sed -i 's/a82cfc3fea7c62f159e11bd3674c1531/# a82cfc3fea7c62f159e11bd3674c1531/g' /home/${USERNAME}/openpose/CMakeLists.txt
Working again, sorry for the troubles!!!
I'm getting the same error right now...
Moreover, as there is no way to contact the server posefs1.perception.cs.cmu.edu, the install script can not dowload opencv, caffe and any other dependency.
I'm stuck... :-(
It seems like the host website (http://posefs1.perception.cs.cmu.edu/) is down again... Error 502 Bad Gateway!!!
Seems like the (http://posefs1.perception.cs.cmu.edu/) website is down again
I found the models uploaded on kaggle, here's the link
Please use https://github.com/CMU-Perceptual-Computing-Lab/openpose/issues/1602#issuecomment-641653411
Most helpful comment
I have 3 of the models on my Dropbox account (for the pose runs). Feel free to download.
pose_iter_584000.caffemodel
https://www.dropbox.com/s/3x0xambj2rkyrap/pose_iter_584000.caffemodel?dl=0
pose_iter_116000.caffemodel
https://www.dropbox.com/s/d08srojpvwnk252/pose_iter_116000.caffemodel?dl=0
pose_iter_102000.caffemodel
https://www.dropbox.com/s/gqgsme6sgoo0zxf/pose_iter_102000.caffemodel?dl=0
In case you need other models, unfortunately I don't have those.
Also, to get OpenPose to build (assuming the models above are sufficient), you need to edit out the automated attempt to download these scripts. The following script does it - it is taken from a Dockerfile (remove the RUN command if executing directly at the command line, and replace the path to the OpenPose directory with your own):