Update DiscEvalMT.py
Browse files- DiscEvalMT.py +1 -1
DiscEvalMT.py
CHANGED
|
@@ -42,7 +42,7 @@ class DiscEvalMTConfig(datasets.BuilderConfig):
|
|
| 42 |
**kwargs: keyword arguments forwarded to super.
|
| 43 |
"""
|
| 44 |
self.evaltype = evaltype
|
| 45 |
-
if
|
| 46 |
raise ValueError("Invalid evaltype: %s. You must choose between 'anaphora' and 'lexical_choice' " % evaltype)
|
| 47 |
super(DiscEvalMTConfig, self).__init__(**kwargs)
|
| 48 |
|
|
|
|
| 42 |
**kwargs: keyword arguments forwarded to super.
|
| 43 |
"""
|
| 44 |
self.evaltype = evaltype
|
| 45 |
+
if evaltype not in ['anaphora', 'lexical_choice']:
|
| 46 |
raise ValueError("Invalid evaltype: %s. You must choose between 'anaphora' and 'lexical_choice' " % evaltype)
|
| 47 |
super(DiscEvalMTConfig, self).__init__(**kwargs)
|
| 48 |
|