Giter Site home page Giter Site logo

Fold & Eager about fold HOT 3 CLOSED

MaksymDel avatar MaksymDel commented on June 17, 2024 1
Fold & Eager

from fold.

Comments (3)

delesley avatar delesley commented on June 17, 2024 9

from fold.

Jabberwockyll avatar Jabberwockyll commented on June 17, 2024

Hi @delesley,

I'm working on a problem where each of my training examples is of a different size (?xn) (specifically, each example is a protein composed of many amino acid residues with n features each). My network learns latent feature representations for each residue in an example (graph convolution), then downsamples each example to a common size, before final dense layer(s).

In vanilla TF, I can either:

  1. Stack all examples along the common dimension. In this I case, I have to separate them before the downsampling step. I can do this with tf.split(), but it requires me to always use the same size minibatch. This is annoying when testing, as the size of my test set isn't divisible by my minibatch size.
  2. Pad all examples with zeros to the size of the largest example, then construct a 3-d tensor. My examples vary widely in size, so this option is very memory-hungry and considerably slower.

It looks like I could use map blocks in TF Fold to operate on each example or use TF Eager to deconstruct the stacked minibatch (strategy 1) into a variable-length list. This is correct right?

So, my question is, would it still be better for me to go with Eager? It seems like Fold could be more efficient in this case, right?

from fold.

delesley avatar delesley commented on June 17, 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.