Skip to content

Commit 563a498

Browse files
Create README.md
1 parent 8bac9b2 commit 563a498

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

app/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+
```

0 commit comments

Comments
 (0)