注意
转到末尾 以下载完整示例代码。
导出 tensordict 模块¶
作者: Vincent Moens
先决条件¶
阅读 TensorDictModule 教程更有利于充分利用本教程。
一旦使用tensordict.nn编写了一个模块,通常很有用的是隔离计算图并导出该图。这样做的目标可能是将模型执行在硬件上(例如,机器人、无人机、边缘设备)或完全消除对tensordict的依赖。
PyTorch 提供了多种导出模块的方法,包括 onnx 和 torch.export,这两种方法都与 tensordict 兼容。
在这个简短的教程中,我们将了解如何使用 torch.export 来隔离模型的计算图。
torch.onnx 的支持遵循相同的逻辑。
关键学习¶
执行一个
tensordict.nn模块,没有TensorDict输入;选择模型的输出(s);
处理随机模型;
导出此类模型使用 torch.export;
将模型保存到文件;
隔离 PyTorch 模型;
import time
import torch
from tensordict.nn import (
InteractionType,
NormalParamExtractor,
ProbabilisticTensorDictModule as Prob,
set_interaction_type,
TensorDictModule as Mod,
TensorDictSequential as Seq,
)
from torch import distributions as dists, nn
设计模型¶
在许多应用中,使用随机模型(即输出变量并非确定性定义,而是根据参数化分布进行采样的模型)十分有用。例如,生成式人工智能模型在接收相同输入时往往会生成不同的输出,这是因为其输出是基于一个由输入所决定参数的分布进行采样的。
The tensordict 库通过 ProbabilisticTensorDictModule 类来处理这个问题。
这个基本组件是使用一个分布类 (Normal 在我们的例子中) 和一个指示符构建的,
该指示符将在执行时用于构建该分布。
我们正在构建的网络因此将是三个主要组件的组合:
将输入映射到潜在参数的网络;
一个
tensordict.nn.NormalParamExtractor模块在位置 “loc” 和 “scale” 将输入拆分,并将参数传递给Normal分布;一个分布构造模块。
model = Seq(
# 1. A small network for embedding
Mod(nn.Linear(3, 4), in_keys=["x"], out_keys=["hidden"]),
Mod(nn.ReLU(), in_keys=["hidden"], out_keys=["hidden"]),
Mod(nn.Linear(4, 4), in_keys=["hidden"], out_keys=["latent"]),
# 2. Extracting params
Mod(NormalParamExtractor(), in_keys=["latent"], out_keys=["loc", "scale"]),
# 3. Probabilistic module
Prob(
in_keys=["loc", "scale"],
out_keys=["sample"],
distribution_class=dists.Normal,
),
)
让我们运行这个模型,看看输出是什么样子:
x = torch.randn(1, 3)
print(model(x=x))
(tensor([[0.0000, 0.2604, 0.0000, 0.0000]], grad_fn=<ReluBackward0>), tensor([[-0.1580, -0.5222, -0.3319, 0.5519]], grad_fn=<AddmmBackward0>), tensor([[-0.1580, -0.5222]], grad_fn=<SplitBackward0>), tensor([[0.8046, 1.3804]], grad_fn=<ClampMinBackward0>), tensor([[-0.1580, -0.5222]], grad_fn=<SplitBackward0>))
正如预期的那样,使用张量输入运行模型时,返回的张量数量与模块的输出键(output keys)数量一致!对于大型模型而言,这可能会非常烦人且造成资源浪费。稍后,我们将介绍如何限制模型的输出数量,以应对这一问题。
使用 torch.export 与一个 TensorDictModule¶
现在我们已经成功构建了模型,我们希望将其计算图提取为一个独立的对象,该对象与tensordict无关。torch.export是一个PyTorch模块,专门用于隔离模块的图并以标准化方式表示它。它的主要入口点是export(),它返回一个ExportedProgram对象。反过来,这个对象有几个感兴趣的属性,我们将在下面进行探讨:一个graph_module,它表示由export捕获的FX图;一个graph_signature,包含图的输入、输出等;最后是一个module(),返回一个可调用的对象,可以在原模块的位置使用。
虽然我们的模块接受 args 和 kwargs,但我们将重点关注其使用 kwargs 的情况,因为这样更清晰。
from torch.export import export
model_export = export(model, args=(), kwargs={"x": x})
让我们看看这个模块:
print("module:", model_export.module())
module: GraphModule(
(module): Module(
(0): Module(
(module): Module()
)
(2): Module(
(module): Module()
)
)
)
def forward(self, x):
x, = fx_pytree.tree_flatten_spec(([], {'x':x}), self._in_spec)
module_0_module_weight = getattr(self.module, "0").module.weight
module_0_module_bias = getattr(self.module, "0").module.bias
module_2_module_weight = getattr(self.module, "2").module.weight
module_2_module_bias = getattr(self.module, "2").module.bias
linear = torch.ops.aten.linear.default(x, module_0_module_weight, module_0_module_bias); x = module_0_module_weight = module_0_module_bias = None
relu = torch.ops.aten.relu.default(linear); linear = None
linear_1 = torch.ops.aten.linear.default(relu, module_2_module_weight, module_2_module_bias); module_2_module_weight = module_2_module_bias = None
split = torch.ops.aten.split.Tensor(linear_1, 2, -1)
getitem = split[0]
getitem_1 = split[1]; split = None
add = torch.ops.aten.add.Tensor(getitem_1, 0.5254586935043335); getitem_1 = None
softplus = torch.ops.aten.softplus.default(add); add = None
add_1 = torch.ops.aten.add.Tensor(softplus, 0.01); softplus = None
clamp_min = torch.ops.aten.clamp_min.default(add_1, 0.0001); add_1 = None
broadcast_tensors = torch.ops.aten.broadcast_tensors.default([getitem, clamp_min]); getitem = clamp_min = None
getitem_2 = broadcast_tensors[0]
getitem_3 = broadcast_tensors[1]; broadcast_tensors = None
return pytree.tree_unflatten((relu, linear_1, getitem_2, getitem_3, getitem_2), self._out_spec)
# To see more debug info, please use `graph_module.print_readable()`
这个模块可以像我们原来的模块一样运行(具有更低的开销):
Time for TDModule: 469.45 micro-seconds
Time for exported module: 340.70 micro-seconds
以及 FX 图:
print("fx graph:", model_export.graph_module.print_readable())
class GraphModule(torch.nn.Module):
def forward(self, p_l__args___0_module_0_module_weight: "f32[4, 3]", p_l__args___0_module_0_module_bias: "f32[4]", p_l__args___0_module_2_module_weight: "f32[4, 4]", p_l__args___0_module_2_module_bias: "f32[4]", x: "f32[1, 3]"):
# File: /pytorch/tensordict/tensordict/nn/common.py:1010 in _call_module, code: out = self.module(*tensors, **kwargs)
linear: "f32[1, 4]" = torch.ops.aten.linear.default(x, p_l__args___0_module_0_module_weight, p_l__args___0_module_0_module_bias); x = p_l__args___0_module_0_module_weight = p_l__args___0_module_0_module_bias = None
relu: "f32[1, 4]" = torch.ops.aten.relu.default(linear); linear = None
linear_1: "f32[1, 4]" = torch.ops.aten.linear.default(relu, p_l__args___0_module_2_module_weight, p_l__args___0_module_2_module_bias); p_l__args___0_module_2_module_weight = p_l__args___0_module_2_module_bias = None
# File: /pytorch/tensordict/tensordict/nn/distributions/continuous.py:129 in forward, code: loc, scale = tensor.chunk(2, -1)
split = torch.ops.aten.split.Tensor(linear_1, 2, -1)
getitem: "f32[1, 2]" = split[0]
getitem_1: "f32[1, 2]" = split[1]; split = None
# File: /pytorch/tensordict/tensordict/nn/utils.py:68 in forward, code: return torch.nn.functional.softplus(x + self.bias) + self.min_val
add: "f32[1, 2]" = torch.ops.aten.add.Tensor(getitem_1, 0.5254586935043335); getitem_1 = None
softplus: "f32[1, 2]" = torch.ops.aten.softplus.default(add); add = None
add_1: "f32[1, 2]" = torch.ops.aten.add.Tensor(softplus, 0.01); softplus = None
# File: /pytorch/tensordict/tensordict/nn/distributions/continuous.py:130 in forward, code: scale = self.scale_mapping(scale).clamp_min(self.scale_lb)
clamp_min: "f32[1, 2]" = torch.ops.aten.clamp_min.default(add_1, 0.0001); add_1 = None
# File: /pytorch/tensordict/env/lib/python3.10/site-packages/torch/distributions/utils.py:55 in broadcast_all, code: return torch.broadcast_tensors(*values)
broadcast_tensors = torch.ops.aten.broadcast_tensors.default([getitem, clamp_min]); getitem = clamp_min = None
getitem_2: "f32[1, 2]" = broadcast_tensors[0]
getitem_3: "f32[1, 2]" = broadcast_tensors[1]; broadcast_tensors = None
return (relu, linear_1, getitem_2, getitem_3, getitem_2)
fx graph: class GraphModule(torch.nn.Module):
def forward(self, p_l__args___0_module_0_module_weight: "f32[4, 3]", p_l__args___0_module_0_module_bias: "f32[4]", p_l__args___0_module_2_module_weight: "f32[4, 4]", p_l__args___0_module_2_module_bias: "f32[4]", x: "f32[1, 3]"):
# File: /pytorch/tensordict/tensordict/nn/common.py:1010 in _call_module, code: out = self.module(*tensors, **kwargs)
linear: "f32[1, 4]" = torch.ops.aten.linear.default(x, p_l__args___0_module_0_module_weight, p_l__args___0_module_0_module_bias); x = p_l__args___0_module_0_module_weight = p_l__args___0_module_0_module_bias = None
relu: "f32[1, 4]" = torch.ops.aten.relu.default(linear); linear = None
linear_1: "f32[1, 4]" = torch.ops.aten.linear.default(relu, p_l__args___0_module_2_module_weight, p_l__args___0_module_2_module_bias); p_l__args___0_module_2_module_weight = p_l__args___0_module_2_module_bias = None
# File: /pytorch/tensordict/tensordict/nn/distributions/continuous.py:129 in forward, code: loc, scale = tensor.chunk(2, -1)
split = torch.ops.aten.split.Tensor(linear_1, 2, -1)
getitem: "f32[1, 2]" = split[0]
getitem_1: "f32[1, 2]" = split[1]; split = None
# File: /pytorch/tensordict/tensordict/nn/utils.py:68 in forward, code: return torch.nn.functional.softplus(x + self.bias) + self.min_val
add: "f32[1, 2]" = torch.ops.aten.add.Tensor(getitem_1, 0.5254586935043335); getitem_1 = None
softplus: "f32[1, 2]" = torch.ops.aten.softplus.default(add); add = None
add_1: "f32[1, 2]" = torch.ops.aten.add.Tensor(softplus, 0.01); softplus = None
# File: /pytorch/tensordict/tensordict/nn/distributions/continuous.py:130 in forward, code: scale = self.scale_mapping(scale).clamp_min(self.scale_lb)
clamp_min: "f32[1, 2]" = torch.ops.aten.clamp_min.default(add_1, 0.0001); add_1 = None
# File: /pytorch/tensordict/env/lib/python3.10/site-packages/torch/distributions/utils.py:55 in broadcast_all, code: return torch.broadcast_tensors(*values)
broadcast_tensors = torch.ops.aten.broadcast_tensors.default([getitem, clamp_min]); getitem = clamp_min = None
getitem_2: "f32[1, 2]" = broadcast_tensors[0]
getitem_3: "f32[1, 2]" = broadcast_tensors[1]; broadcast_tensors = None
return (relu, linear_1, getitem_2, getitem_3, getitem_2)
处理嵌套键¶
嵌套键是tensordict库的核心功能,因此能够导出读取和写入嵌套条目的模块是一项重要的支持功能。
由于关键字参数必须是常规字符串,dispatch 无法直接与它们一起工作。
相反,dispatch 将使用常规下划线 (“_”) 分隔的嵌套键进行拆包,如下例所示。
model_nested = Seq(
Mod(lambda x: x + 1, in_keys=[("some", "key")], out_keys=["hidden"]),
Mod(lambda x: x - 1, in_keys=["hidden"], out_keys=[("some", "output")]),
).select_out_keys(("some", "output"))
model_nested_export = export(model_nested, args=(), kwargs={"some_key": x})
print("exported module with nested input:", model_nested_export.module())
exported module with nested input: GraphModule()
def forward(self, some_key):
some_key, = fx_pytree.tree_flatten_spec(([], {'some_key':some_key}), self._in_spec)
add = torch.ops.aten.add.Tensor(some_key, 1); some_key = None
sub = torch.ops.aten.sub.Tensor(add, 1); add = None
return pytree.tree_unflatten((sub,), self._out_spec)
# To see more debug info, please use `graph_module.print_readable()`
请注意,module() 返回的可调用对象是一个纯 Python 可调用对象,可以使用
compile() 进行编译。
保存导出的模块¶
torch.export 有它自己的序列化协议,save() 和 load().
通常情况下,应使用 “.pt2” 扩展:
>>> torch.export.save(model_export, "model.pt2")
选择输出¶
请记住,tensordict.nn 的作用是保留输出中的所有中间值,除非用户特别要求只保留特定的值。在训练过程中,这非常有用:可以轻松记录图中的中间值,或将其用于其他目的(例如,根据保存的参数重建分布,而不是保存 Distribution 对象本身)。也可以认为,在训练过程中,注册中间值对内存的影响是可以忽略的,因为它们是计算图的一部分,该计算图由 torch.autograd 用于计算参数梯度。
在推理过程中,我们最可能只对模型的最终样本感兴趣。
因为我们希望提取出与 tensordict 库无关的模型以供使用,所以隔离我们唯一需要的输出是有意义的。
为此,我们有几种选择:
使用
TensorDictSequential()构建,带有selected_out_keys关键字参数,这将在调用模块时选择所需的条目;使用
select_out_keys()方法,它将修改out_keys属性(这可以通过reset_out_keys()撤销)。将现有实例包装在一个
TensorDictSequential()中,该TensorDictSequential()将过滤掉不需要的键:>>> module_filtered = Seq(module, selected_out_keys=["sample"])
让我们在选择模型的输出键后测试该模型。 当提供 x 输入时,我们期望我们的模型输出一个对应于分布样本的单个张量:
tensor([[-0.1580, -0.5222]], grad_fn=<SplitBackward0>)
我们看到,现在的输出是一个单一的张量,对应于该分布的一个样本。 我们可以基于此创建一个新的导出图。其计算图应当被简化:
model_export = export(model, args=(), kwargs={"x": x})
print("module:", model_export.module())
module: GraphModule(
(module): Module(
(0): Module(
(module): Module()
)
(2): Module(
(module): Module()
)
)
)
def forward(self, x):
x, = fx_pytree.tree_flatten_spec(([], {'x':x}), self._in_spec)
module_0_module_weight = getattr(self.module, "0").module.weight
module_0_module_bias = getattr(self.module, "0").module.bias
module_2_module_weight = getattr(self.module, "2").module.weight
module_2_module_bias = getattr(self.module, "2").module.bias
linear = torch.ops.aten.linear.default(x, module_0_module_weight, module_0_module_bias); x = module_0_module_weight = module_0_module_bias = None
relu = torch.ops.aten.relu.default(linear); linear = None
linear_1 = torch.ops.aten.linear.default(relu, module_2_module_weight, module_2_module_bias); relu = module_2_module_weight = module_2_module_bias = None
split = torch.ops.aten.split.Tensor(linear_1, 2, -1); linear_1 = None
getitem = split[0]
getitem_1 = split[1]; split = None
add = torch.ops.aten.add.Tensor(getitem_1, 0.5254586935043335); getitem_1 = None
softplus = torch.ops.aten.softplus.default(add); add = None
add_1 = torch.ops.aten.add.Tensor(softplus, 0.01); softplus = None
clamp_min = torch.ops.aten.clamp_min.default(add_1, 0.0001); add_1 = None
broadcast_tensors = torch.ops.aten.broadcast_tensors.default([getitem, clamp_min]); getitem = clamp_min = None
getitem_2 = broadcast_tensors[0]; broadcast_tensors = None
return pytree.tree_unflatten((getitem_2,), self._out_spec)
# To see more debug info, please use `graph_module.print_readable()`
控制采样策略¶
我们还没有讨论如何从分布中获取 ProbabilisticTensorDictModule 个样本。
通过采样,我们的意思是根据特定策略在由分布定义的空间内获得一个值。
例如,在训练期间可能希望获得随机样本,但在推理时获得确定性样本(例如,均值或众数)。
为此,tensordict 使用了 set_interaction_type 装饰器和上下文管理器,它接受 InteractionType 枚举输入:
>>> with set_interaction_type(InteractionType.MEAN):
... output = module(input) # takes the input of the distribution, if ProbabilisticTensorDictModule is invoked
默认的 InteractionType 是 InteractionType.DETERMINISTIC,如果不直接实现,则要么是具有实数域分布的均值,要么是具有离散域分布的众数。这个默认值可以通过 default_interaction_type 关键字参数来更改 ProbabilisticTensorDictModule。
让我们回顾一下:为了控制我们网络的采样策略,我们可以在构造函数中定义一个默认的采样策略,或者通过set_interaction_type上下文管理器在运行时覆盖它。
从以下示例可以看出,torch.export 正确响应了装饰器的使用:如果我们请求一个随机样本,输出与请求平均值时不同:
with set_interaction_type(InteractionType.RANDOM):
model_export = export(model, args=(), kwargs={"x": x})
print(model_export.module())
with set_interaction_type(InteractionType.MEAN):
model_export = export(model, args=(), kwargs={"x": x})
print(model_export.module())
GraphModule(
(module): Module(
(0): Module(
(module): Module()
)
(2): Module(
(module): Module()
)
)
)
def forward(self, x):
x, = fx_pytree.tree_flatten_spec(([], {'x':x}), self._in_spec)
module_0_module_weight = getattr(self.module, "0").module.weight
module_0_module_bias = getattr(self.module, "0").module.bias
module_2_module_weight = getattr(self.module, "2").module.weight
module_2_module_bias = getattr(self.module, "2").module.bias
linear = torch.ops.aten.linear.default(x, module_0_module_weight, module_0_module_bias); x = module_0_module_weight = module_0_module_bias = None
relu = torch.ops.aten.relu.default(linear); linear = None
linear_1 = torch.ops.aten.linear.default(relu, module_2_module_weight, module_2_module_bias); relu = module_2_module_weight = module_2_module_bias = None
split = torch.ops.aten.split.Tensor(linear_1, 2, -1); linear_1 = None
getitem = split[0]
getitem_1 = split[1]; split = None
add = torch.ops.aten.add.Tensor(getitem_1, 0.5254586935043335); getitem_1 = None
softplus = torch.ops.aten.softplus.default(add); add = None
add_1 = torch.ops.aten.add.Tensor(softplus, 0.01); softplus = None
clamp_min = torch.ops.aten.clamp_min.default(add_1, 0.0001); add_1 = None
broadcast_tensors = torch.ops.aten.broadcast_tensors.default([getitem, clamp_min]); getitem = clamp_min = None
getitem_2 = broadcast_tensors[0]
getitem_3 = broadcast_tensors[1]; broadcast_tensors = None
empty = torch.ops.aten.empty.memory_format([1, 2], dtype = torch.float32, device = device(type='cpu'), pin_memory = False)
normal_functional = torch.ops.aten.normal_functional.default(empty); empty = None
mul = torch.ops.aten.mul.Tensor(normal_functional, getitem_3); normal_functional = getitem_3 = None
add_2 = torch.ops.aten.add.Tensor(getitem_2, mul); getitem_2 = mul = None
return pytree.tree_unflatten((add_2,), self._out_spec)
# To see more debug info, please use `graph_module.print_readable()`
GraphModule(
(module): Module(
(0): Module(
(module): Module()
)
(2): Module(
(module): Module()
)
)
)
def forward(self, x):
x, = fx_pytree.tree_flatten_spec(([], {'x':x}), self._in_spec)
module_0_module_weight = getattr(self.module, "0").module.weight
module_0_module_bias = getattr(self.module, "0").module.bias
module_2_module_weight = getattr(self.module, "2").module.weight
module_2_module_bias = getattr(self.module, "2").module.bias
linear = torch.ops.aten.linear.default(x, module_0_module_weight, module_0_module_bias); x = module_0_module_weight = module_0_module_bias = None
relu = torch.ops.aten.relu.default(linear); linear = None
linear_1 = torch.ops.aten.linear.default(relu, module_2_module_weight, module_2_module_bias); relu = module_2_module_weight = module_2_module_bias = None
split = torch.ops.aten.split.Tensor(linear_1, 2, -1); linear_1 = None
getitem = split[0]
getitem_1 = split[1]; split = None
add = torch.ops.aten.add.Tensor(getitem_1, 0.5254586935043335); getitem_1 = None
softplus = torch.ops.aten.softplus.default(add); add = None
add_1 = torch.ops.aten.add.Tensor(softplus, 0.01); softplus = None
clamp_min = torch.ops.aten.clamp_min.default(add_1, 0.0001); add_1 = None
broadcast_tensors = torch.ops.aten.broadcast_tensors.default([getitem, clamp_min]); getitem = clamp_min = None
getitem_2 = broadcast_tensors[0]; broadcast_tensors = None
return pytree.tree_unflatten((getitem_2,), self._out_spec)
# To see more debug info, please use `graph_module.print_readable()`
这就是使用 torch.export 所需了解的全部内容。更多详细信息,请参阅
官方文档。
下一步和进一步阅读¶
查看
torch.export个教程,可在此处获取:点击此处;ONNX 支持:请参阅 ONNX 教程 以了解此功能的更多信息。导出为 ONNX 的操作与此处介绍的 torch.export 非常相似。
对于在没有Python环境的服务器上部署PyTorch代码,请查看 AOTInductor 文档。
脚本的总运行时间: ( 0 分钟 1.695 秒)