Module media_analyzer.analyzers.sentiment_model.model

Expand source code
import torch.nn as nn
from transformers import AutoModel, AutoConfig


class TwitterSentimentModel(nn.Module):
    def __init__(self, model_name="bert-base-uncased", num_classes=3):
        super(TwitterSentimentModel, self).__init__()
        self.config = AutoConfig.from_pretrained(model_name, num_labels=num_classes)
        self.bert = AutoModel.from_pretrained(model_name)
        self.dropout1 = nn.Dropout(0.3)
        self.dropout2 = nn.Dropout(0.3)
        self.lin = nn.Linear(self.config.hidden_size, 64)
        self.relu = nn.ReLU()
        self.classifier = nn.Linear(64, num_classes)
        self.softmax = nn.Softmax(-1)

    def forward(self, input, attention_mask):
        x = self.bert(input, attention_mask)[0][:, 0, :]
        x = self.dropout1(x)
        x = self.lin(x)
        x = self.relu(x)
        x = self.dropout2(x)
        x = self.classifier(x)
        x = self.softmax(x)
        return x

Classes

class TwitterSentimentModel (model_name='bert-base-uncased', num_classes=3)

Base class for all neural network modules.

Your models should also subclass this class.

Modules can also contain other Modules, allowing to nest them in a tree structure. You can assign the submodules as regular attributes::

import torch.nn as nn
import torch.nn.functional as F

class Model(nn.Module):
    def __init__(self):
        super().__init__()
        self.conv1 = nn.Conv2d(1, 20, 5)
        self.conv2 = nn.Conv2d(20, 20, 5)

    def forward(self, x):
        x = F.relu(self.conv1(x))
        return F.relu(self.conv2(x))

Submodules assigned in this way will be registered, and will have their parameters converted too when you call :meth:to, etc.

Note

As per the example above, an __init__() call to the parent class must be made before assignment on the child.

:ivar training: Boolean represents whether this module is in training or evaluation mode. :vartype training: bool

Initializes internal Module state, shared by both nn.Module and ScriptModule.

Expand source code
class TwitterSentimentModel(nn.Module):
    def __init__(self, model_name="bert-base-uncased", num_classes=3):
        super(TwitterSentimentModel, self).__init__()
        self.config = AutoConfig.from_pretrained(model_name, num_labels=num_classes)
        self.bert = AutoModel.from_pretrained(model_name)
        self.dropout1 = nn.Dropout(0.3)
        self.dropout2 = nn.Dropout(0.3)
        self.lin = nn.Linear(self.config.hidden_size, 64)
        self.relu = nn.ReLU()
        self.classifier = nn.Linear(64, num_classes)
        self.softmax = nn.Softmax(-1)

    def forward(self, input, attention_mask):
        x = self.bert(input, attention_mask)[0][:, 0, :]
        x = self.dropout1(x)
        x = self.lin(x)
        x = self.relu(x)
        x = self.dropout2(x)
        x = self.classifier(x)
        x = self.softmax(x)
        return x

Ancestors

  • torch.nn.modules.module.Module

Methods

def forward(self, input, attention_mask) ‑> Callable[..., Any]

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the :class:Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

Expand source code
def forward(self, input, attention_mask):
    x = self.bert(input, attention_mask)[0][:, 0, :]
    x = self.dropout1(x)
    x = self.lin(x)
    x = self.relu(x)
    x = self.dropout2(x)
    x = self.classifier(x)
    x = self.softmax(x)
    return x