Ihor commited on
Commit
50a0600
β€’
1 Parent(s): afe95e4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -14,7 +14,7 @@ tags:
14
  - sentiment extraction
15
  - question-answering
16
  ---
17
- πŸš€ Meet the first multi-task prompt-tumable GLiNER model πŸš€
18
 
19
  **GLiNER-Multitask** is a model designed to extract various pieces of information from plain text based on a user-provided custom prompt. This versatile model leverages a bidirectional transformer encoder, similar to BERT, which ensures both high generalization and compute efficiency despite its compact size.
20
 
@@ -73,7 +73,7 @@ for entity in entities:
73
  print(entity["label"], β€œ=>”, entity["text"])
74
  ```
75
  ### Construct relations extraction pipeline with [utca](https://github.com/Knowledgator/utca)
76
- First of all, we need import neccessary components of the library and initalize predictor - GLiNER model and construct pipeline that combine NER and realtions extraction:
77
  ```python
78
  from utca.core import RenameAttribute
79
  from utca.implementation.predictors import (
 
14
  - sentiment extraction
15
  - question-answering
16
  ---
17
+ πŸš€ Meet the first multi-task prompt-tunable GLiNER model πŸš€
18
 
19
  **GLiNER-Multitask** is a model designed to extract various pieces of information from plain text based on a user-provided custom prompt. This versatile model leverages a bidirectional transformer encoder, similar to BERT, which ensures both high generalization and compute efficiency despite its compact size.
20
 
 
73
  print(entity["label"], β€œ=>”, entity["text"])
74
  ```
75
  ### Construct relations extraction pipeline with [utca](https://github.com/Knowledgator/utca)
76
+ First of all, we need import neccessary components of the library and initalize predictor - GLiNER model and construct pipeline that combines NER and realtions extraction:
77
  ```python
78
  from utca.core import RenameAttribute
79
  from utca.implementation.predictors import (