Update tasks/text.py
Browse files- tasks/text.py +2 -2
tasks/text.py
CHANGED
@@ -50,8 +50,8 @@ async def evaluate_text(request: TextEvaluationRequest):
|
|
50 |
dataset = dataset.map(lambda x: {"label": LABEL_MAPPING[x["label"]]})
|
51 |
|
52 |
# Split dataset
|
53 |
-
train_test = dataset["train"]
|
54 |
-
test_dataset =
|
55 |
|
56 |
# Start tracking emissions
|
57 |
tracker.start()
|
|
|
50 |
dataset = dataset.map(lambda x: {"label": LABEL_MAPPING[x["label"]]})
|
51 |
|
52 |
# Split dataset
|
53 |
+
train_test = dataset["train"]
|
54 |
+
test_dataset = dataset["test"]
|
55 |
|
56 |
# Start tracking emissions
|
57 |
tracker.start()
|