Closed Srikarthikeyan4006 closed 3 years ago
Total elements mismatch expected: 1 elements for shape: [1, 1] but found 2
output decleration var output = List(2).reshape([1,1]);
@Srikarthikeyan4006 What is the target shape that you are trying to achieve? If your target shape is [a, b, c] then you should be doing. var output = List(a*b*c).reshape([a, b, c]);
var output = List(a*b*c).reshape([a, b, c]);
Total elements mismatch expected: 1 elements for shape: [1, 1] but found 2
output decleration var output = List(2).reshape([1,1]);