当前位置: 首页>>代码示例>>Python>>正文


Python nn.MessagePassing方法代码示例

本文整理汇总了Python中torch_geometric.nn.MessagePassing方法的典型用法代码示例。如果您正苦于以下问题:Python nn.MessagePassing方法的具体用法?Python nn.MessagePassing怎么用?Python nn.MessagePassing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在torch_geometric.nn的用法示例。


在下文中一共展示了nn.MessagePassing方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __num_hops__

# 需要导入模块: from torch_geometric import nn [as 别名]
# 或者: from torch_geometric.nn import MessagePassing [as 别名]
def __num_hops__(self):
        num_hops = 0
        for module in self.model.modules():
            if isinstance(module, MessagePassing):
                num_hops += 1
        return num_hops 
开发者ID:rusty1s,项目名称:pytorch_geometric,代码行数:8,代码来源:gnn_explainer.py

示例2: __set_masks__

# 需要导入模块: from torch_geometric import nn [as 别名]
# 或者: from torch_geometric.nn import MessagePassing [as 别名]
def __set_masks__(self, x, edge_index, init="normal"):
        (N, F), E = x.size(), edge_index.size(1)

        std = 0.1
        self.node_feat_mask = torch.nn.Parameter(torch.randn(F) * 0.1)

        std = torch.nn.init.calculate_gain('relu') * sqrt(2.0 / (2 * N))
        self.edge_mask = torch.nn.Parameter(torch.randn(E) * std)

        for module in self.model.modules():
            if isinstance(module, MessagePassing):
                module.__explain__ = True
                module.__edge_mask__ = self.edge_mask 
开发者ID:rusty1s,项目名称:pytorch_geometric,代码行数:15,代码来源:gnn_explainer.py

示例3: __clear_masks__

# 需要导入模块: from torch_geometric import nn [as 别名]
# 或者: from torch_geometric.nn import MessagePassing [as 别名]
def __clear_masks__(self):
        for module in self.model.modules():
            if isinstance(module, MessagePassing):
                module.__explain__ = False
                module.__edge_mask__ = None
        self.node_feat_masks = None
        self.edge_mask = None 
开发者ID:rusty1s,项目名称:pytorch_geometric,代码行数:9,代码来源:gnn_explainer.py

示例4: __flow__

# 需要导入模块: from torch_geometric import nn [as 别名]
# 或者: from torch_geometric.nn import MessagePassing [as 别名]
def __flow__(self):
        for module in self.model.modules():
            if isinstance(module, MessagePassing):
                return module.flow
        return 'source_to_target' 
开发者ID:rusty1s,项目名称:pytorch_geometric,代码行数:7,代码来源:gnn_explainer.py


注:本文中的torch_geometric.nn.MessagePassing方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。