简介: DashScope灵积模型服务以模型为中心,致力于面向AI应用开发者提供品类丰富、数量众多的模型选择,并为其提供开箱即用、能力卓越、成本经济的模型服务API。DashScope灵积模型服务依托达摩院等机构的优质模型,在阿里云基础设施之上构建。灵积服务4.11号开通公测,目前提供Paraformer语音识别API能力,后续通义千问也将通过该服务对外提供API能力。本文演示如何快速通过Python SDK接入服务,助力快速Mass开发。
阿里云灵积平台官网:DashScope灵积模型服务 https://dashscope.aliyun.com/
一、开通灵积服务
控制台 地址,按照提示登录后即可正常开通。
二、安装SDK并调用服务
- 2.1 安装SDK
pip install dashscope
注意:python需要3.7+
- 2.2 Code Sample
# For prerequisites running the following sample, visit https://help.aliyun.com/document_detail/611472.html
import dashscope
from urllib import request
import json
dashscope.api_key='ReaNkZ*************F4CD99C11ED9B2EB2ED6BC5D65D'
task_response=dashscope.audio.asr.Transcription.async_call(
model='paraformer-v1',
file_urls=['https://*****.oss-cn-shanghai.aliyuncs.com/%E5%A5%94%E8%B7%91.mp3']
)
transcription_response=dashscope.audio.asr.Transcription.wait(task=task_response.output.task_id)
transcription_url=transcription_response.output['results'][0]['transcription_url']
transcription_results=json.loads(request.urlopen(transcription_url).read().decode('utf8'))
print(json.dumps(transcription_results, indent=4, ensure_ascii=False))
从测试的效果来看,模型整体的精度还是很高的,用户可以基于具体场景提供model即可。
文章来源:https://www.toymoban.com/news/detail-684441.html
更多参考
安装DashScope SDK
Paraformer语音识别API详情文章来源地址https://www.toymoban.com/news/detail-684441.html
到了这里,关于浅析阿里云灵积(平台)模型服务的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!