Skip to content

Commit

Permalink
Docu fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Apr 28, 2012
1 parent 3be395f commit da6bddd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/shogun/machine/KernelMachine.h
Expand Up @@ -234,15 +234,15 @@ class CKernelMachine : public CMachine
/** Trains a locked machine on a set of indices. Error if machine is
* not locked
*
* @indices index vector (of locked features) that is used for training
* @param indices index vector (of locked features) that is used for training
* @return whether training was successful
*/
virtual bool train_locked(const SGVector<index_t>& indices);

/** Applies a locked machine on a set of indices. Error if machine is
* not locked
*
* @indices index vector (of locked features) that is predicted
* @param indices index vector (of locked features) that is predicted
*/
virtual CLabels* apply_locked(const SGVector<index_t>& indices);

Expand Down
2 changes: 1 addition & 1 deletion src/shogun/machine/KernelMulticlassMachine.h
Expand Up @@ -132,7 +132,7 @@ class CKernelMulticlassMachine : public CMulticlassMachine
*
* @param subset subset indices to set
*/
virtual void add_machine_subset(const SGVector<index_t>&)
virtual void add_machine_subset(const SGVector<index_t>& subset)
{
SG_NOTIMPLEMENTED;
}
Expand Down
4 changes: 2 additions & 2 deletions src/shogun/machine/Machine.h
Expand Up @@ -227,7 +227,7 @@ class CMachine : public CSGObject
*
* NOT IMPLEMENTED
*
* @indices index vector (of locked features) that is used for training
* @param indices index vector (of locked features) that is used for training
* @return whether training was successful
*/
virtual bool train_locked(const SGVector<index_t>& indices)
Expand All @@ -242,7 +242,7 @@ class CMachine : public CSGObject
*
* NOT IMPLEMENTED
*
* @indices index vector (of locked features) that is predicted
* @param indices index vector (of locked features) that is predicted
*/
virtual CLabels* apply_locked(const SGVector<index_t>& indices)
{
Expand Down

0 comments on commit da6bddd

Please sign in to comment.