Skip to content

Commit cb51db4

Browse files
author
Jim Avery
committed
2 parents 74a0c3e + aa6d874 commit cb51db4

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

PostgreSQL/README

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2+
RecDB Recommender Enginer
3+
=========================
4+
15
PostgreSQL Database Management System
26
=====================================
37

PostgreSQL/scripts/create_samples.pl

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/perl
22

3+
#Dataset Loading Script
4+
35
use Cwd;
46
my $pwd = getcwd;
57

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ When you issue a query such as this, the only interesting data will come from th
8484

8585
Currently, the available recommendation algorithms that could be passed to the USING clause are the following:
8686

87-
ItemCosCF: Item-Item Collaborative Filtering using Cosine Similarity measure.
87+
```ItemCosCF``` Item-Item Collaborative Filtering using Cosine Similarity measure.
8888

89-
ItemPearCF: Item-Item Collaborative Filtering using Pearson Correlation Similarity measure.
89+
```ItemPearCF``` Item-Item Collaborative Filtering using Pearson Correlation Similarity measure.
9090

91-
UserCosCF: User-User Collaborative Filtering using Cosine Similarity measure.
91+
```UserCosCF``` User-User Collaborative Filtering using Cosine Similarity measure.
9292

93-
UserPearCF: User-User Collaborative Filtering using Cosine Similarity measure.
93+
```UserPearCF``` User-User Collaborative Filtering using Cosine Similarity measure.
9494

95-
SVD: Simon Funk Singular Value Decomposition.
95+
```SVD``` Simon Funk Singular Value Decomposition.
9696

9797
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.
9898

0 commit comments

Comments
 (0)