Fix: default to step_1000 checkpoint
Browse files- arc_engine_v30_fixed.py +1 -1
arc_engine_v30_fixed.py
CHANGED
|
@@ -638,7 +638,7 @@ else:
|
|
| 638 |
MODEL_PATH = _HF_MODEL_ID
|
| 639 |
|
| 640 |
# Dense adapter - use latest available
|
| 641 |
-
DENSE_CHECKPOINT = os.path.join(ROOT, "dense_checkpoints_v2/
|
| 642 |
if not os.path.exists(DENSE_CHECKPOINT):
|
| 643 |
DENSE_CHECKPOINT = os.path.join(ROOT, "dense_checkpoints_v2/step_100")
|
| 644 |
if not os.path.exists(DENSE_CHECKPOINT):
|
|
|
|
| 638 |
MODEL_PATH = _HF_MODEL_ID
|
| 639 |
|
| 640 |
# Dense adapter - use latest available
|
| 641 |
+
DENSE_CHECKPOINT = os.path.join(ROOT, "dense_checkpoints_v2/step_1000")
|
| 642 |
if not os.path.exists(DENSE_CHECKPOINT):
|
| 643 |
DENSE_CHECKPOINT = os.path.join(ROOT, "dense_checkpoints_v2/step_100")
|
| 644 |
if not os.path.exists(DENSE_CHECKPOINT):
|