File tree Expand file tree Collapse file tree 6 files changed +0
-1643
lines changed Expand file tree Collapse file tree 6 files changed +0
-1643
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ py_library(
15
15
"//tensorflow_compression/python/entropy_models:continuous_batched" ,
16
16
"//tensorflow_compression/python/entropy_models:continuous_indexed" ,
17
17
"//tensorflow_compression/python/entropy_models:universal" ,
18
- "//tensorflow_compression/python/layers:entropy_models" ,
19
18
"//tensorflow_compression/python/layers:gdn" ,
20
19
"//tensorflow_compression/python/layers:initializers" ,
21
20
"//tensorflow_compression/python/layers:parameterizers" ,
Original file line number Diff line number Diff line change 32
32
from tensorflow_compression .python .entropy_models .continuous_indexed import *
33
33
from tensorflow_compression .python .entropy_models .universal import *
34
34
35
- from tensorflow_compression .python .layers .entropy_models import *
36
35
from tensorflow_compression .python .layers .gdn import *
37
36
from tensorflow_compression .python .layers .initializers import *
38
37
from tensorflow_compression .python .layers .parameterizers import *
Original file line number Diff line number Diff line change 29
29
from tensorflow_compression .python .entropy_models .continuous_indexed_test import *
30
30
from tensorflow_compression .python .entropy_models .universal_test import *
31
31
32
- from tensorflow_compression .python .layers .entropy_models_test import *
33
32
from tensorflow_compression .python .layers .gdn_test import *
34
33
from tensorflow_compression .python .layers .initializers_test import *
35
34
from tensorflow_compression .python .layers .parameterizers_test import *
Original file line number Diff line number Diff line change @@ -4,16 +4,6 @@ package(
4
4
5
5
licenses (["notice" ])
6
6
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
-
17
7
py_library (
18
8
name = "gdn" ,
19
9
srcs = ["gdn.py" ],
@@ -61,13 +51,6 @@ py_library(
61
51
deps = ["//tensorflow_compression/python/ops:soft_round_ops" ],
62
52
)
63
53
64
- py_test (
65
- name = "entropy_models_test" ,
66
- srcs = ["entropy_models_test.py" ],
67
- python_version = "PY3" ,
68
- deps = [":entropy_models" ],
69
- )
70
-
71
54
py_test (
72
55
name = "initializers_test" ,
73
56
srcs = ["initializers_test.py" ],
You can’t perform that action at this time.
0 commit comments