Uses of Class
kylm.util.SymbolSet

Packages that use SymbolSet
kylm.model   
kylm.reader   
kylm.util   
kylm.writer   
 

Uses of SymbolSet in kylm.model
 

Fields in kylm.model declared as SymbolSet
 SymbolSet ClassMap.classes
           
 

Methods in kylm.model that return SymbolSet
 SymbolSet ClassMap.getClasses()
           
 SymbolSet LanguageModel.getVocab()
           
 

Methods in kylm.model with parameters of type SymbolSet
 void LanguageModel.setVocab(SymbolSet newVocab)
           
 

Uses of SymbolSet in kylm.reader
 

Methods in kylm.reader with parameters of type SymbolSet
 ClassMap TextStreamClassMapReader.readClassMap(SymbolSet ss, int fixed, boolean readNames)
           
 ClassMap ClassMapReader.readClassMap(SymbolSet vocab, int fixed, boolean hasNames)
           
 ClassMap TextFileClassMapReader.readClassMap(SymbolSet ss, int fixed, boolean hasNames)
           
 

Uses of SymbolSet in kylm.util
 

Methods in kylm.util that return SymbolSet
static SymbolSet SymbolSet.readFromFile(java.lang.String fileName)
          Read a symbol set from a file
The format can either be one symbol per line, or one symbol followed by its ID per line, in which case the lines must be in ascending order starting with symbol number one
 

Uses of SymbolSet in kylm.writer
 

Constructors in kylm.writer with parameters of type SymbolSet
TextStreamClassMapWriter(java.io.OutputStream os, SymbolSet ss)