Skip to content
Snippets Groups Projects
Commit ab60cd34 authored by Erick Lavoie's avatar Erick Lavoie
Browse files

Added download instructions

parent 8466f072
No related branches found
No related tags found
No related merge requests found
......@@ -6,17 +6,37 @@
Should be available by default on the IC Cluster. Otherwise, refer to each project installation instructions.
# Dataset
Download the ````ml-100k.zip```` dataset in the ````data/```` folder:
````
> mkdir data
> cd data
> wget http://files.grouplens.org/datasets/movielens/ml-100k.zip
````
Check the integrity of the file with (it should give the same number as below):
````
> md5 -q ml-100k.zip
0e33842e24a9c977be4e0107933c0723
````
Unzip:
````
> unzip ml-100k.zip
````
# Usage
## Compute predictions
````
sbt 'runMain predict.Predictor'
> sbt 'runMain predict.Predictor'
````
## Compute recommendations
````
sbt 'runMain recommend.Recommender'
> sbt 'runMain recommend.Recommender'
````
## Package for submission
......@@ -25,7 +45,7 @@ Update the ````name````, ````maintainer```` fields of ````build.sbt````, with th
Package your application:
````
sbt 'show dist'
> sbt 'show dist'
````
You should should see an output like:
......@@ -33,7 +53,7 @@ You should should see an output like:
[info] Your package is ready in [...]/target/universal/m1_your_id-1.0.zip
````
Combine this package, along side your report and any other files mentioned in the Milestone description (see Section ````Deliverables````). Submit to the TA for grading.
Combine this package, alongside your report and any other files mentioned in the Milestone description (see Section ````Deliverables````). Submit to the TA for grading.
# References
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment