You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The self.dummy_tensor in class EmbeddingOptimizer is used in the method forward(), but the parameter is not explicitly used. After deleting this parameter, I found the training speed increase but the performance of model decrease. Further experiments show that the process of retrival embedding is turned into async. I wonder what is the purpose of passing the unused parameter self.dummy_tensor?
The text was updated successfully, but these errors were encountered:
The
self.dummy_tensor
in classEmbeddingOptimizer
is used in the methodforward()
, but the parameter is not explicitly used. After deleting this parameter, I found the training speed increase but the performance of model decrease. Further experiments show that the process of retrival embedding is turned into async. I wonder what is the purpose of passing the unused parameterself.dummy_tensor
?The text was updated successfully, but these errors were encountered: