-
Notifications
You must be signed in to change notification settings - Fork 471
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e6611e
commit e7504b6
Showing
3 changed files
with
89 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# All rights reserved. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# All rights reserved. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
import pytest | ||
import torch | ||
|
||
from torchtune.models.flux._autoencoder import FluxAutoencoder | ||
from torchtune.training.seed import set_seed | ||
|
||
BSZ = 32 | ||
CH_IN = 3 | ||
RESOLUTION = 16 | ||
CH_MULTS = [1, 2] | ||
CH_Z = 4 | ||
RES_Z = RESOLUTION // len(CH_MULTS) | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
def random(): | ||
set_seed(0) | ||
|
||
|
||
class TestFluxAutoencoder: | ||
@pytest.fixture | ||
def model(self): | ||
model = FluxAutoencoder( | ||
resolution=RESOLUTION, | ||
ch_in=CH_IN, | ||
ch_out=3, | ||
ch_base=32, | ||
ch_mults=CH_MULTS, | ||
ch_z=CH_Z, | ||
n_layers_per_resample_block=2, | ||
scale_factor=1.0, | ||
shift_factor=0.0, | ||
) | ||
|
||
for param in model.parameters(): | ||
param.data.uniform_(0, 0.1) | ||
|
||
return model | ||
|
||
@pytest.fixture | ||
def img(self): | ||
return torch.randn(BSZ, CH_IN, RESOLUTION, RESOLUTION) | ||
|
||
@pytest.fixture | ||
def z(self): | ||
return torch.randn(BSZ, CH_Z, RES_Z, RES_Z) | ||
|
||
def test_forward(self, model, img): | ||
actual = model(img) | ||
assert actual.shape == (BSZ, CH_IN, RESOLUTION, RESOLUTION) | ||
|
||
actual = torch.mean(actual, dim=(0, 2, 3)) | ||
expected = torch.tensor([0.4286, 0.4276, 0.4054]) | ||
torch.testing.assert_close(actual, expected, atol=1e-4, rtol=1e-4) | ||
|
||
def test_backward(self, model, img): | ||
y = model(img) | ||
loss = y.mean() | ||
loss.backward() | ||
|
||
def test_encode(self, model, img): | ||
actual = model.encode(img) | ||
assert actual.shape == (BSZ, CH_Z, RES_Z, RES_Z) | ||
|
||
actual = torch.mean(actual, dim=(0, 2, 3)) | ||
expected = torch.tensor([0.6150, 0.7959, 0.7178, 0.7011]) | ||
torch.testing.assert_close(actual, expected, atol=1e-4, rtol=1e-4) | ||
|
||
def test_decode(self, model, z): | ||
actual = model.decode(z) | ||
assert actual.shape == (BSZ, CH_IN, RESOLUTION, RESOLUTION) | ||
|
||
actual = torch.mean(actual, dim=(0, 2, 3)) | ||
expected = torch.tensor([0.4246, 0.4241, 0.4014]) | ||
torch.testing.assert_close(actual, expected, atol=1e-4, rtol=1e-4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters