Skip to content

Commit

Permalink
tip to download LSVQ
Browse files Browse the repository at this point in the history
  • Loading branch information
haoning.wu committed Nov 23, 2023
1 parent 41e4a6b commit 411c62b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,20 @@ wget https://github.com/QualityAssessment/DOVER/releases/download/v0.5.0/DOVER-M
cd ..
```

## Tip to Download LSVQ

```python
import os, glob

snapshot_download("teowu/LSVQ-videos", repo_type="dataset", local_dir="./", local_dir_use_symlinks=False)

gz_files = glob.glob("*.tar.gz")

for gz_file in gz_files:
print(gz_file)
os.system("tar -xzf {}".format(gz_file))
```

## Evaluation: Judge the Quality of Any Video

### New! ONNX Conversion is available
Expand Down

0 comments on commit 411c62b

Please sign in to comment.