Giter VIP home page Giter VIP logo

Comments (1)

glample avatar glample commented on July 29, 2024

Hi,

Yes so the problem is that PyTorch distributed doesn't let you perform updates on a module if only some of the parameters are updated. Now if for instance you have a model M that contains the encoder E and the decoder D, and that your optimizer contains the parameters of M, then you cannot perform a MLM update on the encoder only, as the decoder parameters are not going to be updated.

So what I did is that I used an optimizer for E, and one for D. So now if I train on MLM I update on E only, and if I train on MT I call both the E and D optimizers.

The problem if you have fp16 on top of that is that the apex library requires to have a single optimizer. Or at least I couldn't find a simple way to use fp16 with 2 optimizers. Maybe this could be useful though: https://github.com/NVIDIA/apex/tree/master/apex/amp#multiple-optimizers-or-backward-passes

So currently, what I suggest is either

  1. Modify the code a bit to have a single optimizer for both E and D. It is probably the simplest solution, but then you will not be able to train the encoder if you don't train the decoder, so you will need to have MT / BT steps only, no language modeling training steps on the encoder.
    or
  2. Adapt the code to support 2 optimizers with apex. Probably not that hard, I would have to check.

from xlm.

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.