microsoft / MeshTransformer

Research code for CVPR 2021 paper "End-to-End Human Pose and Mesh Reconstruction with Transformers"
https://arxiv.org/abs/2012.09760
MIT License
614 stars 95 forks source link

Download datasets error #61

Closed PomIsBest closed 2 years ago

PomIsBest commented 2 years ago

When I want to download datasets from azcopy,I get an error of 'Login Credentials missing.No SAS token or OAuth token is present and the resource is not public'.I would very much appreciate it if you could give me some help to solve this problem.

Thanks for your great work!

kevinlin311tw commented 2 years ago

If you were using the example script, please remember to change filename to the one you would like to download. If you just run the example script, it will not work. For example, if you are trying to download up3d.tar, then you should literately change filename.tar to up3d.tar

Specifically, after changing the script, it should look like this:

cd $REPO_DIR
path/to/azcopy copy 'https://datarelease.blob.core.windows.net/metro/datasets/up3d.tar' /path/to/your/folder/up3d.tar
tar xvf up3d.tar
PomIsBest commented 2 years ago

I got it! I misunderstood the meaning before, now I can download the datasets successfully! Thank you very much for your answer!