You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/guide/script_examples.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -606,23 +606,23 @@ The `TimelineLabels` tag is connected to the second video (`video0`), allowing a
606
606
607
607
You can manually [pause an annotator](quality#Pause-an-annotator) to prevent stop them from completing tasks and revoke their project access.
608
608
609
-
This script automatically pauses an annotator who breaks any of the following rules:
609
+
This script automatically pauses an annotator who breaks any of the following rules and customizes the message that appears:
610
610
611
611
* Too many duplicate values `timesInARow(3)`:
612
612
613
-
Checks if the last three submitted annotations in the `TextArea` field (`comment`) all have the same value. If they do, it returns a warning message.
613
+
Checks if the last three submitted annotations in the `TextArea` field (`comment`) all have the same value. If they do, it returns a custom warning message.
614
614
615
615

616
616
617
617
* Too many similar values `tooSimilar()`:
618
618
619
-
For the `Choices` options (`sentiment`), it computes a deviation over the past values. If the deviation is below a threshold (meaning the values are too uniform/similar), it returns a warning.
619
+
For the `Choices` options (`sentiment`), it computes a deviation over the past values. If the deviation is below a threshold (meaning the values are too uniform/similar), it returns a custom warning message.
620
620
621
621

622
622
623
623
* Too many submissions over a period of time `tooFast()`:
624
624
625
-
Monitors the overall speed of annotations. It checks if, for example, 20 annotations were submitted in less than 10 minutes. If so, a warning appears.
625
+
Monitors the overall speed of annotations. It checks if, for example, 20 annotations were submitted in less than 10 minutes. If so, a custom warning appears.
626
626
627
627

0 commit comments