Use generator based builder to inherit free functionality
Browse files- personachat_truecased.py +1 -1
personachat_truecased.py
CHANGED
@@ -33,7 +33,7 @@ _CITATION = """\
|
|
33 |
"""
|
34 |
|
35 |
|
36 |
-
class PersonachatTruecased(datasets.
|
37 |
"""
|
38 |
Version of the PersonaChat dataset that includes true-casing, normalized punctuation, and candidate distractor
|
39 |
responses for each dialogue turn, for including a multiple choice regularzation loss while training.
|
|
|
33 |
"""
|
34 |
|
35 |
|
36 |
+
class PersonachatTruecased(datasets.GeneratorBasedBuilder):
|
37 |
"""
|
38 |
Version of the PersonaChat dataset that includes true-casing, normalized punctuation, and candidate distractor
|
39 |
responses for each dialogue turn, for including a multiple choice regularzation loss while training.
|