-
Notifications
You must be signed in to change notification settings - Fork 19.5k
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
84f7552
commit ba204bc
Showing
1 changed file
with
72 additions
and
0 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,72 @@ | ||
import pytest | ||
import numpy as np | ||
from keras.utils import conv_utils | ||
|
||
|
||
def test_normalize_tuple(): | ||
assert conv_utils.normalize_tuple(5, 2, 'kernel_size') == (5, 5) | ||
assert conv_utils.normalize_tuple([7, 9], 2, 'kernel_size') == (7, 9) | ||
|
||
with pytest.raises(ValueError): | ||
conv_utils.normalize_tuple(None, 2, 'kernel_size') | ||
with pytest.raises(ValueError): | ||
conv_utils.normalize_tuple([2, 3, 4], 2, 'kernel_size') | ||
with pytest.raises(ValueError): | ||
conv_utils.normalize_tuple(['str', 'impossible'], 2, 'kernel_size') | ||
|
||
|
||
def test_invalid_data_format(): | ||
with pytest.raises(ValueError): | ||
conv_utils.normalize_data_format('channels_middle') | ||
|
||
|
||
def test_invalid_padding(): | ||
with pytest.raises(ValueError): | ||
conv_utils.normalize_padding('diagonal') | ||
|
||
|
||
def test_invalid_convert_kernel(): | ||
with pytest.raises(ValueError): | ||
conv_utils.convert_kernel(np.zeros((10, 20))) | ||
|
||
|
||
def test_conv_output_length(): | ||
assert conv_utils.conv_output_length(None, 7, 'same', 1) is None | ||
assert conv_utils.conv_output_length(224, 7, 'same', 1) == 224 | ||
assert conv_utils.conv_output_length(224, 7, 'same', 2) == 112 | ||
assert conv_utils.conv_output_length(32, 5, 'valid', 1) == 28 | ||
assert conv_utils.conv_output_length(32, 5, 'valid', 2) == 14 | ||
assert conv_utils.conv_output_length(32, 5, 'causal', 1) == 32 | ||
assert conv_utils.conv_output_length(32, 5, 'causal', 2) == 16 | ||
assert conv_utils.conv_output_length(32, 5, 'full', 1) == 36 | ||
assert conv_utils.conv_output_length(32, 5, 'full', 2) == 18 | ||
|
||
with pytest.raises(AssertionError): | ||
conv_utils.conv_output_length(32, 5, 'diagonal', 2) | ||
|
||
|
||
def test_conv_input_length(): | ||
assert conv_utils.conv_input_length(None, 7, 'same', 1) is None | ||
assert conv_utils.conv_input_length(112, 7, 'same', 1) == 112 | ||
assert conv_utils.conv_input_length(112, 7, 'same', 2) == 223 | ||
assert conv_utils.conv_input_length(28, 5, 'valid', 1) == 32 | ||
assert conv_utils.conv_input_length(14, 5, 'valid', 2) == 31 | ||
assert conv_utils.conv_input_length(36, 5, 'full', 1) == 32 | ||
assert conv_utils.conv_input_length(18, 5, 'full', 2) == 31 | ||
|
||
with pytest.raises(AssertionError): | ||
conv_utils.conv_output_length(18, 5, 'diagonal', 2) | ||
|
||
|
||
def test_deconv_length(): | ||
assert conv_utils.deconv_length(None, 1, 7, 'same') is None | ||
assert conv_utils.deconv_length(224, 1, 7, 'same') == 224 | ||
assert conv_utils.deconv_length(224, 2, 7, 'same') == 448 | ||
assert conv_utils.deconv_length(32, 1, 5, 'valid') == 36 | ||
assert conv_utils.deconv_length(32, 2, 5, 'valid') == 67 | ||
assert conv_utils.deconv_length(32, 1, 5, 'full') == 28 | ||
assert conv_utils.deconv_length(32, 2, 5, 'full') == 59 | ||
|
||
|
||
if __name__ == '__main__': | ||
pytest.main([__file__]) |