-
Notifications
You must be signed in to change notification settings - Fork 354
/
lightning_anil.py
152 lines (133 loc) · 6.03 KB
/
lightning_anil.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/usr/bin/env python3
import numpy as np
import torch
import learn2learn as l2l
from learn2learn.utils import accuracy
from learn2learn.algorithms.lightning import (
LightningEpisodicModule,
LightningMAML,
)
class LightningANIL(LightningEpisodicModule):
"""
[[Source]](https://github.com/learnables/learn2learn/blob/master/learn2learn/algorithms/lightning/lightning_anil.py)
**Description**
A PyTorch Lightning module for ANIL.
**Arguments**
* **features** (Module) - A nn.Module to extract features, which will not be adaptated.
* **classifier** (Module) - A nn.Module taking features, mapping them to classification.
* **loss** (Function, *optional*, default=CrossEntropyLoss) - Loss function which maps the cost of the events.
* **ways** (int, *optional*, default=5) - Number of classes in a task.
* **shots** (int, *optional*, default=1) - Number of samples for adaptation.
* **adaptation_steps** (int, *optional*, default=1) - Number of steps for adapting to new task.
* **lr** (float, *optional*, default=0.001) - Learning rate of meta training.
* **adaptation_lr** (float, *optional*, default=0.1) - Learning rate for fast adaptation.
* **scheduler_step** (int, *optional*, default=20) - Decay interval for `lr`.
* **scheduler_decay** (float, *optional*, default=1.0) - Decay rate for `lr`.
**References**
1. Raghu et al. 2020. "Rapid Learning or Feature Reuse? Towards Understanding the Effectiveness of MAML"
**Example**
~~~python
tasksets = l2l.vision.benchmarks.get_tasksets('omniglot')
model = l2l.vision.models.OmniglotFC(28**2, args.ways)
anil = LightningANIL(model.features, model.classifier, adaptation_lr=0.1, **dict_args)
episodic_data = EpisodicBatcher(tasksets.train, tasksets.validation, tasksets.test)
trainer = pl.Trainer.from_argparse_args(args)
trainer.fit(anil, episodic_data)
~~~
"""
def __init__(self, features, classifier, loss=None, **kwargs):
super(LightningANIL, self).__init__()
if loss is None:
loss = torch.nn.CrossEntropyLoss(reduction="mean")
self.loss = loss
self.train_ways = kwargs.get("train_ways", LightningEpisodicModule.train_ways)
self.train_shots = kwargs.get(
"train_shots", LightningEpisodicModule.train_shots
)
self.train_queries = kwargs.get(
"train_queries", LightningEpisodicModule.train_queries
)
self.test_ways = kwargs.get("test_ways", LightningEpisodicModule.test_ways)
self.test_shots = kwargs.get("test_shots", LightningEpisodicModule.test_shots)
self.test_queries = kwargs.get(
"test_queries", LightningEpisodicModule.test_queries
)
self.lr = kwargs.get("lr", LightningEpisodicModule.lr)
self.scheduler_step = kwargs.get(
"scheduler_step", LightningEpisodicModule.scheduler_step
)
self.scheduler_decay = kwargs.get(
"scheduler_decay", LightningEpisodicModule.scheduler_decay
)
self.adaptation_steps = kwargs.get(
"adaptation_steps", LightningMAML.adaptation_steps
)
self.adaptation_lr = kwargs.get("adaptation_lr", LightningMAML.adaptation_lr)
self.data_parallel = kwargs.get("data_parallel", False)
self.features = features
if self.data_parallel and torch.cuda.device_count() > 1:
self.features = torch.nn.DataParallel(self.features)
self.classifier = l2l.algorithms.MAML(classifier, lr=self.adaptation_lr)
self.save_hyperparameters({
"train_ways": self.train_ways,
"train_shots": self.train_shots,
"train_queries": self.train_queries,
"test_ways": self.test_ways,
"test_shots": self.test_shots,
"test_queries": self.test_queries,
"lr": self.lr,
"scheduler_step": self.scheduler_step,
"scheduler_decay": self.scheduler_decay,
"adaptation_lr": self.adaptation_lr,
"adaptation_steps": self.adaptation_steps,
})
assert (
self.train_ways == self.test_ways
), "For ANIL, train_ways should be equal to test_ways."
@staticmethod
def add_model_specific_args(parent_parser):
parser = LightningEpisodicModule.add_model_specific_args(parent_parser)
parser.add_argument(
"--adaptation_steps",
type=int,
default=LightningMAML.adaptation_steps,
)
parser.add_argument(
"--adaptation_lr",
type=float,
default=LightningMAML.adaptation_lr,
)
parser.add_argument(
"--data_parallel",
action='store_true',
help='Use this + CUDA_VISIBLE_DEVICES to parallelize across GPUs.',
)
return parser
@torch.enable_grad()
def meta_learn(self, batch, batch_idx, ways, shots, queries):
self.features.train()
learner = self.classifier.clone()
learner.train()
data, labels = batch
data = self.features(data)
# Separate data into adaptation and evaluation sets
support_indices = np.zeros(data.size(0), dtype=bool)
selection = np.arange(ways) * (shots + queries)
for offset in range(shots):
support_indices[selection + offset] = True
query_indices = torch.from_numpy(~support_indices)
support_indices = torch.from_numpy(support_indices)
support = data[support_indices]
support_labels = labels[support_indices]
query = data[query_indices]
query_labels = labels[query_indices]
# Adapt the classifier
for step in range(self.adaptation_steps):
preds = learner(support)
train_error = self.loss(preds, support_labels)
learner.adapt(train_error)
# Evaluating the adapted model
predictions = learner(query)
valid_error = self.loss(predictions, query_labels)
valid_accuracy = accuracy(predictions, query_labels)
return valid_error, valid_accuracy