Code Monkey home page Code Monkey logo

Comments (2)

shamanez avatar shamanez commented on May 31, 2024
  1. Well there are many ways to do the contrastive loss. What we follow is more or less this. Pretty much what the CLIP authors used and almost all these recent embedding transformer authors such as E5.

  2. Well we need to somehow combine the doc-scores with the next word prediction right ? why would you think adding the log prob won't do any difference ?
    I took the equation from here.

from dalm.

metric-space avatar metric-space commented on May 31, 2024

Hey @shamanez

Thank you for the replies.

re:1 of course, there are many ways to contrastive losses. I'll read through the linked paper

re:2 I think the theoretical aspect of adding the logprobs make sense. My question was based around the runtime values I see, seem to be adding the same increment to all values of answer_log_prob, to put my question explicitly

# shape: [102, 50257]
answer_log_prob = logprobs_logits[query_token_length - 1 :, :]

#  addition of shapes: [102,50257] + [1,1]   
marginalized_prob_sum = answer_log_prob + doc_logprobs

I think my seemingly faulty reasoning reasoned that adding the same value to all values of the distribution seems off. I'll have to work my way out of this, as I still don't understand what this means , in my head I'd expect the following

#  addition of shapes: [102,50257] + [1,50257]   
marginalized_prob_sum = answer_log_prob + doc_logprobs

It is very likely it's just my inexperience speaking. I'll work on this

I guess with those two question being answered. I think that's the end of my questions with the loss part and rest of the code flow for now

from dalm.

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.