本文簡要介紹python語言中 torchdata.datapipes.iter.DataFrameMaker
的用法。
用法:
class torchdata.datapipes.iter.DataFrameMaker(source_dp: IterDataPipe[torchdata.datapipes.iter.util.dataframemaker.T_co], dataframe_size: int = 1000, dtype=None, columns: Optional[List[str]] = None, device: str = '')
source_dp-IterDataPipe 包含數據行
dataframe_size-每個 DataFrame 中的數據行數,可以選擇頁麵大小
dtype-為 DataFrame 指定
TorchArrow
dtype,使用torcharrow.dtypes.DType
columns-指定 DataFrame 的列名稱的 str 列表
device-指定將存儲DataFrame的設備
獲取多行數據,將其中的一些數據批處理在一起並創建
TorchArrow
DataFrames (函數名稱:dataframe
)。注意
DataFrame 中包含大量行和內存使用之間存在權衡。請仔細選擇一個值。
示例
>>> from torchdata.datapipes.iter import IterableWrapper >>> import torcharrow.dtypes as dt >>> source_data = [(i,) for i in range(3)] >>> source_dp = IterableWrapper(source_data) >>> DTYPE = dt.Struct([dt.Field("Values", dt.int32)]) >>> df_dp = source_dp.dataframe(dtype=DTYPE) >>> list(df_dp)[0] index Values ------- -------- 0 0 1 1 2 2 dtype: Struct([Field('Values', int32)]), count: 3, null_count: 0
參數:
相關用法
- Python PyTorch DataParallel用法及代碼示例
- Python PyTorch DatasetFolder.find_classes用法及代碼示例
- Python PyTorch DeQuantize用法及代碼示例
- Python PyTorch DistributedModelParallel用法及代碼示例
- Python PyTorch DistributedDataParallel用法及代碼示例
- Python PyTorch DenseArch用法及代碼示例
- Python PyTorch DeepFM用法及代碼示例
- Python PyTorch DistributedDataParallel.register_comm_hook用法及代碼示例
- Python PyTorch DLRM用法及代碼示例
- Python PyTorch DistributedSampler用法及代碼示例
- Python PyTorch DistributedDataParallel.join用法及代碼示例
- Python PyTorch Dropout用法及代碼示例
- Python PyTorch DistributedModelParallel.named_parameters用法及代碼示例
- Python PyTorch Dropout3d用法及代碼示例
- Python PyTorch DistributedModelParallel.state_dict用法及代碼示例
- Python PyTorch DistributedDataParallel.no_sync用法及代碼示例
- Python PyTorch Decompressor用法及代碼示例
- Python PyTorch Dropout2d用法及代碼示例
- Python PyTorch DistributedModelParallel.named_buffers用法及代碼示例
- Python PyTorch DeepFM.forward用法及代碼示例
- Python PyTorch Dirichlet用法及代碼示例
- Python PyTorch Demultiplexer用法及代碼示例
- Python PyTorch DistributedOptimizer用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torchdata.datapipes.iter.DataFrameMaker。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。