LBJ2.learn
Class LearnerToText

java.lang.Object
  extended by LBJ2.learn.LearnerToText

public class LearnerToText
extends java.lang.Object

This extremely simple class can be used to print a textual representation of a trained learner to STDOUT. This is achieved with the following line of code:

learner.write(System.out);

Usage

java LBJ2.learn.LearnerToText <learner>

Input

The <learner> parameter must be a fully qualified class name (e.g. myPackage.myName) referring to a class that extends Learner. Every learning classifier specified in an LBJ source code satisfies this requirement.

Output

A textual representation of the specified learning classifier is produced on STDOUT.


Constructor Summary
LearnerToText()
           
 
Method Summary
static void main(java.lang.String[] args)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LearnerToText

public LearnerToText()
Method Detail

main

public static void main(java.lang.String[] args)