Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hexuan21 committed Jun 24, 2024
1 parent c5a1b3e commit 5f0ef0a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Binary file modified static/images/teaser.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions training/download.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from huggingface_hub import hf_hub_download

hf_hub_download(repo_id="TIGER-Lab/VideoFeedback", filename="annotated/frames_annotated_train.zip", repo_type="dataset", local_dir="./data")
hf_hub_download(repo_id="TIGER-Lab/VideoFeedback", filename="annotated/frames_real_train.zip", repo_type="dataset", local_dir="./data")
11 changes: 11 additions & 0 deletions training/download.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

mkdir -p ./data

if [ -d "${bench_name}/${split}/frames_${postfix}" ]; then
echo "frames exists"
else
echo "frames not exist, downloading..."
wget "https://huggingface.co/datasets/TIGER-Lab/VideoFeedback/resolve/main/real/frames_real_train.zip" -O "./data/frames_real_train.zip"
unzip "./data/frames_real_train.zip" -d "./data/images/"
rm "./data/frames_real_train.zip"
fi

0 comments on commit 5f0ef0a

Please sign in to comment.