|
|
@@ -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)
|
|
|
+
|