Coder Social home page Coder Social logo

Comments (5)

tilakrayal avatar tilakrayal commented on May 3, 2024

Triage Notes:
I was able to reproduce the issue on tensorflow v2.15, v2.16 and tf-nightly. Kindly find the gist of it here.

The tf.custom_gradients are working as expected when z = bar(x, y) & z = bar(x=x, y=y) and it was failing with z = bar(x, y=y) by throwing the error.

from tensorflow.

ctargon avatar ctargon commented on May 3, 2024

@tilakrayal when running your gist, the gradient is NOT as expected when z = bar(x=x, y=y). the expected output should be the custom gradient (which is [[-2000], [-4000], [-6000]] for dz/dx), given the function is wrapped in tf.custom_gradient, but instead returns the gradient produced by autograd (which is [[-0.66], [-1.33], [-2.]]).

The issue is that the custom gradient is silently ignored when using keyword arguments for every parameter.

from tensorflow.

cantonios avatar cantonios commented on May 3, 2024

The decorator @tf.custom_gradient uses the input to deduce which arguments are differentiable inputs, and which arguments are non-differentiable parameters to the function. Positional arguments are considered differentiable, keyword arguments non-differentiable.

When passing all keyword arguments, the custom gradient is silently ignored and defaults to the autograd.

It thinks your function has no differentiable inputs, so simply forwards the upstream gradient and continues the computation.

When passing a mix of positional and keyword arguments, an exception is thrown.

Because you're returning multiple gradients when only the one non-keyword input is considered a differentiable input.


As for what to do: we will not change the behavior of the custom_gradient decorator. You can update the documentation with a PR if you like to reflect this behavior.

from tensorflow.

github-actions avatar github-actions commented on May 3, 2024

This issue is stale because it has been open for 7 days with no activity. It will be closed if no further activity occurs. Thank you.

from tensorflow.

google-ml-butler avatar google-ml-butler commented on May 3, 2024

Are you satisfied with the resolution of your issue?
Yes
No

from tensorflow.

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.