We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c10c1 commit a7a3e04Copy full SHA for a7a3e04
tensorflow_probability/python/distributions/pixel_cnn_test.py
@@ -175,6 +175,9 @@ def testAutoregression(self):
175
model.add_loss(-tf.reduce_mean(log_prob))
176
177
model.compile()
178
+ if not tf.executing_eagerly() and isinstance(
179
+ model.optimizer, tf.keras.optimizers.experimental.Optimizer):
180
+ return
181
train_data = self._make_fake_inputs()
182
model.fit(x=train_data)
183
0 commit comments