Datasets:
Tasks:
Text Classification
Sub-tasks:
multi-label-classification
Languages:
English
Size:
100K<n<1M
ArXiv:
License:
Update files from the datasets library (from 1.6.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.6.0
README.md
CHANGED
@@ -10,7 +10,7 @@ licenses:
|
|
10 |
multilinguality:
|
11 |
- monolingual
|
12 |
size_categories:
|
13 |
-
- n<
|
14 |
source_datasets:
|
15 |
- extended|other-Switchboard-1 Telephone Speech Corpus, Release 2
|
16 |
task_categories:
|
@@ -67,11 +67,13 @@ conversations and their participants.
|
|
67 |
|
68 |
| Model | Accuracy | Paper / Source | Code |
|
69 |
| ------------- | :-----:| --- | --- |
|
|
|
70 |
| SGNN (Ravi et al., 2018) | 83.1 | [Self-Governing Neural Networks for On-Device Short Text Classification](https://www.aclweb.org/anthology/D18-1105.pdf)
|
71 |
| CASA (Raheja et al., 2019) | 82.9 | [Dialogue Act Classification with Context-Aware Self-Attention](https://www.aclweb.org/anthology/N19-1373.pdf)
|
72 |
| DAH-CRF (Li et al., 2019) | 82.3 | [A Dual-Attention Hierarchical Recurrent Neural Network for Dialogue Act Classification](https://www.aclweb.org/anthology/K19-1036.pdf)
|
73 |
-
| ALDMN (Wan et al., 2018) | 81.5 | [Improved Dynamic Memory Network for Dialogue Act Classification with Adversarial Training](https://arxiv.org/pdf/1811.05021.pdf)
|
74 |
-
| CRF-ASN (Chen et al., 2018) | 81.3 | [Dialogue Act Recognition via CRF-Attentive Structured Network](https://arxiv.org/abs/1711.05568)
|
|
|
75 |
| Bi-LSTM-CRF (Kumar et al., 2017) | 79.2 | [Dialogue Act Sequence Labeling using Hierarchical encoder with CRF](https://arxiv.org/abs/1709.04250) | [Link](https://github.com/YanWenqiang/HBLSTM-CRF) |
|
76 |
| RNN with 3 utterances in context (Bothe et al., 2018) | 77.34 | [A Context-based Approach for Dialogue Act Recognition using Simple Recurrent Neural Networks](https://arxiv.org/abs/1805.06280) | |
|
77 |
|
@@ -269,4 +271,4 @@ This work is licensed under a [Creative Commons Attribution-NonCommercial-ShareA
|
|
269 |
|
270 |
### Contributions
|
271 |
|
272 |
-
Thanks to [@gmihaila](https://github.com/gmihaila) for adding this dataset.
|
|
|
10 |
multilinguality:
|
11 |
- monolingual
|
12 |
size_categories:
|
13 |
+
- 100K<n<1M
|
14 |
source_datasets:
|
15 |
- extended|other-Switchboard-1 Telephone Speech Corpus, Release 2
|
16 |
task_categories:
|
|
|
67 |
|
68 |
| Model | Accuracy | Paper / Source | Code |
|
69 |
| ------------- | :-----:| --- | --- |
|
70 |
+
| H-Seq2seq (Colombo et al., 2020) | 85.0 | [Guiding attention in Sequence-to-sequence models for Dialogue Act prediction](https://ojs.aaai.org/index.php/AAAI/article/view/6259/6115)
|
71 |
| SGNN (Ravi et al., 2018) | 83.1 | [Self-Governing Neural Networks for On-Device Short Text Classification](https://www.aclweb.org/anthology/D18-1105.pdf)
|
72 |
| CASA (Raheja et al., 2019) | 82.9 | [Dialogue Act Classification with Context-Aware Self-Attention](https://www.aclweb.org/anthology/N19-1373.pdf)
|
73 |
| DAH-CRF (Li et al., 2019) | 82.3 | [A Dual-Attention Hierarchical Recurrent Neural Network for Dialogue Act Classification](https://www.aclweb.org/anthology/K19-1036.pdf)
|
74 |
+
| ALDMN (Wan et al., 2018) | 81.5 | [Improved Dynamic Memory Network for Dialogue Act Classification with Adversarial Training](https://arxiv.org/pdf/1811.05021.pdf)
|
75 |
+
| CRF-ASN (Chen et al., 2018) | 81.3 | [Dialogue Act Recognition via CRF-Attentive Structured Network](https://arxiv.org/abs/1711.05568)
|
76 |
+
| Pretrained H-Transformer (Chapuis et al., 2020) | 79.3 | [Hierarchical Pre-training for Sequence Labelling in Spoken Dialog] (https://www.aclweb.org/anthology/2020.findings-emnlp.239)
|
77 |
| Bi-LSTM-CRF (Kumar et al., 2017) | 79.2 | [Dialogue Act Sequence Labeling using Hierarchical encoder with CRF](https://arxiv.org/abs/1709.04250) | [Link](https://github.com/YanWenqiang/HBLSTM-CRF) |
|
78 |
| RNN with 3 utterances in context (Bothe et al., 2018) | 77.34 | [A Context-based Approach for Dialogue Act Recognition using Simple Recurrent Neural Networks](https://arxiv.org/abs/1805.06280) | |
|
79 |
|
|
|
271 |
|
272 |
### Contributions
|
273 |
|
274 |
+
Thanks to [@gmihaila](https://github.com/gmihaila) for adding this dataset.
|
swda.py
CHANGED
@@ -22,7 +22,6 @@ This script is a modified version of the original swda.py from https://github.co
|
|
22 |
the original corpus repo. Modifications are made to accommodate the HuggingFace Dataset project format.
|
23 |
"""
|
24 |
|
25 |
-
from __future__ import absolute_import, division, print_function
|
26 |
|
27 |
import csv
|
28 |
import datetime
|
|
|
22 |
the original corpus repo. Modifications are made to accommodate the HuggingFace Dataset project format.
|
23 |
"""
|
24 |
|
|
|
25 |
|
26 |
import csv
|
27 |
import datetime
|