下载
中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助
昇腾小AI

use_internal_format_weight

函数功能

将模型中的权重weight转成TorchAir定义的内部私有格式。

函数原型

def use_internal_format_weight(model: torch.nn.Module) --> None

参数说明

参数

输入/输出

说明

是否必选

model

输入

用户自定义的模型,继承原生的torch.nn.Module类。

返回值说明

约束说明

调用示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
import torch
import torch_npu
import torchair

class Model(torch.nn.Module):

    def __init__(self):
        super().__init__()
        self.p1 = torch.nn.Parameter(torch.randn(2, 4))
        self.p2 = torch.nn.Parameter(torch.randn(2, 4))

    def forward(self, x, y):
        x = x + y + self.p1 + self.p2
        return x

model = Model()
torchair.use_internal_format_weight(model)
搜索结果
找到“0”个结果

当前产品无相关内容

未找到相关内容,请尝试其他搜索词