Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CF Data Normalization #1397

Merged
merged 64 commits into from Jun 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
64 commits
Select commit Hold shift + click to select a range
d953619
support for RandSVD in CF
haritha1313 Apr 5, 2018
850b9b5
templatized apply
haritha1313 Apr 10, 2018
b82bdbd
adjusting eps addition
haritha1313 Apr 20, 2018
937973b
add cf no_normalization
wenhaoh2 May 16, 2018
6cad42e
normalizationType constructor
wenhaoh2 May 16, 2018
ea6d691
small bugfix
wenhaoh2 May 17, 2018
0630ed3
add normalization cmakelist
wenhaoh2 May 17, 2018
cc1494f
modify cf files
wenhaoh2 May 17, 2018
e0f9abb
change CF to CF<>
wenhaoh2 May 17, 2018
40d399d
add normalization to cmakelist
wenhaoh2 May 17, 2018
03fd3eb
update comments
wenhaoh2 May 17, 2018
9f9a582
style fix
wenhaoh2 May 17, 2018
1266f1f
Merge branch 'master' of https://github.com/mlpack/mlpack into randSV…
haritha1313 May 18, 2018
0ecfed9
refactoring
haritha1313 May 18, 2018
e3962ab
style edits
haritha1313 May 18, 2018
386664f
style edits
haritha1313 May 18, 2018
5ac5cc8
bug fix
wenhaoh2 May 19, 2018
5a94434
add overall mean normalization
wenhaoh2 May 19, 2018
2cffbb3
add user/item normalization
wenhaoh2 May 19, 2018
357b6ca
bugfix
wenhaoh2 May 19, 2018
457dcaf
add z-score normalization
wenhaoh2 May 20, 2018
2a0f2cd
add combined normalization
wenhaoh2 May 20, 2018
3ccc4de
update comments
wenhaoh2 May 20, 2018
3830674
very small style fix
wenhaoh2 May 20, 2018
0ff946f
remove template
haritha1313 May 23, 2018
960d05d
edit
haritha1313 May 23, 2018
770c807
resolve minor issues
wenhaoh2 May 24, 2018
0568f04
style fix
wenhaoh2 May 25, 2018
f995b2b
debugging
haritha1313 May 26, 2018
2b065f8
style edit
haritha1313 May 26, 2018
b9006c0
debugged matrix error
haritha1313 May 27, 2018
3fb772e
debug emptyctortest
haritha1313 May 27, 2018
ee95f6d
train debug
haritha1313 May 27, 2018
406e407
debug
haritha1313 May 27, 2018
a6ec11d
train debug
haritha1313 May 27, 2018
473d187
regSVD debugging
haritha1313 May 29, 2018
6a301d7
test time reduction
haritha1313 Jun 1, 2018
a72dc48
Merge remote-tracking branch 'haritha/randSVD_cf' into cf-normalization
wenhaoh2 Jun 2, 2018
d6ec5c6
bugfix
wenhaoh2 Jun 2, 2018
eb0e3e6
use size_t
wenhaoh2 Jun 3, 2018
4ef5f18
minor issues
wenhaoh2 Jun 3, 2018
062c5c6
add some tests
wenhaoh2 Jun 3, 2018
da4bb30
fix arma version issue
wenhaoh2 Jun 4, 2018
03e7b1c
change totalError to rmse
wenhaoh2 Jun 6, 2018
3ad6101
bugfix
wenhaoh2 Jun 8, 2018
f96be8b
set zero rating to small double
wenhaoh2 Jun 8, 2018
a33149f
replace() not supported
wenhaoh2 Jun 9, 2018
66faebc
modify rmse bound in cf_test
wenhaoh2 Jun 9, 2018
9963741
serialize tuple
wenhaoh2 Jun 9, 2018
061d86e
add tests for normalization
wenhaoh2 Jun 9, 2018
070ffeb
comments and styles
wenhaoh2 Jun 9, 2018
04f0bab
update comments
wenhaoh2 Jun 10, 2018
b965b07
update comments & debug
wenhaoh2 Jun 11, 2018
beaa319
remove if(cleanData) block
wenhaoh2 Jun 11, 2018
8502230
use complete sentences for examples
wenhaoh2 Jun 12, 2018
de67371
change method names to Mean() and return const refenrence
wenhaoh2 Jun 12, 2018
f2d73d5
change param specification
wenhaoh2 Jun 12, 2018
e0544b5
new line for brace
wenhaoh2 Jun 12, 2018
98a1f64
templatize Normalize() functions in some classes
wenhaoh2 Jun 12, 2018
7d4055b
initialize members in constructor
wenhaoh2 Jun 13, 2018
17860e9
style
wenhaoh2 Jun 13, 2018
b7a874c
style fix
wenhaoh2 Jun 14, 2018
5fbe03b
Denormalize(users(i), ...)
wenhaoh2 Jun 14, 2018
2554f60
change from arma::vec userMean to arma::rowvec userMean
wenhaoh2 Jun 14, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/mlpack/methods/cf/CMakeLists.txt
Expand Up @@ -3,11 +3,13 @@
set(SOURCES
cf.hpp
cf_impl.hpp
cf.cpp
svd_wrapper.hpp
svd_wrapper_impl.hpp
)

add_subdirectory(normalization)
add_subdirectory(decomposition_policies)

# Add directory name to sources.
set(DIR_SRCS)
foreach(file ${SOURCES})
Expand Down
267 changes: 0 additions & 267 deletions src/mlpack/methods/cf/cf.cpp

This file was deleted.