本文簡要介紹python語言中 torchdata.datapipes.iter.Forker
的用法。
用法:
class torchdata.datapipes.iter.Forker(datapipe: IterDataPipe, num_instances: int, buffer_size: int = 1000)
datapipe-正在複製可迭代DataPipe
num_instances-要創建的數據管道實例數
buffer_size-這限製了領先的子級 DataPipe 相對於最慢的子級 DataPipe 可以讀取多遠。默認為
1000
。使用-1
作為無限緩衝區。
創建同一 Iterable DataPipe 的多個實例(函數名稱:
fork
)。示例
>>> from torchdata.datapipes.iter import IterableWrapper >>> source_dp = IterableWrapper(range(5)) >>> dp1, dp2 = source_dp.fork(num_instances=2) >>> list(dp1) [0, 1, 2, 3, 4] >>> list(dp2) [0, 1, 2, 3, 4]
參數:
相關用法
- Python PyTorch Fold用法及代碼示例
- Python PyTorch Future.then用法及代碼示例
- Python PyTorch FunctionCtx.mark_dirty用法及代碼示例
- Python PyTorch FloatFunctional用法及代碼示例
- Python PyTorch FMInteractionArch用法及代碼示例
- Python PyTorch Future.add_done_callback用法及代碼示例
- Python PyTorch Function用法及代碼示例
- Python PyTorch FeatureAlphaDropout用法及代碼示例
- Python PyTorch FSSpecFileOpener用法及代碼示例
- Python PyTorch Filter用法及代碼示例
- Python PyTorch FSSpecSaver用法及代碼示例
- Python PyTorch FileLister用法及代碼示例
- Python PyTorch FunctionCtx.set_materialize_grads用法及代碼示例
- Python PyTorch FisherSnedecor用法及代碼示例
- Python PyTorch FeaturePyramidNetwork用法及代碼示例
- Python PyTorch FactorizationMachine用法及代碼示例
- Python PyTorch FileStore用法及代碼示例
- Python PyTorch FractionalMaxPool3d用法及代碼示例
- Python PyTorch FiveCrop用法及代碼示例
- Python PyTorch FileOpener用法及代碼示例
- Python PyTorch FunctionCtx.save_for_backward用法及代碼示例
- Python PyTorch FactorizationMachine.forward用法及代碼示例
- Python PyTorch FrequencyMasking用法及代碼示例
- Python PyTorch Fade用法及代碼示例
- Python PyTorch Future.set_result用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torchdata.datapipes.iter.Forker。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。