How to use it in ACT?
#9
by
Tryle
- opened
Thank you very much for your work. When I tried to integrate your model into ACT, I encountered issues. It seems that the model cannot be integrated well with ACT. I used FAST to convert my actions data (8, 100, 14) into tokens (8, n), but the second dimension of the tokens varies and cannot be converted into a tensor. Even if I pad them, they do not meet the input standards(8,100,14) of ACT. Am I using the wrong method?
The input of vallina ACT are actions, not action tokens. So FAST can not be directly used here. However, you can pre-define an embedding table, and use the converted token ids by FAST to look up the table. Then you can get a input meeting the standard (B, H, D) input.