Skip to content

Commit

Permalink
Merge pull request #389 from karlnapf/master
Browse files Browse the repository at this point in the history
some news updates
  • Loading branch information
Soeren Sonnenburg committed Mar 24, 2012
2 parents 0445a57 + e5ce2ef commit f399095
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion src/NEWS
Expand Up @@ -13,14 +13,23 @@
new rejection schemes concept by Sergey Lisitsyn.
- New regression estimation algorithms.
- New graphical python modular examples.
- Standard Cross-Validation splitting for regression problems by Heiko Strathmann
- New data-locking concept by Heiko Strathmann which allows to tell machines that data
is not going to change during training/testing until unlocked.
KernelMachines now make use of that by not recomputing kernel matrix in cross-validation.
- Cross-validation for KernelMachines is now parallelized.
- Cross-validation is now possible with custom kernels.
* Bugfixes:
- Fix for bug in the Gaussian Naive Bayes classifier, its domain was
changed to log-space.
- Fix for R_static interface installation (thanks Steve Lianoglou).
- SVMOcas memsetting and max_train_time bugfix.
- Various fixes for compile errors with clang.
- Stratified-cross-validation now used different indices for each run.
* Cleanup and API Changes:
- Improvements for parameters handling and serialization by Heiko Strathmann.
- Parameter migration framework by Heiko Strathmann. From now on,
changes in the shogun objects will not break loading old serialized
files anymore

2011-12-01 Soeren Sonnenburg <sonne@debian.org>

Expand Down
2 changes: 1 addition & 1 deletion src/shogun/base/SGObject.cpp
Expand Up @@ -906,7 +906,7 @@ TParameter* CSGObject::migrate(DynArray<TParameter*>* param_base,
SG_FREE(s);
}

SG_PRINT("leaving CSGObject::migrate\n");
// SG_PRINT("leaving CSGObject::migrate\n");

return result;
}
Expand Down
2 changes: 1 addition & 1 deletion src/shogun/machine/Machine.cpp
Expand Up @@ -31,7 +31,7 @@ CMachine::CMachine() : CSGObject(), m_max_train_time(0), m_labels(NULL),
SG_ADD(&m_store_model_features, "store_model_features",
"Should feature data of model be stored after training?", MS_NOT_AVAILABLE);
SG_ADD(&m_data_locked, "data_locked",
"Indicates whether data is locked", MS_NOT_AVAILABLE);
"Indicates whether data is locked", MS_NOT_AVAILABLE);

m_parameter_map->put(
new SGParamInfo("data_locked", CT_SCALAR, ST_NONE, PT_BOOL, 1),
Expand Down

0 comments on commit f399095

Please sign in to comment.