From d54ffe7e1219ca60851f9305a82dc3ca1d617cb1 Mon Sep 17 00:00:00 2001 From: Mohamed Sarwat Date: Tue, 12 Nov 2013 13:11:07 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e75908f..dbe744d 100644 --- a/README.md +++ b/README.md @@ -84,15 +84,15 @@ When you issue a query such as this, the only interesting data will come from th Currently, the available recommendation algorithms that could be passed to the USING clause are the following: -ItemCosCF: Item-Item Collaborative Filtering using Cosine Similarity measure. +```ItemCosCF``` Item-Item Collaborative Filtering using Cosine Similarity measure. -ItemPearCF: Item-Item Collaborative Filtering using Pearson Correlation Similarity measure. +```ItemPearCF``` Item-Item Collaborative Filtering using Pearson Correlation Similarity measure. -UserCosCF: User-User Collaborative Filtering using Cosine Similarity measure. +```UserCosCF``` User-User Collaborative Filtering using Cosine Similarity measure. -UserPearCF: User-User Collaborative Filtering using Cosine Similarity measure. +```UserPearCF``` User-User Collaborative Filtering using Cosine Similarity measure. -SVD: Simon Funk Singular Value Decomposition. +```SVD``` Simon Funk Singular Value Decomposition. Note that if you do not specify which user(s) you want recommendations for, it will generate recommendations for all users, which can take an extremely long time to finish. From c796dc89d935c91d4fd54700ddd8e7c40a2d1d09 Mon Sep 17 00:00:00 2001 From: Mohamed Sarwat Date: Thu, 14 Nov 2013 10:27:11 -0600 Subject: [PATCH 2/3] Update README --- PostgreSQL/README | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PostgreSQL/README b/PostgreSQL/README index 49d55af..2590be9 100644 --- a/PostgreSQL/README +++ b/PostgreSQL/README @@ -1,3 +1,7 @@ + +RecDB Recommender Enginer +========================= + PostgreSQL Database Management System ===================================== From aa6d8740e7bae5e8e77ec3ebeecc174fb13de3a7 Mon Sep 17 00:00:00 2001 From: Mohamed Sarwat Date: Thu, 14 Nov 2013 10:30:45 -0600 Subject: [PATCH 3/3] Update Dataset Loading Script --- PostgreSQL/scripts/create_samples.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PostgreSQL/scripts/create_samples.pl b/PostgreSQL/scripts/create_samples.pl index b33a73e..a450cad 100644 --- a/PostgreSQL/scripts/create_samples.pl +++ b/PostgreSQL/scripts/create_samples.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl +#Dataset Loading Script + use Cwd; my $pwd = getcwd;