index
1. data scientist life cycle
2. install streamlit
3. edit config file
4. run .py file
1. data scientist life cycle
데이터 사이언스를 한다면 프로젝트 단위로 위 사이클에서 크게 벗어나지 않을 것임.
그 중에서 Model Deployment 부분에 대한 글임
2. install streamlit
- streamlit은 머신러닝 및 데이터 사이언스를 위한 맞춤 웹 앱을 쉽게 만들고 공유할 수 있는 오픈소스 python 라이브러리임.
- pip install 가능
pip install streamlit
3. edit config file
예제 참고
예제 1. https://www.geeksforgeeks.org/deploy-a-machine-learning-model-using-streamlit-library/
예제 2-1. https://heartbeat.fritz.ai/deploy-a-machine-learning-model-as-a-web-application-part-1-a1c1ff624f7a
예제 2-2. https://github.com/opeyemibami/wine-quality-prediction-web-app
4. run .py file
작성된 .py file을 실행시켜준다
streamlit run your_file_name.py
내부 포트 8501을 기본값으로 web-app이 실행된다