File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed
tensorflow_model_optimization/python/core
quantization/keras/experimental Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ py_strict_library(
42
42
"//tensorflow_model_optimization/python/core/quantization/keras:quantize_scheme" ,
43
43
"//tensorflow_model_optimization/python/core/quantization/keras:quantize_wrapper" ,
44
44
"//tensorflow_model_optimization/python/core/quantization/keras:quantizers" ,
45
+ "//tensorflow_model_optimization/python/core/quantization/keras/experimental" ,
45
46
"//tensorflow_model_optimization/python/core/quantization/keras/collaborative_optimizations/cluster_preserve:cluster_utils" ,
46
47
"//tensorflow_model_optimization/python/core/quantization/keras/collaborative_optimizations/cluster_preserve:default_8bit_cluster_preserve_quantize_scheme" ,
47
48
"//tensorflow_model_optimization/python/core/quantization/keras/collaborative_optimizations/prune_preserve:default_8bit_prune_preserve_quantize_scheme" ,
Original file line number Diff line number Diff line change
1
+ load ("//tensorflow_model_optimization:tensorflow_model_optimization.bzl" , "py_strict_library" )
2
+
3
+ package (default_visibility = ["//tensorflow_model_optimization:__subpackages__" ])
4
+
5
+ licenses (["notice" ]) # Apache 2.0
6
+
7
+ py_strict_library (
8
+ name = "experimental" ,
9
+ srcs = [
10
+ "__init__.py" ,
11
+ ],
12
+ srcs_version = "PY3" ,
13
+ deps = [
14
+ ":quantization" , # buildcleaner: keep
15
+ ],
16
+ )
17
+
18
+ py_strict_library (
19
+ name = "quantization" ,
20
+ srcs = ["__init__.py" ],
21
+ srcs_version = "PY3" ,
22
+ deps = [
23
+ "//tensorflow_model_optimization/python/core/quantization/keras" , # buildcleaner: keep
24
+ ],
25
+ )
You can’t perform that action at this time.
0 commit comments