Data Cleansing

PCC Operator Overview

ModelArts data cleansing is implemented by the PCC operator. The dataset used for image classification or object detection may contain images that do not belong to the required categories. These images need to be removed to avoid interference to labeling and model training.

Description

Table 1 Parameters of the PCC operator for data cleansing

Name

Mandatory

Default

Description

prototype_sample_path

Yes

None

Directory for storing positive data cleansing samples. The directory stores positive sample image files. The algorithm filters input data based on the positive sample images. That is, the data that is highly similar to the images in the prototype_sample_path directory is retained.

Enter an existing OBS directory. The directory contains the provided positive sample images and starts with obs://, for example, obs://obs_bucket_name/folder_name.

criticism_sample_path

No

None

Directory for storing negative data cleansing samples. The directory stores negative sample image files. The algorithm filters input data based on the negative sample images. That is, the data that is less similar to the images in the criticism_sample_path directory is retained.

It is recommended that this parameter be used together with prototype_sample_path to improve the accuracy of data cleansing.

Enter an existing OBS directory that starts with obs://, for example, obs://obs_bucket_name/folder_name.

n_clusters

No

auto

Number of data sample types. The default value is auto. You can enter an integer less than the total number of samples or auto. auto indicates that the number of images in the positive sample directory is used as the number of data sample types.

simlarity_threshold

No

0.9

Similarity threshold. If the similarity between two images exceeds the threshold, the two images are regarded as similar. Otherwise, they are regarded as dissimilar. The value ranges from 0 to 1.

embedding_distance

No

0.2

Distance between sample features. If the feature distance between two images is smaller than the specified value, the two images are regarded as similar. Otherwise, the two images are regarded as dissimilar. The value ranges from 0 to 1.

do_validation

No

True

Indicates whether to validate data. The value can be True or False. True indicates that data is validated before cleansing. False indicates that data is cleansed only.

Operator Input Requirements

The following two types of operator input are available:

Output Description