Skip to content

Commit 397be58

Browse files
fchollettensorflower-gardener
authored andcommitted
Remove APIs / logic that is overdue for removal.
PiperOrigin-RevId: 425234382
1 parent 02e0cd5 commit 397be58

File tree

5 files changed

+0
-12
lines changed

5 files changed

+0
-12
lines changed

tensorflow_model_optimization/python/core/clustering/keras/clustering_registry.py

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ class ClusteringRegistry(object):
8989
tf.compat.v2.keras.layers.SimpleRNNCell,
9090
tf.compat.v1.keras.layers.StackedRNNCells,
9191
tf.compat.v2.keras.layers.StackedRNNCells,
92-
tf.keras.experimental.PeepholeLSTMCell,
9392
})
9493

9594
_SUPPORTED_RNN_LAYERS = frozenset([

tensorflow_model_optimization/python/core/quantization/keras/default_8bit/default_8bit_quantize_registry.py

-3
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,6 @@ class Default8BitQuantizeRegistry(
171171
# ['activation', 'recurrent_activation']),
172172
# _QuantizeInfo(tf.keras.layers.LSTMCell, ['kernel', 'recurrent_kernel'],
173173
# ['activation', 'recurrent_activation']),
174-
# _QuantizeInfo(tf.keras.experimental.PeepholeLSTMCell,
175-
# ['kernel', 'recurrent_kernel'],
176-
# ['activation', 'recurrent_activation']),
177174
# _QuantizeInfo(tf.keras.layers.SimpleRNNCell,
178175
# ['kernel', 'recurrent_kernel'],
179176
# ['activation', 'recurrent_activation']),

tensorflow_model_optimization/python/core/sparsity/keras/prune_integration_test.py

-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,6 @@ def testRNNLayersWithRNNCellParams_ReachesTargetSparsity(self):
469469
keras.layers.RNN([
470470
layers.LSTMCell(10),
471471
layers.GRUCell(10),
472-
tf.keras.experimental.PeepholeLSTMCell(10),
473472
layers.SimpleRNNCell(10)
474473
]),
475474
input_shape=(3, 4),

tensorflow_model_optimization/python/core/sparsity/keras/prune_registry.py

-6
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,6 @@ class PruneRegistry(object):
112112
tf.compat.v2.keras.layers.GRUCell: ['kernel', 'recurrent_kernel'],
113113
tf.compat.v1.keras.layers.LSTMCell: ['kernel', 'recurrent_kernel'],
114114
tf.compat.v2.keras.layers.LSTMCell: ['kernel', 'recurrent_kernel'],
115-
tf.compat.v1.keras.experimental.PeepholeLSTMCell: [
116-
'kernel', 'recurrent_kernel'
117-
],
118-
tf.compat.v2.keras.experimental.PeepholeLSTMCell: [
119-
'kernel', 'recurrent_kernel'
120-
],
121115
tf.compat.v1.keras.layers.SimpleRNNCell: ['kernel', 'recurrent_kernel'],
122116
tf.compat.v2.keras.layers.SimpleRNNCell: ['kernel', 'recurrent_kernel'],
123117
}

tensorflow_model_optimization/python/core/sparsity/keras/prune_registry_test.py

-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ class PruneRegistryTest(tf.test.TestCase, parameterized.TestCase):
8383
layers.RNN([
8484
layers.LSTMCell(10),
8585
layers.GRUCell(10),
86-
keras.experimental.PeepholeLSTMCell(10),
8786
layers.SimpleRNNCell(10)
8887
]),
8988
keras.layers.RNN(MinimalRNNCellPrunable(32)),

0 commit comments

Comments
 (0)