GLiNER
PyTorch
tomaarsen HF staff commited on
Commit
9332ba4
1 Parent(s): 07edc46

Update README with installable gliner; add library_name

Browse files
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -2,6 +2,7 @@
2
  license: apache-2.0
3
  datasets:
4
  - numind/NuNER
 
5
  ---
6
  # Model Card for GLiNER-medium-v2
7
 
@@ -15,18 +16,16 @@ This version has been trained on the NuNER dataset (commercially permissive)
15
  * Repository: https://github.com/urchade/GLiNER
16
 
17
  ## Installation
18
- To use this model, you must download the GLiNER repository and install its dependencies:
19
  ```
20
- !git clone https://github.com/urchade/GLiNER.git
21
- %cd GLiNER
22
- !pip install -r requirements.txt
23
  ```
24
 
25
  ## Usage
26
- 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`.
27
 
28
  ```python
29
- from model import GLiNER
30
 
31
  model = GLiNER.from_pretrained("urchade/gliner_mediumv2")
32
 
 
2
  license: apache-2.0
3
  datasets:
4
  - numind/NuNER
5
+ library_name: gliner
6
  ---
7
  # Model Card for GLiNER-medium-v2
8
 
 
16
  * Repository: https://github.com/urchade/GLiNER
17
 
18
  ## Installation
19
+ To use this model, you must install the GLiNER Python library:
20
  ```
21
+ !pip install gliner
 
 
22
  ```
23
 
24
  ## Usage
25
+ 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`.
26
 
27
  ```python
28
+ from gliner import GLiNER
29
 
30
  model = GLiNER.from_pretrained("urchade/gliner_mediumv2")
31