Coder Social home page Coder Social logo

Comments (2)

nicola-decao avatar nicola-decao commented on June 4, 2024

Hi, I think the line is correct. Probably I used an odd name for the variable but self._diag_weight is a vector not a matrix of the norms for the weight normalization. That is why it is multiplied after a couple of lines. The line w = torch.exp(self._weight) * self.mask_d + self._weight * self.mask_o computes the unnormalized weight matrix and then I divide by its norm and I multiply by self._diag_weight. See

BNAF/bnaf.py

Line 195 in 1a629a2

w = self._diag_weight.exp() * w / w_squared_norm.sqrt()

from bnaf.

johnpjust avatar johnpjust commented on June 4, 2024

Agreed that it is indeed a vector and dimension-wise what i said wouldn't work, but where (prior to that line) do you actually set the diagonals of the weight matrix equal to the values actually contained in self._diag_weight so that your unnormalized weight matrix has the correct diagonal values? You initialize the diagonal weights separately in the masked_weight function (using a random_uniform distribution) from the rest of the off-diagonal weights contained in self._weight.

I may be missing something somewhere, but seems like the w_squared_norm will be wrong if you don't set the diagonals in self._weight to self._diag_weights somewhere...?

I don't program in pytorch, but in Tensorflow it should look something like this...

w = tf.multiply(tf.exp(tf.diag(self._diag_weight)), self.mask_d) + tf.multiply(self._weight, self.mask_o)

And now the w_squared_norm will be correct.

from bnaf.

Related Issues (3)

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.