Giter VIP home page Giter VIP logo

Comments (4)

fcampelo avatar fcampelo commented on June 11, 2024

Comments:

ws is just multiplying the matrixes, without subtracting the min

My mistake. I replaced W * Y by W * (Y - minP) in row 43 of scalarization_ws() to fix the problem.

wt is actually ws, without the Tchebycheff norm

The Tchebycheff norm is there! W * (Y - minP + eps) does the Hadamard (i.e., element-wise) product, and applying max by rows (with the apply(..., MARGIN = 1, FUN = max) does the trick (since the Tchebycheff norm is equivalent to returning the largest value of the resulting row vectors).

awt is missing

Indeed

double check pbi calculations (seems to be missing a norm division in D2)

My mistake again. I replaced (Y - minP - D1 * W) ^ 2 by (Y - minP - D1 * W / NormW) ^ 2 to fix the problem.

all scalarization functions seem to be missing the min step which is included in the paper.

No. This is dealt with in the population update step. ;-)

from moeadr.

caranha avatar caranha commented on June 11, 2024

Hmmm, I forgot to protect the AWT from div/0. Will try to sneak that in today.

from moeadr.

caranha avatar caranha commented on June 11, 2024

HmHMmm.... The calculation of rho in AWT (page 4) requires the inverse of the weights, which means we need to deal with weights with zero values.

If we just add an epson to the zero values, the resulting Rho will be quite extreme. Example:

Weight Matrix:
0 0.25 0.25 0.25 0.25
0 0.25 0.25 0.25 0.25
0 0.5 0.125 0.25 0.125
0 0.125 0.125 0.25 0.5

Rho:
1 0 0 0 0
1 0 0 0 0
1 0 0 0 0
1 0 0 0 0

Is this acceptable?

from moeadr.

fcampelo avatar fcampelo commented on June 11, 2024

I believe it is. I'll consult Lucas about it, but from my understanding that should be the expected behavior - it certainly the is if we use an asymptotic argument.

from moeadr.

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.