Changes between Version 4 and Version 5 of Software/EventBenchConsole


Ignore:
Timestamp:
04/06/11 17:22:27 (13 years ago)
Author:
sherbold
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Software/EventBenchConsole

    v4 v5  
    22 
    33== Commands == 
     4 * {{{calcEntropy <modelname>}}} 
     5  - Calculates the entropy of a first-order Markov model. 
     6  - Examples: 
     7   - {{{calcEntropy markovModel}}} 
    48 * {{{convertToXml <filenameSource> <filenameTarget> {<base64>}}}} 
    59  - Converts a logfile with prefixes created by the [wiki:userlog MFCUsageMonitor] into an XML file containing the logged sessions. 
     
    1216   - {{{convertDirToXml d:/logdir d:/log.xml}}} 
    1317   - {{{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}}} 
    1427 * {{{parseXML <filename> {<countMessageOccurences>}}}} 
    1528  - Parses an XML file containing users sessions. If {{{countMessageOccurences}}} is true, a statistic containing how often each message occurred in the log is printed.  
     
    1730   - {{{parseXML d:/log.xml}}} 
    1831   - {{{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 
    2350 
    2451== Translating MFC Messages into Events ==