data_juicer.ops¶
- data_juicer.ops.load_ops(process_list)[源代码]¶
Load op list according to the process list from config file.
- 参数:
process_list -- A process list. Each item is an op name and its arguments.
- 返回:
The op instance list.
- class data_juicer.ops.Filter(*args, **kwargs)[源代码]¶
基类:
OP
- __init__(*args, **kwargs)[源代码]¶
Base class that removes specific info.
- 参数:
text_key -- the key name of field that stores sample texts to be processed
image_key -- the key name of field that stores sample image list to be processed
audio_key -- the key name of field that stores sample audio list to be processed
video_key -- the key name of field that stores sample video list to be processed
image_bytes_key -- the key name of field that stores sample image bytes list to be processed
query_key -- the key name of field that stores sample queries
response_key -- the key name of field that stores responses
history_key -- the key name of field that stores history of queries and responses
min_closed_interval -- whether the min_val of the specified filter range is a closed interval. It's True by default.
max_closed_interval -- whether the max_val of the specified filter range is a closed interval. It's True by default.
reversed_range -- whether to reverse the target range [min_val, max_val] to (-∞, min_val) or (max_val, +∞). It's False by default.
- compute_stats_single(sample, context=False)[源代码]¶
Compute stats for the sample which is used as a metric to decide whether to filter this sample.
- 参数:
sample -- input sample.
context -- whether to store context information of intermediate vars in the sample temporarily.
- 返回:
sample with computed stats
- class data_juicer.ops.Mapper(*args, **kwargs)[源代码]¶
基类:
OP
- __init__(*args, **kwargs)[源代码]¶
Base class that conducts data editing.
- 参数:
text_key -- the key name of field that stores sample texts to be processed.
image_key -- the key name of field that stores sample image list to be processed
audio_key -- the key name of field that stores sample audio list to be processed
video_key -- the key name of field that stores sample video list to be processed
image_bytes_key -- the key name of field that stores sample image bytes list to be processed
query_key -- the key name of field that stores sample queries
response_key -- the key name of field that stores responses
history_key -- the key name of field that stores history of queries and responses
- class data_juicer.ops.Deduplicator(*args, **kwargs)[源代码]¶
基类:
OP
- __init__(*args, **kwargs)[源代码]¶
Base class that conducts deduplication.
- 参数:
text_key -- the key name of field that stores sample texts to be processed
image_key -- the key name of field that stores sample image list to be processed
audio_key -- the key name of field that stores sample audio list to be processed
video_key -- the key name of field that stores sample video list to be processed
image_bytes_key -- the key name of field that stores sample image bytes list to be processed
query_key -- the key name of field that stores sample queries
response_key -- the key name of field that stores responses
history_key -- the key name of field that stores history of queries and responses
- compute_hash(sample)[源代码]¶
Compute hash values for the sample.
- 参数:
sample -- input sample
- 返回:
sample with computed hash value.
- class data_juicer.ops.Selector(*args, **kwargs)[源代码]¶
基类:
OP
- __init__(*args, **kwargs)[源代码]¶
Base class that conducts selection in dataset-level.
- 参数:
text_key -- the key name of field that stores sample texts to be processed
image_key -- the key name of field that stores sample image list to be processed
audio_key -- the key name of field that stores sample audio list to be processed
video_key -- the key name of field that stores sample video list to be processed
image_bytes_key -- the key name of field that stores sample image bytes list to be processed
query_key -- the key name of field that stores sample queries
response_key -- the key name of field that stores responses
history_key -- the key name of field that stores history of queries and responses
- class data_juicer.ops.Grouper(*args, **kwargs)[源代码]¶
基类:
OP
- __init__(*args, **kwargs)[源代码]¶
Base class that group samples.
- 参数:
text_key -- the key name of field that stores sample texts to be processed
image_key -- the key name of field that stores sample image list to be processed
audio_key -- the key name of field that stores sample audio list to be processed
video_key -- the key name of field that stores sample video list to be processed
image_bytes_key -- the key name of field that stores sample image bytes list to be processed
query_key -- the key name of field that stores sample queries
response_key -- the key name of field that stores responses
history_key -- the key name of field that stores history of queries and responses
- class data_juicer.ops.Aggregator(*args, **kwargs)[源代码]¶
基类:
OP
- __init__(*args, **kwargs)[源代码]¶
Base class that group samples.
- 参数:
text_key -- the key name of field that stores sample texts to be processed
image_key -- the key name of field that stores sample image list to be processed
audio_key -- the key name of field that stores sample audio list to be processed
video_key -- the key name of field that stores sample video list to be processed
image_bytes_key -- the key name of field that stores sample image bytes list to be processed
query_key -- the key name of field that stores sample queries
response_key -- the key name of field that stores responses
history_key -- the key name of field that stores history of queries and responses