Save inference parity implementation and evaluation harness

This commit is contained in:
Georg Bauer
2026-09-10 22:45:59 +02:00
parent b99ce2aa10
commit 02db0968ae
198 changed files with 111205 additions and 586 deletions
+2
View File
@@ -321,6 +321,7 @@ impl Executor {
Self::DeepSeek(executor) => executor.save_checkpoint(path, tag, progress),
Self::Glm(executor) => executor.save_checkpoint(path, tag, progress),
Self::Qwen(executor) => executor.save_checkpoint(path, tag, progress),
Self::QwenMtplx(executor) => executor.save_checkpoint(path, tag, progress),
}
}
@@ -333,6 +334,7 @@ impl Executor {
Self::DeepSeek(executor) => executor.load_checkpoint(path, progress),
Self::Glm(executor) => executor.load_checkpoint(path, progress),
Self::Qwen(executor) => executor.load_checkpoint(path, progress),
Self::QwenMtplx(executor) => executor.load_checkpoint(path, progress),
}
}
}