Giter VIP home page Giter VIP logo

Comments (1)

GewelsJI avatar GewelsJI commented on September 2, 2024

@forestlin7
感谢您的关注

IVPS-TrainSet代表的是Image和Video数据集混合后的数据集,用于预训练阶段。由于Video数据和标注的获取往往需要很高的代价,这个阶段在VOS领域中同样应用广泛且是必要的,有助于提升网络学习到更多的视觉信息表征,防止网络的过拟合。

整个参数更新过程中需要保证测试集合是unseen的就可以了,数据集层面我们没有过多的处理,除了数据增强以外:

trsf_main = Compose_imglabel([
        Resize(config.size[0], config.size[1]),
        Random_crop_Resize(15),
        Random_horizontal_flip(0.5),
        toTensor(),
        Normalize(statistics["mean"], statistics["std"])
    ])

注意:两个步骤需要紧密配合,预训练阶段需要训练直至收敛,视频数据集微调阶段也是如此。

祝好!

from pns-net.

Related Issues (19)

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.