Bob
Bob
测试代码: import paddlehub as hub import paddle import paddle.static as static model = hub.Module(name='plato-mini') input_ids = paddle.static.InputSpec([1,7],'float32','input_ids') token_type_ids = paddle.static.InputSpec([1,7],'float32','token_type_ids') position_ids = paddle.static.InputSpec([1,7],'float32','position_ids') attention_mask = paddle.static.InputSpec([1,1,7,7],'float32','attention_mask') save_path = 'checkpoint/plato-mini' #...
.pdparams和.pdmodel文件转不出来,没法用命令行,你们有的话能方便提供一下吗
My code branch is 'develop', the newest commit ID is: 2444ab53f7389e
将model_stages.py中的InPlaceABNSync导入修改为ABN就可以解决:
I need this op too, is this operator supported now?
How about .onnx model? Is there any way can convert .onnx model to gguf format automatically?
So how to convert my pytorch model to .gguf format and perform inference under the ggml inference framework? Is there any tutorial that can guide me step by step on...
> 可能是onnx-simplify版本高了,建议换一个版本 this suggestion solve my problem.