Last change
on this file since 1876 was
726,
checked in by sherbold, 12 years ago
|
- added manuals for the commands calcCoverage, calcEntropy, deleteObject, flattenModel, generateFixedLengthSequences, generateGreedy, generateHybrid, generateReplayfile, listSymbols, load, loadObject, modelSize, printDot, printTrieDot, save, saveObject, sequenceStatistics, showMarkovModel, showTime, showTrie, startFileListener, stopFileListener, trainDFA, trainPPM, and updateModel
|
File size:
1.1 KB
|
Line | |
---|
1 | Generates sequences of a fixed length from a usage profile. This command first generates all sequences of the desired lengths and then draws from them according to the probability each sequence has in the usage profile. |
---|
2 | |
---|
3 | Generating all possible sequences is exponential in the length of the sequences, therefore, this command does not scale well in the parameter <maxlength>! |
---|
4 | |
---|
5 | $USAGE$ |
---|
6 | <modelname> name of the usage profile from which the sequences are generated |
---|
7 | <sequencesName> name of the sequences that are generated |
---|
8 | <minlenght> minimal length of a sequence |
---|
9 | <maxlength> maximal length of a sequence |
---|
10 | <all> optional; if true, all possible sequences are generated and the <numSequences> parameter is ignored; default: true |
---|
11 | <numSequences> optional; number of sequences to be generated; no default, has to be defined if <all> is false |
---|
12 | <validEnd> optional; if true, only sequences that finish in the global END state are allowed; default: true |
---|
13 | |
---|
14 | Example(s): |
---|
15 | generateFixedLengthSequences markovModel generated_sequences 5 7 |
---|
16 | generateFixedLengthSequences markovModel generated_sequences 5 7 false 500 |
---|
17 | generateFixedLengthSequences markovModel generated_sequences 5 7 false 500 false |
---|
Note: See
TracBrowser
for help on using the repository browser.