Add florence2 model

* Add florence2-base model for all tasks

* Update annotator.rs
This commit is contained in:
Jamjamjon
2024-09-21 20:23:42 +08:00
committed by GitHub
parent 5057c20565
commit f0fd4936e8
22 changed files with 2122 additions and 108 deletions

View File

@ -5,6 +5,7 @@ mod clip;
mod db;
mod depth_anything;
mod dinov2;
mod florence2;
mod grounding_dino;
mod modnet;
mod rtmo;
@ -20,6 +21,7 @@ pub use clip::Clip;
pub use db::DB;
pub use depth_anything::DepthAnything;
pub use dinov2::Dinov2;
pub use florence2::Florence2;
pub use grounding_dino::GroundingDINO;
pub use modnet::MODNet;
pub use rtmo::RTMO;