Update hello.py
Browse files
hello.py
CHANGED
@@ -6,7 +6,6 @@ class Suite(evaluate.EvaluationSuite):
|
|
6 |
|
7 |
def __init__(self, name):
|
8 |
super().__init__(name)
|
9 |
-
print("\n\nhello\n\n")
|
10 |
|
11 |
self.preprocessor = lambda x: {"text": x["text"].lower()}
|
12 |
self.suite = [
|
@@ -40,4 +39,6 @@ class Suite(evaluate.EvaluationSuite):
|
|
40 |
}
|
41 |
}
|
42 |
)
|
43 |
-
]
|
|
|
|
|
|
6 |
|
7 |
def __init__(self, name):
|
8 |
super().__init__(name)
|
|
|
9 |
|
10 |
self.preprocessor = lambda x: {"text": x["text"].lower()}
|
11 |
self.suite = [
|
|
|
39 |
}
|
40 |
}
|
41 |
)
|
42 |
+
]
|
43 |
+
def run(test):
|
44 |
+
print("\n\nhello\n\n")
|