Update README.md
Browse files
README.md
CHANGED
|
@@ -28,7 +28,7 @@ Here is how to use this model to get the features of a given text in PyTorch:
|
|
| 28 |
```python
|
| 29 |
from transformers import AutoTokenizer, AutoModelForTokenClassification
|
| 30 |
|
| 31 |
-
PRETRAINED = "cbdb/
|
| 32 |
tokenizer = AutoTokenizer.from_pretrained(PRETRAINED)
|
| 33 |
model = AutoModelForTokenClassification.from_pretrained(PRETRAINED)
|
| 34 |
```
|
|
|
|
| 28 |
```python
|
| 29 |
from transformers import AutoTokenizer, AutoModelForTokenClassification
|
| 30 |
|
| 31 |
+
PRETRAINED = "cbdb/PersonAndBookTitleSplitter"
|
| 32 |
tokenizer = AutoTokenizer.from_pretrained(PRETRAINED)
|
| 33 |
model = AutoModelForTokenClassification.from_pretrained(PRETRAINED)
|
| 34 |
```
|