Skip to content

Commit

Permalink
Add svtr_en model
Browse files Browse the repository at this point in the history
  • Loading branch information
jamjamjon committed Jan 24, 2025
1 parent 94fa832 commit bdd77a6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
1 change: 1 addition & 0 deletions examples/svtr/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ fn main() -> Result<()> {

// build model
let options = Options::ppocr_rec_v4_ch()
// ppocr_rec_v4_en()
// repsvtr_ch()
.with_model_device(args.device.as_str().try_into()?)
.with_model_dtype(args.dtype.as_str().try_into()?)
Expand Down
31 changes: 23 additions & 8 deletions src/models/svtr/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,34 +11,49 @@ impl crate::Options {
.with_padding_value(0)
.with_normalize(true)
.with_class_confs(&[0.2])
.with_vocab_txt("vocab-v1-ppocr-rec-ch.txt")
}

pub fn svtr_ch() -> Self {
Self::svtr().with_vocab_txt("vocab-v1-ppocr-rec-ch.txt")
}

pub fn svtr_en() -> Self {
Self::svtr().with_vocab_txt("vocab-v1-ppocr-rec-en.txt")
}

pub fn ppocr_rec_v3_ch() -> Self {
Self::svtr().with_model_file("ppocr-v3-ch.onnx")
Self::svtr_ch().with_model_file("ppocr-v3-ch.onnx")
}

pub fn ppocr_rec_v4_ch() -> Self {
Self::svtr().with_model_file("ppocr-v4-ch.onnx")
Self::svtr_ch().with_model_file("ppocr-v4-ch.onnx")
}

pub fn ppocr_rec_v3_en() -> Self {
Self::svtr_en().with_model_file("ppocr-v3-en.onnx")
}

pub fn ppocr_rec_v4_en() -> Self {
Self::svtr_en().with_model_file("ppocr-v4-en.onnx")
}

pub fn ppocr_rec_v4_server_ch() -> Self {
Self::svtr().with_model_file("ppocr-v4-server-ch.onnx")
Self::svtr_ch().with_model_file("ppocr-v4-server-ch.onnx")
}

pub fn svtr_v2_server_ch() -> Self {
Self::svtr().with_model_file("v2-server-ch.onnx")
Self::svtr_ch().with_model_file("v2-server-ch.onnx")
}

pub fn repsvtr_ch() -> Self {
Self::svtr().with_model_file("repsvtr-ch.onnx")
Self::svtr_ch().with_model_file("repsvtr-ch.onnx")
}

pub fn svtr_v2_teacher_ch() -> Self {
Self::svtr().with_model_file("v2-distill-teacher-ch.onnx")
Self::svtr_ch().with_model_file("v2-distill-teacher-ch.onnx")
}

pub fn svtr_v2_student_ch() -> Self {
Self::svtr().with_model_file("v2-distill-student-ch.onnx")
Self::svtr_ch().with_model_file("v2-distill-student-ch.onnx")
}
}

0 comments on commit bdd77a6

Please sign in to comment.