Spaces:
Sleeping
Sleeping
Commit ·
9423e26
1
Parent(s): ab70132
perf: reduce CV folds to 3 for faster benchmarking
Browse files- webapp/benchmark.py +1 -1
webapp/benchmark.py
CHANGED
|
@@ -27,7 +27,7 @@ os.environ.setdefault("AGREE_TABPFN_LICENSE", "1")
|
|
| 27 |
# Allow importing model wrappers from the code directory
|
| 28 |
sys.path.insert(0, str(Path(__file__).parent.parent / "code"))
|
| 29 |
|
| 30 |
-
N_FOLDS = int(os.getenv("N_FOLDS", "
|
| 31 |
RAND = int(os.getenv("RANDOM_STATE", "42"))
|
| 32 |
HF_TOKEN = os.getenv("HUGGING_FACE_HUB_TOKEN", "")
|
| 33 |
|
|
|
|
| 27 |
# Allow importing model wrappers from the code directory
|
| 28 |
sys.path.insert(0, str(Path(__file__).parent.parent / "code"))
|
| 29 |
|
| 30 |
+
N_FOLDS = int(os.getenv("N_FOLDS", "3"))
|
| 31 |
RAND = int(os.getenv("RANDOM_STATE", "42"))
|
| 32 |
HF_TOKEN = os.getenv("HUGGING_FACE_HUB_TOKEN", "")
|
| 33 |
|