Token Classification
GLiNER
PyTorch
English

Update README with installable gliner; add library_name

#5
by tomaarsen HF staff - opened
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -5,6 +5,7 @@ language:
5
  pipeline_tag: token-classification
6
  datasets:
7
  - Universal-NER/Pile-NER-type
 
8
  ---
9
 
10
  # Model Card for GLiNER-base
@@ -20,18 +21,16 @@ This version has been trained on the **Pile-NER** dataset (Research purpose). Co
20
  * Repository: https://github.com/urchade/GLiNER
21
 
22
  ## Installation
23
- To use this model, you must download the GLiNER repository and install its dependencies:
24
  ```
25
- !git clone https://github.com/urchade/GLiNER.git
26
- %cd GLiNER
27
- !pip install -r requirements.txt
28
  ```
29
 
30
  ## Usage
31
- 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`.
32
 
33
  ```python
34
- from model import GLiNER
35
 
36
  model = GLiNER.from_pretrained("urchade/gliner_base")
37
 
 
5
  pipeline_tag: token-classification
6
  datasets:
7
  - Universal-NER/Pile-NER-type
8
+ library_name: gliner
9
  ---
10
 
11
  # Model Card for GLiNER-base
 
21
  * Repository: https://github.com/urchade/GLiNER
22
 
23
  ## Installation
24
+ To use this model, you must install the GLiNER Python library:
25
  ```
26
+ !pip install gliner
 
 
27
  ```
28
 
29
  ## Usage
30
+ 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`.
31
 
32
  ```python
33
+ from gliner import GLiNER
34
 
35
  model = GLiNER.from_pretrained("urchade/gliner_base")
36