Skip to content

Commit b9e9580

Browse files
Merge branch 'master' into r0.4.0
2 parents 1060cf2 + 640934d commit b9e9580

File tree

1 file changed

+12
-4
lines changed
  • tensorflow_lite_support/tools/pip_package

1 file changed

+12
-4
lines changed

tensorflow_lite_support/tools/pip_package/setup.py

+12-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,20 @@
1616
1717
This PyPI package includes the Python bindings for following features:
1818
19+
- Task Library: a set of powerful and easy-to-use task-specific libraries to
20+
integrate TFLite models onto various platforms. See the [Task Library
21+
documentation](https://www.tensorflow.org/lite/inference_with_metadata/task_library/overview)
22+
for more information.
1923
- Metadata schemas: wraps TFLite model schema and metadata schema in Python.
20-
- Metadata populator and displayer: can be used to populate the metadata and
24+
- Metadata writer and displayer: can be used to populate the metadata and
2125
associated files into the model, as well as converting the populated metadata
22-
into the json format.
26+
into the json format. See the [Metadata
27+
documentation](https://www.tensorflow.org/lite/convert/metadata) for more
28+
information.
2329
- Android Codegen tool: generates the Java model interface used in Android for
24-
a particular model.
30+
a particular model. See the [Codegen tool
31+
documentation](https://www.tensorflow.org/lite/inference_with_metadata/codegen)
32+
for more information.
2533
"""
2634

2735
from __future__ import absolute_import
@@ -42,7 +50,7 @@
4250
# This version string is semver compatible, but incompatible with pip.
4351
# For pip, we will remove all '-' characters from this string, and use the
4452
# result for pip.
45-
_VERSION = '0.3.0'
53+
_VERSION = '0.4.0'
4654

4755
SETUP_PACKAGES = [
4856
'pybind11 >= 2.6.0',

0 commit comments

Comments
 (0)