File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ # ml-auto-app
2+
3+ # Demo
4+
5+ Launch the web app:
6+
7+ [ ![ Streamlit App] ( https://static.streamlit.io/badges/streamlit_badge_black_white.svg )] ( https://share.streamlit.io/dataprofessor/ml-auto-app/main/app.py )
8+
9+ # Reproducing this web app
10+ To recreate this web app on your own computer, do the following.
11+
12+ ### Create conda environment
13+ Firstly, we will create a conda environment called * lazypredict*
14+ ```
15+ conda create -n lazypredict python=3.7.9
16+ ```
17+ Secondly, we will login to the * lazypredict* environement
18+ ```
19+ conda activate lazypredict
20+ ```
21+ ### Install prerequisite libraries
22+
23+ Download requirements.txt file
24+
25+ ```
26+ wget https://raw.githubusercontent.com/dataprofessor/ml-auto-app/main/requirements.txt
27+
28+ ```
29+
30+ Pip install libraries
31+ ```
32+ pip install -r requirements.txt
33+ ```
34+ ### Download and unzip contents from GitHub repo
35+
36+ Download and unzip contents from https://github.com/dataprofessor/ml-auto-app/archive/main.zip
37+
38+ ### Launch the app
39+
40+ ```
41+ streamlit run app.py
42+ ```
You can’t perform that action at this time.
0 commit comments