AnyPattern / README.md
WenhaoWang's picture
Update README.md
99a2f33 verified
|
raw
history blame
No virus
1.07 kB
---
license: mit
---
The dataset proposed in our paper "AnyPattern: Towards In-context Image Copy Detection".
Please go to [Github](https://github.com/WangWenhao0716/AnyPattern) for the code about how to use this dataset.
Here, we show how to **download** this dataset.
# anypattern_v31
```
for letter in {a..z}; do
wget https://huggingface.co/datasets/WenhaoWang/AnyPattern/resolve/main/train/anypattern_v31_part_a$letter
done
wget https://huggingface.co/datasets/WenhaoWang/AnyPattern/resolve/main/train/anypattern_v31_part_ba
cat anypattern_v31_part_a{a..z} anypattern_v31_part_ba > anypattern_v31.tar
tar -xvf anypattern_v31.tar
```
# original_images
```
wget https://huggingface.co/datasets/WenhaoWang/AnyPattern/resolve/main/original/train_{0..19}.zip
for $z$ in train_*.zip; do unzip $z; done
mv images/train original_images
```
# reference_images
```
wget https://huggingface.co/datasets/WenhaoWang/AnyPattern/resolve/main/reference/references_{0..19}.zip
for $z$ in references_*.zip; do unzip $z; done
mv images/references reference_images
```