IT/AI
1. Gradio 튜토리얼
athere
2025. 6. 27. 12:58
반응형
Gradio와 Streamlit 튜토리얼은 공식 사이트와 Hugging Face, GitHub, YouTube 등을 통해 손쉽게 실습할 수 있습니다. 다음은 각 플랫폼별 학습 경로입니다:
✅ 1. Gradio 튜토리얼
📍 공식 사이트
- Gradio Docs (기본부터 배포까지)
📍 추천 튜토리얼 시리즈
- Hugging Face – Gradio Basics (한글 문서 없음, 영어)
- YouTube:
🧪 실습 추천
import gradio as gr
def greet(name):
return f"Hello {name}!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()
✅ 2. Streamlit 튜토리얼
📍 공식 사이트
📍 추천 강의
🧪 실습 추천
import streamlit as st
st.title("Hello Streamlit")
name = st.text_input("What's your name?")
if name:
st.write(f"Hello, {name}!")
- 실행: streamlit run app.py
🚀 추가 추천: Hugging Face Spaces 실전 배포
📍 Hugging Face 튜토리얼
- Gradio용: https://huggingface.co/docs/hub/spaces
- Streamlit용: https://huggingface.co/docs/hub/spaces-streamlit
실습 예시 Repo
원하시면 "지니픽 입사 전 실습용 튜토리얼 순서표"도 구성해드릴 수 있습니다. 해볼까요?
반응형