| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-07-12 | Print training accuracyHEADmaster | Gertjan van den Burg | 2 | -0/+3 | |
| 2018-03-27 | Add support for predicting after grid search | Gertjan van den Burg | 1 | -1/+1 | |
| With this commit the gensvm_grid executable can now compute predictions with the best model found during the grid search. The test dataset is supplied through the training file, and a command line flag is added to support saving the predictions in an output file. | |||||
| 2017-02-23 | Allow setting of the random seed in the model | Gertjan van den Burg | 1 | -0/+2 | |
| 2017-02-21 | Explicitly specify void argument to functions which take | Gertjan van den Burg | 5 | -6/+6 | |
| no arguments. | |||||
| 2017-02-21 | Keep a status of training | Gertjan van den Burg | 1 | -0/+2 | |
| 2017-02-21 | Keep track of elapsed iterations in training | Gertjan van den Burg | 1 | -0/+2 | |
| 2017-02-17 | allow max_iter to be set in the model | Gertjan van den Burg | 2 | -0/+4 | |
| 2017-02-17 | Remove kernelparam array in favour of explicit kernel parameters | Gertjan van den Burg | 3 | -15/+29 | |
| This simplifies a lot of the code and will make it easier to link to other languages. | |||||
| 2017-01-02 | fix for string version | Gertjan van den Burg | 1 | -0/+14 | |
| 2016-12-07 | allow datasets to be stored in libsvm/svmlight format | Gertjan van den Burg | 4 | -4/+10 | |
| 2016-12-07 | moved check for class labels to seperate module | Gertjan van den Burg | 2 | -0/+38 | |
| 2016-12-07 | merge types into globals | Gertjan van den Burg | 2 | -52/+26 | |
| 2016-12-07 | add ifndef and GENSVM_ before defines | Gertjan van den Burg | 1 | -1/+3 | |
| 2016-12-07 | switch some integer variables to long for cross platform size guarantees | Gertjan van den Burg | 3 | -4/+4 | |
| 2016-12-06 | document undocumented elements | Gertjan van den Burg | 7 | -22/+104 | |
| 2016-12-05 | fix missing test in gensvm_optimize and expose doublesort | Gertjan van den Burg | 1 | -0/+1 | |
| 2016-12-05 | further unit tests for kernel module | Gertjan van den Burg | 2 | -2/+7 | |
| 2016-12-05 | Tests and documentation kernel module | Gertjan van den Burg | 1 | -10/+13 | |
| 2016-12-05 | Improvements and tests for tasks and gridsearch | Gertjan van den Burg | 1 | -0/+1 | |
| 2016-11-07 | compute ZAZ in blocks to increase numerical precision | Gertjan van den Burg | 1 | -0/+2 | |
| 2016-11-03 | prepare for gridsearch unit testing | Gertjan van den Burg | 5 | -11/+95 | |
| 2016-10-24 | update copyright information | Gertjan van den Burg | 26 | -77/+497 | |
| 2016-10-17 | minor documentation fixes | Gertjan van den Burg | 3 | -14/+4 | |
| 2016-10-17 | refactor gensvm_pred to gensvm_predict | Gertjan van den Burg | 2 | -3/+3 | |
| 2016-10-17 | Update predictions to work with sparse matrices | Gertjan van den Burg | 3 | -0/+38 | |
| This is done by pulling the Z*V routines from the gensvm_optimize file to a seperate file, since they are shared by prediction and get_loss | |||||
| 2016-10-17 | Add functionality for cv_util for sparse matrices | Gertjan van den Burg | 1 | -0/+6 | |
| 2016-10-17 | Create debug function for printing GenSparse structs | Gertjan van den Burg | 1 | -0/+2 | |
| 2016-10-14 | documentation fixes | Gertjan van den Burg | 9 | -25/+12 | |
| 2016-10-14 | add sparse matrices to GenSVM and reorganize update functionality | Gertjan van den Burg | 5 | -20/+146 | |
| 2016-10-06 | documentation fixes | Gertjan van den Burg | 1 | -1/+1 | |
| 2016-10-06 | change timer functionality to use clock_monotonic_raw | Gertjan van den Burg | 1 | -1/+4 | |
| 2016-10-06 | Switch to using dsyrk instead of dsyr for speed. | Gertjan van den Burg | 2 | -3/+35 | |
| Also added a workspace (GenWork) structure for to hold working matrices for the gensvm_get_update() and gensvm_get_loss() functions | |||||
| 2016-09-30 | rewrite of the update function to use only rank 1 operations where possible | Gertjan van den Burg | 1 | -5/+3 | |
| 2016-09-30 | Rewrite UU matrix to be K*K*(K-1) instead of n*K*(K-1) | Gertjan van den Burg | 2 | -3/+4 | |
| significant memory reduction by turning the 3D UU matrix into a 2D block matrix, with significantly less dimensions | |||||
| 2016-09-30 | Remove category matrix from implementation | Gertjan van den Burg | 2 | -7/+4 | |
| It's a remnant from the Matlab implementation, where it actually makes sense to use. Here it becomes a significant memory burden for large datasets, and doesn't provide any speedup | |||||
| 2016-09-30 | remove unnecessary W and t matrices | Gertjan van den Burg | 1 | -4/+0 | |
| 2016-09-30 | Break up update function and add unit tests for parts | Gertjan van den Burg | 1 | -1/+12 | |
| 2016-09-20 | Change globals.h to gensvm_globals.h | Gertjan van den Burg | 8 | -7/+7 | |
| Conformity! | |||||
| 2016-09-20 | Only need model for calculating SVs | Gertjan van den Burg | 1 | -1/+1 | |
| 2016-09-20 | Rename print_matrix to reflect namespace | Gertjan van den Burg | 1 | -1/+1 | |
| 2016-05-22 | add unit tests for string utilities | Gertjan van den Burg | 1 | -1/+1 | |
| 2016-05-16 | documentation | Gertjan van den Burg | 1 | -2/+3 | |
| 2016-05-16 | rename types to conform with naming convention | Gertjan van den Burg | 2 | -2/+2 | |
| 2016-05-16 | remove superfluous files | Gertjan van den Burg | 3 | -156/+0 | |
| 2016-05-16 | create a single training function for easy external access | Gertjan van den Burg | 2 | -2/+23 | |
| 2016-05-16 | major refactor of the code | Gertjan van den Burg | 27 | -270/+525 | |
| 2016-05-16 | Move includes to header | Gertjan van den Burg | 1 | -3/+3 | |
| 2016-05-09 | make dependence on globals.h explicit | Gertjan van den Burg | 14 | -25/+0 | |
| 2016-05-09 | Add err function to write to stderr | Gertjan van den Burg | 1 | -0/+1 | |
| 2016-05-09 | Add functions for safe memory allocation | Gertjan van den Burg | 2 | -7/+30 | |
