Spaces:
Sleeping
Sleeping
fix(model): set quality dropout zero
Browse filesCo-authored-by: Codex <noreply@openai.com>
tests/test_model_profiles.py
CHANGED
|
@@ -8,6 +8,7 @@ def test_model_profiles_include_quality_and_sponsor_paths():
|
|
| 8 |
assert quality.base_model_id == "Qwen/Qwen3-30B-A3B-Instruct-2507"
|
| 9 |
assert quality.sft_max_length == 4096
|
| 10 |
assert quality.modal_train_gpu == "H200"
|
|
|
|
| 11 |
assert "q_proj" in quality.lora_target_modules
|
| 12 |
assert sponsor.base_model_id == "openbmb/MiniCPM4.1-8B"
|
| 13 |
assert sponsor.hf_model_repo_id.endswith("minicpm4-1-8b-lora")
|
|
|
|
| 8 |
assert quality.base_model_id == "Qwen/Qwen3-30B-A3B-Instruct-2507"
|
| 9 |
assert quality.sft_max_length == 4096
|
| 10 |
assert quality.modal_train_gpu == "H200"
|
| 11 |
+
assert quality.lora_dropout == 0.0
|
| 12 |
assert "q_proj" in quality.lora_target_modules
|
| 13 |
assert sponsor.base_model_id == "openbmb/MiniCPM4.1-8B"
|
| 14 |
assert sponsor.hf_model_repo_id.endswith("minicpm4-1-8b-lora")
|