Add metadata_info.py for metadata writer.

PiperOrigin-RevId: 480146881
This commit is contained in:
Yuqi Li
2022-10-10 12:13:46 -07:00
committed by Copybara-Service
parent 62d2ae601e
commit cbc7eb661b
22 changed files with 1905 additions and 0 deletions
+28
View File
@@ -33,7 +33,21 @@ mediapipe_files(srcs = [
exports_files([
"external_file",
"general_meta.json",
"golden_json.json",
"associated_file_meta.json",
"bounding_box_tensor_meta.json",
"classification_tensor_float_meta.json",
"classification_tensor_uint8_meta.json",
"classification_tensor_unsupported_meta.json",
"feature_tensor_meta.json",
"image_tensor_meta.json",
"input_image_tensor_float_meta.json",
"input_image_tensor_uint8_meta.json",
"input_image_tensor_unsupported_meta.json",
"score_calibration.txt",
"score_calibration_file_meta.json",
"score_calibration_tensor_meta.json",
])
filegroup(
@@ -51,7 +65,21 @@ filegroup(
filegroup(
name = "data_files",
srcs = [
"associated_file_meta.json",
"bounding_box_tensor_meta.json",
"classification_tensor_float_meta.json",
"classification_tensor_uint8_meta.json",
"classification_tensor_unsupported_meta.json",
"external_file",
"feature_tensor_meta.json",
"general_meta.json",
"golden_json.json",
"image_tensor_meta.json",
"input_image_tensor_float_meta.json",
"input_image_tensor_uint8_meta.json",
"input_image_tensor_unsupported_meta.json",
"score_calibration.txt",
"score_calibration_file_meta.json",
"score_calibration_tensor_meta.json",
],
)