83 lines
2.7 KiB
Python
83 lines
2.7 KiB
Python
# Copyright 2022 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
|
|
"""Path helpers utility functions."""
|
|
|
|
from tensorflow.python.lib.io import file_io
|
|
from tensorflow.python.saved_model import constants
|
|
from tensorflow.python.util import compat
|
|
|
|
|
|
def get_or_create_variables_dir(export_dir):
|
|
"""Return variables sub-directory, or create one if it doesn't exist."""
|
|
variables_dir = get_variables_dir(export_dir)
|
|
file_io.recursive_create_dir(variables_dir)
|
|
return variables_dir
|
|
|
|
|
|
def get_variables_dir(export_dir):
|
|
"""Return variables sub-directory in the SavedModel."""
|
|
return file_io.join(
|
|
compat.as_text(export_dir), compat.as_text(constants.VARIABLES_DIRECTORY))
|
|
|
|
|
|
def get_variables_path(export_dir):
|
|
"""Return the variables path, used as the prefix for checkpoint files."""
|
|
return file_io.join(
|
|
compat.as_text(get_variables_dir(export_dir)),
|
|
compat.as_text(constants.VARIABLES_FILENAME))
|
|
|
|
|
|
def get_or_create_assets_dir(export_dir):
|
|
"""Return assets sub-directory, or create one if it doesn't exist."""
|
|
assets_destination_dir = get_assets_dir(export_dir)
|
|
|
|
file_io.recursive_create_dir(assets_destination_dir)
|
|
|
|
return assets_destination_dir
|
|
|
|
|
|
def get_assets_dir(export_dir):
|
|
"""Return path to asset directory in the SavedModel."""
|
|
return file_io.join(
|
|
compat.as_text(export_dir), compat.as_text(constants.ASSETS_DIRECTORY))
|
|
|
|
|
|
def get_or_create_debug_dir(export_dir):
|
|
"""Returns path to the debug sub-directory, creating if it does not exist."""
|
|
debug_dir = get_debug_dir(export_dir)
|
|
|
|
file_io.recursive_create_dir(debug_dir)
|
|
|
|
return debug_dir
|
|
|
|
|
|
def get_saved_model_pbtxt_path(export_dir):
|
|
return file_io.join(
|
|
compat.as_bytes(compat.path_to_str(export_dir)),
|
|
compat.as_bytes(constants.SAVED_MODEL_FILENAME_PBTXT))
|
|
|
|
|
|
def get_saved_model_pb_path(export_dir):
|
|
return file_io.join(
|
|
compat.as_bytes(compat.path_to_str(export_dir)),
|
|
compat.as_bytes(constants.SAVED_MODEL_FILENAME_PB))
|
|
|
|
|
|
def get_debug_dir(export_dir):
|
|
"""Returns path to the debug sub-directory in the SavedModel."""
|
|
return file_io.join(
|
|
compat.as_text(export_dir), compat.as_text(constants.DEBUG_DIRECTORY))
|