You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there's one large jar file generated by the Maven build, running which runs a local API instance.
Instead there should be 3 jar files generated as a result of build into out folder:
indexation.jar that creates Lucene indexes from out/externalData into out/indexes
analysis.jar that accepts triples of form pivot,comparison,feature separated by \n and outputs the same list of triples with appended 0 (not discriminative) or 1 (discriminative). E.g java -jar analysis.jar --model_name < apple,orange,red is expected to output to standard out apple,orange,red,1
api.jar current functionality of the jar, i.e. runs a local instance of API.
The text was updated successfully, but these errors were encountered:
Currently there's one large
jar
file generated by the Maven build, running which runs a localAPI
instance.Instead there should be 3
jar
files generated as a result of build intoout
folder:indexation.jar
that createsLucene
indexes fromout/externalData
intoout/indexes
analysis.jar
that accepts triples of formpivot,comparison,feature
separated by\n
and outputs the same list of triples with appended 0 (not discriminative) or 1 (discriminative). E.gjava -jar analysis.jar --model_name < apple,orange,red
is expected to output to standard outapple,orange,red,1
api.jar
current functionality of thejar
, i.e. runs a local instance ofAPI
.The text was updated successfully, but these errors were encountered: