file path fixing
Browse files
app.py
CHANGED
|
@@ -85,7 +85,7 @@ def infer(image):
|
|
| 85 |
|
| 86 |
device = torch.device("cpu")
|
| 87 |
|
| 88 |
-
predict_config_path = "/
|
| 89 |
|
| 90 |
with open(predict_config_path, "r") as f:
|
| 91 |
predict_config = OmegaConf.create(yaml.safe_load(f))
|
|
|
|
| 85 |
|
| 86 |
device = torch.device("cpu")
|
| 87 |
|
| 88 |
+
predict_config_path = "./configs/prediction/default.yaml"
|
| 89 |
|
| 90 |
with open(predict_config_path, "r") as f:
|
| 91 |
predict_config = OmegaConf.create(yaml.safe_load(f))
|