2023-06-30 22:12:44 +08:00
|
|
|
# Nlp Parser
|
|
|
|
|
|
|
|
Requirements:
|
|
|
|
|
|
|
|
* Antlr4
|
|
|
|
* Gson
|
|
|
|
|
|
|
|
Useful commands:
|
|
|
|
|
|
|
|
* `antlr4 Nlp.g4`: Analyze Antlr format file.
|
2024-12-08 23:33:57 +08:00
|
|
|
* `javac *.java`: Compile executable application.
|
2023-06-30 22:12:44 +08:00
|
|
|
* Do testbench
|
|
|
|
- `grun Nlp document -tree < testbench.txt`
|
|
|
|
- `grun Nlp document -gui < testbench.txt`
|
2024-12-08 23:33:57 +08:00
|
|
|
- `java MainRunner testbench.txt out/result.json`
|
2023-06-30 22:12:44 +08:00
|
|
|
|