I am executing the java version of Symbolic Aggregate Approximation technique which I downloaded from Github.
When I execute the same using command prompt as given in section 2.0 it's working well'
But when I change the parameters, like adding -a
, -w
, -p
:
E:\Paper3>java -jar "jmotif-sax-1.1.2-SNAPSHOT-jar-with-dependencies.jar" -a 8 -d temp.csv -o out.txt -t 1 -w 28 -p 8
it results in the following error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "-t"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.valueOf(Unknown Source)
at net.seninp.jmotif.sax.SAXCLIConverter.main(SAXCLIConverter.java:89)