class Model(nn.Module)

自定义模型:
        继承类:nn.Module
        初始化所有层:_init_
        定义模型的运算过程:forward(向前传播的过程)
​​​​​​​#MultiHeadAttention()是另一个独立的层
class Model(nn.Module):
    def __init__(self,point_per_hour, e_weight, dropout=.0):
        super().__init__()
        self.EGAT = MultiHeadAttention(point_per_hour, e_weight, dropout=.0)
        self.relu = nn.ReLU()
    def __format__(self, x):
        x = self.EGAT(x)
        x = self.relu(x)
        return x

对于上述激活函数,也可以采取如下形式写

import torch.nn.funtion as F​​​​​​​

#MultiHeadAttention()是另一个独立的层
class Model(nn.Module):
    def __init__(self,point_per_hour, e_weight, dropout=.0):
        super().__init__()
        self.EGAT = MultiHeadAttention(point_per_hour, e_weight, dropout=.0)
        self.liner = nn.Linear(F_in,F_out)
    def __format__(self, x):
        x = self.EGAT(x)
        x = self.liner(x)
        x = F.relu(x)
        return x

参考视频如下: 

模型改写与解释_哔哩哔哩_bilibiliicon-default.png?t=M85Bhttps://www.bilibili.com/video/BV1cL411V7Gh?p=19&vd_source=2452e39afc5b5a0e6194d3e2bfaeeb6d

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值