Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions tensorflow_addons/optimizers/moving_average_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
@test_utils.run_all_in_graph_and_eager_modes
class MovingAverageTest(tf.test.TestCase):
def test_run(self):
self.skipTest(
"Wait for https://github.com/tensorflow/tensorflow/issues/31582")
for sequential_update in [True, False]:
var0 = tf.Variable([1.0, 2.0])
var1 = tf.Variable([3.0, 4.0])
Expand Down Expand Up @@ -89,8 +87,6 @@ def test_opt_failure(self):
MovingAverage(base_opt, 0.5, sequential_update)

def test_model_weights_update(self):
self.skipTest(
"Wait for https://github.com/tensorflow/tensorflow/issues/31582")
grad = tf.Variable([[0.1]])
model = tf.keras.Sequential([
tf.keras.layers.Dense(
Expand Down