Update README.md
Browse files
README.md
CHANGED
@@ -19,7 +19,6 @@ news_headline = "Amateur rocket scientists reach for space."
|
|
19 |
encoded_input = tokenizer(news_headline, return_tensors='pt')
|
20 |
output = model(**encoded_input)
|
21 |
distribution = output.logits.softmax(dim=-1)
|
22 |
-
print(distribution)
|
23 |
```
|
24 |
|
25 |
Each index of the output vector represents the following:
|
|
|
19 |
encoded_input = tokenizer(news_headline, return_tensors='pt')
|
20 |
output = model(**encoded_input)
|
21 |
distribution = output.logits.softmax(dim=-1)
|
|
|
22 |
```
|
23 |
|
24 |
Each index of the output vector represents the following:
|