Internal Changes

PiperOrigin-RevId: 542387813
This commit is contained in:
MediaPipe Team 2023-06-21 16:00:47 -07:00 committed by Copybara-Service
parent 895c685df6
commit c86d80a031

View File

@ -80,6 +80,14 @@ py_test(
deps = [":loss_functions"],
)
######################################################################
# Public target of the MediaPipe Model Maker Quantization Config.
# Quantization Config is used to export a quantized model. Please refer
# to the specific task documentations such as:
# https://developers.google.com/mediapipe/solutions/vision/image_classifier/customize
# for usage information.
######################################################################
py_library(
name = "metrics",
srcs = ["metrics.py"],
@ -95,6 +103,7 @@ py_library(
name = "quantization",
srcs = ["quantization.py"],
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = ["//mediapipe/model_maker/python/core/data:dataset"],
)