Uses of Class
ace.datatypes.Taxonomy

Packages that use Taxonomy
ace.datatypes   
 

Uses of Taxonomy in ace.datatypes
 

Fields in ace.datatypes declared as Taxonomy
 Taxonomy DataBoard.taxonomy
          The taxonomy that instances are classified into.
 

Methods in ace.datatypes that return Taxonomy
static Taxonomy Taxonomy.generateTaxonomy(SegmentedClassification[] classifications)
          Automatically generates a flat taxonomy based on the class labels in the given SegmentedClassification object.
 Taxonomy DataBoard.getTaxonomy()
          Returns the taxonomy that instances are to be classified into.
static Taxonomy Taxonomy.parseTaxonomyFile(java.lang.String taxonomy_file_path)
          Parses a taxonomy_file XML file and returns a Taxonomy object that has had its taxonomy field populated with the file's contents.
 

Methods in ace.datatypes with parameters of type Taxonomy
static void Taxonomy.saveTaxonomy(Taxonomy taxonomy_to_save, java.io.File to_save_to, java.lang.String comments)
          Saves a taxonomy_file XML file with the contents specified in the taxonomy_to_save parameter and the comments specified in the comments parameter.
static void Taxonomy.setRootName(Taxonomy given_taxonomy, java.lang.String file_path)
          Sets the root of the given taxonomy to the name of the given file path (with directory structure and extension stripped off.
 

Constructors in ace.datatypes with parameters of type Taxonomy
DataBoard(Taxonomy taxonomy, FeatureDefinition[] feature_definitions, DataSet[] feature_vectors, SegmentedClassification[] model_classifications)
          Generates a DataBoard with the fields specified in the parameters.