Update hello.py
Browse files
hello.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
print("\n\nhello\n\n")
|
2 |
import evaluate
|
3 |
from evaluate.evaluation_suite import SubTask
|
4 |
|
@@ -7,6 +6,7 @@ class Suite(evaluate.EvaluationSuite):
|
|
7 |
|
8 |
def __init__(self, name):
|
9 |
super().__init__(name)
|
|
|
10 |
|
11 |
self.preprocessor = lambda x: {"text": x["text"].lower()}
|
12 |
self.suite = [
|
|
|
|
|
1 |
import evaluate
|
2 |
from evaluate.evaluation_suite import SubTask
|
3 |
|
|
|
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 = [
|