Update README.md
Browse files
README.md
CHANGED
|
@@ -53,8 +53,8 @@ On a 10% held-out test set, the model achieved **88.7% accuracy**, **0.898 macro
|
|
| 53 |
```python
|
| 54 |
from transformers import pipeline
|
| 55 |
|
| 56 |
-
|
| 57 |
-
clf = pipeline("text-classification", model=
|
| 58 |
truncation=True, max_length=192)
|
| 59 |
|
| 60 |
texts = [
|
|
|
|
| 53 |
```python
|
| 54 |
from transformers import pipeline
|
| 55 |
|
| 56 |
+
model = "bilalezafar/cbdc-type"
|
| 57 |
+
clf = pipeline("text-classification", model=model, tokenizer=model,
|
| 58 |
truncation=True, max_length=192)
|
| 59 |
|
| 60 |
texts = [
|