Giter VIP home page Giter VIP logo

Comments (2)

aconneau avatar aconneau commented on July 29, 2024

Hi,

thanks for your message! :)
It would be indeed very useful to get the full set of parameters in the "forward" of the notebook. We'll work on this. We also plan to incorporate some visualizations of the attentions and the parameters in the notebook. In the meantime, a hacky way to get these embeddings is to modify this part of the code:

https://github.com/facebookresearch/XLM/blob/master/src/model/transformer.py#L368-L404

so that it returns "self.embeddings(x)" after line 368.

Hope this helps! :)
Alexis

from xlm.

glample avatar glample commented on July 29, 2024

Yes, copying this part of the code is probably the easiest way: https://github.com/facebookresearch/XLM/blob/master/src/model/transformer.py#L367-L374

Just adding a new cell into the notebook with:

# embeddings
tensor = model.embeddings(word_ids)
tensor = tensor + model.position_embeddings(positions).expand_as(tensor)
if langs is not None:
    tensor = tensor + model.lang_embeddings(langs)
tensor = model.layer_norm_emb(tensor)
tensor = F.dropout(tensor, p=model.dropout, training=model.training)
tensor *= mask.unsqueeze(-1).to(tensor.dtype)

should do the trick.

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.