Giter VIP home page Giter VIP logo

Comments (11)

samuelbroscheit avatar samuelbroscheit commented on August 16, 2024

What is the reasoning? They are used twice hence the penalty is computed for each factor matrix of each mode, which does matter in two cases: 1. when the penalty that is computed is weighted 2. when the penelty weight comes from a shared lookup_embedder config setting, such that we cannot learn/tune the scaling.

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

I can see arguments for both ways of doing it.

  1. Keep as before: Do it like everywhere else (all related work). More intuitive/natural. Better performance.

  2. Change is in this commit: No special treatment of the shared_embedders case. Anything else?

The weights are not a big deal: can be done both ways: in (1) by simply passing along a list of ids (as suggested in #39), in (2) by calling penalty twice (for s, for o). (BTW: currently, the penalty function in KgeModel does not correctly pass along ids.)

from kge.

samuelbroscheit avatar samuelbroscheit commented on August 16, 2024

currently, the penalty function in KgeModel does not correctly pass along ids.

How is that?

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

currently, the penalty function in KgeModel does not correctly pass along ids.

How is that?

All fine, I must have been looking at outdated code.

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

The current implementation of these penalty terms for lookup_embedders uses embed:

parameters = self.embed(kwargs['batch']['triples'][:, kwargs['slot']])

This may be flawed since this will run dropout (but shouldn't).

from kge.

samuelbroscheit avatar samuelbroscheit commented on August 16, 2024

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

Looks fine now. The only suggested change I still have is the API change from #39:

I suggest to change self.get_s_embedder().penalty(slot=0, **kwargs) to self.get_s_embedder().penalty(penality_ids=triples[slot], **kwargs) or so. This way, the embedder can be used later on when the weights do not come from triples.

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

The change above is still open.

I also think that it would be helpful (for understanding the model) if the penalty terms were named (e.g., entity_embedder.l2) and traced/printed both with and without the regularization weight being applied.

from kge.

samuelbroscheit avatar samuelbroscheit commented on August 16, 2024

Is this currently being worked on already?

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

Yes, by @Nzteb

from kge.

rgemulla avatar rgemulla commented on August 16, 2024

Closed with #101

from kge.

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.