From 7ff84ceda25aaf0b985faadd34a7666905b52590 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 28 May 2019 09:23:23 +0200 Subject: [PATCH] Remove double colons in installation.md --- docs/installation.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 227af0a..82fac36 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -2,33 +2,33 @@ [Optional] Before installing the code, you can create a virtual environment so the installed packages don't get mixed with the ones in your system. To do it, -execute the following commands in your terminal:: +execute the following commands in your terminal: python3 -m venv trvrecsys2019 source trvrecsys2019/bin/activate This will create a folder in the current directory which will contain the Python executable files. -To install the package and its dependencies use:: +To install the package and its dependencies use: pip install git+https://github.com/recsyschallenge/2019.git#egg=trvrecsys2019 ### Baseline algorithm -To execute the code for the baseline algorithm, run:: +To execute the code for the baseline algorithm, run: rec-popular --data-path= ### Verify submission -To execute the code to verify the submission format, run:: +To execute the code to verify the submission format, run: verify-submission --data-path= --submission-file --test-file ### Score submission -To execute the code to score the submission, run:: +To execute the code to score the submission, run: score-submission --data-path= --submission-file --ground-truth-file -Note that there will be no ground truth file provided. The script rather illustrates the usage and calculation of the error metric and can be used for testing purposes on holdout data created by the participants. \ No newline at end of file +Note that there will be no ground truth file provided. The script rather illustrates the usage and calculation of the error metric and can be used for testing purposes on holdout data created by the participants.