File size: 748 Bytes
ba48b51 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
## Instructions
### 1. **Subset the Valid Files**
Run the following script to subset the valid files:
```bash
./scripts/create_filtered_images_dataset.sh data/all_images_big data/all/ data/all_d/all.list
```
Use the following command to compress the files:
```bash
tar -cvzf all.tar.gz all/
```
### 2. Push Large Files
```bash
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.jsonl filter=lfs diff=lfs merge=lfs -text
```
Execute the following command in the root directory of the git repository:
```bash
git lfs install
huggingface-cli lfs-enable-largefiles .
git add .
git commit -m "<commit message>"
git push
```
You can copy the above Markdown-formatted instructions and view them in any Markdown viewer to see the enhanced readability.
|