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 ===================================== 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; 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.