This commit is contained in:
Tatsuhiko Akiyama 2025-07-10 21:00:42 +09:00
parent 2c30e06f20
commit 37f1ad9408
2 changed files with 8 additions and 2 deletions

View file

@ -91,7 +91,7 @@ progressive_stages:
dataset_config: dataset_config:
# Mixture-of-Thoughts specific settings # Mixture-of-Thoughts specific settings
streaming: true # Use streaming for large dataset streaming: true # Use streaming for large dataset
max_samples: 30000 # Limit samples for faster training max_samples: 300000 # Limit samples for faster training
split: "train" split: "train"
evaluation: evaluation:

View file

@ -61,6 +61,12 @@
pytestCheckPhase = "echo 'Skipping tests'"; pytestCheckPhase = "echo 'Skipping tests'";
pythonImportsCheck = []; # Disable import checks pythonImportsCheck = []; # Disable import checks
}); });
curl-cffi = python-super.curl-cffi.overrideAttrs (oldAttrs: {
doCheck = false;
doInstallCheck = false;
pytestCheckPhase = "echo 'Skipping tests'";
pythonImportsCheck = []; # Disable import checks
});
}; };
}; };
}) })