def get_variable_names(self):
   """Returns list of all variable names in this model.
   Returns:
     List of names.
   Raises:
     ValueError: If the Estimator has not produced a checkpoint yet.
   """
   _check_checkpoint_available(self.model_dir)
   return [name for name, _ in training.list_variables(self.model_dir)]
示例#2
0
  def get_variable_names(self):
    """Returns list of all variable names in this model.

    Returns:
      List of names.

    Raises:
      ValueError: If the Estimator has not produced a checkpoint yet.
    """
    _check_checkpoint_available(self.model_dir)
    return [name for name, _ in training.list_variables(self.model_dir)]