GithubHelp home page GithubHelp logo

Comments (2)

lkreiskoether avatar lkreiskoether commented on August 12, 2024

Hi again,

do we have any updates regarding this problem? In this context I thought that one possible fix for that could be to just change to a op for the loss calculation which expects class probabilities as input. So something like this could work for that:

with graph.as_default():
  self.y_input = tf.placeholder(tf.int64, shape=[None])

  self.pred = tf.expand_dims(self.ends['prediction'][0], 0)
  self.loss = tf.reduce_mean(
      tf.keras.losses.categorical_crossentropy(
          y_true=tf.one_hot(
              self.y_input,
              self.ends['prediction'].get_shape().as_list()[1]),
          y_pred=self.pred))
self._make_gradient_tensors()

What do you think?

Thanks in advance!

from tcav.

BeenKim avatar BeenKim commented on August 12, 2024

Hello,

There isn't much deep reasons for doing this logit vs class probability. Since the one is just normalized version of the other, I think either would get you pretty much the same answer. :) Please reopen if see further issues.

from tcav.

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.