-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid Argument Error #9
Comments
Exact error and the code line For complete model training |
first check whether [[childs_path1[k], childs_path2[k]] for k in range(s, end)] has the same dimension as [5, 2, 20, 20] and also the data type |
Thank you Shanu for the response. Now I get this error. Kindly help |
please try using python 3. Just use printing the shapes of this tensors, then debug the code |
Hey shanu, why should there be a change in dimensions of the tensors, if i am using the same data as yours @arunzz were you able to solve the problem? |
Can you please post the error or for which tensors dimension problem is occurring? |
Yes
Use python 3
It worked.
No changes to any dimensions.
But the label encoding also has to be passed into relation encoder. That part is missing i think
… On Jun 15, 2018, at 11:33 AM, Shanu Kumar ***@***.***> wrote:
Can you please post the error or for which tensors dimension problem is occurring?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@arunzz can you share some more insights, actually i am currently learning about it meanwhile i am working on this. It will be a great help. or maybe you can share your version. |
Hi
Shanu is our guru :) He wrote the entire thing.
Regards
Arun
…On Fri, Jun 15, 2018 at 2:51 PM, NeverInAsh ***@***.***> wrote:
@arunzz <https://github.com/arunzz> can you share some more insights,
actually i am currently learning about it meanwhile i am working on this.
It will be a great help. or maybe you can share your version.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AUJLxe8vgjyeDesR7_i7C6nubFghBQFSks5t83ySgaJpZM4ThR3G>
.
|
It worked, thanks shanu :) |
@arunzz @NeverInAsh I'm wondering what you guys did to fix the error? I am running python 3 |
Just python3
Initialize global variables after loading glove embeddings.
… On Jul 2, 2018, at 7:59 PM, enmatics ***@***.***> wrote:
@arunzz @NeverInAsh I'm wondering what you guys did to fix the error? I am running python 3
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
@arunzz I have meet the same problem. I am running python 3, but the problem still exist. Can you attached the worked model3v2 source file? |
@arunzz which version of tensorlfow and python you use? |
@arunzz when I don't init glove embedding in your source file, it will exist the error: when I init glove embedding, it will exist the error: |
@arunzz When I use tensorflow 1.12.0, it will lead "ArithmeticOptimize" error. Then I replaced the version of tensorflow 1.8.0. and worked. But it will occur "concat" error and "hidden_layer" error. Then I replaced the version of tensorflow 1.10.0. Your source file finally worked. |
@arunzz in model3v2 |
Hi Shanu
I tried Model3v1 for 10 samples. Accordingly I generated train_paths and when i run, I get the below error.
PLease let know.
I have attached the source file too -
model3v1.txt
File "", line 1, in
[elided 1 identical lines from previous traceback]
File "/usr/lib/python2.7/idlelib/run.py", line 324, in runcode
exec code in self.locals
File "/home/arunkumar/Downloads/Relation-Classification-master/model3v1.py", line 422, in
s_seq.get_shape(), tf.TensorShape([None, 100])])
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/control_flow_ops.py", line 3096, in while_loop
result = loop_context.BuildLoop(cond, body, loop_vars, shape_invariants)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/control_flow_ops.py", line 2874, in BuildLoop
pred, body, original_loop_vars, loop_vars, shape_invariants)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/control_flow_ops.py", line 2814, in _BuildLoop
body_result = body(*packed_vars_for_body)
File "/home/arunkumar/Downloads/Relation-Classification-master/model3v1.py", line 415, in matmul_hl
temp = tf.tanh(tf.matmul(input_seq[j], W) + b)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/array_ops.py", line 588, in _slice_helper
name=name)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/array_ops.py", line 754, in strided_slice
shrink_axis_mask=shrink_axis_mask)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/gen_array_ops.py", line 5397, in strided_slice
name=name)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/framework/op_def_library.py", line 787, in _apply_op_helper
op_def=op_def)
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/framework/ops.py", line 3271, in create_op
op_def=op_def)
InvalidArgumentError (see above for traceback): slice index 1 of dimension 0 out of bounds.
[[Node: gradients_1/hidden_layer_seq/while_3/strided_slice_grad/StridedSliceGrad = StridedSliceGrad[Index=DT_INT32, T=DT_FLOAT, begin_mask=0, ellipsis_mask=0, end_mask=0, new_axis_mask=0, shrink_axis_mask=1, _device="/job:localhost/replica:0/task:0/device:CPU:0"](gradients_1/hidden_layer_seq/while_3/strided_slice_grad/StridedSliceGrad/StackPopV2, gradients_1/hidden_layer_seq/while_3/strided_slice_grad/StridedSliceGrad/StackPopV2_1, gradients_1/hidden_layer_seq/while_3/strided_slice_grad/StridedSliceGrad/StackPopV2_2, gradients_1/hidden_layer_seq/while_3/strided_slice_grad/StridedSliceGrad/Const_3, gradients_1/hidden_layer_seq/while_3/MatMul_grad/tuple/control_dependency)]]
The text was updated successfully, but these errors were encountered: