feat: implement VGG13, VGG16 and VGG19 (#1211)

* feat: implement VGG13, VGG16 and VGG19

* Cosmetic fixes.

* More cosmetic tweaks + avoid re-loading the weights on each final layer.

---------

Co-authored-by: Laurent <laurent.mazare@gmail.com>
This commit is contained in:
drbh
2023-10-29 02:10:23 -04:00
committed by GitHub
parent 498c50348c
commit dece37c6f4
4 changed files with 345 additions and 0 deletions

View File

@ -28,6 +28,7 @@ pub mod segment_anything;
pub mod stable_diffusion;
pub mod stable_lm;
pub mod t5;
pub mod vgg;
pub mod vit;
pub mod whisper;
pub mod with_tracing;