Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ def _prepare_predictor_dir() -> str:
|
|
| 60 |
return str(predictor_root)
|
| 61 |
|
| 62 |
PREDICTOR_DIR = _prepare_predictor_dir()
|
| 63 |
-
PREDICTOR = autogluon.tabular.TabularPredictor.load(PREDICTOR_DIR)
|
| 64 |
|
| 65 |
# Class-to-label mapper
|
| 66 |
def _human_label(c):
|
|
|
|
| 60 |
return str(predictor_root)
|
| 61 |
|
| 62 |
PREDICTOR_DIR = _prepare_predictor_dir()
|
| 63 |
+
PREDICTOR = autogluon.tabular.TabularPredictor.load(PREDICTOR_DIR, require_py_version_match=False)
|
| 64 |
|
| 65 |
# Class-to-label mapper
|
| 66 |
def _human_label(c):
|