Update process.py
Browse files- process.py +1 -1
process.py
CHANGED
|
@@ -11,7 +11,7 @@ urls = {
|
|
| 11 |
'test': 'https://home.ttic.edu/~kgimpel/comsense_resources/test.txt.gz',
|
| 12 |
'train': "https://home.ttic.edu/~kgimpel/comsense_resources/train600k.txt.gz"
|
| 13 |
}
|
| 14 |
-
|
| 15 |
|
| 16 |
|
| 17 |
def wget(url, cache_dir: str = './cache'):
|
|
|
|
| 11 |
'test': 'https://home.ttic.edu/~kgimpel/comsense_resources/test.txt.gz',
|
| 12 |
'train': "https://home.ttic.edu/~kgimpel/comsense_resources/train600k.txt.gz"
|
| 13 |
}
|
| 14 |
+
os.makedirs("dataset", exist_ok=True)
|
| 15 |
|
| 16 |
|
| 17 |
def wget(url, cache_dir: str = './cache'):
|