Hello, I saw in the paper

but in the code, we see at
|
self.linear_q = nn.Sequential(nn.Linear(in_features, 64, False), nn.Linear(64, in_features, False)) |
how this saves compute as attention is still performed at d=4096 instead of r=64?
Also, did you try just concatenating the aux info to the Llm inputs along with the image features and the prompt? we see the answer from the repo but did you actually train this way?
Hello, I saw in the paper

but in the code, we see at
MoAI/moai/arch/expert_module.py
Line 143 in a7728a8
how this saves compute as attention is still performed at d=4096 instead of r=64?
Also, did you try just concatenating the aux info to the Llm inputs along with the image features and the prompt? we see the answer from the repo but did you actually train this way?