반응형
streamlit?
: 기계학습, 데이터 사이언스 프로젝트를 위한 오픈소스 앱 프레임워크, python으로 데이터 분석을 위한 웹앱을 쉽게 만들어줌
설치법?
anaconda에 가상환경 설정
anaconda prompt에 아래 입력
> pip install streamlit
> streamlit hello
아래와 같이 각종 데모를 볼 수 있음
VSCode에서 사용
import streamlit as st
import pandas as pd
def main():
st.title('Hello World!')
df = pd.DataFrame({
'first column': [1, 2, 3, 4],
'second column': [10, 20, 30, 40]
})
st.write(df)
if __name__ == '__main__':
main()
터미널에 streamlit run 파이썬파일명 입력
http://localhost:8501/ 에 웹페이지 생성
반응형
'인공지능' 카테고리의 다른 글
Gradio: Real Time Speech Recognition (0) | 2024.12.09 |
---|---|
How to Use Gradio (0) | 2024.12.09 |
OpenAI Billing + Langchain LLM AI Service (0) | 2024.11.14 |
Feature Extraction and Performance Comparison for ANN-based Speaker Identification Systems (0) | 2024.11.13 |
Ollama Local LLM 실행 (0) | 2024.11.13 |
댓글