Creates a TocoConverter class from a TensorFlow Session.
(cls, sess, input_tensors, output_tensors)
| 1045 | @_deprecation.deprecated(None, |
| 1046 | "Use `lite.TFLiteConverter.from_session` instead.") |
| 1047 | def from_session(cls, sess, input_tensors, output_tensors): |
| 1048 | """Creates a TocoConverter class from a TensorFlow Session.""" |
| 1049 | return TFLiteConverter.from_session(sess, input_tensors, output_tensors) |
| 1050 | |
| 1051 | @classmethod |
| 1052 | @_deprecation.deprecated( |
no outgoing calls