0

I have used vit_b32 and vit_b16 models in vit-keras. What are the other available models and their input image sizes in vit-keras? Are there any combined models (ResNet + Vit) available? Thanks

Preetom Saha Arko
  • 2,588
  • 4
  • 21
  • 37

1 Answers1

0

The other two options are vit_l16 and vit_l32. Each model is created using the build_model method, and the image size is checked in the build_model method. image_size must be a multiple of patch_size (patch_size is 16 for vit_b16 or vit_l16 and 32 for vit_b32 or vit_l32).

satojkovic
  • 689
  • 1
  • 4
  • 15