Code Monkey home page Code Monkey logo

Comments (3)

chavicoski avatar chavicoski commented on June 7, 2024

Hi,

You are not using the API correctly in this example. The LSTM accepts a vector of parent layers in the first argument, this vector can be of length one if you are providing the input data only, or it can be of length two if you provide the input data and a States layer. In this example, you are trying to pass three inputs ([word_emb, context, states_input]), which is not supported.

from eddl.

thistlillo avatar thistlillo commented on June 7, 2024

Thank you! Problem solved...

word_emb = eddl.ReduceArgMax(word_in, [0])
word_emb = eddl.RandomUniform(eddl.Embedding(word_emb, vs, 1, emb_size, mask_zeros=True, name="word_embeddings"), -0.05, +0.05)

to_lstm = eddl.Concat([word_emb, context])  # <------------ new line

lstm = eddl.LSTM([to_lstm, states_input], lstm_size, mask_zeros=True, bidirectional=False, name="lstm")
lstm.isrecurrent = False

from eddl.

chavicoski avatar chavicoski commented on June 7, 2024

Perfect!

from eddl.

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.