Skip to content

Commit

Permalink
docs: datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
LutingWang committed Jul 30, 2024
1 parent 7ffdd0e commit a1c4d26
Show file tree
Hide file tree
Showing 6 changed files with 95 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/data/davis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ DAVIS 2017
wget https://data.vision.ee.ethz.ch/csergi/share/davis/${f}
unzip -q ${f}
mv DAVIS davis
cd ..
.. code::
Expand Down
23 changes: 23 additions & 0 deletions docs/source/data/kinetics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,26 @@ Kinetics-700-2020
cd ${repo}
bash ./k700_2020_downloader.sh
bash ./k700_2020_extractor.sh
cd ..
mkdir kinetics
ln -s ${PWD}/${repo}/k700-2020 kinetics
cd ..
.. code::
data/kinetics/
└── k700-2020
├── annotations
│ ├── test.csv
│ ├── train.csv
│ └── val.csv
├── train
│ ├── abseiling
│ │ ├── __NrybzYzUg_000415_000425.mp4
│ │ └── ...
│ └── ...
└── val
├── abseiling
│ ├── 3E7Jib8Yq5M_000118_000128.mp4
│ └── ...
└── ...
1 change: 1 addition & 0 deletions docs/source/data/mpi_sintel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ http://sintel.is.tue.mpg.de/
mkdir -p ${root} && cd ${root}
wget http://files.is.tue.mpg.de/sintel/MPI-Sintel-complete.zip
unzip -q *.zip
cd ../..
.. literalinclude:: optical_flow.py
:language: python
Expand Down
51 changes: 51 additions & 0 deletions docs/source/data/object365.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
Object365
=========

https://www.objects365.org/

Object365 v2
------------

.. code-block:: bash
root=data/object365
mkdir -p ${root} && cd ${root}
mkdir annotations train val
base_url="https://dorc.ks3-cn-beijing.ksyun.com/data-set/2020Objects365%E6%95%B0%E6%8D%AE%E9%9B%86"
cd annotations
annotations_train=zhiyuan_objv2_train.tar.gz
wget ${base_url}/train/${annotations_train}
tar -zxf ${annotations_train}
wget ${base_url}/val/zhiyuan_objv2_val.json
cd ..
cd train
for i in {0..50}; do
patch=patch${i}.tar.gz
wget ${base_url}/train/${patch}
tar -zxf ${patch}
done
cd ..
cd val
for i in {0..15}; do
patch=patch${i}.tar.gz
wget ${base_url}/val/images/v1/${patch}
tar -zxf ${patch}
done
for i in {16..43}; do
patch=patch${i}.tar.gz
wget ${base_url}/val/images/v2/${patch}
tar -zxf ${patch}
done
cd ..
cd ../..
.. code::
data/v3det/
1 change: 1 addition & 0 deletions docs/source/data/tap_vid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ TAP-Vid-DAVIS
f=tapvid_davis.zip
wget https://storage.googleapis.com/dm-tapnet/${f}
unzip -p ${f} tapvid_davis/tapvid_davis.pkl > davis.pkl
cd ../..
.. literalinclude:: tap_vid_davis.py
:language: python
Expand Down
18 changes: 18 additions & 0 deletions docs/source/data/v3det.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
V3Det
=====

https://v3det.openxlab.org.cn/

.. code-block:: bash
cd data
repo=V3Det_Backup
git lfs install
git clone https://huggingface.co/datasets/yhcao/${repo}.git
cd ${repo}
cd ..
cd ..
.. code::
data/v3det/

0 comments on commit a1c4d26

Please sign in to comment.