"vscode:/vscode.git/clone" did not exist on "1c1f71cbd2718feee7e6dbb472053664e26f1c8e"
nested_model.py 1.44 KB
Newer Older
1
2
3
import torch
import torch.nn as nn
import torch.nn.functional as F
4
from colossalai.nn import CheckpointModule
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from .utils import DummyDataGenerator
from .registry import non_distributed_component_funcs


class SubNet(nn.Module):

    def __init__(self, out_features) -> None:
        super().__init__()
        self.bias = nn.Parameter(torch.zeros(out_features))

    def forward(self, x, weight):
        return F.linear(x, weight, self.bias)


19
class NestedNet(CheckpointModule):
20

21
22
    def __init__(self, checkpoint=False) -> None:
        super().__init__(checkpoint)
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
        self.fc1 = nn.Linear(5, 5)
        self.sub_fc = SubNet(5)
        self.fc2 = nn.Linear(5, 2)

    def forward(self, x):
        x = self.fc1(x)
        x = self.sub_fc(x, self.fc1.weight)
        x = self.fc1(x)
        x = self.fc2(x)
        return x


class DummyDataLoader(DummyDataGenerator):

    def generate(self):
        data = torch.rand(16, 5)
        label = torch.randint(low=0, high=2, size=(16,))
        return data, label


@non_distributed_component_funcs.register(name='nested_model')
def get_training_components():
45

46
    def model_builder(checkpoint=True):
47
48
        return NestedNet(checkpoint)

49
50
    trainloader = DummyDataLoader()
    testloader = DummyDataLoader()
51
52
53
54

    def optim_builder(model):
        return torch.optim.Adam(model.parameters(), lr=0.001)

55
    criterion = torch.nn.CrossEntropyLoss()
56
    return model_builder, trainloader, testloader, optim_builder, criterion