Commit 6345299 1 parent 2544e82 commit 6345299 Copy full SHA for 6345299
File tree 1 file changed +32
-0
lines changed
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1
1
# instacart-recommendation
2
2
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
+ ```
You can’t perform that action at this time.
0 commit comments