Skip to content

Commit 89eefc8

Browse files
Johannes Ballécopybara-github
authored andcommitted
Removes TF1 entropy models.
PiperOrigin-RevId: 354820788 Change-Id: I34f966be3d2b93957c8667fbf6b672510aad8acc
1 parent 1a9b176 commit 89eefc8

File tree

6 files changed

+0
-1643
lines changed

6 files changed

+0
-1643
lines changed

BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ py_library(
1515
"//tensorflow_compression/python/entropy_models:continuous_batched",
1616
"//tensorflow_compression/python/entropy_models:continuous_indexed",
1717
"//tensorflow_compression/python/entropy_models:universal",
18-
"//tensorflow_compression/python/layers:entropy_models",
1918
"//tensorflow_compression/python/layers:gdn",
2019
"//tensorflow_compression/python/layers:initializers",
2120
"//tensorflow_compression/python/layers:parameterizers",

tensorflow_compression/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
from tensorflow_compression.python.entropy_models.continuous_indexed import *
3333
from tensorflow_compression.python.entropy_models.universal import *
3434

35-
from tensorflow_compression.python.layers.entropy_models import *
3635
from tensorflow_compression.python.layers.gdn import *
3736
from tensorflow_compression.python.layers.initializers import *
3837
from tensorflow_compression.python.layers.parameterizers import *

tensorflow_compression/all_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
from tensorflow_compression.python.entropy_models.continuous_indexed_test import *
3030
from tensorflow_compression.python.entropy_models.universal_test import *
3131

32-
from tensorflow_compression.python.layers.entropy_models_test import *
3332
from tensorflow_compression.python.layers.gdn_test import *
3433
from tensorflow_compression.python.layers.initializers_test import *
3534
from tensorflow_compression.python.layers.parameterizers_test import *

tensorflow_compression/python/layers/BUILD

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,6 @@ package(
44

55
licenses(["notice"])
66

7-
py_library(
8-
name = "entropy_models",
9-
srcs = ["entropy_models.py"],
10-
srcs_version = "PY3",
11-
deps = [
12-
"//tensorflow_compression/python/ops:math_ops",
13-
"//tensorflow_compression/python/ops:range_coding_ops",
14-
],
15-
)
16-
177
py_library(
188
name = "gdn",
199
srcs = ["gdn.py"],
@@ -61,13 +51,6 @@ py_library(
6151
deps = ["//tensorflow_compression/python/ops:soft_round_ops"],
6252
)
6353

64-
py_test(
65-
name = "entropy_models_test",
66-
srcs = ["entropy_models_test.py"],
67-
python_version = "PY3",
68-
deps = [":entropy_models"],
69-
)
70-
7154
py_test(
7255
name = "initializers_test",
7356
srcs = ["initializers_test.py"],

0 commit comments

Comments
 (0)