You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

FreezeGraph.cs 1.4 kB

1234567891011121314151617181920212223242526272829303132333435
  1. /*****************************************************************************
  2. Copyright 2018 The TensorFlow.NET Authors. All Rights Reserved.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. ******************************************************************************/
  13. namespace Tensorflow
  14. {
  15. public class FreezeGraph
  16. {
  17. public static void freeze_graph(string input_graph,
  18. string input_saver,
  19. bool input_binary,
  20. string input_checkpoint,
  21. string output_node_names,
  22. string restore_op_name,
  23. string filename_tensor_name,
  24. string output_graph,
  25. bool clear_devices,
  26. string initializer_nodes)
  27. {
  28. }
  29. }
  30. }