Git Product home page Git Product logo

Comments (3)

aymericdamien avatar aymericdamien commented on April 28, 2024

EDIT: Added an example to use RNNs with variable seq length in TensorFlow: Here

Hi, for me their example is just working fine! You can provide different values for early_stop, the timestep you want to stop at. Maybe make sure you are using tensorflow 0.6.0.

import tensorflow as tf
from tensorflow.models.rnn import rnn
from tensorflow.models.rnn.rnn_cell import BasicLSTMCell, LSTMCell
import numpy as np

if __name__ == '__main__':
  np.random.seed(1)
  size = 100
  batch_size= 100
  n_steps = 45
  seq_width = 50

  initializer = tf.random_uniform_initializer(-1,1)

  seq_input = tf.placeholder(tf.float32, [n_steps, batch_size, seq_width])
    #sequence we will provide at runtime  
  early_stop = tf.placeholder(tf.int32)
    #what timestep we want to stop at

  inputs = [tf.reshape(i, (batch_size, seq_width)) for i in tf.split(0, n_steps, seq_input)]
    #inputs for rnn needs to be a list, each item being a timestep. 
    #we need to split our input into each timestep, and reshape it because split keeps dims by default  

  cell = LSTMCell(size, seq_width, initializer=initializer)
  initial_state = cell.zero_state(batch_size, tf.float32)
  outputs, states = rnn.rnn(cell, inputs, initial_state=initial_state, sequence_length=early_stop)
    #set up lstm

  iop = tf.initialize_all_variables()
    #create initialize op, this needs to be run by the session!
  session = tf.Session()
  session.run(iop)

  for e_s in [10, 100, 200, 250]:
    feed = {early_stop:e_s, seq_input:np.random.rand(n_steps, batch_size, seq_width).astype('float32')}
    outs = session.run(outputs, feed_dict=feed)
    print len(outs)

from tensorflow-examples.

monikkinom avatar monikkinom commented on April 28, 2024

Have a look at https://danijar.com/variable-sequence-lengths-in-tensorflow/

from tensorflow-examples.

bstriner avatar bstriner commented on April 28, 2024

Hi! For a faster implementation using CuDNN, check this out: tensorflow/tensorflow#22308

from tensorflow-examples.

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.