TermSuite is a Java UIMA-based toolbox for terminology extraction and multilingual term alignment. To install TermSuite and run terminology extraction, see the Getting Started guide.
Download, install and get TermSuite running on a short example without the Getting started guide.
Requirements:
- git
- gradle
$ git clone git@github.com:termsuite/termsuite-core.git
$ cd termsuite-core
$ gradle
The jar will then be found under ./build/libs.
Requirements:
- git
- gradle
$ git clone git@github.com:termsuite/termsuite-core.git
$ cd termsuite-core
Generate the type system classes. In a console:
$ gradle jcasgen
Now you can import/refresh termsuite-core/
in your IDE.
<dependency>
<groupId>fr.univ-nantes.termsuite</groupId>
<artifactId>termsuite-core</artifactId>
<version>3.0.9</version>
</dependency>
- Install TermSuite and run terminology extraction: Getting started guide
- User manual: Documentation
- Official site: TermSuite
cp src/test/resources/termsuite-test.properties.sample src/test/resources/termsuite-test.properties
,- In
termsuite-test.properties
, set the path to your local TreeTagger installation, - Run
gradle cucumberTest
from command line, or launch theFunctionalTests
test suite from your IDE's JUnit launcher.