ModelScope使用入门(1)

ModelScope使用入门

https://modelscope.cn

ModelScope Library

from modelscope.pipelines import pipeline
word_segmentation = pipeline('word-segmentation')
input_str = '今天天气不错,适合出去游玩'
print(word_segmentation(input_str))

你可能感兴趣的:(ModelScope,python)