nested_model.py 1.36 KB
Newer Older
1
2
3
import torch
import torch.nn as nn
import torch.nn.functional as F
HELSON's avatar
HELSON committed
4

5
from colossalai.nn import CheckpointModule
HELSON's avatar
HELSON committed
6

7
from .registry import non_distributed_component_funcs
HELSON's avatar
HELSON committed
8
from .utils import DummyDataGenerator
9
10
11
12
13
14
15
16
17
18
19
20


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)


21
class NestedNet(CheckpointModule):
22

23
24
    def __init__(self, checkpoint=False) -> None:
        super().__init__(checkpoint)
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
        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():
47

HELSON's avatar
HELSON committed
48
    def model_builder(checkpoint=False):
49
50
        return NestedNet(checkpoint)

51
52
    trainloader = DummyDataLoader()
    testloader = DummyDataLoader()
53

54
    criterion = torch.nn.CrossEntropyLoss()
55
    return model_builder, trainloader, testloader, torch.optim.Adam, criterion