* Update imageproc crates

* Add top-p method for sampling

* Add SVTR for text recognition & bug fix
This commit is contained in:
Jamjamjon
2024-04-06 16:16:53 +08:00
committed by GitHub
parent ce9a416b71
commit a0d410b46d
48 changed files with 1621 additions and 990 deletions

View File

@ -3,6 +3,7 @@ mod clip;
mod db;
mod dinov2;
mod rtdetr;
mod svtr;
mod yolo;
pub use blip::Blip;
@ -10,4 +11,5 @@ pub use clip::Clip;
pub use db::DB;
pub use dinov2::Dinov2;
pub use rtdetr::RTDETR;
pub use svtr::SVTR;
pub use yolo::YOLO;