Dongryeol Lee
fd08a2ee8a
Getting closer to finishing Smola's
2010-08-14 19:02:50 +00:00
Dongryeol Lee
984ace126d
Clusterwise regression should work, but needs testing.
2010-08-13 15:42:39 +00:00
Dongryeol Lee
72f822b723
Still fixing bug.
2010-08-13 14:56:13 +00:00
Dongryeol Lee
a01d4434fc
Close to finishing the driver.
2010-08-13 14:27:27 +00:00
Dongryeol Lee
9e25d5dce2
Slowly plugging in the driver for the clusterwise regression.
2010-08-12 20:56:28 +00:00
Dongryeol Lee
c4f94058d9
CMakeLists.txt updated.
2010-08-12 18:28:44 +00:00
Dongryeol Lee
938ef88e36
Need to just write the driver for clusterwise regression.
2010-08-12 16:12:15 +00:00
Dongryeol Lee
b1ab44c0ed
Getting infinitely closer.
2010-08-12 15:33:15 +00:00
Dongryeol Lee
c0a0f7c2e5
Getting there.
2010-08-12 15:09:44 +00:00
Dongryeol Lee
153fdc7124
Astyled.
2010-08-12 14:45:42 +00:00
Dongryeol Lee
67db0b0480
More progress.
2010-08-12 14:30:10 +00:00
Dongryeol Lee
9c5b2ed524
More progress on mixture of experts.
2010-08-11 22:25:51 +00:00
Dongryeol Lee
ad7c21b55f
Slowly plugging in Smola's sparse GPR.
2010-08-11 19:16:58 +00:00
Dongryeol Lee
7fdb908d18
More progress on sparse GPR.
2010-08-11 18:11:57 +00:00
Dongryeol Lee
00bd084646
More progress.
2010-08-11 16:14:38 +00:00
Dongryeol Lee
a31c9f24e2
Some more clusterwise regression.
2010-08-11 00:03:17 +00:00
Dongryeol Lee
7d4521cc0a
More progress on clusterwise regression.
2010-08-10 19:50:27 +00:00
Dongryeol Lee
087689c744
More progress on plugging on Smola's sparse GPR.
2010-08-10 16:09:02 +00:00
Dongryeol Lee
41e901d548
Starting clusterwise regression.
2010-08-09 21:47:22 +00:00
Dongryeol Lee
b01d137827
Probably done for today.
2010-08-09 21:43:57 +00:00
Dongryeol Lee
0cc847cb21
Auxiliary files for sparse GPR.
2010-08-09 16:11:28 +00:00
Dongryeol Lee
45283928a3
Removing old implementations.
2010-08-09 14:22:44 +00:00
Dongryeol Lee
1bf1a59a0e
Sparse GPR has long way to go, but I will get there.
2010-08-08 16:15:23 +00:00
Dongryeol Lee
07d0ca6fee
Sparse greedy GP in progress.
2010-08-07 21:21:54 +00:00
Dongryeol Lee
3e2ad97989
More multigrid.
2010-08-05 21:46:32 +00:00
Dongryeol Lee
a433a7eb8a
Adding the test driver for multigrid.
2010-08-05 20:46:15 +00:00
Dongryeol Lee
144ae61825
More progress.
2010-08-05 18:56:10 +00:00
Dongryeol Lee
3b2aa16ead
Starting multigrid.
2010-08-05 16:38:37 +00:00
James Cline
7935acce6d
Make parameter passing to SMO::InitPara sane.
2010-07-27 18:50:30 +00:00
James Cline
1413db1d5f
The svm_r learner now "works" for linear and gaussian kernels for training and testing.
...
After fixing the runtime error in trunk, the results were verified to be identical.
2010-07-27 16:45:45 +00:00
James Cline
a9313711c8
Works for svm_c learner, linear or gaussian kernels for training and testing.
...
svm_r learner is broken, even in trunk, it seems.
2010-07-27 15:37:02 +00:00
James Cline
e04ee20e36
Fixed memory leak.
2010-07-16 13:29:34 +00:00
tqlong
7d6766f477
optim:L-BFGS
2010-07-15 21:13:41 +00:00
tqlong
9eeea23a03
optim::L-BFGS
2010-07-14 23:45:44 +00:00
tqlong
61d4fbfa53
optim:GradientDescent
2010-07-14 21:37:40 +00:00
James Cline
e4efc7eb33
Incorrect matrix access via [] instead of (x,y).
...
Why did this even compile?
2010-07-13 19:43:59 +00:00
James Cline
fa6f9505ab
Added some bounds checking
2010-07-13 14:28:36 +00:00
tqlong
c7f543751e
optim::NelderMead
2010-07-09 23:30:50 +00:00
James Cline
3ae08c385d
A couple comment updates to reflect ArrayList -> std::vector change
2010-07-07 14:57:53 +00:00
James Cline
c05622f441
Passes its test now.
...
Removed pointless \0 checks, unless they are explicitly in the file (why would they be?) this is unecessary.
Changed from manually resizing vectors to just clearing them.
2010-07-07 14:55:37 +00:00
James Cline
0338a1df20
The textfile_test now passes.
2010-06-30 18:45:56 +00:00
Ryan Curtin
c6b583e301
Convert linalg__private::Center() to armadillo. Created unit test file, because damn, these things get complex and I want to know that they're working right.
2010-06-25 23:31:08 +00:00
Ryan Curtin
811eac3886
Remove Vector and Matrix and ArrayList uses from emst method. There is no test for emst, so that will have to be done.
2010-06-25 00:19:08 +00:00
Ryan Curtin
3076fa66a6
Build union_find_test target
2010-06-25 00:18:39 +00:00
Ryan Curtin
53cae8db56
Fix main executable to stop using Matrix or Vector or ArrayList entirely.
2010-06-24 00:13:01 +00:00
Ryan Curtin
bc1baefb05
Fix allkfn to not use Matrix or Vector anywhere. This one was very easy because it's so similar to allknn. Could it be... time for refactoring into a sensible hierarchy to maximize code reuse and minimize the codebase? Well... not yet...
2010-06-24 00:10:31 +00:00
Ryan Curtin
64d5a146d7
We require different modifiable input matrices as input to AllkNN for now. That will have to be changed. (tree generation modifies the matrix)
2010-06-23 23:52:00 +00:00
Ryan Curtin
80513dfd59
THIS IS YOUR BRAIN ON DRUGS
2010-06-23 23:50:43 +00:00
Ryan Curtin
fe5e17f822
Propagate change from trunk CMakeLists.txt to branch... properly use DEBUG definition when told to
2010-06-23 23:09:16 +00:00
Ryan Curtin
44b806ae1e
Turns out this is a better way to define the DEBUG flag (and by better I mean... it works)
2010-06-23 23:08:26 +00:00