Source code for carate.models.cc_regression

"""
cc_regression model is named after the structure of the graph neural network.
The graph neural network is structured with a convolutional,
and another convolutional layer. The cgc_classificatin model was the model tested int the publication
Introducing CARATE: Finally speaking chemistry.
"""
from typing import Any

import numpy as np
import torch
import torch.nn.functional as F
from torch.nn import Linear
from torch_geometric.nn import global_add_pool, GraphConv, GATConv
import sklearn.metrics as metrics

import logging

from carate.models.base_model import Model


logger = logging.getLogger(__name__)


[docs] class Net(Model): def __init__( self, dim: int, num_features: int, num_classes: int, *args, **kwargs ) -> None: super(Net, self).__init__( dim=dim, num_classes=num_classes, num_features=num_features, *args, **kwargs ) self.conv1 = GraphConv(self.num_features, self.dim) self.conv2 = GraphConv(self.dim, self.dim) self.fc1 = Linear(self.dim, self.dim) self.fc2 = Linear(self.dim, self.num_classes)
[docs] def forward(self, x: float, edge_index: int, batch: int, edge_weight=None) -> float: x = F.relu(self.conv1(x, edge_index, edge_weight)) x = F.dropout(x, p=0.5, training=self.training) x = F.relu(self.conv1(x, edge_index, edge_weight)) x = F.relu(self.conv2(x, edge_index, edge_weight)) x = global_add_pool(x, batch) x = F.relu(self.fc1(x)) x = F.dropout(x, p=0.5, training=self.training) x = self.fc2(x) return x
def __str__(self): return "cc_regression"