在编译compile_model时出现the model has 1 inputs, but given 2 sources types.,请问一下,编译时的inputs是来自哪里,是配置文件里的
def get_deploy_input(): 函数吗,问题是现在的函数里是一样的类型
def get_deploy_input():
inputs = {
"img": torch.randn((6, 3, 320, 640)),
"pos_embed": torch.randn((1, 256,60, 20)),
}
return inputs



