ModelScope StartUp
使用 ModelScope 创空间部署简单的应用。详细流程参见:创空间创建与搭建
创空间支持多种输入输出,如文字、图片、音频及视频,还可以支持modelscope官方模型。参考:Gradio SDK示例
示例
一个图片输入输出代码 app.py 内容如下:
1 |
|
这里的图片对象可以是内存中的数据,也可以是filepath,存储在服务器的临时文件供后端加载(文件名不需要定义,image_mod 函数输入参数 image 即为文件路径)。除此之外,type 还可以是 numpy,供AI模型读取。
type: The format the image is converted before being passed into the prediction function. “numpy” converts the image to a numpy array with shape (height, width, 3) and values from 0 to 255, “pil” converts the image to a PIL image object, “filepath” passes a str path to a temporary file containing the image. If the image is SVG, the type is ignored and the filepath of the SVG is returned. To support animated GIFs in input, the type should be set to “filepath” or “pil”.
调试
首先下载创空间的 git 仓库,并安装依赖:
1 |
|
运行
1 |
|
浏览器访问 LocalHost:
OpenCV 示例说明
Cal-area 这是一个计算PCB上元器件面积比例的示例,使用OpenCV读取图片,先识别PCB的边缘,计算PCB的面积,再计算每个元器件的面积,最后计算所有元器件的面积比例。