Spaces:
Build error
Build error
Commit
·
69a63f7
1
Parent(s):
73c7bab
think I have to specify the full path??
Browse files- cluster/plot.py +1 -1
- neural_network/plot.py +1 -1
cluster/plot.py
CHANGED
|
@@ -8,7 +8,7 @@ import os
|
|
| 8 |
matplotlib.use("Agg")
|
| 9 |
sns.set()
|
| 10 |
|
| 11 |
-
UPLOAD_FOLDER = "/plots"
|
| 12 |
|
| 13 |
|
| 14 |
def plot(clusterer, X) -> None:
|
|
|
|
| 8 |
matplotlib.use("Agg")
|
| 9 |
sns.set()
|
| 10 |
|
| 11 |
+
UPLOAD_FOLDER = os.path + "/plots"
|
| 12 |
|
| 13 |
|
| 14 |
def plot(clusterer, X) -> None:
|
neural_network/plot.py
CHANGED
|
@@ -7,7 +7,7 @@ import os
|
|
| 7 |
|
| 8 |
matplotlib.use("Agg")
|
| 9 |
|
| 10 |
-
UPLOAD_FOLDER = "/plots"
|
| 11 |
|
| 12 |
|
| 13 |
def plot(model) -> None:
|
|
|
|
| 7 |
|
| 8 |
matplotlib.use("Agg")
|
| 9 |
|
| 10 |
+
UPLOAD_FOLDER = os.path + "/plots"
|
| 11 |
|
| 12 |
|
| 13 |
def plot(model) -> None:
|