Changes between Version 4 and Version 5 of Software/EventBenchConsole
- Timestamp:
- 04/06/11 17:22:27 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Software/EventBenchConsole
v4 v5 2 2 3 3 == Commands == 4 * {{{calcEntropy <modelname>}}} 5 - Calculates the entropy of a first-order Markov model. 6 - Examples: 7 - {{{calcEntropy markovModel}}} 4 8 * {{{convertToXml <filenameSource> <filenameTarget> {<base64>}}}} 5 9 - Converts a logfile with prefixes created by the [wiki:userlog MFCUsageMonitor] into an XML file containing the logged sessions. … … 12 16 - {{{convertDirToXml d:/logdir d:/log.xml}}} 13 17 - {{{convertDirToXml d:/logdir d:/log.xml true}}} 18 * {{{generateRandomReplay <modelname> <filename> {<numSessions>}}}} 19 - Generates a randomly generated replay from a previously learned usage model. The default number of sessions generate is 1. 20 - Examples: 21 - {{{generateRandomReplay markovModel replay.xml}}} 22 - {{{generateRandomReplay markovModel replay.xml 5}}} 23 * {{{generateReplayfile <filename>}}} 24 - Generates a replay file for the [wiki:MFCReplay MFCReplay] tool of the currently loaded sessions 25 - Examples: 26 - {{{generateReplayfile d:/replay.xml}}} 14 27 * {{{parseXML <filename> {<countMessageOccurences>}}}} 15 28 - Parses an XML file containing users sessions. If {{{countMessageOccurences}}} is true, a statistic containing how often each message occurred in the log is printed. … … 17 30 - {{{parseXML d:/log.xml}}} 18 31 - {{{parseXML d:/log.xml true}}} 19 * {{{generateReplayfile <filename>}}} 20 - Generates a replay file for the [wiki:MFCReplay MFCReplay] tool of the currently loaded sessions 21 - Examples: 22 - {{{generateReplayfile d:/replay.xml}}} 32 * {{{printDot <modelname>}}} 33 - Prints the [http://en.wikipedia.org/wiki/DOT_language Dot] graph representation of a model to the console. 34 - Examples: 35 - {{{printDot markovModel}}} 36 * {{{showMarkovModel <modelname> {<showNodeNames>}}}} 37 - Opens a window that display a first-order Markov model as a directed graph. Per default, the node names are not shown, as the graph gets very ugly and has overlapping nodes if they are shown. 38 - Examples: 39 - {{{showMarkovModel markovModel}}} 40 - {{{showMarkovModel markovModel true}}} 41 * {{{trainMarkovModel <modelname>}}} 42 - Trains a first-order Markov model based on the currently loaded sessions. 43 - Examples: 44 - {{{trainMarkovModel markovModel}}} 45 * {{{trainPPM <modelname>}}} 46 - Trains a Prediction by Partial Match (PPM) model based on the currently loaded sessions. 47 - Examples: 48 - {{{trainPPM PPMModel}}} 49 23 50 24 51 == Translating MFC Messages into Events ==