VideoSwin
VideoSwin copied to clipboard
Keras Implementation of Video Swin Transformers for 3D Video Modeling
Hi I am trying to load model "TFVideoSwinB_SSV2_K400_P244_W1677_32x224.h5" using tensorflow.keras.models.load_model; however, I am getting the following error: ValueError: No model config found in the file at . Kindly advise.
**Short Description** Currently it supports only channel last format, i.e. `(bs, depth, height, width, channel)`. To make it compatible with `torch` ecosystem, it would be convenient to support channel last...
**Short Description** Keras 3 introduces new preset format. ```python def vswin_tiny_backbone(): backbone=VideoSwinBackbone( input_shape=(32, 224, 224, 3), embed_dim=96, depths=[2, 2, 6, 2], num_heads=[3, 6, 12, 24], include_rescaling=False, ) backbone.load_weights( 'videoswin_tiny_kinetics400.weights.h5' )...