Uses of Class
edu.cs.ai.kreator.datamodels.SampleCollection

Packages that use SampleCollection
edu.cs.ai.kreator.control   
edu.cs.ai.kreator.datamodels   
edu.cs.ai.kreator.logic   
edu.cs.ai.kreator.ui   
edu.cs.ai.kreator.ui.gui   
edu.cs.ai.kreator.ui.gui.components   
edu.cs.ai.kreator.ui.gui.components.controller   
edu.cs.ai.kreator.ui.gui.dialogs   
 

Uses of SampleCollection in edu.cs.ai.kreator.control
 

Methods in edu.cs.ai.kreator.control that return SampleCollection
 SampleCollection ModelController.generateData(KnowledgebaseFile inputFile, SampleCollection outputFile, int number, boolean doNotOverwriteExisting, boolean doNotAddToProject, boolean openfile)
           
 

Methods in edu.cs.ai.kreator.control with parameters of type SampleCollection
 SampleCollection ModelController.generateData(KnowledgebaseFile inputFile, SampleCollection outputFile, int number, boolean doNotOverwriteExisting, boolean doNotAddToProject, boolean openfile)
           
 Knowledgebase ModelController.learnKnowledgebaseParameter(SampleCollection sampleFile, Knowledgebase baseKb, ParameterLearner plearner)
          Learns the parameters of a given knowledge base from a sample collection.
 KnowledgebaseFile ModelController.learnKnowledgebaseParameter(SampleCollection sampleFile, Knowledgebase baseKb, ParameterLearner plearner, KnowledgebaseFile outputFile, KnowledgebaseWriter writer, boolean doNotOverwriteExisting, boolean doNotAddToProject, boolean doNotOpenfile)
          Takes a given knowledgebase and learns its parameters from a sample collection and writes it to a file.
 Knowledgebase ModelController.learnKnowledgebaseStructure(SampleCollection sampleFile, StructureLearner slearner)
          Learns a new knowledge base structure from a sample collection.
 KnowledgebaseFile ModelController.learnKnowledgebaseStructure(SampleCollection sampleFile, StructureLearner slearner, KnowledgebaseFile outputFile, KnowledgebaseWriter writer, boolean doNotOverwriteExisting, boolean doNotAddToProject, boolean doNotOpenfile)
          Learns a new knowledge base from a sample collection and writes it to a file.
 KnowledgebaseFile ModelController.learnKnowledgebaseStructureAndParameter(SampleCollection sampleFile, StructureLearner slearner, ParameterLearner plearner, KnowledgebaseFile outputFile, KnowledgebaseWriter writer, boolean doNotOverwriteExisting, boolean doNotAddToProject, boolean doNotOpenfile)
          Learns a new knowledge base from a sample collection also learns the parameter of this knowledgebase and writes it to a file.
 

Uses of SampleCollection in edu.cs.ai.kreator.datamodels
 

Methods in edu.cs.ai.kreator.datamodels that return types with arguments of type SampleCollection
 java.util.List<SampleCollection> Project.getSampleCollections()
           
 

Uses of SampleCollection in edu.cs.ai.kreator.logic
 

Methods in edu.cs.ai.kreator.logic with parameters of type SampleCollection
 boolean LanguageFactory.isSampleDataValid(SampleCollection sample)
          Tests if the given sample data is in the language.
 boolean LanguageFactory.mergeWithSampleData(SampleCollection sample)
          Merge the given language with the language in the sample collection.
 

Uses of SampleCollection in edu.cs.ai.kreator.ui
 

Methods in edu.cs.ai.kreator.ui with parameters of type SampleCollection
 void KreatorUserInterface.showLearnDialog(SampleCollection sfile)
          Shows a learning dialog for the given sample collection.
 

Uses of SampleCollection in edu.cs.ai.kreator.ui.gui
 

Methods in edu.cs.ai.kreator.ui.gui with parameters of type SampleCollection
 void GraphicalUserInterface.showLearnDialog(SampleCollection sfile)
           
 

Uses of SampleCollection in edu.cs.ai.kreator.ui.gui.components
 

Constructors in edu.cs.ai.kreator.ui.gui.components with parameters of type SampleCollection
FileEvidenceSelection(SampleCollection sc)
           
 

Uses of SampleCollection in edu.cs.ai.kreator.ui.gui.components.controller
 

Constructors in edu.cs.ai.kreator.ui.gui.components.controller with parameters of type SampleCollection
OutlineSamplecollectionWorker(SampleCollection sc, EventKreatorWorker.WorkerDispatcher dispatcher)
          Ctor
 

Uses of SampleCollection in edu.cs.ai.kreator.ui.gui.dialogs
 

Constructors in edu.cs.ai.kreator.ui.gui.dialogs with parameters of type SampleCollection
LearnDialog(java.awt.Frame parent, SampleCollection sampleFile)
          Default constructor.