Code examples: Difference between revisions

From Jstacs
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
At this page we collected some code examples that show how to use or extend the Jstacs framework. You are invited to extend the list and submit code examples to the [https://trac.informatik.uni-halle.de/trac/jstacs/discussion Jstacs forum].
At this page we collected some code examples that show how to use or extend the Jstacs framework. You are invited to extend the list and submit code examples to the [https://trac.informatik.uni-halle.de/trac/jstacs/discussion Jstacs forum].


'''Using Jstacs:'''
----
 
You can find a Java class containing most of the code examples used in a common main-method at [http://www.jstacs.de/downloads/CodeExampleTest.java CodeExampleTest.java]. Please see [[Getting started]] for how to compile and run the example.<br />
Another runnable example can be found at [http://www.jstacs.de/downloads/MiMBExample.java MiMBExample.java]. Additional information about this example is given on the [[MiMB]] page.
 
----
 
'''Using Jstacs:'''<br />
* [[Loading data]]
* [[Loading data]]
* [[Training a classifier and classifying new sequences]]
* [[Training a classifier and classifying new sequences]]
Line 11: Line 18:
** [[Train classifiers using MCL and MSP]]
** [[Train classifiers using MCL and MSP]]
** [[Train classifiers using GenDisMix (a hybrid learning principle)]]
** [[Train classifiers using GenDisMix (a hybrid learning principle)]]
----


'''Extending Jstacs:'''
'''Extending Jstacs:'''
* [[Implementation of a homogeneous Markov model of order 0 based on AbstractModel]]
* [[Implementation of a homogeneous Markov model of order 0 based on AbstractModel]]

Revision as of 15:59, 4 December 2009

At this page we collected some code examples that show how to use or extend the Jstacs framework. You are invited to extend the list and submit code examples to the Jstacs forum.


You can find a Java class containing most of the code examples used in a common main-method at CodeExampleTest.java. Please see Getting started for how to compile and run the example.
Another runnable example can be found at MiMBExample.java. Additional information about this example is given on the MiMB page.


Using Jstacs:


Extending Jstacs: