代码拉取完成,页面将自动刷新
# Copyright 2025 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================
"""packing huggingface datasets"""
import sys
import argparse
import os
import time
from typing import Optional
from mindformers.tools import MindFormerConfig, logger
from mindformers.dataset.handler.build_data_handler import build_data_handler
from mindformers.dataset.dataloader.common_dataloader import CommonDataLoader
class PreprocessDataLoader(CommonDataLoader):
"""Dataloader class for preprocessing HF datasets"""
def __new__(cls,
path: Optional[str] = None,
load_func: str = 'load_dataset',
handler: Optional[dict] = None,
packing: str = None,
**kwargs):
if path is None or path.strip() == "":
raise ValueError(f"path should not be empty.")
if "split" not in kwargs:
kwargs["split"] = "train"
kwargs = cls._filter_params(kwargs=kwargs)
dataset = cls.load_dataset(path=path, load_func=load_func, **kwargs)
if handler: # data preprocess
if not isinstance(handler, list):
raise ValueError(f"handler in config should be set as 'list', but got {type(handler)}.")
for per_handler in handler:
data_handler = build_data_handler(per_handler, packing=packing)
dataset = data_handler.handle(dataset)
return dataset
def prepare_args():
"""prepare arguments for packing dataset"""
parser = argparse.ArgumentParser()
parser.add_argument('--config',
type=str,
required=True,
help='A path of config file containing CommonDataLoader.')
parser.add_argument('--save_path',
default="./packed_data",
type=str,
help='A directory to save packed dataset.')
parser.add_argument('--register_path',
type=str,
default=None,
help='The register path of outer API. '
'This is usually the parent path of the Python file where the outer API is located.'
'This configuration can be ignored if it does not involve registering the outer API.')
args = parser.parse_args()
if args.register_path is not None:
work_path = os.path.dirname(os.path.abspath(__file__))
work_path = '/'.join(work_path.split('/')[:-3]) # set work path as project root
if not os.path.isabs(args.register_path):
args.register_path = os.path.join(work_path, args.register_path)
# Setting Environment Variables: REGISTER_PATH For Auto Register to Outer API
os.environ["REGISTER_PATH"] = args.register_path
if args.register_path not in sys.path:
sys.path.append(args.register_path)
return args
def main():
"""main processing function"""
start_time = time.time()
# prepare arguments and load config
args = prepare_args()
config = MindFormerConfig(args.config)
# build dataset
dataloader_config = config.train_dataset.data_loader
dataset = PreprocessDataLoader(**dataloader_config)
# save dataset
dataset.save_to_disk(args.save_path)
end_time = time.time()
logger.info(f"Packed datasets saved in {args.save_path}, spend {end_time - start_time:.4f}s.")
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。