From 14637464277177ac092469bc6a2cb906b22a15f6 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Thu, 6 Jun 2019 11:27:35 +0100 Subject: bugfix for sorting datasets --- app/main/routes.py | 2 +- app/utils/tasks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/main/routes.py b/app/main/routes.py index a0033b1..ad78f27 100644 --- a/app/main/routes.py +++ b/app/main/routes.py @@ -16,7 +16,7 @@ from app.utils.tasks import generate_user_task logger = logging.getLogger(__name__) RUBRIC = """ -Please mark the points in the time series where an abrupt change in +Please mark the point(s) in the time series where an abrupt change in the behaviour of the series occurs. The goal is to define segments of the time series that are separated by places where these abrupt changes occur.
diff --git a/app/utils/tasks.py b/app/utils/tasks.py index 4297420..5629d46 100644 --- a/app/utils/tasks.py +++ b/app/utils/tasks.py @@ -52,7 +52,7 @@ def generate_user_task(user): return None # sort datasets so that the ones who need the least are at the front. - potential_datasets.sort() + potential_datasets.sort(key=lambda x: x[0]) _, dataset = potential_datasets[0] task = Task(annotator_id=user.id, dataset_id=dataset.id) -- cgit v1.2.3