Last week, the Tencent AI team proposed a novel architecture called "Continuous Autoregressive Language Model (CALM)".
Compared with traditional Transformer, CALM directly reduces the calculation amount used to train large models by 44%, and the calculation amount during inference is also reduced by 34%.
Flow saving: "The core logic of CALM is to compress K consecutive tokens into a semantic vector, and directly predict the "next vector" instead of the "next token" when generating.
Assuming K=4, then the content that originally needed to be generated step by step 4 times can now be completed in just one step, allowing it to output more information in one generation and greatly improve efficiency." Full text address:
