Open perceptronnn opened 7 years ago
I'm having the same issue. Any luck fixing this?
Edit: I managed to solve this. A blank line in my file was the cause of this.
ValueError Traceback (most recent call last)
@Pratyusha1796
Change x == None
in training/train.py
to
x.any() == None
or x.all() == None
.
I'm having the same issue. Any luck fixing this?
Edit: I managed to solve this. A blank line in my file was the cause of this.
Hi @TitusTom : Can you please help me with which file did you fix to fix this issue?
I am getting following error , can anyone please help ,
vectors = encoder.encode(['love is good'])
TypeError Traceback (most recent call last)
When I tried to encode a list of 20 sentences, it was successful but then now I am trying to encode a list of 283007 sentences, named
data1
, and now I'm getting value error while runningvec_d1 = encoder.encode(data1)
as follow:Could anyone please help me out? Thanks.