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(
4242 "//tensorflow_model_optimization/python/core/quantization/keras:quantize_scheme" ,
4343 "//tensorflow_model_optimization/python/core/quantization/keras:quantize_wrapper" ,
4444 "//tensorflow_model_optimization/python/core/quantization/keras:quantizers" ,
45+ "//tensorflow_model_optimization/python/core/quantization/keras/experimental" ,
4546 "//tensorflow_model_optimization/python/core/quantization/keras/collaborative_optimizations/cluster_preserve:cluster_utils" ,
4647 "//tensorflow_model_optimization/python/core/quantization/keras/collaborative_optimizations/cluster_preserve:default_8bit_cluster_preserve_quantize_scheme" ,
4748 "//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