Update README.md
Browse files
README.md
CHANGED
@@ -60,6 +60,14 @@ The following hyperparameters were used during training:
|
|
60 |
|
61 |
### Training results
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
|
65 |
### Framework versions
|
|
|
60 |
|
61 |
### Training results
|
62 |
|
63 |
+
## Usage
|
64 |
+
The easiest way is to load the inference api from huggingface and second method is through the pipeline object offered by transformers library.
|
65 |
+
```python
|
66 |
+
# Use a pipeline as a high-level helper
|
67 |
+
from transformers import pipeline
|
68 |
+
|
69 |
+
pipe = pipeline("token-classification", model="blaze999/deberta-med-ner-2")
|
70 |
+
```
|
71 |
|
72 |
|
73 |
### Framework versions
|