From 732d577078ead5104b6afaa4c56be0d14c60b631 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 19 Aug 2019 16:32:17 +0100 Subject: Text changes --- app/auth/routes.py | 11 ++++++----- app/main/demo.py | 3 ++- app/main/routes.py | 2 +- app/templates/index.html | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) (limited to 'app') diff --git a/app/auth/routes.py b/app/auth/routes.py index aa44e7d..0e40fbb 100644 --- a/app/auth/routes.py +++ b/app/auth/routes.py @@ -39,10 +39,10 @@ LEGAL = markdown.markdown( """ ## Terms and Conditions - The AnnotateChange application is created to construct a data set for - the analysis of change point algorithms. As a user, you will be asked - to annotate time series data. It is important that we can use these - annotations freely and publish them under a permissive license. + The AnnotateChange application was created to construct a data set for + the analysis of change point detection algorithms. As a user, you will + be asked to annotate time series data. It is important that we can use + these annotations freely and publish them under a permissive license. Therefore, we ask that you agree to the following terms and conditions. @@ -141,7 +141,8 @@ def register(): send_email_confirmation_email(user) flash( - "An email has been sent to confirm your account, please check your email (including the spam folder).", + "An email has been sent to confirm your account, please check " + "your email (including the spam folder).", "info", ) diff --git a/app/main/demo.py b/app/main/demo.py index 7c92bba..7e21768 100644 --- a/app/main/demo.py +++ b/app/main/demo.py @@ -61,7 +61,8 @@ DEMO_DATA = { 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. + clicking on it. A marked point can be unmarked by clicking on + it again. Click "Submit" when you have finished marking the change points or "No change points" when you believe there are none. You can diff --git a/app/main/routes.py b/app/main/routes.py index 52c7871..85e8144 100644 --- a/app/main/routes.py +++ b/app/main/routes.py @@ -19,7 +19,7 @@ RUBRIC = """ 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. Recall - that it is also possible for there to be no such changes. + that it is also possible for there to be no change points.
""" diff --git a/app/templates/index.html b/app/templates/index.html index 613db53..95bced8 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -10,7 +10,7 @@

Hi, {{ current_user.username }}!

{% endif %}

- Welcome to AnnotateChange a tool for annotating time series data + Welcome to AnnotateChange, a tool for annotating time series data for changepoint analysis.

{% if not current_user.is_authenticated %} -- cgit v1.2.3