facebookresearch / detectron2

Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.
https://detectron2.readthedocs.io/en/latest/
Apache License 2.0
30.1k stars 7.42k forks source link

Can not install DATASET #4615

Open rodrigo1990 opened 1 year ago

rodrigo1990 commented 1 year ago

📚 Documentation Issue

Hey ! I'm following the different instructions to install any of these datasets:

[https://github.com/facebookresearch/detectron2/blob/main/datasets/README.md ] I'm trying to install Lvis dataset, but after executing pip install git+https://github.com/cocodataset/panopticapi.git I'm seeing that is not clonning any repo.

Also when I execute

python3 datasets/prepare_cocofied_lvis.p I can verify that is looking of a version 0.5 that it doesn't exists anymore in the website of Lvis.

What I'm doing wrong ? Or the document just became obsolete ?

Thanks

RajUpadhyay commented 1 year ago

pip install git+https://github.com/cocodataset/panopticapi.git This command installs the panopticapi (do pip freeze to confirm)

pip install git+https;// This command actually clones your repo but in a temporary folder. Then pip uses it to build whatever you are building and then it deletes that temporary folder, so if you want to clone the repo, just git clone it.