-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7139381
commit 7768b62
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Run this script from the directory you want to become the `data_dir` in future steps | ||
# Download size is ~75GB - make sure you do this on a machine with enough space! | ||
|
||
wget https://zenodo.org/record/7992427/files/20230528_chemical_patents_uspto.tar.gz | ||
tar -xzf 20230528_chemical_patents_uspto.tar.gz | ||
rm 20230528_chemical_patents_uspto.tar.gz | ||
cd 20230528_chemical_patents_uspto | ||
for y in {2001..2023}; do(tar -xzf $y.tar.gz $y); done |