Home
last modified time | relevance | path

Searched refs:converter_fn (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/python/
Dtflite_convert.py96 converter_fn = lite.TFLiteConverter.from_frozen_graph
99 converter_fn = lite.TFLiteConverter.from_saved_model
104 converter_fn = lite.TFLiteConverter.from_keras_model_file
110 return converter_fn(**converter_kwargs)
/external/tensorflow/tensorflow/python/data/util/
Dstructure.py209 for converter_type, converter_fn in (
212 return converter_fn(value)
220 def _register_custom_converter(type_object, converter_fn): argument
229 _STRUCTURE_CONVERSION_FUNCTION_REGISTRY[type_object] = converter_fn
/external/protobuf/src/google/protobuf/util/internal/
Ddefault_value_objectwriter.cc51 T ConvertTo(StringPiece value, StatusOr<T> (DataPiece::*converter_fn)() const, in ConvertTo()
54 StatusOr<T> result = (DataPiece(value, true).*converter_fn)(); in ConvertTo()