mirror of
https://github.com/wassname/keras-contrib.git
synced 2026-07-25 13:20:46 +08:00
14 lines
342 B
Python
14 lines
342 B
Python
import pytest
|
|
import numpy as np
|
|
from numpy.testing import assert_allclose
|
|
|
|
from keras import backend as K
|
|
from keras_contrib import backend as K
|
|
from keras.models import Sequential
|
|
from keras_contrib.layers import convolutional_recurrent
|
|
from keras.utils.test_utils import layer_test
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pytest.main([__file__])
|