【发布时间】:2019-12-18 22:12:54
【问题描述】:
我正在尝试使用tensorflow.keras 实现 BReLU 激活函数,如下所述。
以下是我为自定义层编写的代码:
class BReLU(Layer):
def __init__(self):
super(BReLU, self).__init__()
def call(self, inputs):
for i, element in enumerate(inputs):
if i % 2 == 0:
inputs[i] = tf.nn.relu(inputs[i])
else:
inputs[i] = -tf.nn.relu(-inputs[i])
我正在尝试使用以下代码 sn-p 测试实现:
>>> import warnings
>>> warnings.filterwarnings('ignore')
>>> from custom_activation import BReLU
>>> from tensorflow.keras.layers import Input
>>> from tensorflow.keras.models import Model
>>> inp = Input(shape = (128,))
>>> x = BReLU()(inp)
在执行测试 sn-p 时,我收到以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\KIIT_Intern\.conda\envs\style_transfer\lib\site-packages\tensorflow\python\keras\engine\base_layer.py", line 554, in __call__
outputs = self.call(inputs, *args, **kwargs)
File "C:\Workspace\Echo\Echo\Activation\Tensorflow\custom_activation.py", line 308, in call
for i, element in enumerate(inputs):
File "C:\Users\KIIT_Intern\.conda\envs\style_transfer\lib\site-packages\tensorflow\python\framework\ops.py", line 442, in __iter__
"Tensor objects are only iterable when eager execution is "
TypeError: Tensor objects are only iterable when eager execution is enabled. To iterate over this tensor use tf.map_fn.
如何修改层的实现以使其在不启用 Eager Execution 的情况下工作?
【问题讨论】:
标签: python tensorflow keras tensor activation-function