Update README.md
Browse files
README.md
CHANGED
@@ -33,11 +33,9 @@ _Note: "Interpellation is a formal request of a parliament to the respective gov
|
|
33 |
```python
|
34 |
from transformers import pipeline
|
35 |
|
36 |
-
pipeline_classification_topics = pipeline("text-classification", model="chkla/parlbert-topic-german",
|
37 |
-
|
38 |
-
text
|
39 |
-
|
40 |
-
pipeline_classification_topics(text) # Government
|
41 |
|
42 |
```
|
43 |
|
|
|
33 |
```python
|
34 |
from transformers import pipeline
|
35 |
|
36 |
+
pipeline_classification_topics = pipeline("text-classification", model="chkla/parlbert-topic-german", return_all_scores=False)
|
37 |
+
text = "Das Sachgebiet Investive Ausgaben des Bundes Bundesfinanzminister Apel hat gemäß BMF Finanznachrichten vom 1. Januar erklärt, die Investitionsquote des Bundes sei in den letzten zehn Jahren nahezu konstant geblieben."
|
38 |
+
pipeline_classification_topics(text) # Macroeconomics
|
|
|
|
|
39 |
|
40 |
```
|
41 |
|