From 2115a6096eadb0f16d93cebe6f8dc507e6daae92 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Wed, 31 Jul 2019 16:36:01 +0100 Subject: Clarify that points need to be clicked on --- app/main/demo.py | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'app/main') diff --git a/app/main/demo.py b/app/main/demo.py index 2edae04..583e350 100644 --- a/app/main/demo.py +++ b/app/main/demo.py @@ -54,13 +54,20 @@ DEMO_DATA = { ) }, "annotate": { - "text": RUBRIC - + markdown.markdown( + "text": markdown.markdown( textwrap.dedent( """ + 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. You can mark a point by + clicking on it. + Click "Submit" when you have finished marking the change points or "No change points" when you believe there are none. You can - reset the graph with the "Reset" button.""" + reset the graph with the "Reset" button. + + """ ) ) }, @@ -77,9 +84,10 @@ DEMO_DATA = { Don't worry if you weren't exactly correct on the first try. The goal of this introduction is to familiarise yourself with time series data and with change point detection in particular. + Note that in general we consider the change point to be the - point where the new behaviour starts, not the last point of the - current behaviour.""" + point where the new behaviour *starts*, not the last point of + the current behaviour.""" ) ) }, @@ -445,7 +453,7 @@ def demo_evaluate(demo_id, phase_id, form): annotations_true=annotations_true, text=demo_data["text"], form=form, - is_multi=is_multi + is_multi=is_multi, ) -- cgit v1.2.3