Update README.md
Browse files
README.md
CHANGED
@@ -49,7 +49,61 @@ topic_model.get_topic_info()
|
|
49 |
To view all different topic representations (keywords, labels, summary, etc.) you can run the following:
|
50 |
|
51 |
```python
|
52 |
-
topic_model.get_topic(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
```
|
54 |
|
55 |
## Topic overview
|
|
|
49 |
To view all different topic representations (keywords, labels, summary, etc.) you can run the following:
|
50 |
|
51 |
```python
|
52 |
+
>>> topic_model.get_topic(0, full=True)
|
53 |
+
{'Main': [['dialogue', 0.02704485163341523],
|
54 |
+
['dialog', 0.01677038224466311],
|
55 |
+
['response', 0.011692640237477233],
|
56 |
+
['responses', 0.01002788412923778],
|
57 |
+
['intent', 0.00990720856306287],
|
58 |
+
['oriented', 0.009217253131615378],
|
59 |
+
['slot', 0.009177118721490055],
|
60 |
+
['conversational', 0.009129311385144046],
|
61 |
+
['systems', 0.009101146153425574],
|
62 |
+
['conversation', 0.008845392252307181]],
|
63 |
+
'POS': [['dialogue', 0.02704485163341523],
|
64 |
+
['dialog', 0.01677038224466311],
|
65 |
+
['response', 0.011692640237477233],
|
66 |
+
['responses', 0.01002788412923778],
|
67 |
+
['intent', 0.00990720856306287],
|
68 |
+
['slot', 0.009177118721490055],
|
69 |
+
['conversational', 0.009129311385144046],
|
70 |
+
['systems', 0.009101146153425574],
|
71 |
+
['conversation', 0.008845392252307181],
|
72 |
+
['user', 0.008753551043296965]],
|
73 |
+
'KeyBERTInspired': [['task oriented dialogue', 0.6559894680976868],
|
74 |
+
['dialogue systems', 0.6249060034751892],
|
75 |
+
['oriented dialogue', 0.5788208246231079],
|
76 |
+
['dialog systems', 0.530449628829956],
|
77 |
+
['dialogue state', 0.5167528390884399],
|
78 |
+
['response generation', 0.5143576860427856],
|
79 |
+
['spoken language understanding', 0.46739083528518677],
|
80 |
+
['oriented dialog', 0.4600704610347748],
|
81 |
+
['dialog', 0.4534587264060974],
|
82 |
+
['dialogues', 0.44082391262054443]],
|
83 |
+
'MMR': [['dialogue', 0.02704485163341523],
|
84 |
+
['dialog', 0.01677038224466311],
|
85 |
+
['response', 0.011692640237477233],
|
86 |
+
['responses', 0.01002788412923778],
|
87 |
+
['intent', 0.00990720856306287],
|
88 |
+
['oriented', 0.009217253131615378],
|
89 |
+
['slot', 0.009177118721490055],
|
90 |
+
['conversational', 0.009129311385144046],
|
91 |
+
['systems', 0.009101146153425574],
|
92 |
+
['conversation', 0.008845392252307181]],
|
93 |
+
'KeyBERT + MMR': [['task oriented dialogue', 0.6559894680976868],
|
94 |
+
['dialogue systems', 0.6249060034751892],
|
95 |
+
['oriented dialogue', 0.5788208246231079],
|
96 |
+
['dialog systems', 0.530449628829956],
|
97 |
+
['dialogue state', 0.5167528390884399],
|
98 |
+
['response generation', 0.5143576860427856],
|
99 |
+
['spoken language understanding', 0.46739083528518677],
|
100 |
+
['oriented dialog', 0.4600704610347748],
|
101 |
+
['dialog', 0.4534587264060974],
|
102 |
+
['dialogues', 0.44082391262054443]],
|
103 |
+
'OpenAI_Label': [['Challenges and Approaches in Developing Task-oriented Dialogue Systems',
|
104 |
+
1]],
|
105 |
+
'OpenAI_Summary': [['Task-oriented dialogue systems and their components, such as dialogue policy, natural language understanding, dialogue state tracking, response generation, and end-to-end training using neural networks. These components are crucial in assisting users to complete various activities such as booking tickets and restaurant reservations through spoken language understanding dialogue. The challenge lies in tracking dialogue states of multiple domains and obtaining annotations for training. Effective SLU is achieved by utilizing context from the prior dialogue history.',
|
106 |
+
1]]}
|
107 |
```
|
108 |
|
109 |
## Topic overview
|