Skip to content

Commit 6345299

Browse files
committed
updated README.md
1 parent 2544e82 commit 6345299

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
11
# instacart-recommendation
22
Recommendation models using Instacart Orders.
3+
4+
### Quick Start
5+
Clone this repository:
6+
```
7+
git clone https://github.com/terryyylim/instacart-recommendation.git
8+
```
9+
10+
Change to instacart-recommendation directory
11+
```
12+
cd instacart-recommendation
13+
```
14+
15+
Create and activate a virtual environment (run `pip3 install virtualenv` first if you don't have Python virtualenv installed):
16+
```
17+
virtualenv -p python3 <desired-path>
18+
source <desired-path>/bin/activate
19+
```
20+
21+
Install the requirements:
22+
```
23+
pip install -r requirements.txt
24+
```
25+
26+
Change to recommendations directory
27+
```
28+
cd recommendations
29+
```
30+
31+
### Testing Dataset & Model Creation
32+
```
33+
python run.py
34+
```

0 commit comments

Comments
 (0)