Giter Site home page Giter Site logo

TypeError: Failed to convert object of type <class 'list'> to Tensor. Contents: [1, Dimension(None)]. Consider casting elements to a supported type. about attention_keras HOT 9 CLOSED

thushv89 avatar thushv89 commented on July 23, 2024
TypeError: Failed to convert object of type to Tensor. Contents: [1, Dimension(None)]. Consider casting elements to a supported type.

from attention_keras.

Comments (9)

habom2310 avatar habom2310 commented on July 23, 2024 2

I also got that problem, I change the shape in the Input and not use None
encoder_inputs = Input(shape=(None, n_inputs)) to encoder_inputs = Input(shape=(max_enc_seq_length, n_inputs)

from attention_keras.

MaukWM avatar MaukWM commented on July 23, 2024 1

I was getting the same error. I fixed this by changing my imports from

from keras.layers import Input, GRU, Dense, Concatenate, TimeDistributed from keras.models import Model

to

from tensorflow.python.keras.layers import Input, GRU, Dense, Concatenate, TimeDistributed from tensorflow.python.keras.models import Model

The issue seems to come from the fact that the keras layers do not give the full context of the shape to the Attention layer. Your model could not convert the list to a Tensor because there was a None type within (which is supposed to be a part of a shape).

from attention_keras.

MaukWM avatar MaukWM commented on July 23, 2024 1

I took another look and the solution @habom2310 proposes should fix the problem.

from attention_keras.

JiweiZh avatar JiweiZh commented on July 23, 2024

I was getting the same error. I fixed this by changing my imports from

from keras.layers import Input, GRU, Dense, Concatenate, TimeDistributed from keras.models import Model

to

from tensorflow.python.keras.layers import Input, GRU, Dense, Concatenate, TimeDistributed from tensorflow.python.keras.models import Model

The issue seems to come from the fact that the keras layers do not give the full context of the shape to the Attention layer. Your model could not convert the list to a Tensor because there was a None type within (which is supposed to be a part of a shape).

@MaukWM
I changed all my imports by using tensorflow.python.keras.layers but I got the same error.......

from attention_keras.

JiweiZh avatar JiweiZh commented on July 23, 2024

@MaukWM @habom2310 thx guys, that works!

from attention_keras.

thushv89 avatar thushv89 commented on July 23, 2024

@MaukWM , @habom2310 and @Redtea0 ,

Apologies about the delay and lack of following up.

Yes, as some of you pointed out. You can only leave batch_size as None. All the other dimensions (i.e. sequence lenth and n_inputs needs to be fixed. This is because there are several reshaping steps performed during attention computation. And having more than one dimension set to None, it is impossible to compute the original shape from the reshaped input.

Hope that clears things up.

from attention_keras.

amanagr avatar amanagr commented on July 23, 2024

Using both solutions together worked for me.

from attention_keras.

theAB316 avatar theAB316 commented on July 23, 2024

As mentioned by @amanagr, using both solutions worked for me.

  1. Adding a constant value instead on None
  2. Changing the Keras related imports like,from keras.layers import to from tensorflow.keras.layers import

from attention_keras.

Tam678 avatar Tam678 commented on July 23, 2024

@thushv89 ,hello,i met the same error.I try to solve the problem via solutions above.But how to add a constant value instead demension(3)?

from attention_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.