honghanhh / ate-docker

Docker version for ATE API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Automatic Term Extraction API

1. Description

In this repo, we wrote an API to inference SloBERTa term extractor, whose model has been trained with RSDO5 corpus. Feel free to check out this repo for better understanding about the methodology.


2. Requirements

Please install all the necessary libraries noted in requirements.txt using this command:

pip install -r requirements.txt

3. Implementation

Download the model from pytorch_model.bin and save it into ./model/term_extractor/.

Run the following command on the terminal:

main.py

A link will be show on the terminal so that you can access to the API and test requests locally.

 * Serving Flask app 'main'
 * Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
 * Running on http://127.0.0.1:5000
Press CTRL+C to quit
 * Restarting with stat
 * Debugger is active!
 * Debugger PIN: 185-520-689

4. Docker version

Run the following command:

docker build -t ate .  
docker run -d -p 5000:5000 ate

5. Output format

For each term, we return one entry for each term lemma, for which we return also the canonical form, pos tag, ranking, as well as an example of a term form and its msd. A response of the service is encoded in a JSON format composed of the following attributes:

  • lemma: a string presents the lemmatised form of the term (in the corpus, term forms with the same lemma are considered as the same terms).
  • canonical: a string presents the canonical form generated.
  • frequency: the integer representing the frequency of the lemmatised term in the corpus.
  • ranking: a float presents the termhood ranking.
  • term_example_occurrence: a string presents an example occurrence of the term in the corpus (a term can appear in different forms, e.g. different cases, and one example is returned). For the example term, we selected the one with the highest ranking score (see ranking attribute).
  • term_example_pos: a string presents the part-of-speech (POS) of each word in the term example occurrence.
  • term_example_msd: a string presents the msd of the term example occurrence.

Please check out the format example below:

[
    {
        "lemma": "plagiatorstvo",
        "canonical": "plagiatorstvo",
        "frequency": 2,
        "ranking": 0.9977,
        "term_example_occurrence": "plagiatorstvo",
        "term_example_pos": "NOUN",
        "term_example_msd": "Ncnsn"
    },
    {
        "lemma": "obročen plačevanje",
        "canonical": "obročno plačevanje",
        "frequency": 1,
        "ranking": 0.9976,
        "term_example_occurrence": "obročnim plačevanjem",
        "term_example_pos": "ADJ NOUN",
        "term_example_msd": "Agpnsi Ncnsi"
    },
    {
        "lemma": "delen odpis",
        "canonical": "delni odpis",
        "frequency": 1,
        "ranking": 0.9971,
        "term_example_occurrence": "delnega odpisa",
        "term_example_pos": "ADJ NOUN",
        "term_example_msd": "Agpmsg Ncmsg"
    },
    ...
]

We suggest you use POSTMAN or Hoppscotch to test the API with an uploaded file as the output whose format is CONLL-like (plese check out temp.conllu). See the demonstration as the image below.

The output format: demo

6. References

The term extraction tool is an updated version of Tran et al. (2022), using the SloBERTa model.

Hanh Thi Hong Tran, Matej Martinc, Andraz Repar, Antoine Doucet and Senja Pollak: A Transformer-based Sequence-labeling Approach to the Slovenian Cross-domain Automatic Term Extraction. Proc. of Jezikovne tehnologije in digitalna humanistika, 2022.

6. Contributors:

About

Docker version for ATE API


Languages

Language:Python 91.7%Language:Dockerfile 8.3%