반응형
    
    
    
  [PYTHON] Gradio 웹앱 만들기

Build & share delightful machine learning apps easily
Gradio 
        https://gradio.app/             
        https://github.com/gradio-app/gradio   
"""_summary_
     # Gradio 
        https://gradio.app/             
        https://github.com/gradio-app/gradio     
        
        
Returns:
    _type_: _description_
"""
import gradio as gr
def greet(name):
    return "Hello " + name + " !"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
    demo.launch(share=True)

반응형
    
    
    
  '프로그래밍 > Python' 카테고리의 다른 글
| [python] What will be the output? (0) | 2023.03.10 | 
|---|---|
| conda에서 파이썬 가상 환경 (virtual environments) 생성하기 (0) | 2023.03.08 | 
| [PYTHON] (most likely due to a circular import) 에러 발생 할때 (0) | 2023.02.14 | 
| [PYTHON] python QRCode 만들기 (0) | 2023.02.14 | 
| [PYTHON] FLASK 플라스크 (0) | 2023.02.07 | 
