Streamlit
Streamlit • A faster way to build and share data apps
Streamlit is an open-source Python framework for data scientists and AI/ML engineers to deliver interactive data apps – in only a few lines of code.
streamlit.io
- Python을 기반으로한 오픈소스 라이브러리
- Data Science, Machine Learning Model 등을 별도의 프론트엔드 지식 없이 시각화 및 공유할 수 있다.
Streamlit 설치 및 앱 실행
- pip 명령어로 간단한 설치 가능
pip install streamlit
- stream run test.py로 간단히 구동 가능
# test.py
import streamlit as st
st.title("Streamlit Test!")
streamlit run test.py
'ML_DL > MUJAKJUNG (무작정 시리즈)' 카테고리의 다른 글
[Llama3 파인튜닝] 코드 업데이트 및 실험 2 (0) | 2024.12.25 |
---|---|
[Llama3 파인튜닝] 파인튜닝 코드 작성 및 실험 1 (2) | 2024.12.18 |
[OpenAI] OpenAI API 발급 및 request (0) | 2024.08.21 |
MUJAKJUNG - 개와 고양이 분류 (0) | 2022.11.29 |
무작정 시리즈의 시작 (0) | 2022.10.06 |