Spaces:
Sleeping
Sleeping
Commit ·
25949d3
1
Parent(s): b57d760
update lemmatizer path
Browse files
app.py
CHANGED
|
@@ -14,8 +14,8 @@ os.makedirs(SINATOOLS_DIR, exist_ok=True)
|
|
| 14 |
dest_path = os.path.join(SINATOOLS_DIR)
|
| 15 |
|
| 16 |
# Download explicitly to the expected path
|
| 17 |
-
|
| 18 |
-
download_folder_from_hf("TymaaHammouda/testing_lemmatizer_model", 'Lemmatizer_model')
|
| 19 |
download_file(url='https://sina.birzeit.edu/five_grams.pickle', dest_path=dest_path)
|
| 20 |
download_file(url='https://sina.birzeit.edu/four_grams.pickle', dest_path=dest_path)
|
| 21 |
download_file(url='https://sina.birzeit.edu/three_grams.pickle', dest_path=dest_path)
|
|
|
|
| 14 |
dest_path = os.path.join(SINATOOLS_DIR)
|
| 15 |
|
| 16 |
# Download explicitly to the expected path
|
| 17 |
+
download_file(url="https://sina.birzeit.edu/lemmas_dic.pickle", dest_path=dest_path)
|
| 18 |
+
#download_folder_from_hf("TymaaHammouda/testing_lemmatizer_model", 'Lemmatizer_model')
|
| 19 |
download_file(url='https://sina.birzeit.edu/five_grams.pickle', dest_path=dest_path)
|
| 20 |
download_file(url='https://sina.birzeit.edu/four_grams.pickle', dest_path=dest_path)
|
| 21 |
download_file(url='https://sina.birzeit.edu/three_grams.pickle', dest_path=dest_path)
|