Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for graph_def (0.05 sec)

  1. tensorflow/c/c_api.cc

    TF_ImportGraphDefResults* TF_GraphImportGraphDefWithResults(
        TF_Graph* graph, const TF_Buffer* graph_def,
        const TF_ImportGraphDefOptions* options, TF_Status* status) {
      GraphDef def;
      if (!tensorflow::ParseProtoUnlimited(&def, graph_def->data,
                                           graph_def->length)) {
        status->status = InvalidArgument("Invalid GraphDef");
        return nullptr;
      }
      auto results = new TF_ImportGraphDefResults();
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top