Giter VIP home page Giter VIP logo

Comments (3)

delesley avatar delesley commented on August 12, 2024

from fold.

AlexKuhnle avatar AlexKuhnle commented on August 12, 2024

Thanks for the quick response!

Regarding the scalar input, I think this is fine. Since TD is batched, I assume it takes the (10,) array as a batch of 10 0-dim scalars - and in fact, the exception only occurs in the tf.add operation. Moreover, in line feed_dict[y] = np.arange(10) I provide a value for y.

After your comment on size mismatch, I instead fed a single-value vector to y: feed_dict[y] = np.arange(1). Then it behaves as expected and adds this y value (0 in this case) to the batch x. In further investigation I added the line x = tf.Print(x, (x, y)) to the fixed_plus function, and got the unexpected output

[1 1 1...][0]
[][0]
[array([ 1.,  1.,  1.,  1.,  1.,  1.,  1.,  1.,  1.,  1.], dtype=float32)]

and when feeding the previous 10 values for y I got before the exception occurs

[1 1 1...][0 1 2...]
[][0 1 2...]
Traceback (most recent call last):
... rest of the exception ...

I am surprised by that, because it seems that there is a second call with an empty tensor for x, besides the ones-vector I give as argument. In particular, the addition works as expected in the first run (when adding it to the printed values). Is that expected behavior?

Please let me know if any of the steps I explained is unclear. Regarding the application I have in mind, to not be confusing: I would ideally like to have a situation where each instance in a batch has some inputs which are static, and some which are dynamic, i.e. they are somehow processed by TD blocks where the static values of the respective instance are potentially referred to. Obviously, one can just feed all inputs to the TD blocks and forward the static values (in addition to using them), but that would not be very elegant.

from fold.

delesley avatar delesley commented on August 12, 2024

from fold.

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.