Creates a TocoConverter class from a file containing a frozen graph.
(cls,
graph_def_file,
input_arrays,
output_arrays,
input_shapes=None)
| 1052 | @_deprecation.deprecated( |
| 1053 | None, "Use `lite.TFLiteConverter.from_frozen_graph` instead.") |
| 1054 | def from_frozen_graph(cls, |
| 1055 | graph_def_file, |
| 1056 | input_arrays, |
| 1057 | output_arrays, |
| 1058 | input_shapes=None): |
| 1059 | """Creates a TocoConverter class from a file containing a frozen graph.""" |
| 1060 | return TFLiteConverter.from_frozen_graph(graph_def_file, input_arrays, |
| 1061 | output_arrays, input_shapes) |
| 1062 | |
| 1063 | @classmethod |
| 1064 | @_deprecation.deprecated( |
no outgoing calls