这是一个基于 PyTorch 的框架,这是来自 Facebook 的东西。
当涉及到您的问题(毫无疑问是崇高的追求)时:
您可以轻松地创建一个torch.utils.data.Dataset
依赖于任何东西,包括模型,像这样(原谅弱抽象,这只是为了证明一点):
import typing
import torch
from torch.utils.data import Dataset
class Environment(Dataset):
def __init__(self, initial_state, actor: torch.nn.Module, max_interactions: int):
self.current_state = initial_state
self.actor: torch.nn.Module = actor
self.max_interactions: int = max_interactions
# Just ignore the index
def __getitem__(self, _):
self.current_state = self.actor.update(self.current_state)
return self.current_state.get_data()
def __len__(self):
return self.max_interactions
假设,torch.nn.Module
-like 网络具有某种update
变化的环境状态。总而言之,它只是一个 Python 结构,所以你可以用它来建模很多东西。
您可以指定max_interactions
为几乎infinite
,或者如果需要在训练期间使用一些回调(可能__len__
会在整个代码中多次调用),您可以动态更改它。环境可以进一步提供batches
而不是样品。
torch.utils.data.DataLoader
有batch_sampler
参数,在那里你可以生成不同长度的批次。由于网络不依赖于第一个维度,您也可以从那里返回您想要的任何批量大小。
顺便提一句。如果每个样本的长度不同,则应使用填充,不同的批量大小与此无关。