Update README.md
Browse files
README.md
CHANGED
@@ -24,4 +24,7 @@ model = AutoModelForSequenceClassification.from_pretrained(ckpt)
|
|
24 |
classifier = pipeline('text-classification', tokenizer=tokenizer, model=model)
|
25 |
classifier('What is the base of the exchange rates?')
|
26 |
# Output: [{'label': 'exchange_rate', 'score': 0.8509947657585144}]
|
27 |
-
```
|
|
|
|
|
|
|
|
24 |
classifier = pipeline('text-classification', tokenizer=tokenizer, model=model)
|
25 |
classifier('What is the base of the exchange rates?')
|
26 |
# Output: [{'label': 'exchange_rate', 'score': 0.8509947657585144}]
|
27 |
+
```
|
28 |
+
|
29 |
+
> Created by [Manuel Romero/@mrm8488](https://twitter.com/mrm8488) | [LinkedIn](https://www.linkedin.com/in/manuel-romero-cs/)
|
30 |
+
> Made with <span style="color: #e25555;">♥</span> in Spain
|