Spaces:
Runtime error
Runtime error
Update app/src/constant.py
Browse files- app/src/constant.py +11 -11
app/src/constant.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
-
from pathlib import Path
|
| 2 |
-
|
| 3 |
-
vit_model_path=Path(
|
| 4 |
-
vit_mlb_path=Path(
|
| 5 |
-
|
| 6 |
-
vgg_model_path=Path(
|
| 7 |
-
vgg_mlb_path=Path(
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
layout_model_path=Path(
|
|
|
|
| 1 |
+
from pathlib import Path
|
| 2 |
+
|
| 3 |
+
vit_model_path=Path("artifacts/model/VIT_model/model.pth")
|
| 4 |
+
vit_mlb_path=Path("artifacts/model/VIT_model/mlb.joblib")
|
| 5 |
+
|
| 6 |
+
vgg_model_path=Path("artifacts/model/vgg_model/model.keras")
|
| 7 |
+
vgg_mlb_path=Path("artifacts/model/vgg_model/mlb.joblib")
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
layout_model_path=Path("artifacts/model/layout_model/model.pth")
|