|
| 1 | +<!-- See: www.tensorflow.org/tfx/model_analysis/ --> |
| 2 | + |
1 | 3 | # TensorFlow Model Analysis
|
2 | 4 |
|
3 |
| -**TensorFlow Model Analysis (TFMA)** is a library for evaluating TensorFlow |
4 |
| -models. It allows users to evaluate their models on large amounts of data in a |
5 |
| -distributed fashion, using the same metrics defined in their trainer. These |
6 |
| -metrics can also be computed over different slices of data, and the results can |
7 |
| -be visualised in Jupyter Notebooks. |
| 5 | +*TensorFlow Model Analysis* (TFMA) is a library for evaluating TensorFlow models. |
| 6 | +It allows users to evaluate their models on large amounts of data in a |
| 7 | +distributed manner, using the same metrics defined in their trainer. These |
| 8 | +metrics can be computed over different slices of data and visualized in Jupyter |
| 9 | +notebooks. |
8 | 10 |
|
9 |
| -**TFMA may introduce backwards incompatible changes before version 1.0**. |
| 11 | +Caution: TFMA may introduce backwards incompatible changes before version 1.0. |
10 | 12 |
|
11 |
| -## Installation and Dependencies |
| 13 | +## Installation |
12 | 14 |
|
13 |
| -The easiest and recommended way to install TFMA is with the PyPI package. |
| 15 | +The recommended way to install TFMA is using the |
| 16 | +[PyPI package](https://pypi.org/project/tensorflow-model-analysis/): |
14 | 17 |
|
15 |
| -`pip install tensorflow-model-analysis` |
| 18 | +<pre class="devsite-terminal devsite-click-to-copy"> |
| 19 | +pip install tensorflow-model-analysis |
| 20 | +</pre> |
16 | 21 |
|
17 |
| -Currently TFMA requires that TensorFlow be installed but does not have an |
18 |
| -explicit dependency on TensorFlow as a package. See [TensorFlow |
19 |
| -documentation](https://www.tensorflow.org/install/) for more information on |
20 |
| -installing TensorFlow. |
| 22 | +Currently, TFMA requires that TensorFlow is installed but does not have an |
| 23 | +explicit dependency on the TensorFlow PyPI package. See the |
| 24 | +[TensorFlow install guides](/install) for instructions. |
21 | 25 |
|
22 |
| -To enable TFMA visualization in Jupyter Notebook, run<sup>1</sup>: |
| 26 | +To enable TFMA visualization in Jupyter Notebook: |
23 | 27 |
|
24 |
| -``` |
25 |
| -jupyter nbextension enable --py widgetsnbextension |
26 |
| -jupyter nbextension install --py --symlink tensorflow_model_analysis |
27 |
| -jupyter nbextension enable --py tensorflow_model_analysis |
28 |
| -``` |
| 28 | +<pre class="prettyprint"> |
| 29 | + <code class="devsite-terminal">jupyter nbextension enable --py widgetsnbextension</code> |
| 30 | + <code class="devsite-terminal">jupyter nbextension install --py --symlink tensorflow_model_analysis</code> |
| 31 | + <code class="devsite-terminal">jupyter nbextension enable --py tensorflow_model_analysis</code> |
| 32 | +</pre> |
29 | 33 |
|
30 |
| -TFMA requires [Apache Beam](https://beam.apache.org/) to run distributed |
31 |
| -pipelines. Apache Beam runs in local mode by default, and can also run in |
32 |
| -distributed mode using |
33 |
| -[Google Cloud Dataflow](https://cloud.google.com/dataflow/). TFMA is designed to |
34 |
| -be extensible to other Apache Beam runners. |
| 34 | +Note: If Jupyter notebook is already installed in your home directory, add |
| 35 | +`--user` to these commands. If Jupyter is installed as root, or using a virtual |
| 36 | +environment, the parameter `--sys-prefix` might be required. |
35 | 37 |
|
36 |
| -## Getting Started |
| 38 | +### Dependencies |
37 | 39 |
|
38 |
| -For instructions on using TFMA, see the [getting started |
39 |
| -guide](g3doc/getting_started.md). |
| 40 | +[Apache Beam](https://beam.apache.org/) is required to run distributed analysis. |
| 41 | +By default, Apache Beam runs in local mode but can also run in distributed mode |
| 42 | +using [Google Cloud Dataflow](https://cloud.google.com/dataflow/). TFMA is |
| 43 | +designed to be extensible for other Apache Beam runners. |
40 | 44 |
|
41 | 45 | ## Compatible Versions
|
42 | 46 |
|
43 |
| -This is a table of versions known to be compatible with each other, based on |
44 |
| -our testing framework. Other combinations may also work, but are untested. |
| 47 | +The following table is the TFMA package versions that are compatible with each |
| 48 | +other. This is determined by our testing framework, but other *untested* |
| 49 | +combinations may also work. |
45 | 50 |
|
46 | 51 | |tensorflow-model-analysis |tensorflow |apache-beam[gcp]|
|
47 | 52 | |---------------------------|--------------|----------------|
|
48 | 53 | |GitHub master |1.7 |2.4.0 |
|
49 | 54 | |0.6.0 |1.6 |2.4.0 |
|
50 | 55 |
|
51 |
| -<sup>1</sup> If Jupyter is installed in your home directory, add `--user` for |
52 |
| - all commands; if Jupyter is installed in root or virtualenv is used, |
53 |
| - `--sys-prefix` might be needed. |
54 |
| - |
55 | 56 | ## Questions
|
56 | 57 |
|
57 |
| -Please direct any questions about working with TFMA to [Stack Overflow](https://stackoverflow.com) using |
58 |
| -the [tensorflow-model-analysis](https://stackoverflow.com/questions/tagged/tensorflow-model-analysis) tag. |
| 58 | +Please direct any questions about working with TFMA to |
| 59 | +[Stack Overflow](https://stackoverflow.com) using the |
| 60 | +[tensorflow-model-analysis](https://stackoverflow.com/questions/tagged/tensorflow-model-analysis) |
| 61 | +tag. |
0 commit comments