How to Build a Machine Learning Hyperparameter Optimization App | Streamlit #14
Launch the web app:
To recreate this web app on your own computer, do the following.
Firstly, we will create a conda environment called mlopt
conda create -n mlopt python=3.7.9
Secondly, we will login to the mlopt environement
conda activate mlopt
Download requirements.txt file
wget https://raw.githubusercontent.com/dataprofessor/ml-opt-app/main/requirements.txt
Pip install libraries
pip install -r requirements.txt
Download and unzip contents from https://github.com/dataprofessor/ml-opt-app/archive/main.zip
streamlit run app.py