mirror of
https://github.com/wassname/keras-contrib.git
synced 2026-07-21 12:40:40 +08:00
15 lines
402 B
Python
15 lines
402 B
Python
import pytest
|
|
import numpy as np
|
|
from numpy.testing import assert_allclose
|
|
|
|
from keras.layers import Dense, Activation, Input
|
|
from keras.utils.test_utils import layer_test, keras_test
|
|
from keras_contrib.layers import normalization
|
|
from keras.models import Sequential, Model
|
|
from keras import backend as K
|
|
from keras_contrib import backend as KC
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pytest.main([__file__])
|