aggregate_solutions_by_pool

toloka.async_client.client.AsyncTolokaClient.aggregate_solutions_by_pool | Source code

Starts aggregation of responses in all completed tasks in a pool.

The method starts the aggregation process on the Toloka server. To wait for the completion of the operation use the wait_operation method.

Tip

Try crowd-kit library. It has many aggregation methods and executes on your computer.

Parameters description

ParametersTypeDescription
typeUnion[AggregatedSolutionType, str, None]

Aggregation model:

pool_idOptional[str]

The ID of the pool.

answer_weight_skill_idOptional[str]

The ID of the skill that determines the weight of the Toloker's responses.

fieldsOptional[List[PoolAggregatedSolutionRequest.Field]]

Output data fields to aggregate. For the best results, each of these fields should have limited number of response options. If the DAWID_SKENE aggregation type is selected, you can only specify one value.

Examples:

The example shows how to aggregate responses in a pool.

aggregation_operation = toloka_client.aggregate_solutions_by_pool(
type=toloka.client.aggregation.AggregatedSolutionType.WEIGHTED_DYNAMIC_OVERLAP,
pool_id='36502086',
answer_weight_skill_id='11294',
fields=[toloka.client.aggregation.PoolAggregatedSolutionRequest.Field(name='result')]
)
aggregation_operation = toloka_client.wait_operation(aggregation_operation)
aggregation_results = list(toloka_client.get_aggregated_solutions(aggregation_operation.id))

Last updated: August 28, 2023

Toloka-Kit
OverviewGetting API keyQuick start
Recipes
Reference
toloka.client
toloka.async_client
toloka.autoquality [autoquality]
toloka.metrics
toloka.streaming