Update README.md
Browse files
README.md
CHANGED
@@ -51,7 +51,6 @@ encoded_input = tokenizer(text, return_tensors='pt')
|
|
51 |
output = model(**encoded_input)
|
52 |
scores = output[0][0].detach().numpy()
|
53 |
scores = softmax(scores)
|
54 |
-
|
55 |
# Print labels and scores
|
56 |
ranking = np.argsort(scores)
|
57 |
ranking = ranking[::-1]
|
|
|
51 |
output = model(**encoded_input)
|
52 |
scores = output[0][0].detach().numpy()
|
53 |
scores = softmax(scores)
|
|
|
54 |
# Print labels and scores
|
55 |
ranking = np.argsort(scores)
|
56 |
ranking = ranking[::-1]
|