Spaces:
Runtime error
Runtime error
jaifar530
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -118,7 +118,44 @@ def are_files_extracted(extracted_files, missing_files):
|
|
| 118 |
return True
|
| 119 |
|
| 120 |
def check_and_download_files():
|
| 121 |
-
file_names = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
missing_files = []
|
| 123 |
|
| 124 |
for file_name in file_names:
|
|
|
|
| 118 |
return True
|
| 119 |
|
| 120 |
def check_and_download_files():
|
| 121 |
+
file_names = [
|
| 122 |
+
"truncated_260_to_284.xlsx_vectorizer.pkl",
|
| 123 |
+
"not_trancated_full_paragraph.xlsx_extra_trees_model.pkl",
|
| 124 |
+
"not_trancated_full_paragraph.xlsx_ridge_model.pkl",
|
| 125 |
+
"not_trancated_full_paragraph.xlsx_vectorizer.pkl",
|
| 126 |
+
"truncated_10_to_34.xlsx_extra_trees_model.pkl",
|
| 127 |
+
"truncated_10_to_34.xlsx_ridge_model.pkl",
|
| 128 |
+
"truncated_10_to_34.xlsx_vectorizer.pkl",
|
| 129 |
+
"truncated_35_to_59.xlsx_extra_trees_model.pkl",
|
| 130 |
+
"truncated_35_to_59.xlsx_ridge_model.pkl",
|
| 131 |
+
"truncated_35_to_59.xlsx_vectorizer.pkl",
|
| 132 |
+
"truncated_60_to_84.xlsx_extra_trees_model.pkl",
|
| 133 |
+
"truncated_60_to_84.xlsx_ridge_model.pkl",
|
| 134 |
+
"truncated_60_to_84.xlsx_vectorizer.pkl",
|
| 135 |
+
"truncated_85_to_109.xlsx_extra_trees_model.pkl",
|
| 136 |
+
"truncated_85_to_109.xlsx_ridge_model.pkl",
|
| 137 |
+
"truncated_85_to_109.xlsx_vectorizer.pkl",
|
| 138 |
+
"truncated_110_to_134.xlsx_extra_trees_model.pkl",
|
| 139 |
+
"truncated_110_to_134.xlsx_ridge_model.pkl",
|
| 140 |
+
"truncated_110_to_134.xlsx_vectorizer.pkl",
|
| 141 |
+
"truncated_135_to_159.xlsx_extra_trees_model.pkl",
|
| 142 |
+
"truncated_135_to_159.xlsx_ridge_model.pkl",
|
| 143 |
+
"truncated_135_to_159.xlsx_vectorizer.pkl",
|
| 144 |
+
"truncated_160_to_184.xlsx_extra_trees_model.pkl",
|
| 145 |
+
"truncated_160_to_184.xlsx_ridge_model.pkl",
|
| 146 |
+
"truncated_160_to_184.xlsx_vectorizer.pkl",
|
| 147 |
+
"truncated_185_to_209.xlsx_extra_trees_model.pkl",
|
| 148 |
+
"truncated_185_to_209.xlsx_ridge_model.pkl",
|
| 149 |
+
"truncated_185_to_209.xlsx_vectorizer.pkl",
|
| 150 |
+
"truncated_210_to_234.xlsx_extra_trees_model.pkl",
|
| 151 |
+
"truncated_210_to_234.xlsx_ridge_model.pkl",
|
| 152 |
+
"truncated_210_to_234.xlsx_vectorizer.pkl",
|
| 153 |
+
"truncated_235_to_259.xlsx_extra_trees_model.pkl",
|
| 154 |
+
"truncated_235_to_259.xlsx_ridge_model.pkl",
|
| 155 |
+
"truncated_235_to_259.xlsx_vectorizer.pkl",
|
| 156 |
+
"truncated_260_to_284.xlsx_extra_trees_model.pkl",
|
| 157 |
+
"truncated_260_to_284.xlsx_ridge_model.pkl"
|
| 158 |
+
]
|
| 159 |
missing_files = []
|
| 160 |
|
| 161 |
for file_name in file_names:
|