Datasets:

Languages:
English
ArXiv:
License:
marsh123 commited on
Commit
6089445
·
verified ·
1 Parent(s): bd00381

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -61,7 +61,7 @@ We have released all the images. Due to the large total size, they are split int
61
  ```bash
62
  #!/bin/bash
63
 
64
- FOLDER="Chart"
65
  BASE_URL="https://huggingface.co/datasets/marsh123/VIRA/resolve/main/${FOLDER}"
66
 
67
  mkdir -p "$FOLDER"
@@ -86,8 +86,12 @@ done
86
  echo "Merging parts..."
87
  cat "${FOLDER}.tar.gz.part"* > "${FOLDER}.tar.gz"
88
 
 
 
 
89
  echo "Cleaning up..."
90
  rm "${FOLDER}.tar.gz.part"*
 
91
 
92
  echo "✅ Done!"
93
 
 
61
  ```bash
62
  #!/bin/bash
63
 
64
+ FOLDER="Chart" # “News” "PDFA" "Papers" "Product" "Readmes" "Wiki"
65
  BASE_URL="https://huggingface.co/datasets/marsh123/VIRA/resolve/main/${FOLDER}"
66
 
67
  mkdir -p "$FOLDER"
 
86
  echo "Merging parts..."
87
  cat "${FOLDER}.tar.gz.part"* > "${FOLDER}.tar.gz"
88
 
89
+ echo "Extracting..."
90
+ tar -xzvf "${FOLDER}.tar.gz"
91
+
92
  echo "Cleaning up..."
93
  rm "${FOLDER}.tar.gz.part"*
94
+ rm "${FOLDER}.tar.gz"
95
 
96
  echo "✅ Done!"
97