aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/python
Commit message (Collapse)AuthorAge
* Make lite_test.py run in open source.Gravatar Nupur Garg2018-10-09
| | | | PiperOrigin-RevId: 216445964
* Internal change.Gravatar Nupur Garg2018-10-03
| | | | PiperOrigin-RevId: 215589009
* Allow passing --allow_nonexistent_arrays via toco_convertGravatar A. Unique TensorFlower2018-10-02
| | | | PiperOrigin-RevId: 215440829
* Rename TFLite Extended -> TFLite FlexGravatar Yu-Cheng Ling2018-09-27
| | | | PiperOrigin-RevId: 214854303
* Rename TFLite Eager delegate -> Flex delegateGravatar Yu-Cheng Ling2018-09-27
| | | | PiperOrigin-RevId: 214835588
* TFLite: Rename ResetVariableTensorsToZero -> ResetVariableTensorsGravatar Yu-Cheng Ling2018-09-27
| | | | PiperOrigin-RevId: 214820383
* Rename TocoConverter to TFLiteConverter.Gravatar Nupur Garg2018-09-26
| | | | PiperOrigin-RevId: 214710175
* Automated rollback of commit 82af048bc8c3c044c98a27b1c4c27bb62d4e4a14Gravatar Nupur Garg2018-09-26
| | | | PiperOrigin-RevId: 214705311
* Rename TFLite Eager delegate -> Flex delegateGravatar Yu-Cheng Ling2018-09-26
| | | | PiperOrigin-RevId: 214674717
* Internal change.Gravatar Nupur Garg2018-09-26
| | | | PiperOrigin-RevId: 214636032
* Automated rollback of commit 20c71535c5f1ed1d918d6cc6e327ffbba49ecbd6Gravatar Anna R2018-09-25
| | | | PiperOrigin-RevId: 214519671
* Internal change.Gravatar Nupur Garg2018-09-25
| | | | PiperOrigin-RevId: 214507546
* Internal change.Gravatar Nupur Garg2018-09-13
| | | | PiperOrigin-RevId: 212864677
* Move from deprecated self.test_session() to self.cached_session().Gravatar A. Unique TensorFlower2018-09-10
| | | | | | | | self.test_session() has been deprecated in 9962eb5e84b15e309410071b06c2ed2d6148ed44 as its name confuses readers of the test. Moving to cached_session() instead which is more explicit about: * the fact that the session may be reused. * the session is not closed even when doing a "with self.test_session()" statement. PiperOrigin-RevId: 212336321
* Fix lite_test.py.Gravatar Nupur Garg2018-09-05
| | | | PiperOrigin-RevId: 211719399
* Introduce post_training_quantize flag and deprecate quantize_weights flag.Gravatar Suharsh Sivakumar2018-08-31
| | | | PiperOrigin-RevId: 211124183
* Fix flaky tests in lite_test.py.Gravatar Nupur Garg2018-08-30
| | | | PiperOrigin-RevId: 211015230
* Change the data type of mean_values and std_dev_values to float.Gravatar Yunlu Li2018-08-30
| | | | PiperOrigin-RevId: 211010293
* Add more model support to TocoConverter.Gravatar Nupur Garg2018-08-28
| | | | PiperOrigin-RevId: 210643904
* Internal change.Gravatar Nupur Garg2018-08-28
| | | | PiperOrigin-RevId: 210565419
* Enable TOCO and TFLite In Windows.Gravatar Andrew Selle2018-08-20
| | | | | | | | - Include in pip build command - Fix use of subprocess to not use unsupported flag on windows. - Fix __init__ in contrib to include tflite PiperOrigin-RevId: 209505929
* Minor fixes to TocoConverter.Gravatar Nupur Garg2018-08-20
| | | | PiperOrigin-RevId: 209494423
* Automated rollback of commit ec5f4771e42972c31faaa39354d785891de9f91dGravatar Andrew Selle2018-08-16
| | | | PiperOrigin-RevId: 209016586
* Automated rollback of commit e045fd284075001e7f7585c581c4444e4e850534Gravatar Andrew Selle2018-08-15
| | | | PiperOrigin-RevId: 208868027
* Handle aggregate arguments using op_hints.Gravatar Andrew Selle2018-08-15
| | | | | | | | - Create a pack/unstack transformation "rule". - Handle aggregates with tags that are aggregated against. - Make convert_to_stubs use graph_defs rather than just sessions. PiperOrigin-RevId: 208865349
* Create a new graph for loading the frozen graph in TocoConverter.Gravatar Nupur Garg2018-08-13
| | | | PiperOrigin-RevId: 208560644
* Fix crash where model_path input to tflite python interpreter segv.Gravatar Andrew Selle2018-08-10
| | | | | | | Fix by holding reference to passed in model_content and relying on immutability of PyString (pointer doesn't change). PiperOrigin-RevId: 208244957
* Update code to use new flag name: dump_graphviz_dirGravatar A. Unique TensorFlower2018-08-09
| | | | PiperOrigin-RevId: 208141063
* Fix from_from_keras_model_file function in TocoConverter.Gravatar Nupur Garg2018-08-09
| | | | PiperOrigin-RevId: 208133502
* Remove usage of magic-api-link syntax from source files.Gravatar Mark Daoust2018-08-09
| | | | | | | | | | | | | | | | | | | | Back-ticks are now converted to links in the api_docs generator. With the new docs repo we're moving to simplify the docs pipeline, and make everything more readable. By doing this we no longer get test failures for symbols that don't exist (`tf.does_not_exist` will not get a link). There is also no way, not to set custom link text. That's okay. This is the result of the following regex replacement (+ a couple of manual edits.): re: @\{([^$].*?)(\$.+?)?} sub: `\1` Which does the following replacements: "@{tf.symbol}" --> "`tf.symbol`" "@{tf.symbol$link_text}" --> "`tf.symbol`" PiperOrigin-RevId: 208042358
* Fix merge conflict.Gravatar Yong Tang2018-08-08
| | | | Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Build fix for interpreter_wrapper.hGravatar Yong Tang2018-08-08
| | | | Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Improve TFLite Python error handling.Gravatar Yu-Cheng Ling2018-07-24
| | | | | | | | | When `InterpreterBuilder` fails, now it fails silently and later user sees "Interpreter was not initialized.". There's no way to get the error message and troubleshoot. This fixes the issue and displays the error message. PiperOrigin-RevId: 205902280
* Remove functions from TFLite public Python API.Gravatar Nupur Garg2018-07-24
| | | | PiperOrigin-RevId: 205882419
* TFLite Python: Make resize_input_tensor accept list/tuple sizes.Gravatar Yu-Cheng Ling2018-07-20
| | | | PiperOrigin-RevId: 205471451
* Allow input_shape to be specified in TOCO python converterGravatar A. Unique TensorFlower2018-07-19
| | | | PiperOrigin-RevId: 205342464
* Merge pull request #20889 from PaulWoitaschek:patch-3Gravatar TensorFlower Gardener2018-07-19
|\ | | | | | | PiperOrigin-RevId: 205278718
* | Correct exception handling in TFLite Python interpreter.Gravatar Andrew Selle2018-07-18
| | | | | | | | | | | | | | We were incorrectly returning nullptr all the time. We need to return None sometimes and check for it. PiperOrigin-RevId: 205098110
* | Add 'no_oss' to all TF Lite tests that are not running in kokoroGravatar A. Unique TensorFlower2018-07-17
| | | | | | | | PiperOrigin-RevId: 204978094
| * Update tflite_convert.pyGravatar Paul Woitaschek2018-07-17
|/
* Fix import order in interpreter_wrapper.h.Gravatar Nupur Garg2018-07-13
| | | | PiperOrigin-RevId: 204429340
* Improve error handling and usability of Python interpreterGravatar Andrew Selle2018-07-11
| | | | | | | | - Break dependency on tensorflow platform and logging and absl - Propagate exceptions that capture the TensorFlow lite errors in a buffer. PiperOrigin-RevId: 204148724
* Merge commit for internal changesGravatar Michael Case2018-06-29
|\
* | Add complex64 support to tf.lite runtime.Gravatar RJ Ryan2018-06-28
| | | | | | | | PiperOrigin-RevId: 202403235
| * Merge changes from github.Gravatar Mingxing Tan2018-06-28
| | | | | | | | PiperOrigin-RevId: 202585094
| * Updates TOCO documentation.Gravatar Nupur Garg2018-06-28
| | | | | | | | PiperOrigin-RevId: 202577530
* | Merge pull request #20278 from yongtang/20276-zip-lenGravatar Yifei Feng2018-06-28
|\ \ | | | | | | Fix tflite_convert.py issue in Python 3
| | * Add complex64 support to tf.lite runtime.Gravatar RJ Ryan2018-06-27
| | | | | | | | | | | | PiperOrigin-RevId: 202403235
* | | Merge commit for internal changesGravatar Michael Case2018-06-26
|\ \ \ | | |/ | |/|
| * | Adds tf.keras support to TocoConverter.Gravatar Nupur Garg2018-06-25
| | | | | | | | | | | | PiperOrigin-RevId: 202037381