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


Python PyTorch IoPathFileLister用法及代码示例


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

用法:

class torchdata.datapipes.iter.IoPathFileLister(root: str, masks: Union[str, List[str]] = '', *, pathmgr=None)

参数

  • root-列出文件的根本地文件路径或 URL 目录

  • masks-用于过滤文件名的 Unix 样式过滤器字符串或字符串列表

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

在提供的 root 路径名或 URL 处列出目录的内容,并为目录中的每个文件生成完整的路径名或 URL。

注意

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

示例

>>> from torchdata.datapipes.iter import IoPathFileLister
>>> datapipe = IoPathFileLister(root=S3URL)

相关用法


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