UAlbertaUAIS
commited on
Commit
•
908d17c
1
Parent(s):
d6f4897
Update README.md
Browse files
README.md
CHANGED
@@ -45,6 +45,7 @@ model = model.merge_and_unload()
|
|
45 |
classifier = pipeline("sentiment-analysis", model=model, tokenizer=tokenizer, max_length = 512, truncation=True, device=0)
|
46 |
classifier("Connor McDavid is good at hockey!")
|
47 |
```
|
|
|
48 |
[{'label': 'positive', 'score': 0.9888942837715149}]
|
49 |
```
|
50 |
|
|
|
45 |
classifier = pipeline("sentiment-analysis", model=model, tokenizer=tokenizer, max_length = 512, truncation=True, device=0)
|
46 |
classifier("Connor McDavid is good at hockey!")
|
47 |
```
|
48 |
+
```
|
49 |
[{'label': 'positive', 'score': 0.9888942837715149}]
|
50 |
```
|
51 |
|