Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kSavedModelFilenamePb (0.19 sec)

  1. tensorflow/cc/saved_model/reader.cc

                          SavedModel* saved_model_proto) {
      LOG(INFO) << "Reading SavedModel from: " << export_dir;
    
      if (IS_OSS) {
        const std::string saved_model_pb_path =
            io::JoinPath(export_dir, kSavedModelFilenamePb);
        TF_ASSIGN_OR_RETURN(
            bool saved_model_pb_exists,
            internal::FileExists(Env::Default(), saved_model_pb_path));
        if (saved_model_pb_exists) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/loader.cc

      return absl::OkStatus();
    }
    
    bool MaybeSavedModelDirectory(const string& export_dir) {
      const string saved_model_pb_path =
          io::JoinPath(export_dir, kSavedModelFilenamePb);
      const string saved_model_cpb_path =
          io::JoinPath(export_dir, kSavedModelFilenameCpb);
      const string saved_model_pbtxt_path =
          io::JoinPath(export_dir, kSavedModelFilenamePbTxt);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top