Code Monkey home page Code Monkey logo

Comments (4)

fchollet avatar fchollet commented on May 2, 2024

In a Keras model, the only requirements on the input are those of the initial layer.

What does your input look like? I suspect you might be working with a 2D input. The imdb_lstm.py script in the examples folder provides a demo of how to build RNNs. You can replace the LSTM layer in that example with a SimpleRNN layer and it will work.

from keras.

patyork avatar patyork commented on May 2, 2024

This is extent of the code - no inputs defined. The compilation fails.

I haven't delved deep enough into the implementation yet, but I'm guessing Theano finding that the input will be a fmatrix, so the dimshuffle((1,0,2)) is invalid. I'm guessing this will require a reshape before-hand, depending on how the batches are being handled. Something along the line of

X = X.reshape((batch_size, X.shape[0]/batch_size, X.shape[1])).dimshuffle((1,0,2))

or

X = X.reshape((X.shape[0]/batch_size, batch_size, X.shape[1]))

I can't recall if Theano handles the second snippet intelligently, resulting in equivalent outputs from both of the above snippets.

EDIT:
Ah, a Reshape layer, perhaps?

from keras.

fchollet avatar fchollet commented on May 2, 2024

You were right, there was in fact an issue were recurrent layers had their default input shape set to matrix whereas they were expecting 3D inputs. This was not immediately apparent because the tests and example script did not implement any model where the recurrent layer came first.

The issue is fixed. Thanks for pointing this out!

from keras.

patyork avatar patyork commented on May 2, 2024

Awesome, thanks for the update.

from keras.

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.