update fmt

This commit is contained in:
jhqxxx
2026-02-14 16:46:09 +08:00
parent 28f8fb6c1b
commit 9dfe60cb53
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ fn messy_test() -> Result<()> {
&emo_matrix_path,
"feat2/data/0",
Shape::from_dims(&[73, 1280]),
&device,
device,
)?;
println!("t_emo: {}", t_emo);
let skp_matrix_path = model_path + "/feat1.pt";
@@ -33,7 +33,7 @@ fn messy_test() -> Result<()> {
&skp_matrix_path,
"feat1/data/0",
Shape::from_dims(&[73, 192]),
&device,
device,
)?;
println!("t_skp: {}", t_skp);
// let file = File::open(emo_matrix_path)?;
+4 -4
View File
@@ -15,7 +15,7 @@ fn test_model_type_classification() {
// Image models: RMBG2_0, VoxCPM, VoxCPM1_5
// This test documents the expected model type classification
let llm_models = vec![
let llm_models = [
WhichModel::MiniCPM4_0_5B,
WhichModel::Qwen2_5vl3B,
WhichModel::Qwen2_5vl7B,
@@ -26,20 +26,20 @@ fn test_model_type_classification() {
WhichModel::Qwen3vl32B,
];
let ocr_models = vec![
let ocr_models = [
WhichModel::DeepSeekOCR,
WhichModel::HunyuanOCR,
WhichModel::PaddleOCRVL,
];
let asr_models = vec![
let asr_models = [
WhichModel::Qwen3ASR0_6B,
WhichModel::Qwen3ASR1_7B,
WhichModel::GlmASRNano2512,
WhichModel::FunASRNano2512,
];
let image_models = vec![
let image_models = [
WhichModel::RMBG2_0,
WhichModel::VoxCPM,
WhichModel::VoxCPM1_5,