当前位置:   article > 正文

AIGC之gradio系列学习教程(一)

AIGC之gradio系列学习教程(一)

主题:本篇即为入门,后续将会从函数和使用场景介绍。

Gradio 是一个开源 Python 包,可让快速为机器学习模型、API 或任何任意 Python 函数构建演示或 Web 应用程序。然后,您可以使用 Gradio 的内置共享功能在短短几秒钟内共享演示或 Web 应用程序的链接无需 JavaScript、CSS 或网络托管能力!

准备:

1. python 3.8+

2.安装:

pip install gradio

示例1:

  1. import gradio as gr
  2. def greet(name, intensity):
  3. return "Hello, " + name + "!" * int(intensity)
  4. demo = gr.Interface(
  5. fn=greet,
  6. inputs=["text", "slider"],
  7. outputs=["text"],
  8. )
  9. demo.launch()

运行如下:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/359058
推荐阅读
相关标签
  

闽ICP备14008679号