Token Classification
GLiNER
PyTorch
tomaarsen HF staff commited on
Commit
c133dd0
1 Parent(s): 172f71e

Update README with installable gliner; add library_name

Browse files
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -3,6 +3,7 @@ license: cc-by-nc-4.0
3
  datasets:
4
  - Universal-NER/Pile-NER-type
5
  pipeline_tag: token-classification
 
6
  ---
7
  # Model Card for GLiNER-small
8
 
@@ -16,18 +17,16 @@ This version has been trained on the Pile-NER dataset (Research purpose)
16
  * Repository: https://github.com/urchade/GLiNER
17
 
18
  ## Installation
19
- To use this model, you must download the GLiNER repository and install its dependencies:
20
  ```
21
- !git clone https://github.com/urchade/GLiNER.git
22
- %cd GLiNER
23
- !pip install -r requirements.txt
24
  ```
25
 
26
  ## Usage
27
- Once you've downloaded the GLiNER repository, you can import the GLiNER class from the `model` file. You can then load this model using `GLiNER.from_pretrained` and predict entities with `predict_entities`.
28
 
29
  ```python
30
- from model import GLiNER
31
 
32
  model = GLiNER.from_pretrained("urchade/gliner_small")
33
 
 
3
  datasets:
4
  - Universal-NER/Pile-NER-type
5
  pipeline_tag: token-classification
6
+ library_name: gliner
7
  ---
8
  # Model Card for GLiNER-small
9
 
 
17
  * Repository: https://github.com/urchade/GLiNER
18
 
19
  ## Installation
20
+ To use this model, you must install the GLiNER Python library:
21
  ```
22
+ !pip install gliner
 
 
23
  ```
24
 
25
  ## Usage
26
+ Once you've downloaded the GLiNER library, you can import the GLiNER class. You can then load this model using `GLiNER.from_pretrained` and predict entities with `predict_entities`.
27
 
28
  ```python
29
+ from gliner import GLiNER
30
 
31
  model = GLiNER.from_pretrained("urchade/gliner_small")
32