当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch IoPathSaver用法及代码示例


本文简要介绍python语言中 torchdata.datapipes.iter.IoPathSaver 的用法。

用法:

class torchdata.datapipes.iter.IoPathSaver(source_datapipe: IterDataPipe[Tuple[Any, Union[bytes, bytearray, str]]], mode: str = 'w', filepath_fn: Optional[Callable] = None, *, pathmgr=None)

参数

  • source_datapipe-可迭代DataPipe,包含元数据和数据元组

  • mode-打开文件以写入数据的模式(默认为"w")

  • filepath_fn-接收元数据并返回新文件目标路径的函数

  • pathmgr-自定义 iopath.PathManager 。如果未指定,则创建默认 PathManager

接收元数据和数据元组的 DataPipe,将数据保存到由 filepath_fn 和元数据生成的目标路径,并以 iopath 格式生成结果路径(函数名称: save_by_iopath )。

注意

默认PathManager当前支持本地文件路径、普通HTTP URL和OneDrive URL。仅当 iopath >=0.1.9 时才支持 S3 URL。

示例

>>> from torchdata.datapipes.iter import IterableWrapper
>>> def filepath_fn(name: str) -> str:
>>>     return S3URL + name
>>> name_to_data = {"1.txt": b"DATA1", "2.txt": b"DATA2", "3.txt": b"DATA3"}
>>> source_dp = IterableWrapper(sorted(name_to_data.items()))
>>> iopath_saver_dp = source_dp.save_by_iopath(filepath_fn=filepath_fn, mode="wb")
>>> res_file_paths = list(iopath_saver_dp)

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torchdata.datapipes.iter.IoPathSaver。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。