wucong.lyb 3 лет назад
Родитель
Сommit
8cd507414b

+ 17 - 0
egs_modelscope/lm/speech_transformer_lm_zh-cn-common-vocab8404-pytorch/infer.py

@@ -0,0 +1,17 @@
+
+
+##################text二进制数据#####################
+inputs = "hello 大 家 好 呀"
+
+from modelscope.pipelines import pipeline
+from modelscope.utils.constant import Tasks
+
+inference_pipline = pipeline(
+    task=Tasks.language_model,
+    model='damo/speech_transformer_lm_zh-cn-common-vocab8404-pytorch',
+    output_dir="./tmp/"
+)
+
+rec_result = inference_pipline(text_in=inputs)
+print(rec_result)
+