Browse Source

add input mappings to graph importer

pull/623/head
Chris Fairclough 5 years ago
parent
commit
594f88f701
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Framework/importer.cs

+ 1
- 1
src/TensorFlowNET.Core/Framework/importer.cs View File

@@ -121,7 +121,7 @@ namespace Tensorflow


foreach(var input in input_map) foreach(var input in input_map)
{ {
throw new NotImplementedException("_PopulateTFImportGraphDefOptions");
c_api.TF_ImportGraphDefOptionsAddInputMapping(options.Handle, input.Key, 0, input.Value._as_tf_output());
} }


if (return_elements == null) if (return_elements == null)


Loading…
Cancel
Save