Spaces:
Build error
Build error
Commit
·
8f10c28
1
Parent(s):
69a63f7
think I was right??
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 = os.
|
| 12 |
|
| 13 |
|
| 14 |
def plot(clusterer, X) -> None:
|
|
|
|
| 8 |
matplotlib.use("Agg")
|
| 9 |
sns.set()
|
| 10 |
|
| 11 |
+
UPLOAD_FOLDER = os.getcwd() + "/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 = os.
|
| 11 |
|
| 12 |
|
| 13 |
def plot(model) -> None:
|
|
|
|
| 7 |
|
| 8 |
matplotlib.use("Agg")
|
| 9 |
|
| 10 |
+
UPLOAD_FOLDER = os.getcwd() + "/plots"
|
| 11 |
|
| 12 |
|
| 13 |
def plot(model) -> None:
|