Open Pranjal-Gupta2 opened 2 years ago
I am facing the same error. It seems "len(repeated_labels) ==(filtered_instances_nos filtered_instances_nos)" is not reasonable, can you explain why "#ensure that the vector sizes are of filtered_instances_nos filtered_instances_nos"?
Hi, I am facing the same error too. Have you solved this problem?
Hi, I am facing the same error too. Have you solved this problem?
I find a solution to run this code. 1) delete the assertion command in line 115. 2) change x.view(filtered_instances_nos, filtered_instances_nos) to x.view(filtered_instances_nos, len(output_embedding_mu)) in line 129 - line 131.
Hi, I am facing the same error too. Have you solved this problem?
I find a solution to run this code.
- delete the assertion command in line 115.
- change x.view(filtered_instances_nos, filtered_instances_nos) to x.view(filtered_instances_nos, len(output_embedding_mu)) in line 129 - line 131.
It works for me, thank you for your solution.
Hi, I am facing the same error too. Have you solved this problem?
I find a solution to run this code.
- delete the assertion command in line 115.
- change x.view(filtered_instances_nos, filtered_instances_nos) to x.view(filtered_instances_nos, len(output_embedding_mu)) in line 129 - line 131.
Thank you for your solution. It is works.
Hi, I am trying to run your code but it is giving me this error:
Steps to reproduce:
process_fewnerd.sh
script## training with toy evaluation for sanity check
section inexec_container.sh
scriptexec_container.sh
script with theintra 0 5 5
as command line argumentsCan you please help me in resolving this error? Thanks!