InitialState9

Results 2 issues of InitialState9

what's the checkpoint file? it is not from tensorlow eithwe from pytorch, anyone can help? Thanks

import numpy as np import MNN # 加载模型 interpreter = MNN.Interpreter(r"\encoder.mnn") session = interpreter.createSession() # 获取输入张量的信息 input0 = interpreter.getSessionInput(session, "src") # 假设模型有名为 'input0' 的第一个输入 input1 = interpreter.getSessionInput(session, "src_mask") # 假设模型有名为...

question