Update README.md
Browse files
README.md
CHANGED
@@ -25,14 +25,16 @@ The model "understands" the text in Russian, Ukrainian and English languages bes
|
|
25 |
but is not limited only by it.
|
26 |
|
27 |
If you want to experiment with this model, use the dictionary:
|
28 |
-
|
29 |
dict = {0:'neurology', 1:'psychiatry', 2:'psychotherapy'}
|
30 |
-
|
31 |
and also this simple code:
|
32 |
-
|
33 |
preds = model(["Bla-bla-bla"])
|
34 |
|
35 |
dict.get(int(str(list(preds))[1:-1]))
|
|
|
|
|
36 |
```
|
37 |
Warning: This model cannot be used for medical diagnosis and is not a substitute for a physician!
|
38 |
```
|
|
|
25 |
but is not limited only by it.
|
26 |
|
27 |
If you want to experiment with this model, use the dictionary:
|
28 |
+
```
|
29 |
dict = {0:'neurology', 1:'psychiatry', 2:'psychotherapy'}
|
30 |
+
```
|
31 |
and also this simple code:
|
32 |
+
```
|
33 |
preds = model(["Bla-bla-bla"])
|
34 |
|
35 |
dict.get(int(str(list(preds))[1:-1]))
|
36 |
+
```
|
37 |
+
|
38 |
```
|
39 |
Warning: This model cannot be used for medical diagnosis and is not a substitute for a physician!
|
40 |
```
|