100 Star 1.3K Fork 915

GVPMindSpore/mindformers

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
datasets_preprocess.py 3.98 KB
一键复制 编辑 原始数据 按行查看 历史
niujunhao 提交于 2025-04-15 10:19 +08:00 . fix hf offline.
# 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()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindformers.git
git@gitee.com:mindspore/mindformers.git
mindspore
mindformers
mindformers
r1.5.0

搜索帮助