Hello, I'm trying to do a concat of 3 tensors usin...
# datascience
a
Hello, I'm trying to do a concat of 3 tensors using MultiK but the third gets added as zeros 🤔. I'm probably doing something wrong here, any pointers is appreciated. Thanks!
i
@Pavel Gorgulov
p
It looks like a bug, I’ll check it and fix it. To concatenate three or more arrays, use this method:
Copy code
<http://c1.cat|c1.cat>(listOf(c2, c3), axis = 1)
It works
a
Thanks @Pavel Gorgulov, I will use your suggestion.