Update README.md
Browse files
README.md
CHANGED
@@ -33,14 +33,17 @@ In this case for the output:
|
|
33 |
- 2 = neutral
|
34 |
|
35 |
Example for a positive prediction:
|
|
|
36 |
model.predict(["Das ist gut! Wir danken dir."])
|
37 |
([0], array([[ 2.06561327, -3.57908797, 1.5340755 ]]))
|
38 |
|
39 |
Example for a negative prediction:
|
|
|
40 |
model.predict(["Ich hasse dich!"])
|
41 |
([1], array([[-3.50486898, 4.29590368, -0.9000684 ]]))
|
42 |
|
43 |
Example for a neutral prediction:
|
|
|
44 |
model.predict(["Heute ist Sonntag."])
|
45 |
([2], array([[-2.94458342, -2.91875601, 4.94414234]]))
|
46 |
|
|
|
33 |
- 2 = neutral
|
34 |
|
35 |
Example for a positive prediction:
|
36 |
+
|
37 |
model.predict(["Das ist gut! Wir danken dir."])
|
38 |
([0], array([[ 2.06561327, -3.57908797, 1.5340755 ]]))
|
39 |
|
40 |
Example for a negative prediction:
|
41 |
+
|
42 |
model.predict(["Ich hasse dich!"])
|
43 |
([1], array([[-3.50486898, 4.29590368, -0.9000684 ]]))
|
44 |
|
45 |
Example for a neutral prediction:
|
46 |
+
|
47 |
model.predict(["Heute ist Sonntag."])
|
48 |
([2], array([[-2.94458342, -2.91875601, 4.94414234]]))
|
49 |
|