Update README.md
Browse files
README.md
CHANGED
@@ -35,7 +35,6 @@ text = "Tesla stock is on the rise!"
|
|
35 |
encoded_input = tokenizer(text, return_tensors='pt')
|
36 |
output = model(**encoded_input)
|
37 |
|
38 |
-
output = model(**encoded_input)
|
39 |
scores = output[0][0].detach().numpy()
|
40 |
scores = softmax(scores)
|
41 |
|
@@ -45,7 +44,6 @@ scores = softmax(scores)
|
|
45 |
#text = "Tesla stock is on the rise!"
|
46 |
#encoded_input = tokenizer(text, return_tensors='tf')
|
47 |
#output = model(**encoded_input)
|
48 |
-
#output = model(**encoded_input)
|
49 |
#scores = output[0][0]
|
50 |
#scores = softmax(scores)
|
51 |
|
|
|
35 |
encoded_input = tokenizer(text, return_tensors='pt')
|
36 |
output = model(**encoded_input)
|
37 |
|
|
|
38 |
scores = output[0][0].detach().numpy()
|
39 |
scores = softmax(scores)
|
40 |
|
|
|
44 |
#text = "Tesla stock is on the rise!"
|
45 |
#encoded_input = tokenizer(text, return_tensors='tf')
|
46 |
#output = model(**encoded_input)
|
|
|
47 |
#scores = output[0][0]
|
48 |
#scores = softmax(scores)
|
49 |
|