Coder Social home page Coder Social logo

Comments (4)

Simcs avatar Simcs commented on June 4, 2024 6

Thank you for the answer!
After following @realgump 's suggestion, I could load the ViViT parameters normally.

For those who want to know the detailed instructions, I did the following steps.

  1. import ViViT model from original repo
from video transformer import ViViT
  1. set weights_from param to 'kinetics' when initializing ViViT model
    pretrain_pth = './vivit_model.pth'
    num_frames = num_frames * 2
    frame_interval = frame_interval // 2
    model = ViViT(num_frames=num_frames,
                  img_size=224,
                  patch_size=16,
                  embed_dims=768,
                  in_channels=3,
                  attention_type='fact_encoder',
                  return_cls_token=True,
                  weights_from='kinetics',
                  pretrain_pth=pretrain_pth)
  1. remove the remaining initialization code
# comment out init_from_pretrain_() method
cls_head = ClassificationHead(num_classes=num_class, in_channels=768)
# msg_trans = init_from_pretrain_(model, pretrain_pth, init_module='transformer')
msg_cls = init_from_pretrain_(cls_head, pretrain_pth, init_module='cls_head')

Thanks again for the quick response!

from videotransformer-pytorch.

realgump avatar realgump commented on June 4, 2024

Have you set weights_from? I have met the same error and fixed it after set weights_from.

from videotransformer-pytorch.

mx-mark avatar mx-mark commented on June 4, 2024

@Simcs Sorry for that, it should be the reason as @realgump said where we have updated the weights initialization function. But we have not keep path with it in notebook.

from videotransformer-pytorch.

zz0126 avatar zz0126 commented on June 4, 2024

我想问问您成功加载vivit-b预训练权重了吗?

from videotransformer-pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.