https://github.com/matsutaku/plain-da-tries
https://github.com/matsutaku/plain-da-tries
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/matsutaku/plain-da-tries
- Owner: MatsuTaku
- Created: 2020-08-23T10:41:33.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-09T08:00:38.000Z (over 4 years ago)
- Last Synced: 2025-03-14T19:56:03.973Z (8 months ago)
- Language: C++
- Size: 72.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data sets are saved in GoogleCloud
Data sets that used researches are placed on GoogleDrive.
Please download it to current directory from follows:
https://drive.google.com/file/d/1fu5EUJJb9dyepDcUviGDE6WMSLbh2rZd/view?usp=sharing
or use script 'download.sh' which commands as follows::
```bash
FILE_ID=1fu5EUJJb9dyepDcUviGDE6WMSLbh2rZd
FILE_NAME=basic_data_sets.tar.xz
curl -sc /tmp/cookie "https://drive.google.com/uc?export=download&id=${FILE_ID}" > /dev/null
CODE="$(awk '/_warning_/ {print $NF}' /tmp/cookie)"
curl -Lb /tmp/cookie "https://drive.google.com/uc?export=download&confirm=${CODE}&id=${FILE_ID}" -o ${FILE_NAME}
```