Spaces:
Sleeping
Sleeping
chore: create data directory
Browse files
app.py
CHANGED
|
@@ -56,6 +56,9 @@ ALL_DIRECTORIES = [
|
|
| 56 |
# Load test dataset
|
| 57 |
|
| 58 |
print("Load data ...")
|
|
|
|
|
|
|
|
|
|
| 59 |
UNIQUE_FOUNDERS = load_pickle_from_zip("data/unique_founders.pkl")
|
| 60 |
OTHER_TEST_FOUNDERS = load_pickle_from_zip("data/hf_test_founders.pkl")
|
| 61 |
OTHER_TRAIN_FOUNDERS = load_pickle_from_zip("data/hf_train_founders.pkl")
|
|
|
|
| 56 |
# Load test dataset
|
| 57 |
|
| 58 |
print("Load data ...")
|
| 59 |
+
|
| 60 |
+
os.makedirs("data", exist_ok=True)
|
| 61 |
+
|
| 62 |
UNIQUE_FOUNDERS = load_pickle_from_zip("data/unique_founders.pkl")
|
| 63 |
OTHER_TEST_FOUNDERS = load_pickle_from_zip("data/hf_test_founders.pkl")
|
| 64 |
OTHER_TRAIN_FOUNDERS = load_pickle_from_zip("data/hf_train_founders.pkl")
|