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


Python PyTorch GDriveReader用法及代码示例


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

用法:

class torchdata.datapipes.iter.GDriveReader(source_datapipe: IterDataPipe[str], *, timeout: Optional[float] = None)

参数

  • source_datapipe-包含 GDrive 文件 URL 的 DataPipe

  • timeout-HTTP 请求超时(以秒为单位)

获取指向 GDrive 文件的 URL,并生成文件名和 IO 流的元组。

示例

>>> from torchdata.datapipes.iter import IterableWrapper, GDriveReader
>>> gdrive_file_url = "https://drive.google.com/uc?export=download&id=SomeIDToAGDriveFile"
>>> gdrive_reader_dp = GDriveReader(IterableWrapper([gdrive_file_url]))
>>> reader_dp = gdrive_reader_dp.readlines()
>>> it = iter(reader_dp)
>>> path, line = next(it)
>>> path
https://drive.google.com/uc?export=download&id=SomeIDToAGDriveFile
>>> line
<First line from the GDrive File>

相关用法


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