3a2c66702c
Tests on CPU (scheduled) / check-skip (push) Has been cancelled
Tests on CPU (scheduled) / pre-tests (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float32) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float64) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / coverage (push) Has been cancelled
Tests on CPU (scheduled) / typing (push) Has been cancelled
Tests on CPU (scheduled) / tutorials (push) Has been cancelled
Tests on CPU (scheduled) / docs (push) Has been cancelled
Lint / TOML Format (push) Has been cancelled
93 lines
3.0 KiB
Python
93 lines
3.0 KiB
Python
# LICENSE HEADER MANAGED BY add-license-header
|
|
#
|
|
# Copyright 2018 Kornia Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
import logging
|
|
|
|
import pytest
|
|
import torch
|
|
import torch.nn.functional as F
|
|
from torch import nn, optim
|
|
|
|
import kornia
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class TestIntegrationFocalLoss:
|
|
# optimization
|
|
thresh = 1e-1
|
|
lr = 1e-3
|
|
num_iterations = 1000
|
|
num_classes = 2
|
|
|
|
# focal loss
|
|
alpha = 0.5
|
|
gamma = 2.0
|
|
|
|
def generate_sample(self, base_target, std_val=0.1):
|
|
target = base_target.float() / base_target.max()
|
|
noise = std_val * torch.rand(1, 1, 6, 5).to(base_target.device)
|
|
return target + noise
|
|
|
|
@staticmethod
|
|
def init_weights(m):
|
|
if isinstance(m, nn.Conv2d):
|
|
torch.nn.init.xavier_uniform_(m.weight)
|
|
|
|
@pytest.mark.slow
|
|
def test_conv2d_relu(self, device):
|
|
# we generate base sample
|
|
target = torch.LongTensor(1, 6, 5).fill_(0).to(device)
|
|
for i in range(1, self.num_classes):
|
|
target[..., i:-i, i:-i] = i
|
|
|
|
m = nn.Sequential(
|
|
nn.Conv2d(1, self.num_classes // 2, kernel_size=3, padding=1),
|
|
nn.ReLU(True),
|
|
nn.Conv2d(self.num_classes // 2, self.num_classes, kernel_size=3, padding=1),
|
|
).to(device)
|
|
m.apply(self.init_weights)
|
|
|
|
optimizer = optim.Adam(m.parameters(), lr=self.lr)
|
|
|
|
criterion = kornia.losses.FocalLoss(alpha=self.alpha, gamma=self.gamma, reduction="mean")
|
|
# NOTE: uncomment to compare against vanilla cross entropy
|
|
# criterion = nn.CrossEntropyLoss()
|
|
|
|
for _ in range(self.num_iterations):
|
|
sample = self.generate_sample(target).to(device)
|
|
output = m(sample)
|
|
loss = criterion(output, target.to(device))
|
|
logger.debug(f"Loss: {loss.item()}")
|
|
|
|
optimizer.zero_grad()
|
|
loss.backward()
|
|
optimizer.step()
|
|
|
|
sample = self.generate_sample(target).to(device)
|
|
output_argmax = torch.argmax(m(sample), dim=1)
|
|
logger.debug(f"Output argmax: \n{output_argmax}")
|
|
|
|
# TODO(edgar): replace by IoU or find a more stable solution
|
|
# for this test. The issue is that depending on
|
|
# the seed to initialize the weights affects the
|
|
# final results and slows down the convergence of
|
|
# the algorithm.
|
|
val = F.mse_loss(output_argmax.float(), target.float())
|
|
if not val.item() < self.thresh:
|
|
pytest.xfail("Wrong seed or initial weight values.")
|