Including Extra Input Tensors for Dot Product Calculation? #714
Unanswered
FredrikMyklebust
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm working on a regression problem where I have a set of features with the shape
(n, 15)
and an additional set of input tensors with the shape(n, 10, 9)
. My goal is to find a vector of 10 coefficients that can be dot-producted with the(n,10, 9)
tensors to produce a target vector of length(n, 9)
.Since i can only fit X, and Y into the model I need to create a custom loss function that:
(n, 10, 9)
input tensors.(n,10, 9)
tensors using a dot product to generate the target vector of 9.Could you provide guidance or an example on how to implement this custom loss function within the framework?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions