This is a project for ML bootcamp by HSE: exploratory data analysis, modeling and building a service.
Selected topic: flight satisfaction. Dataset: here
Flight_satisfaction.ipynb
: Colab notebook with exploratory data analysis, modelling and interpretationsapp.py
: Streamlit app filemodel.py
: script that transforms data, trains and runs the modelrequirements.txt
: package requirements files/data
folder has:clients.csv
: copy of datasetimportances.csv
: features sorted by their importancemodel_weights.mw
: pretrained model- and png visualizations for EDA
Streamlit service is available at rateyourflight.streamlit.app via Streamlit Cloud
To run locally, clone the repo and do the following:
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ streamlit run app.py
The app will be available at http://localhost:8501