To recreate this web app on your own computer, do the following.
Firstly, we will create a conda environment called bioactivity
conda create -n bioactivity python=3.7.9
Secondly, we will login to the bioactivity environment
conda activate bioactivity
Download requirements.txt file
Pip install libraries
pip install -r requirements.txt
### Generating the PKL file
The machine learning model used in this web app will firstly have to be generated by successfully running the included Jupyter notebook [bioactivity_prediction_app.ipynb](https://github.com/dataprofessor/bioactivity-prediction-app/blob/main/bioactivity_prediction_app.ipynb). Upon successfully running all code cells, a pickled model called acetylcholinesterase_model.pkl will be generated.
### Launch the app
streamlit run app.py