Bootstrap

谷歌-BERT-第四步:模型部署

1 需求

需求1:基于gradio实现大模型的WEB UI交互界面 


2 接口


3 示例

import gradio as gr
from transformers import *

classifier = pipeline("text-classification", model="./model", tokenizer="./model")

gr.Interface.from_pipeline(classifier).launch()


4 参考资料

ImportError: DLL load failed while importing _pydantic_core: 找不到指定的程序对应解决方案_dll load failed pydantic-CSDN博客

交互式AI技术与模型部署:bert-base-chinese模型交互式问答界面设置_bert-base-chinese 问答-CSDN博客

;