code
stringlengths
66
870k
docstring
stringlengths
19
26.7k
func_name
stringlengths
1
138
language
stringclasses
1 value
repo
stringlengths
7
68
path
stringlengths
5
324
url
stringlengths
46
389
license
stringclasses
7 values
def prepare_spacy_model(lang, name_pattern='{}_core_web_md-3.7.0', **model_params): """ Prepare spacy model for specific language. :param lang: language of sapcy model. Should be one of ["zh", "en"] :return: corresponding spacy model """ i...
Prepare spacy model for specific language. :param lang: language of sapcy model. Should be one of ["zh", "en"] :return: corresponding spacy model
prepare_spacy_model
python
modelscope/data-juicer
data_juicer/utils/model_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/model_utils.py
Apache-2.0
def prepare_video_blip_model(pretrained_model_name_or_path, *, return_model=True, **model_params): """ Prepare and load a video-clip model with the corresponding processor. :param pretrained_model_name_or_path: model nam...
Prepare and load a video-clip model with the corresponding processor. :param pretrained_model_name_or_path: model name or path :param return_model: return model or not :param trust_remote_code: passed to transformers :return: a tuple (model, input processor) if `return_model` is True; othe...
prepare_video_blip_model
python
modelscope/data-juicer
data_juicer/utils/model_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/model_utils.py
Apache-2.0
def forward( self, pixel_values: Optional[torch.FloatTensor] = None, output_attentions: Optional[bool] = None, output_hidden_states: Optional[bool] = None, return_dict: Optional[bool] = None, interpolate_pos_encoding: bool = False, ) -> Uni...
Flatten `pixel_values` along the batch and time dimension, pass it through the original vision model, then unflatten it back. :param pixel_values: a tensor of shape (batch, channel, time, height, width) :returns: last_hidden_state: a tensor o...
forward
python
modelscope/data-juicer
data_juicer/utils/model_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/model_utils.py
Apache-2.0
def prepare_vllm_model(pretrained_model_name_or_path, **model_params): """ Prepare and load a HuggingFace model with the corresponding processor. :param pretrained_model_name_or_path: model name or path :param model_params: LLM initialization parameters. :return: a tuple of (model, tokenizer) "...
Prepare and load a HuggingFace model with the corresponding processor. :param pretrained_model_name_or_path: model name or path :param model_params: LLM initialization parameters. :return: a tuple of (model, tokenizer)
prepare_vllm_model
python
modelscope/data-juicer
data_juicer/utils/model_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/model_utils.py
Apache-2.0
def prepare_embedding_model(model_path, **model_params): """ Prepare and load an embedding model using transformers. :param model_path: Path to the embedding model. :param model_params: Optional model parameters. :return: Model with encode() returning embedding list. """ logger.info('Loadin...
Prepare and load an embedding model using transformers. :param model_path: Path to the embedding model. :param model_params: Optional model parameters. :return: Model with encode() returning embedding list.
prepare_embedding_model
python
modelscope/data-juicer
data_juicer/utils/model_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/model_utils.py
Apache-2.0
def ensure_nltk_resource(resource_path, fallback_package=None): """Ensure a specific NLTK resource is available and accessible. This function attempts to find and load a resource, and if it fails, downloads the specified fallback package. Args: resource_path: The path to the resource to check ...
Ensure a specific NLTK resource is available and accessible. This function attempts to find and load a resource, and if it fails, downloads the specified fallback package. Args: resource_path: The path to the resource to check fallback_package: The package to download if the resource isn't...
ensure_nltk_resource
python
modelscope/data-juicer
data_juicer/utils/nltk_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/nltk_utils.py
Apache-2.0
def clean_nltk_cache(packages=None, complete_reset=False): """Clean NLTK model cache. Args: packages (list, optional): List of package names to clean. If None, cleans all package caches. complete_reset (bool, optional): If True, deletes all NLTK data. Default is False. ...
Clean NLTK model cache. Args: packages (list, optional): List of package names to clean. If None, cleans all package caches. complete_reset (bool, optional): If True, deletes all NLTK data. Default is False.
clean_nltk_cache
python
modelscope/data-juicer
data_juicer/utils/nltk_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/nltk_utils.py
Apache-2.0
def patch_nltk_pickle_security(): """Patch NLTK's pickle security restrictions to allow loading models. NLTK 3.9+ introduced strict pickle security that prevents loading some models. This function patches NLTK to bypass those restrictions while maintaining security. This should be called once duri...
Patch NLTK's pickle security restrictions to allow loading models. NLTK 3.9+ introduced strict pickle security that prevents loading some models. This function patches NLTK to bypass those restrictions while maintaining security. This should be called once during initialization before any NLTK fun...
patch_nltk_pickle_security
python
modelscope/data-juicer
data_juicer/utils/nltk_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/nltk_utils.py
Apache-2.0
def unrestricted_pickle_load(file_obj): """Modified pickle loader that allows our model classes.""" # Handle both file-like objects and byte strings if hasattr(file_obj, 'read') and hasattr(file_obj, 'readline'): # It's already a file-like object ...
Modified pickle loader that allows our model classes.
unrestricted_pickle_load
python
modelscope/data-juicer
data_juicer/utils/nltk_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/nltk_utils.py
Apache-2.0
def create_physical_resource_alias(source_path, alias_path): """Create a physical file alias for NLTK resources. This function creates a hard link, symlink, or copy of a source resource to a target alias path. This is useful for problematic resources that might be requested with a path that doesn't mat...
Create a physical file alias for NLTK resources. This function creates a hard link, symlink, or copy of a source resource to a target alias path. This is useful for problematic resources that might be requested with a path that doesn't match NLTK's structure. Args: source_path: The full path t...
create_physical_resource_alias
python
modelscope/data-juicer
data_juicer/utils/nltk_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/nltk_utils.py
Apache-2.0
def setup_resource_aliases(): """Create physical file aliases for common problematic NLTK resources. This function creates aliases/copies of resources that have known problematic paths to ensure they can be found regardless of how they're requested. """ try: import nltk nltk_dat...
Create physical file aliases for common problematic NLTK resources. This function creates aliases/copies of resources that have known problematic paths to ensure they can be found regardless of how they're requested.
setup_resource_aliases
python
modelscope/data-juicer
data_juicer/utils/nltk_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/nltk_utils.py
Apache-2.0
def calculate_np(name, mem_required, cpu_required, num_proc=None, use_cuda=False): """Calculate the optimum number of processes for the given OP""" eps = 1e-9 # about 1 byte if use_cuda: auto_num_proc = None cuda_mem_avail...
Calculate the optimum number of processes for the given OP
calculate_np
python
modelscope/data-juicer
data_juicer/utils/process_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/process_utils.py
Apache-2.0
def __init__(self, name: str): """ Initialization method. :param name: a registry repo name """ self._name = name self._modules = {}
Initialization method. :param name: a registry repo name
__init__
python
modelscope/data-juicer
data_juicer/utils/registry.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/registry.py
Apache-2.0
def _register_module(self, module_name=None, module_cls=None, force=False): """ Register module to registry. :param module_name: module name :param module_cls: module class object :param force: Whether to override an existing class with the same name. Default: False....
Register module to registry. :param module_name: module name :param module_cls: module class object :param force: Whether to override an existing class with the same name. Default: False.
_register_module
python
modelscope/data-juicer
data_juicer/utils/registry.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/registry.py
Apache-2.0
def register_module(self, module_name: str = None, module_cls: type = None, force=False): """ Register module class object to registry with the specified modulename. :param module_name: module name :param module_cls...
Register module class object to registry with the specified modulename. :param module_name: module name :param module_cls: module class object :param force: Whether to override an existing class with the same name. Default: False. Example: >>> regis...
register_module
python
modelscope/data-juicer
data_juicer/utils/registry.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/registry.py
Apache-2.0
def _register(module_cls): """ Register module class object to registry. :param module_cls: module class object :return: module class object. """ self._register_module(module_name=module_name, module_cls=module_cl...
Register module class object to registry. :param module_cls: module class object :return: module class object.
_register
python
modelscope/data-juicer
data_juicer/utils/registry.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/registry.py
Apache-2.0
def random_sample(dataset, weight=1.0, sample_number=0, seed=None): """ Randomly sample a subset from a dataset with weight or number, if sample number is bigger than 0, we will use sample number instead of weight. :param dataset: a HuggingFace dataset :param weight: sample ratio of dataset ...
Randomly sample a subset from a dataset with weight or number, if sample number is bigger than 0, we will use sample number instead of weight. :param dataset: a HuggingFace dataset :param weight: sample ratio of dataset :param sample_number: sample number of dataset :param seed: random samp...
random_sample
python
modelscope/data-juicer
data_juicer/utils/sample.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/sample.py
Apache-2.0
def TEST_TAG(*tags): """Tags for test case. Currently, `standalone`, `ray` are supported. """ def decorator(func): setattr(func, '__test_tags__', tags) @functools.wraps(func) def wrapper(self, *args, **kwargs): # Save the original current_tag if it exists ...
Tags for test case. Currently, `standalone`, `ray` are supported.
TEST_TAG
python
modelscope/data-juicer
data_juicer/utils/unittest_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/unittest_utils.py
Apache-2.0
def generate_dataset(self, data) -> DJDataset: """Generate dataset for a specific executor. Args: type (str, optional): "standalone" or "ray". Defaults to "standalone". """ current_tag = getattr(self, 'current_tag', 'standalone') if current_tag.startswith...
Generate dataset for a specific executor. Args: type (str, optional): "standalone" or "ray". Defaults to "standalone".
generate_dataset
python
modelscope/data-juicer
data_juicer/utils/unittest_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/unittest_utils.py
Apache-2.0
def run_single_op(self, dataset: DJDataset, op, column_names): """Run operator in the specific executor.""" current_tag = getattr(self, 'current_tag', 'standalone') dataset = dataset.process(op) if current_tag.startswith('standalone'): dataset = dataset.select_columns(column_...
Run operator in the specific executor.
run_single_op
python
modelscope/data-juicer
data_juicer/utils/unittest_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/unittest_utils.py
Apache-2.0
def get_diff_files(prefix_filter=['data_juicer/', 'tests/']): """Get git diff files in target dirs except the __init__.py files""" changed_files = subprocess.check_output( ['git', 'diff', '--name-only', '--diff-filter=ACMRT', 'origin/main'], universal_newlines=True, ).strip().split('\n') ...
Get git diff files in target dirs except the __init__.py files
get_diff_files
python
modelscope/data-juicer
data_juicer/utils/unittest_utils.py
https://github.com/modelscope/data-juicer/blob/master/data_juicer/utils/unittest_utils.py
Apache-2.0
def init_config(dataset_path: str, op_name: str, **op_args): """ Initialize Data-Juicer config with operator `op_name`. Args: dataset_path (`str`): The input dataset path. op_name: name of the operator. op_args: arguments of the operator. """ with open(DJ_CONFIG_...
Initialize Data-Juicer config with operator `op_name`. Args: dataset_path (`str`): The input dataset path. op_name: name of the operator. op_args: arguments of the operator.
init_config
python
modelscope/data-juicer
demos/api_service/utils.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/utils.py
Apache-2.0
def execute_analyzer(dj_config: dict): """ Execute data-juicer analyzer. Args: dj_config: configs of data-juicer """ logger.chat(Msg(name='system', content='Analyzing data...', role='system')) url_path = '/data_juicer/core/Analyzer/run' try: res = call_data_juicer_api(url_pa...
Execute data-juicer analyzer. Args: dj_config: configs of data-juicer
execute_analyzer
python
modelscope/data-juicer
demos/api_service/utils.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/utils.py
Apache-2.0
def show_analyzed_results(analyzed_result_path: str, require_min=True, require_max=True): """ Show the analyzed results to the users and get the specified thresholds. Args: analyzed_result_path (`str`): The analyzed result path. ""...
Show the analyzed results to the users and get the specified thresholds. Args: analyzed_result_path (`str`): The analyzed result path.
show_analyzed_results
python
modelscope/data-juicer
demos/api_service/utils.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/utils.py
Apache-2.0
def execute_config(dj_config: Dict): """ Execute data-juicer data process. Args: dj_config: configs of data-juicer """ logger.chat(Msg(name='system', content='Processing data...', role='system')) url_path = '/data_juicer/core/Executor/run' try: res = call...
Execute data-juicer data process. Args: dj_config: configs of data-juicer
execute_config
python
modelscope/data-juicer
demos/api_service/utils.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/utils.py
Apache-2.0
def execute_alphabet_or_numeric_filter(dataset_path: str) -> ServiceResponse: """ Filter text with alphabet/numeric ratio out of specific range. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'alphanumeric_filter') ...
Filter text with alphabet/numeric ratio out of specific range. Args: dataset_path (`str`): The input dataset path.
execute_alphabet_or_numeric_filter
python
modelscope/data-juicer
demos/api_service/wrapped_filters.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_filters.py
Apache-2.0
def execute_text_length_filter(dataset_path: str) -> ServiceResponse: """ Filter text with length out of specific range. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'text_length_filter') export_path = execute...
Filter text with length out of specific range. Args: dataset_path (`str`): The input dataset path.
execute_text_length_filter
python
modelscope/data-juicer
demos/api_service/wrapped_filters.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_filters.py
Apache-2.0
def execute_image_aesthetics_filter(dataset_path: str) -> ServiceResponse: """ Filter samples according to the aesthetic score of images. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'i...
Filter samples according to the aesthetic score of images. Args: dataset_path (`str`): The input dataset path.
execute_image_aesthetics_filter
python
modelscope/data-juicer
demos/api_service/wrapped_filters.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_filters.py
Apache-2.0
def execute_video_aesthetics_filter(dataset_path: str) -> ServiceResponse: """ Filter samples according to the aesthetic scores of videos. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, '...
Filter samples according to the aesthetic scores of videos. Args: dataset_path (`str`): The input dataset path.
execute_video_aesthetics_filter
python
modelscope/data-juicer
demos/api_service/wrapped_filters.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_filters.py
Apache-2.0
def execute_image_nsfw_filter(dataset_path: str) -> ServiceResponse: """ Filter samples according to the nsfw scores of images. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'image_nsfw_...
Filter samples according to the nsfw scores of images. Args: dataset_path (`str`): The input dataset path.
execute_image_nsfw_filter
python
modelscope/data-juicer
demos/api_service/wrapped_filters.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_filters.py
Apache-2.0
def execute_video_nsfw_filter(dataset_path: str) -> ServiceResponse: """ Filter samples according to the nsfw scores of videos. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'video_nsfw_...
Filter samples according to the nsfw scores of videos. Args: dataset_path (`str`): The input dataset path.
execute_video_nsfw_filter
python
modelscope/data-juicer
demos/api_service/wrapped_filters.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_filters.py
Apache-2.0
def execute_image_caption_mapper(dataset_path: str) -> ServiceResponse: """ Produce captions for each image in the dataset. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'image_captionin...
Produce captions for each image in the dataset. Args: dataset_path (`str`): The input dataset path.
execute_image_caption_mapper
python
modelscope/data-juicer
demos/api_service/wrapped_mappers.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_mappers.py
Apache-2.0
def execute_image_diffusion_mapper(dataset_path: str) -> ServiceResponse: """ Produce images according to each text in the dataset. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'image_d...
Produce images according to each text in the dataset. Args: dataset_path (`str`): The input dataset path.
execute_image_diffusion_mapper
python
modelscope/data-juicer
demos/api_service/wrapped_mappers.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_mappers.py
Apache-2.0
def execute_image_face_blur_mapper(dataset_path: str) -> ServiceResponse: """ Detect and blur face areas for each images in the dataset. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'image_face_blur_mapper') r...
Detect and blur face areas for each images in the dataset. Args: dataset_path (`str`): The input dataset path.
execute_image_face_blur_mapper
python
modelscope/data-juicer
demos/api_service/wrapped_mappers.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_mappers.py
Apache-2.0
def execute_video_caption_mapper(dataset_path: str) -> ServiceResponse: """ Produce captions for each video in the dataset. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'video_captionin...
Produce captions for each video in the dataset. Args: dataset_path (`str`): The input dataset path.
execute_video_caption_mapper
python
modelscope/data-juicer
demos/api_service/wrapped_mappers.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_mappers.py
Apache-2.0
def execute_video_face_blur_mapper(dataset_path: str) -> ServiceResponse: """ Detect and blur face areas for each video in the dataset. Args: dataset_path (`str`): The input dataset path. """ try: dj_config = init_config(dataset_path, 'video_face_blur_mapper') re...
Detect and blur face areas for each video in the dataset. Args: dataset_path (`str`): The input dataset path.
execute_video_face_blur_mapper
python
modelscope/data-juicer
demos/api_service/wrapped_mappers.py
https://github.com/modelscope/data-juicer/blob/master/demos/api_service/wrapped_mappers.py
Apache-2.0
def keep_by_lang(sample, lang): """ Keep samples with the specified language. :param sample: a sample in dataset :param lang: the specified language :return: True to keep, False to discard """ if sample[Fields.stats][StatsKeys.lang] == lang: return True return False
Keep samples with the specified language. :param sample: a sample in dataset :param lang: the specified language :return: True to keep, False to discard
keep_by_lang
python
modelscope/data-juicer
demos/tool_dataset_splitting_by_language/dataset_splitting_by_language.py
https://github.com/modelscope/data-juicer/blob/master/demos/tool_dataset_splitting_by_language/dataset_splitting_by_language.py
Apache-2.0
def main(src_dir, target_dir, text_key=None, suffixes=[], num_proc=1): """ Load dataset from the source directory, then apply language identification using the operation filter called `LanguageIDScoreFilter`, finally, split the dataset by language and save it. :param src_dir: path to store the datas...
Load dataset from the source directory, then apply language identification using the operation filter called `LanguageIDScoreFilter`, finally, split the dataset by language and save it. :param src_dir: path to store the dataset. :param target_dir: path to store subset files(`jsonl` format) :par...
main
python
modelscope/data-juicer
demos/tool_dataset_splitting_by_language/dataset_splitting_by_language.py
https://github.com/modelscope/data-juicer/blob/master/demos/tool_dataset_splitting_by_language/dataset_splitting_by_language.py
Apache-2.0
def main(positive_datasets=None, negative_datasets=None, model='my_quality_model', tokenizer=None, text_key='text'): """ :param positive_datasets: the paths to the positive datasets. It could be a string for a single dataset, e.g. 'pos.parquet', or a list of strings ...
:param positive_datasets: the paths to the positive datasets. It could be a string for a single dataset, e.g. 'pos.parquet', or a list of strings for several datasets, e.g. '["pos1.parquet", "pos2.parquet"]'. :param negative_datasets: the paths to the negative datasets. It could be a s...
main
python
modelscope/data-juicer
demos/tool_quality_classifier/quality_classifier/eval.py
https://github.com/modelscope/data-juicer/blob/master/demos/tool_quality_classifier/quality_classifier/eval.py
Apache-2.0
def main(dataset_path, result_path, model='gpt3', tokenizer=None, keep_method='gpt3', text_key='text', overall_statistics=False): """ Apply quality classifier for your dataset. :param dataset_path: the path to the dataset you want to predict for. :pa...
Apply quality classifier for your dataset. :param dataset_path: the path to the dataset you want to predict for. :param result_path: the path to store the predicted result dataset. :param model: quality classifier name to apply. It's "gpt3" in default. You can use one of ["gpt3", "chinese", "co...
main
python
modelscope/data-juicer
demos/tool_quality_classifier/quality_classifier/predict.py
https://github.com/modelscope/data-juicer/blob/master/demos/tool_quality_classifier/quality_classifier/predict.py
Apache-2.0
def init_spark(): """ Initialize a spark session. You can set parameters such as memory, number of partitions, timeout and so on here. :return: A spark session instance. """ spark = (SparkSession.builder.config('spark.driver.memory', '64g').config( 'spark.executor.memory', '64g')...
Initialize a spark session. You can set parameters such as memory, number of partitions, timeout and so on here. :return: A spark session instance.
init_spark
python
modelscope/data-juicer
demos/tool_quality_classifier/quality_classifier/qc_utils.py
https://github.com/modelscope/data-juicer/blob/master/demos/tool_quality_classifier/quality_classifier/qc_utils.py
Apache-2.0
def main(positive_datasets, negative_datasets, output_model_path='my_quality_model', num_training_samples=0, train_test_split_ratio=0.8, tokenizer=None, evaluation=True, text_key='text'): """ Train a quality classifier using your own pos/neg dataset...
Train a quality classifier using your own pos/neg datasets. :param positive_datasets: the paths to the positive datasets. It could be a string for a single dataset, e.g. 'pos.parquet', or a list of strings for several datasets, e.g. '["pos1.parquet", "pos2.parquet"]'. :param negative_datase...
main
python
modelscope/data-juicer
demos/tool_quality_classifier/quality_classifier/train.py
https://github.com/modelscope/data-juicer/blob/master/demos/tool_quality_classifier/quality_classifier/train.py
Apache-2.0
def get_lang_link(language, pagename, lang_code, non_zh_pages=[], current_version=""): """Generate language specific links for documentation pages""" base_path = "../../" if current_version else "../" def norm_pagename(pagename): return os.path.normpath(pagename) norm_non_zh_pages = set(map(no...
Generate language specific links for documentation pages
get_lang_link
python
modelscope/data-juicer
docs/sphinx_doc/source/conf.py
https://github.com/modelscope/data-juicer/blob/master/docs/sphinx_doc/source/conf.py
Apache-2.0
def find_zh_exclusions(app, config): """ Find Chinese translation files to exclude when building English documentation """ non_zh_pages = set() zh_exclusions = [] for root, dirs, files in os.walk(app.srcdir): for file in files: # Check for files with English base names and c...
Find Chinese translation files to exclude when building English documentation
find_zh_exclusions
python
modelscope/data-juicer
docs/sphinx_doc/source/conf.py
https://github.com/modelscope/data-juicer/blob/master/docs/sphinx_doc/source/conf.py
Apache-2.0
def create_symlinks(source_dir): """Create symbolic links for markdown files in the documentation""" # Use app.srcdir to get the current version of the document source directory project_root = source_dir.parent.parent.parent for md_file in project_root.rglob("*.md"): exclude_paths = ["outputs",...
Create symbolic links for markdown files in the documentation
create_symlinks
python
modelscope/data-juicer
docs/sphinx_doc/source/conf.py
https://github.com/modelscope/data-juicer/blob/master/docs/sphinx_doc/source/conf.py
Apache-2.0
def skip(app, what, name, obj, would_skip, options): """Control which members to skip in documentation""" if name == "__init__": return False return would_skip
Control which members to skip in documentation
skip
python
modelscope/data-juicer
docs/sphinx_doc/source/conf.py
https://github.com/modelscope/data-juicer/blob/master/docs/sphinx_doc/source/conf.py
Apache-2.0
def copy_sphinx_doc_to_build(app, config): """Copies the entire project directory to the Sphinx build directory.""" source_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) dest_dir = app.srcdir.parent.parent.parent / "docs/sphinx_doc" try: shutil.copytree(source_dir, dest_di...
Copies the entire project directory to the Sphinx build directory.
copy_sphinx_doc_to_build
python
modelscope/data-juicer
docs/sphinx_doc/source/conf.py
https://github.com/modelscope/data-juicer/blob/master/docs/sphinx_doc/source/conf.py
Apache-2.0
def test_get_default_cfg(self): """Test getting default configuration from config_all.yaml""" # Get default config cfg = get_default_cfg() # Verify basic default values self.assertIsInstance(cfg, Namespace) # Test essential defaults self.assertEq...
Test getting default configuration from config_all.yaml
test_get_default_cfg
python
modelscope/data-juicer
tests/config/test_config.py
https://github.com/modelscope/data-juicer/blob/master/tests/config/test_config.py
Apache-2.0
def test_cli_override(self): """Test that command line arguments correctly override YAML config values.""" out = StringIO() with redirect_stdout(out): # Test with multiple operators and nested parameters cfg = init_configs(args=[ '--config', test_yaml_path...
Test that command line arguments correctly override YAML config values.
test_cli_override
python
modelscope/data-juicer
tests/config/test_config.py
https://github.com/modelscope/data-juicer/blob/master/tests/config/test_config.py
Apache-2.0
def test_cli_override_with_equals(self): """Test command line overrides using equals sign syntax.""" out = StringIO() with redirect_stdout(out): cfg = init_configs(args=[ '--config', test_yaml_path, '--language_id_score_filter.lang=en', ...
Test command line overrides using equals sign syntax.
test_cli_override_with_equals
python
modelscope/data-juicer
tests/config/test_config.py
https://github.com/modelscope/data-juicer/blob/master/tests/config/test_config.py
Apache-2.0
def test_cli_override_invalid_value(self): """Test that invalid command line override values are properly caught.""" out = StringIO() with redirect_stdout(out), redirect_stderr(out): with self.assertRaises(SystemExit) as cm: init_configs(args=[ '--...
Test that invalid command line override values are properly caught.
test_cli_override_invalid_value
python
modelscope/data-juicer
tests/config/test_config.py
https://github.com/modelscope/data-juicer/blob/master/tests/config/test_config.py
Apache-2.0
def test_builder_single_dataset_config(self): """Test handling of single dataset configuration""" # Setup single dataset config self.base_cfg.dataset = { 'configs': [ { 'type': 'local', 'path': 'test.jsonl' } ...
Test handling of single dataset configuration
test_builder_single_dataset_config
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_multiple_dataset_config(self): """Test handling of multiple dataset configurations""" # Setup multiple dataset config self.base_cfg.dataset = { 'configs': [ { 'type': 'local', 'path': 'test1.jsonl' ...
Test handling of multiple dataset configurations
test_builder_multiple_dataset_config
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_none_dataset_config(self): """Test handling when both dataset and dataset_path are None""" self.base_cfg.dataset = None with self.assertRaises(ValueError) as context: builder = DatasetBuilder(self.base_cfg, self.executor_type) builder.load_datase...
Test handling when both dataset and dataset_path are None
test_builder_none_dataset_config
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_mixed_dataset_types(self): """Test validation of mixed dataset types""" self.base_cfg.dataset = { 'configs': [ { 'type': 'local', 'path': 'test1.jsonl' }, { 'type': 'r...
Test validation of mixed dataset types
test_builder_mixed_dataset_types
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_multiple_remote_datasets(self): """Test validation of multiple remote datasets""" self.base_cfg.dataset = { 'configs': [ { 'type': 'remote', 'source': 'source1' }, { '...
Test validation of multiple remote datasets
test_builder_multiple_remote_datasets
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_empty_dataset_config(self): """Test handling of empty dataset configuration""" self.base_cfg.dataset = { 'configs': [] } with self.assertRaises(ConfigValidationError) as context: DatasetBuilder(self.base_cfg, self.executor_type) ...
Test handling of empty dataset configuration
test_builder_empty_dataset_config
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_invalid_dataset_config_type(self): """Test handling of invalid dataset configuration type""" self.base_cfg.dataset = "invalid_string_config" with self.assertRaises(ConfigValidationError) as context: DatasetBuilder(self.base_cfg, self.executor_type) ...
Test handling of invalid dataset configuration type
test_builder_invalid_dataset_config_type
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_mixed_dataset_configs(self): """Test handling of mixed dataset configurations""" self.base_cfg.dataset = { 'configs': [ { 'type': 'local', 'path': 'test1.jsonl', 'weight': 1.0 }, ...
Test handling of mixed dataset configurations
test_mixed_dataset_configs
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_builder_ray_config(self): """Test loading Ray configuration from YAML""" test_config_file = os.path.join(WORK_DIR, 'test_data', 'test_config_ray.yaml') cfg = init_configs(args=f'--config {test_config_file}'.split()) # Verify basic config self.assertIsInstance(c...
Test loading Ray configuration from YAML
test_builder_ray_config
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_dataset_path_and_dataset_priority(self): """Test priority between dataset_path and dataset configuration""" # Create test files with tempfile.TemporaryDirectory() as tmp_dir: # Create two different test files path1 = os.path.join(tmp_dir, 'test1.jsonl') ...
Test priority between dataset_path and dataset configuration
test_dataset_path_and_dataset_priority
python
modelscope/data-juicer
tests/core/data/test_dataset_builder.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dataset_builder.py
Apache-2.0
def test_invalid_dataset_type(self): """Test validation with unsupported dataset type""" config = { 'required_fields': ['text'] } validator = RequiredFieldsValidator(config) with self.assertRaises(DataValidationError) as exc: validator.validate([1...
Test validation with unsupported dataset type
test_invalid_dataset_type
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_empty_required_fields(self): """Test validation with empty required fields""" config = { 'required_fields': [] } validator = RequiredFieldsValidator(config) # Should pass as no fields are required validator.validate(self.dataset)
Test validation with empty required fields
test_empty_required_fields
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_valid_conversation_with_system(self): """Test valid conversation with system message""" data = { 'messages': [ {'role': 'system', 'content': 'Be helpful'}, {'role': 'user', 'content': 'Hello'}, {'role': 'assistant', 'content': 'Hi ther...
Test valid conversation with system message
test_valid_conversation_with_system
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_valid_conversation_without_system(self): """Test valid conversation without system message""" data = { 'messages': [ {'role': 'user', 'content': 'Hello'}, {'role': 'assistant', 'content': 'Hi there'} ] } dataset = NestedDat...
Test valid conversation without system message
test_valid_conversation_without_system
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_missing_messages(self): """Test conversation with missing messages field""" data = {'random': 'random_value'} dataset = NestedDataset(datasets.Dataset.from_list([data])) with self.assertRaises(DataValidationError) as exc: self.validator.validate(dataset) self...
Test conversation with missing messages field
test_missing_messages
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_invalid_messages_type(self): """Test conversation with non-array messages""" data = {'messages': 'not an array'} dataset = NestedDataset(datasets.Dataset.from_list([data])) with self.assertRaises(DataValidationError) as exc: self.validator.validate(dataset) s...
Test conversation with non-array messages
test_invalid_messages_type
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_non_string_content(self): """Test message with non-string content""" data = { 'messages': [ {'role': 'user', 'content': 123}, {'role': 'assistant', 'content': 'Hi'} ] } with self.assertRaises(Exception) as exc: ...
Test message with non-string content
test_non_string_content
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_valid_conversation_without_system(self): """Test valid conversation without optional fields""" data = { 'instruction': 'Help me', 'query': 'How do I code?', 'response': 'Here is how...' } dataset = NestedDataset(datasets.Dataset.from_list([dat...
Test valid conversation without optional fields
test_valid_conversation_without_system
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_missing_required_field(self): """Test conversation with missing required field""" data = { 'instruction': 'Help me', 'query': 'How do I code?' # missing 'response' } dataset = NestedDataset(datasets.Dataset.from_list([data])) with self...
Test conversation with missing required field
test_missing_required_field
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_invalid_field_type(self): """Test conversation with invalid field type""" data = { 'instruction': 'Help me', 'query': 123, # should be string 'response': 'Here is how...' } dataset = NestedDataset(datasets.Dataset.from_list([data])) w...
Test conversation with invalid field type
test_invalid_field_type
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_invalid_history_format(self): """Test conversation with invalid history format""" data = { 'instruction': 'Help me', 'query': 'How do I code?', 'response': 'Here is how...', 'history': [ ['Single element'] # should be [query, resp...
Test conversation with invalid history format
test_invalid_history_format
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_invalid_history_types(self): """Test conversation with invalid types in history""" data = { 'instruction': 'Help me', 'query': 'How do I code?', 'response': 'Here is how...', 'history': [ [123, 'A1'] # query should be string ...
Test conversation with invalid types in history
test_invalid_history_types
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_invalid_system_type(self): """Test conversation with invalid system type""" data = { 'system': 123, # should be string 'instruction': 'Help me', 'query': 'How do I code?', 'response': 'Here is how...' } dataset = NestedDataset(dat...
Test conversation with invalid system type
test_invalid_system_type
python
modelscope/data-juicer
tests/core/data/test_data_validator.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_data_validator.py
Apache-2.0
def test_get_column_preserve_order(self): """Test that column order is preserved""" texts = self.dataset.get_column('text') self.assertEqual(texts[0], 'Hello') self.assertEqual(texts[1], 'World') self.assertEqual(texts[2], 'Test') # Test with k texts = se...
Test that column order is preserved
test_get_column_preserve_order
python
modelscope/data-juicer
tests/core/data/test_dj_dataset.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dj_dataset.py
Apache-2.0
def test_schema_multiple_datasets(self): """Test schema consistency across multiple datasets""" data1 = [{'text': 'hello', 'score': 1}] data2 = [{'text': 'world', 'score': 2}] dataset1 = NestedDataset(Dataset.from_list(data1)) dataset2 = NestedDataset(Dataset.from_list(d...
Test schema consistency across multiple datasets
test_schema_multiple_datasets
python
modelscope/data-juicer
tests/core/data/test_dj_dataset.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dj_dataset.py
Apache-2.0
def test_schema_nested_structures(self): """Test schema with nested data structures""" data = [{ 'text': 'hello', 'int_value': 1, 'float_value': 1.0, 'bool_value': True, 'metadata': {'lang': 'en', 'score': 1}, 'tags': ['tag1', 'tag2...
Test schema with nested data structures
test_schema_nested_structures
python
modelscope/data-juicer
tests/core/data/test_dj_dataset.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dj_dataset.py
Apache-2.0
def test_schema_special_characters(self): """Test schema with special characters in column names""" data = [{ 'normal': 1, 'with.dot': 2, 'with-dash': 3, '_underscore': 4, 'with space': 5 }] dataset = NestedDataset(Data...
Test schema with special characters in column names
test_schema_special_characters
python
modelscope/data-juicer
tests/core/data/test_dj_dataset.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dj_dataset.py
Apache-2.0
def test_schema_type_consistency(self): """Test schema type consistency across rows""" data = [ {'text': 'hello', 'score': 1, 'flag': True}, {'text': 'world', 'score': 2, 'flag': False}, {'text': 'test', 'score': 3, 'flag': True} ] dataset = N...
Test schema type consistency across rows
test_schema_type_consistency
python
modelscope/data-juicer
tests/core/data/test_dj_dataset.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_dj_dataset.py
Apache-2.0
def setUpClass(cls): """Class-level setup run once before all tests""" super().setUpClass() # Save original strategies cls._original_strategies = DataLoadStrategyRegistry._strategies.copy()
Class-level setup run once before all tests
setUpClass
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def tearDownClass(cls): """Class-level cleanup run once after all tests""" # Restore original strategies DataLoadStrategyRegistry._strategies = cls._original_strategies super().tearDownClass()
Class-level cleanup run once after all tests
tearDownClass
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def setUp(self): """Instance-level setup run before each test""" super().setUp() # Clear strategies before each test DataLoadStrategyRegistry._strategies = {}
Instance-level setup run before each test
setUp
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def test_load_strategy_default_config(self): """Test load strategy with minimal config""" DataLoadStrategyRegistry._strategies = {} # Create minimal config minimal_cfg = Namespace( path='test/path' ) ds_config = { 'path': 'test/path' ...
Test load strategy with minimal config
test_load_strategy_default_config
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def test_load_strategy_full_config(self): """Test load strategy with full config""" DataLoadStrategyRegistry._strategies = {} # Create config with all options full_cfg = Namespace( path='test/path', text_keys=['content', 'title'], suffixes=['.txt', '....
Test load strategy with full config
test_load_strategy_full_config
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def test_load_strategy_partial_config(self): """Test load strategy with partial config""" DataLoadStrategyRegistry._strategies = {} # Create config with some options partial_cfg = Namespace( path='test/path', text_keys=['content'], # suffixes and add_...
Test load strategy with partial config
test_load_strategy_partial_config
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def test_load_strategy_empty_config(self): """Test load strategy with empty config""" DataLoadStrategyRegistry._strategies = {} # Create empty config empty_cfg = Namespace() ds_config = { 'path': 'test/path' } strategy = Defa...
Test load strategy with empty config
test_load_strategy_empty_config
python
modelscope/data-juicer
tests/core/data/test_load_strategy.py
https://github.com/modelscope/data-juicer/blob/master/tests/core/data/test_load_strategy.py
Apache-2.0
def test_load_formatter_with_directory(self): """Test loading a directory with mixed file types""" formatter = load_formatter(self._path) # Should pick the formatter with most matching files ds = formatter.load_dataset() self.assertTrue(len(ds) > 0)
Test loading a directory with mixed file types
test_load_formatter_with_directory
python
modelscope/data-juicer
tests/format/test_load_formatter.py
https://github.com/modelscope/data-juicer/blob/master/tests/format/test_load_formatter.py
Apache-2.0
def test_load_formatter_with_specific_suffix(self): """Test loading a file with specific suffix""" formatter = load_formatter(self._json_file, suffixes=['.jsonl']) self.assertIsInstance(formatter, JsonFormatter) ds = formatter.load_dataset() self.assertEqual(len(ds), 6)
Test loading a file with specific suffix
test_load_formatter_with_specific_suffix
python
modelscope/data-juicer
tests/format/test_load_formatter.py
https://github.com/modelscope/data-juicer/blob/master/tests/format/test_load_formatter.py
Apache-2.0
def test_load_formatter_with_complex_extension(self): """Test loading a file with a complex extension like jsonl.zst which is not supported by json formatter""" with self.assertRaises(ValueError): formatter = load_formatter(self._complex_ext_file)
Test loading a file with a complex extension like jsonl.zst which is not supported by json formatter
test_load_formatter_with_complex_extension
python
modelscope/data-juicer
tests/format/test_load_formatter.py
https://github.com/modelscope/data-juicer/blob/master/tests/format/test_load_formatter.py
Apache-2.0
def test_load_formatter_with_stacktrace_scenario(self): """Specifically test the scenario from the error stacktrace""" # Create a temp directory with the name that matches the error temp_path = os.path.join(self._temp_dir, 'data') os.makedirs(temp_path, exist_ok=True) # ...
Specifically test the scenario from the error stacktrace
test_load_formatter_with_stacktrace_scenario
python
modelscope/data-juicer
tests/format/test_load_formatter.py
https://github.com/modelscope/data-juicer/blob/master/tests/format/test_load_formatter.py
Apache-2.0
def test_load_formatter_with_relative_path(self): """Test loading a file using a relative path""" # Change to the temp directory os.chdir(self._temp_dir) # Use a relative path to the test file rel_path = os.path.join('rel_path_test', 'test_rel.jsonl') # ...
Test loading a file using a relative path
test_load_formatter_with_relative_path
python
modelscope/data-juicer
tests/format/test_load_formatter.py
https://github.com/modelscope/data-juicer/blob/master/tests/format/test_load_formatter.py
Apache-2.0
def test_load_formatter_with_relative_directory_path(self): """Test loading a directory using a relative path""" # Change to the temp directory os.chdir(self._temp_dir) # Use a relative path to the directory rel_dir_path = 'rel_path_test' # Try to load u...
Test loading a directory using a relative path
test_load_formatter_with_relative_directory_path
python
modelscope/data-juicer
tests/format/test_load_formatter.py
https://github.com/modelscope/data-juicer/blob/master/tests/format/test_load_formatter.py
Apache-2.0
def test_function_execution(self): """Test the correct execution of a loadable function.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write( "def process_data(sample):\n" " return {'result': sample['value...
Test the correct execution of a loadable function.
test_function_execution
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_function_batched(self): """Test for a function that processes a batch.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write( "def process_data(samples):\n" " return {'result': samples['value'] + [1...
Test for a function that processes a batch.
test_function_batched
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_function_with_import(self): """Test for a function that contains an import statement.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write( "import numpy as np\n" "def process_data(sample):\n" ...
Test for a function that contains an import statement.
test_function_with_import
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_file_not_python_extension(self): """Test for a file that exists but is not a .py file.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.txt', mode='w+') as temp_file: temp_file.write("This is a text file.") temp_file.seek(0) # Rewind the file so it can be read ...
Test for a file that exists but is not a .py file.
test_file_not_python_extension
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_function_not_found(self): """Test for function not existing in the provided file.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write( "def existing_function(sample):\n" " return sample\n" ...
Test for function not existing in the provided file.
test_function_not_found
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_function_not_callable(self): """Test for trying to load a non-callable function.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write("x = 42") temp_file.seek(0) # Rewind the file so it can be read with self...
Test for trying to load a non-callable function.
test_function_not_callable
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_function_mutiple_arguments(self): """Test for function that requires more than one argument.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write( "def multi_arg_function(arg1, arg2):\n" " return a...
Test for function that requires more than one argument.
test_function_mutiple_arguments
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0
def test_invalid_return_type(self): """Test for a function returning a non-dictionary.""" with tempfile.NamedTemporaryFile(delete=True, suffix='.py', mode='w+') as temp_file: temp_file.write( "def invalid_function(sample):\n" " return sample['value'] + 5\n"...
Test for a function returning a non-dictionary.
test_invalid_return_type
python
modelscope/data-juicer
tests/ops/mapper/test_python_file_mapper.py
https://github.com/modelscope/data-juicer/blob/master/tests/ops/mapper/test_python_file_mapper.py
Apache-2.0