tom-gall commented on a change in pull request #5655: URL: https://github.com/apache/incubator-tvm/pull/5655#discussion_r438437168
########## File path: tutorials/micro/micro_tflite.py ########## @@ -0,0 +1,219 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +""" +.. _tutorial-micro-tflite: + +Micro TVM with TFLite Models +============================ +**Author**: `Tom Gall <https://github.com/tom-gall>`_ + +This tutorial is an introduction to working with MicroTVM and TFLite models with Relay. +""" +###################################################################### +# Setup +# ----- +# +# To get started, TFLite package needs to be installed as prerequisite. +# +# install tflite +# .. code-block:: bash +# +# pip install tflite=2.1.0 --user Review comment: Interestingly make html dies with an exception : python3 -m sphinx -b html -d _build/doctrees . _build/html Running Sphinx v3.1.0 loading pickled environment... done [autosummary] generating autosummary for: api/links.rst, api/python/autotvm.rst, api/python/contrib.rst, api/python/driver.rst, api/python/error.rst, api/python/graph_runtime.rst, api/python/index.rst, api/python/ir.rst, api/python/micro.rst, api/python/ndarray.rst, ..., vta/index.rst, vta/install.rst, vta/tutorials/autotvm/tune_relay_vta.rst, vta/tutorials/frontend/deploy_classification.rst, vta/tutorials/frontend/deploy_detection.rst, vta/tutorials/index.rst, vta/tutorials/matrix_multiply.rst, vta/tutorials/optimize/convolution_opt.rst, vta/tutorials/optimize/matrix_multiply_opt.rst, vta/tutorials/vta_get_started.rst generating gallery... generating gallery for tutorials... [ 33%] relay_quick_start.py Extension error: Handler <function generate_gallery_rst at 0x7f23e55b04d0> for event 'builder-inited' threw an exception make: *** [Makefile:70: html] Error 2 I'm using ./tests/scripts/task_sphinx_precheck.sh which seems to generate less than perfect html when viewed elsewhere. I'm less than confident that the html generated is acceptable :-/ ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
