Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,12 +30,12 @@ UPLOAD_FOLDER = "uploads/"
|
|
| 30 |
DATA_FOLDER = "data/"
|
| 31 |
|
| 32 |
# Define the model directory (ensuring correct path formatting)
|
| 33 |
-
MODEL_DIR = r
|
| 34 |
-
LABEL_ENOCDER_DIR = r'
|
| 35 |
|
| 36 |
# Define the output file path
|
| 37 |
-
PRED_OUTPUT_FILE = "data/pred_output.csv"
|
| 38 |
-
CLASS_OUTPUT_FILE = "data/class_output.csv"
|
| 39 |
|
| 40 |
ALLOWED_EXTENSIONS = {'csv', 'xlsx'}
|
| 41 |
|
|
|
|
| 30 |
DATA_FOLDER = "data/"
|
| 31 |
|
| 32 |
# Define the model directory (ensuring correct path formatting)
|
| 33 |
+
MODEL_DIR = r"./Model"
|
| 34 |
+
LABEL_ENOCDER_DIR = r'./Label_encoders'
|
| 35 |
|
| 36 |
# Define the output file path
|
| 37 |
+
PRED_OUTPUT_FILE = "./data/pred_output.csv"
|
| 38 |
+
CLASS_OUTPUT_FILE = "./data/class_output.csv"
|
| 39 |
|
| 40 |
ALLOWED_EXTENSIONS = {'csv', 'xlsx'}
|
| 41 |
|