Changes between Version 473 and Version 474 of WikiStart


Ignore:
Timestamp:
03/23/22 13:37:23 (2 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v473 v474  
    740740The LogConverter tool adds outcome utilities to APP.json and APPLearn.json log files. These log files are just serialized NegoState objects. The converter picks up the results from these and adds utilities to them. Then it can write the results to stdout or a file, in either JSON or CSV format.
    741741
     742As usual, download the latest logconverter jar-with-dependencies [http://artifactory.ewi.tudelft.nl/artifactory/webapp/#/artifacts/browse/tree/General/libs-release-local/geniusweb/logconverter from the artifactory]
     743
    742744You call the logconverter like this (download the logconverter from the artifactory, or download the sources):
    743745{{{
    744 java -jar target/logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/APP1646925947841local.json -f CSV -o test.csv
     746java -jar logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/APP1646925947841local.json -f CSV -o test.csv
    745747}}}
    746748
    747749You can also convert an entire directory, like this (make sure you create the output dir and that all files in the source dir are NegoState objects)
    748750{{{
    749 java -jar target/logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/ -f CSV -o test
     751java -jar logconverter-2.1.3-jar-with-dependencies.jar -s src/test/resources/ -f CSV -o test
    750752}}}
    751753