gitextract_trfcfd8n/ ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── aol.properties ├── appveyor.yml ├── doc/ │ ├── api.rst │ ├── background.rst │ ├── conf.py │ ├── index.rst │ ├── install.rst │ ├── ltp4j-document-1.0.md │ ├── make.bat │ ├── requirements.txt │ └── run.rst ├── examples/ │ ├── Console.java │ └── example ├── pom.xml └── src/ ├── main/ │ ├── c++/ │ │ ├── edu_hit_ir_ltp4j_NER.cpp │ │ ├── edu_hit_ir_ltp4j_Parser.cpp │ │ ├── edu_hit_ir_ltp4j_Postagger.cpp │ │ ├── edu_hit_ir_ltp4j_SRL.cpp │ │ ├── edu_hit_ir_ltp4j_Segmentor.cpp │ │ ├── edu_hit_ir_ltp4j_SplitSentence.cpp │ │ └── string_to_jstring.hpp │ └── java/ │ └── edu/ │ └── hit/ │ └── ir/ │ └── ltp4j/ │ ├── NER.java │ ├── Pair.java │ ├── Parser.java │ ├── Postagger.java │ ├── SRL.java │ ├── Segmentor.java │ └── SplitSentence.java └── test/ ├── c++/ │ └── main.cpp └── java/ └── edu/ └── hit/ └── ir/ └── ltp4j/ └── test/ ├── NERTest.java ├── ParserTest.java ├── PostaggerTest.java ├── SRLTest.java └── SegmentorTest.java