data_juicer.core package¶
Subpackages¶
- data_juicer.core.data package
- Submodules
- data_juicer.core.data.config_validator module
- data_juicer.core.data.data_validator module
- data_juicer.core.data.dataset_builder module
- data_juicer.core.data.dj_dataset module
DJDataset
wrap_func_with_nested_access()
nested_obj_factory()
NestedQueryDict
NestedDatasetDict
NestedDataset
NestedDataset.__init__()
NestedDataset.schema()
NestedDataset.get()
NestedDataset.get_column()
NestedDataset.process()
NestedDataset.update_args()
NestedDataset.map()
NestedDataset.filter()
NestedDataset.select()
NestedDataset.from_dict()
NestedDataset.add_column()
NestedDataset.select_columns()
NestedDataset.remove_columns()
NestedDataset.cleanup_cache_files()
NestedDataset.load_from_disk()
nested_query()
add_same_content_to_new_column()
- data_juicer.core.data.load_strategy module
StrategyKey
DataLoadStrategy
DataLoadStrategyRegistry
RayDataLoadStrategy
DefaultDataLoadStrategy
RayLocalJsonDataLoadStrategy
RayHuggingfaceDataLoadStrategy
DefaultLocalDataLoadStrategy
DefaultHuggingfaceDataLoadStrategy
DefaultModelScopeDataLoadStrategy
DefaultArxivDataLoadStrategy
DefaultWikiDataLoadStrategy
DefaultCommonCrawlDataLoadStrategy
- data_juicer.core.data.ray_dataset module
- data_juicer.core.data.schema module
- Module contents
DJDataset
NestedDataset
NestedDataset.__init__()
NestedDataset.schema()
NestedDataset.get()
NestedDataset.get_column()
NestedDataset.process()
NestedDataset.update_args()
NestedDataset.map()
NestedDataset.filter()
NestedDataset.select()
NestedDataset.from_dict()
NestedDataset.add_column()
NestedDataset.select_columns()
NestedDataset.remove_columns()
NestedDataset.cleanup_cache_files()
NestedDataset.load_from_disk()
wrap_func_with_nested_access()
add_same_content_to_new_column()
- data_juicer.core.executor package
Submodules¶
data_juicer.core.adapter module¶
- class data_juicer.core.adapter.Adapter(cfg: dict)[源代码]¶
基类:
object
- MAX_BATCH_SIZE = 10000¶
- static execute_and_probe(dataset, operators, sample_interval=0.5)[源代码]¶
Process the input dataset and probe related information for each OP in the specified operator list.
For now, we support the following targets to probe: "resource": resource utilization for each OP. "speed": average processing speed for each OP.
The probe result is a list and each item in the list is the probe result for each OP.
- static take_batch(dataset, config)[源代码]¶
Split the dataset into batches based on configuration and load factor.
- 参数:
dataset -- The dataset to be split
config -- Configuration settings, including batch size
- 返回:
An iterator of batches
- adapt_workloads(dataset, operators)[源代码]¶
Manage the scheduling and load balancing for the dataset processing.
- 参数:
dataset -- The dataset that needs to be processed
operators -- Operators in the data recipe
- probe_small_batch(dataset, operators)[源代码]¶
Perform small batch pre-execution to probe available resources, current load and estimated OP speed, returning load factors and speed ranks for each OP.
Notice: the probe should be run with cache enabled to avoid removing the cache files of the input dataset.
- 参数:
dataset -- The dataset to pre-execute small batch on
operators -- The OP list to be pre-execution and probe
- 返回:
A list of probe results for each OP and the length of data batch to probe.
- batch_size_strategy(load_analysis_res, base_bs=1, util_th=0.9)[源代码]¶
Decide the batch size for each op according to their workload analysis result and expected utilization threshold. We need to guarantee that the resource utilization won't exceed the threshold. Now we only consider the buckets effect, which means the max batch size is decided by the max utilization of all types of resources except GPU util (decided by num_proc).
- analyze_small_batch(dataset, current_state)[源代码]¶
Perform small batch analysis to probe the current OP-wise stats/meta distributions. The analyzed results will be stored in the directory {work_dir}/insight_mining.
Notice: the probe should be run with cache enabled to avoid removing the cache files of the input dataset.
- 参数:
dataset -- The dataset to analyze small batch on
current_state -- A string to indicate the current state of the input dataset. It usually consists of a number of the index of the OP processed just now and the OP name, e.g. "1_text_length_filter".
- insight_mining(pval_th=0.05)[源代码]¶
Mining the insights from the OP-wise analysis results. For now, we use T-Test to check the significance of stats/meta changes before and after each OP processing. If the p-value is less than a given threshold (usually 0.05), we think the stats/meta changes are significant. The insight mining results will be stored in the file {work_dir}/insight_mining/insight_mining.json.
- 参数:
pval_th -- the threshold of p-value.
data_juicer.core.analyzer module¶
- class data_juicer.core.analyzer.Analyzer(cfg: Namespace | None = None)[源代码]¶
基类:
object
This Analyzer class is used to analyze a specific dataset.
It will compute stats for all filter ops in the config file, apply multiple analysis (e.g. OverallAnalysis, ColumnWiseAnalysis, etc.) on these stats, and generate the analysis results (stats tables, distribution figures, etc.) to help users understand the input dataset better.
- __init__(cfg: Namespace | None = None)[源代码]¶
Initialization method.
- 参数:
cfg -- optional jsonargparse Namespace dict.
- run(dataset: Dataset | NestedDataset | None = None, load_data_np: Annotated[int, Gt(gt=0)] | None = None, skip_export: bool = False, skip_return: bool = False)[源代码]¶
Running the dataset analysis pipeline.
- 参数:
dataset -- a Dataset object to be analyzed.
load_data_np -- number of workers when loading the dataset.
skip_export -- whether export the results into disk
skip_return -- skip return for API called.
- 返回:
analyzed dataset.
data_juicer.core.exporter module¶
- class data_juicer.core.exporter.Exporter(export_path, export_shard_size=0, export_in_parallel=True, num_proc=1, export_ds=True, keep_stats_in_res_ds=False, keep_hashes_in_res_ds=False, export_stats=True)[源代码]¶
基类:
object
The Exporter class is used to export a dataset to files of specific format.
- KiB = 1024¶
- MiB = 1048576¶
- GiB = 1073741824¶
- TiB = 1099511627776¶
- __init__(export_path, export_shard_size=0, export_in_parallel=True, num_proc=1, export_ds=True, keep_stats_in_res_ds=False, keep_hashes_in_res_ds=False, export_stats=True)[源代码]¶
Initialization method.
- 参数:
export_path -- the path to export datasets.
export_shard_size -- the size of each shard of exported dataset. In default, it's 0, which means export the dataset to a single file.
num_proc -- number of process to export the dataset.
export_ds -- whether to export the dataset contents.
keep_stats_in_res_ds -- whether to keep stats in the result dataset.
keep_hashes_in_res_ds -- whether to keep hashes in the result dataset.
export_stats -- whether to export the stats of dataset.
- static to_jsonl(dataset, export_path, num_proc=1, **kwargs)[源代码]¶
Export method for jsonl target files.
- 参数:
dataset -- the dataset to export.
export_path -- the path to store the exported dataset.
num_proc -- the number of processes used to export the dataset.
kwargs -- extra arguments.
- 返回:
data_juicer.core.monitor module¶
- class data_juicer.core.monitor.Monitor[源代码]¶
基类:
object
Monitor resource utilization and other information during the data processing.
Resource utilization dict: (for each func) '''python {
'time': 10, 'sampling interval': 0.5, 'resource': [
- {
'timestamp': xxx, 'CPU count': xxx, 'GPU free mem.': xxx. ...
}, {
'timestamp': xxx, 'CPU count': xxx, 'GPU free mem.': xxx, ...
},
]
}¶
Based on the structure above, the resource utilization analysis result will add several extra fields on the first level: '''python {
'time': 10, 'sampling interval': 0.5, 'resource': [...], 'resource_analysis': {
- 'GPU free mem.': {
'max': xxx, 'min': xxx, 'avg': xxx,
}
}¶
Only those fields in DYNAMIC_FIELDS will be analyzed.
- DYNAMIC_FIELDS = {'Available mem.', 'CPU util.', 'Free mem.', 'GPU free mem.', 'GPU used mem.', 'GPU util.', 'Mem. util.', 'Used mem.'}¶
- static monitor_current_resources()[源代码]¶
Detect the resource utilization of the current environment/machine. All data of "util." is ratios in the range of [0.0, 1.0]. All data of "mem." is in MB.
- static analyze_resource_util_list(resource_util_list)[源代码]¶
Analyze the resource utilization for a given resource util list. Compute {'max', 'min', 'avg'} of resource metrics for each dict item.
- static analyze_single_resource_util(resource_util_dict)[源代码]¶
Analyze the resource utilization for a single resource util dict. Compute {'max', 'min', 'avg'} of each resource metrics.
- static monitor_func(func, args=None, sample_interval=0.5)[源代码]¶
Process the input dataset and probe related information for each OP in the specified operator list.
For now, we support the following targets to probe: "resource": resource utilization for each OP. "speed": average processing speed for each OP.
The probe result is a list and each item in the list is the probe result for each OP.
data_juicer.core.tracer module¶
- class data_juicer.core.tracer.Tracer(work_dir, show_num=10)[源代码]¶
基类:
object
The tracer to trace the sample changes before and after an operator process.
The comparison results will be stored in the work directory.
- __init__(work_dir, show_num=10)[源代码]¶
Initialization method.
- 参数:
work_dir -- the work directory to store the comparison results
show_num -- the maximum number of samples to show in the comparison result files.
- trace_mapper(op_name: str, previous_ds: Dataset, processed_ds: Dataset, text_key: str)[源代码]¶
Compare datasets before and after a Mapper.
This will mainly show the different sample pairs due to the modification by the Mapper
- 参数:
op_name -- the op name of mapper
previous_ds -- dataset before the mapper process
processed_ds -- dataset processed by the mapper
text_key -- which text_key to trace
- 返回:
- trace_batch_mapper(op_name: str, previous_ds: Dataset, processed_ds: Dataset, text_key: str)[源代码]¶
Compare datasets before and after a BatchMapper.
This will mainly show the new samples augmented by the BatchMapper
- 参数:
op_name -- the op name of mapper
previous_ds -- dataset before the mapper process
processed_ds -- dataset processed by the mapper
text_key -- which text_key to trace
- 返回:
- trace_filter(op_name: str, previous_ds: Dataset, processed_ds: Dataset)[源代码]¶
Compare datasets before and after a Filter.
This will mainly show the filtered samples by the Filter
- 参数:
op_name -- the op name of filter
previous_ds -- dataset before the filter process
processed_ds -- dataset processed by the filter
- 返回:
- trace_deduplicator(op_name: str, dup_pairs: list)[源代码]¶
Compare datasets before and after a Deduplicator.
This will mainly show the near-duplicate sample pairs extracted by the Deduplicator. Different from the other two trace methods, the trace process for deduplicator is embedded into the process method of deduplicator, but the other two trace methods are independent of the process method of mapper and filter operators
- 参数:
op_name -- the op name of deduplicator
dup_pairs -- duplicate sample pairs obtained from deduplicator
- 返回:
Module contents¶
- class data_juicer.core.Adapter(cfg: dict)[源代码]¶
基类:
object
- MAX_BATCH_SIZE = 10000¶
- static execute_and_probe(dataset, operators, sample_interval=0.5)[源代码]¶
Process the input dataset and probe related information for each OP in the specified operator list.
For now, we support the following targets to probe: "resource": resource utilization for each OP. "speed": average processing speed for each OP.
The probe result is a list and each item in the list is the probe result for each OP.
- static take_batch(dataset, config)[源代码]¶
Split the dataset into batches based on configuration and load factor.
- 参数:
dataset -- The dataset to be split
config -- Configuration settings, including batch size
- 返回:
An iterator of batches
- adapt_workloads(dataset, operators)[源代码]¶
Manage the scheduling and load balancing for the dataset processing.
- 参数:
dataset -- The dataset that needs to be processed
operators -- Operators in the data recipe
- probe_small_batch(dataset, operators)[源代码]¶
Perform small batch pre-execution to probe available resources, current load and estimated OP speed, returning load factors and speed ranks for each OP.
Notice: the probe should be run with cache enabled to avoid removing the cache files of the input dataset.
- 参数:
dataset -- The dataset to pre-execute small batch on
operators -- The OP list to be pre-execution and probe
- 返回:
A list of probe results for each OP and the length of data batch to probe.
- batch_size_strategy(load_analysis_res, base_bs=1, util_th=0.9)[源代码]¶
Decide the batch size for each op according to their workload analysis result and expected utilization threshold. We need to guarantee that the resource utilization won't exceed the threshold. Now we only consider the buckets effect, which means the max batch size is decided by the max utilization of all types of resources except GPU util (decided by num_proc).
- analyze_small_batch(dataset, current_state)[源代码]¶
Perform small batch analysis to probe the current OP-wise stats/meta distributions. The analyzed results will be stored in the directory {work_dir}/insight_mining.
Notice: the probe should be run with cache enabled to avoid removing the cache files of the input dataset.
- 参数:
dataset -- The dataset to analyze small batch on
current_state -- A string to indicate the current state of the input dataset. It usually consists of a number of the index of the OP processed just now and the OP name, e.g. "1_text_length_filter".
- insight_mining(pval_th=0.05)[源代码]¶
Mining the insights from the OP-wise analysis results. For now, we use T-Test to check the significance of stats/meta changes before and after each OP processing. If the p-value is less than a given threshold (usually 0.05), we think the stats/meta changes are significant. The insight mining results will be stored in the file {work_dir}/insight_mining/insight_mining.json.
- 参数:
pval_th -- the threshold of p-value.
- class data_juicer.core.Analyzer(cfg: Namespace | None = None)[源代码]¶
基类:
object
This Analyzer class is used to analyze a specific dataset.
It will compute stats for all filter ops in the config file, apply multiple analysis (e.g. OverallAnalysis, ColumnWiseAnalysis, etc.) on these stats, and generate the analysis results (stats tables, distribution figures, etc.) to help users understand the input dataset better.
- __init__(cfg: Namespace | None = None)[源代码]¶
Initialization method.
- 参数:
cfg -- optional jsonargparse Namespace dict.
- run(dataset: Dataset | NestedDataset | None = None, load_data_np: Annotated[int, Gt(gt=0)] | None = None, skip_export: bool = False, skip_return: bool = False)[源代码]¶
Running the dataset analysis pipeline.
- 参数:
dataset -- a Dataset object to be analyzed.
load_data_np -- number of workers when loading the dataset.
skip_export -- whether export the results into disk
skip_return -- skip return for API called.
- 返回:
analyzed dataset.
- class data_juicer.core.NestedDataset(*args, **kargs)[源代码]¶
基类:
Dataset
,DJDataset
Enhanced HuggingFace-Dataset for better usability and efficiency.
- get_column(column: str, k: int | None = None) List[Any] [源代码]¶
Get column values from HuggingFace dataset.
- 参数:
column -- Name of the column to retrieve
k -- Optional number of rows to return. If None, returns all rows
- 返回:
List of values from the specified column
- 抛出:
KeyError -- If column doesn't exist
ValueError -- If k is negative
- process(operators, *, work_dir=None, exporter=None, checkpointer=None, tracer=None, adapter=None, open_monitor=True)[源代码]¶
process a list of operators on the dataset.
- map(*args, **kargs)[源代码]¶
Override the map func, which is called by most common operations, such that the processed samples can be accessed by nested manner.
- filter(*args, **kargs)[源代码]¶
Override the filter func, which is called by most common operations, such that the processed samples can be accessed by nested manner.
- select(*args, **kargs)[源代码]¶
Override the select func, such that selected samples can be accessed by nested manner.
- classmethod from_dict(*args, **kargs)[源代码]¶
Override the from_dict func, which is called by most from_xx constructors, such that the constructed dataset object is NestedDataset.
- add_column(*args, **kargs)[源代码]¶
Override the add column func, such that the processed samples can be accessed by nested manner.
- select_columns(*args, **kargs)[源代码]¶
Override the select columns func, such that the processed samples can be accessed by nested manner.
- remove_columns(*args, **kargs)[源代码]¶
Override the remove columns func, such that the processed samples can be accessed by nested manner.
- cleanup_cache_files()[源代码]¶
Override the cleanup_cache_files func, clear raw and compressed cache files.
- static load_from_disk(*args, **kargs)[源代码]¶
Loads a dataset that was previously saved using [save_to_disk] from a dataset directory, or from a filesystem using any implementation of fsspec.spec.AbstractFileSystem.
- 参数:
dataset_path (path-like) -- Path (e.g. "dataset/train") or remote URI (e.g. "s3//my-bucket/dataset/train") of the dataset directory where the dataset will be loaded from.
keep_in_memory (bool, defaults to None) -- Whether to copy the dataset in-memory. If None, the dataset will not be copied in-memory unless explicitly enabled by setting datasets.config.IN_MEMORY_MAX_SIZE to nonzero. See more details in the [improve performance](../cache#improve-performance) section.
storage_options (dict, optional) --
Key/value pairs to be passed on to the file-system backend, if any.
<Added version="2.8.0"/>
- 返回:
If dataset_path is a path of a dataset directory, the dataset requested.
If dataset_path is a path of a dataset dict directory, a datasets.DatasetDict with each split.
- 返回类型:
[Dataset] or [DatasetDict]
Example:
`py >>> ds = load_from_disk("path/to/dataset/directory") `
- class data_juicer.core.ExecutorFactory[源代码]¶
基类:
object
- static create_executor(executor_type: str) DefaultExecutor | RayExecutor [源代码]¶
- class data_juicer.core.DefaultExecutor(cfg: Namespace | None = None)[源代码]¶
基类:
ExecutorBase
This Executor class is used to process a specific dataset.
It will load the dataset and unify the format, then apply all the ops in the config file in order and generate a processed dataset.
- __init__(cfg: Namespace | None = None)[源代码]¶
Initialization method.
- 参数:
cfg -- optional jsonargparse Namespace.
- run(dataset: Dataset | NestedDataset | None = None, load_data_np: Annotated[int, Gt(gt=0)] | None = None, skip_return=False)[源代码]¶
Running the dataset process pipeline.
- 参数:
dataset -- a Dataset object to be executed.
load_data_np -- number of workers when loading the dataset.
skip_return -- skip return for API called.
- 返回:
processed dataset.
- sample_data(dataset_to_sample: Dataset | None = None, load_data_np=None, sample_ratio: float = 1.0, sample_algo: str = 'uniform', **kwargs)[源代码]¶
Sample a subset from the given dataset. TODO add support other than LocalExecutor
- 参数:
dataset_to_sample -- Dataset to sample from. If None, will use the formatter linked by the executor. Default is None.
load_data_np -- number of workers when loading the dataset.
sample_ratio -- The ratio of the sample size to the original dataset size. Default is 1.0 (no sampling).
sample_algo -- Sampling algorithm to use. Options are "uniform", "frequency_specified_field_selector", or "topk_specified_field_selector". Default is "uniform".
- 返回:
A sampled Dataset.
- class data_juicer.core.Exporter(export_path, export_shard_size=0, export_in_parallel=True, num_proc=1, export_ds=True, keep_stats_in_res_ds=False, keep_hashes_in_res_ds=False, export_stats=True)[源代码]¶
基类:
object
The Exporter class is used to export a dataset to files of specific format.
- KiB = 1024¶
- MiB = 1048576¶
- GiB = 1073741824¶
- TiB = 1099511627776¶
- __init__(export_path, export_shard_size=0, export_in_parallel=True, num_proc=1, export_ds=True, keep_stats_in_res_ds=False, keep_hashes_in_res_ds=False, export_stats=True)[源代码]¶
Initialization method.
- 参数:
export_path -- the path to export datasets.
export_shard_size -- the size of each shard of exported dataset. In default, it's 0, which means export the dataset to a single file.
num_proc -- number of process to export the dataset.
export_ds -- whether to export the dataset contents.
keep_stats_in_res_ds -- whether to keep stats in the result dataset.
keep_hashes_in_res_ds -- whether to keep hashes in the result dataset.
export_stats -- whether to export the stats of dataset.
- static to_jsonl(dataset, export_path, num_proc=1, **kwargs)[源代码]¶
Export method for jsonl target files.
- 参数:
dataset -- the dataset to export.
export_path -- the path to store the exported dataset.
num_proc -- the number of processes used to export the dataset.
kwargs -- extra arguments.
- 返回:
- class data_juicer.core.Monitor[源代码]¶
基类:
object
Monitor resource utilization and other information during the data processing.
Resource utilization dict: (for each func) '''python {
'time': 10, 'sampling interval': 0.5, 'resource': [
- {
'timestamp': xxx, 'CPU count': xxx, 'GPU free mem.': xxx. ...
}, {
'timestamp': xxx, 'CPU count': xxx, 'GPU free mem.': xxx, ...
},
]
}¶
Based on the structure above, the resource utilization analysis result will add several extra fields on the first level: '''python {
'time': 10, 'sampling interval': 0.5, 'resource': [...], 'resource_analysis': {
- 'GPU free mem.': {
'max': xxx, 'min': xxx, 'avg': xxx,
}
}¶
Only those fields in DYNAMIC_FIELDS will be analyzed.
- DYNAMIC_FIELDS = {'Available mem.', 'CPU util.', 'Free mem.', 'GPU free mem.', 'GPU used mem.', 'GPU util.', 'Mem. util.', 'Used mem.'}¶
- static monitor_current_resources()[源代码]¶
Detect the resource utilization of the current environment/machine. All data of "util." is ratios in the range of [0.0, 1.0]. All data of "mem." is in MB.
- static analyze_resource_util_list(resource_util_list)[源代码]¶
Analyze the resource utilization for a given resource util list. Compute {'max', 'min', 'avg'} of resource metrics for each dict item.
- static analyze_single_resource_util(resource_util_dict)[源代码]¶
Analyze the resource utilization for a single resource util dict. Compute {'max', 'min', 'avg'} of each resource metrics.
- static monitor_func(func, args=None, sample_interval=0.5)[源代码]¶
Process the input dataset and probe related information for each OP in the specified operator list.
For now, we support the following targets to probe: "resource": resource utilization for each OP. "speed": average processing speed for each OP.
The probe result is a list and each item in the list is the probe result for each OP.
- class data_juicer.core.Tracer(work_dir, show_num=10)[源代码]¶
基类:
object
The tracer to trace the sample changes before and after an operator process.
The comparison results will be stored in the work directory.
- __init__(work_dir, show_num=10)[源代码]¶
Initialization method.
- 参数:
work_dir -- the work directory to store the comparison results
show_num -- the maximum number of samples to show in the comparison result files.
- trace_mapper(op_name: str, previous_ds: Dataset, processed_ds: Dataset, text_key: str)[源代码]¶
Compare datasets before and after a Mapper.
This will mainly show the different sample pairs due to the modification by the Mapper
- 参数:
op_name -- the op name of mapper
previous_ds -- dataset before the mapper process
processed_ds -- dataset processed by the mapper
text_key -- which text_key to trace
- 返回:
- trace_batch_mapper(op_name: str, previous_ds: Dataset, processed_ds: Dataset, text_key: str)[源代码]¶
Compare datasets before and after a BatchMapper.
This will mainly show the new samples augmented by the BatchMapper
- 参数:
op_name -- the op name of mapper
previous_ds -- dataset before the mapper process
processed_ds -- dataset processed by the mapper
text_key -- which text_key to trace
- 返回:
- trace_filter(op_name: str, previous_ds: Dataset, processed_ds: Dataset)[源代码]¶
Compare datasets before and after a Filter.
This will mainly show the filtered samples by the Filter
- 参数:
op_name -- the op name of filter
previous_ds -- dataset before the filter process
processed_ds -- dataset processed by the filter
- 返回:
- trace_deduplicator(op_name: str, dup_pairs: list)[源代码]¶
Compare datasets before and after a Deduplicator.
This will mainly show the near-duplicate sample pairs extracted by the Deduplicator. Different from the other two trace methods, the trace process for deduplicator is embedded into the process method of deduplicator, but the other two trace methods are independent of the process method of mapper and filter operators
- 参数:
op_name -- the op name of deduplicator
dup_pairs -- duplicate sample pairs obtained from deduplicator
- 返回: