Skip to content

Rapidata retrieval modes

RapidataRetrievalMode #

Bases: Enum

Enum for defining retrieval modes for datapoints.

Shuffled class-attribute instance-attribute #

Shuffled = SHUFFLED

Will shuffle the datapoints randomly for each user. The user will then see the datapoints in that order. This will take into account the "max_iterations" parameter.

Sequential class-attribute instance-attribute #

Sequential = SEQUENTIAL

Will show the datapoints in the order they are in the dataset. This will take into account the "max_iterations" parameter.

Random class-attribute instance-attribute #

Random = RANDOM

Will just randomly feed the datapoints to the annotators. This will NOT take into account the "max_iterations" parameter.