Skip to content

Rapidata validation set

RapidataValidationSet #

RapidataValidationSet(
    validation_set_id,
    name: str,
    openapi_service: OpenAPIService,
)

A class for interacting with a Rapidata validation set.

Represents a set of all the validation tasks that can be added to an order.

When added to an order, the tasks will be selected randomly from the set.

Attributes:

Name Type Description
id str

The ID of the validation set.

name str

The name of the validation set.

Source code in src/rapidata/rapidata_client/validation/rapidata_validation_set.py
def __init__(self, validation_set_id, name: str, openapi_service: OpenAPIService):
    self.id = validation_set_id
    self.name = name
    self.__openapi_service = openapi_service
    self.__session = self._get_session()

add_rapid #

add_rapid(rapid: Rapid)

Add a Rapid to the validation set.

Parameters:

Name Type Description Default
rapid Rapid

The Rapid to add to the validation set.

required
Source code in src/rapidata/rapidata_client/validation/rapidata_validation_set.py
def add_rapid(self, rapid: Rapid):
    """Add a Rapid to the validation set.

    Args:
        rapid (Rapid): The Rapid to add to the validation set.
    """
    rapid._add_to_validation_set(self.id, self.__openapi_service, self.__session)
    return self

update_dimensions #

update_dimensions(dimensions: list[str])

Update the dimensions of the validation set.

Parameters:

Name Type Description Default
dimensions list[str]

The new dimensions of the validation set.

required
Source code in src/rapidata/rapidata_client/validation/rapidata_validation_set.py
def update_dimensions(self, dimensions: list[str]):
    """Update the dimensions of the validation set.

    Args:
        dimensions (list[str]): The new dimensions of the validation set.
    """
    self.__openapi_service.validation_api.validation_validation_set_id_dimensions_patch(self.id, UpdateDimensionsModel(dimensions=dimensions))
    return self