dream Catcher
dream Catcher
在 predictor = paddle_infer.create_predictor(config) 前面加上代码 ``` config.switch_ir_optim(False) config.enable_use_gpu(100, 0) ```
使用这种方式可以解决你的问题 ``` jieba.posseg.initialize("user_dict.txt") # 手动初始化(可选) sentence = '理想西溪金座在哪个位置。 for pair in jieba.posseg.cut(sentence): print(pair) ```
Thank you for your help. I know ASR is an autoregressive model。After testing, it looks like a cumulative score. How can I calculate the score for each token  For...