Skip to content

Commit 1fd9e1e

Browse files
tf-model-analysis-teampfyang
tf-model-analysis-team
authored andcommitted
Project import generated by Copybara.
PiperOrigin-RevId: 198919171
1 parent 83bb853 commit 1fd9e1e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1889
-746
lines changed

README.md

+38-35
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,61 @@
1+
<!-- See: www.tensorflow.org/tfx/model_analysis/ -->
2+
13
# TensorFlow Model Analysis
24

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.
810

9-
**TFMA may introduce backwards incompatible changes before version 1.0**.
11+
Caution: TFMA may introduce backwards incompatible changes before version 1.0.
1012

11-
## Installation and Dependencies
13+
## Installation
1214

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/):
1417

15-
`pip install tensorflow-model-analysis`
18+
<pre class="devsite-terminal devsite-click-to-copy">
19+
pip install tensorflow-model-analysis
20+
</pre>
1621

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.
2125

22-
To enable TFMA visualization in Jupyter Notebook, run<sup>1</sup>:
26+
To enable TFMA visualization in Jupyter Notebook:
2327

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>
2933

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.
3537

36-
## Getting Started
38+
### Dependencies
3739

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.
4044

4145
## Compatible Versions
4246

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.
4550

4651
|tensorflow-model-analysis |tensorflow |apache-beam[gcp]|
4752
|---------------------------|--------------|----------------|
4853
|GitHub master |1.7 |2.4.0 |
4954
|0.6.0 |1.6 |2.4.0 |
5055

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-
5556
## Questions
5657

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.

RELEASE.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
`tf.estimator.LastExporter`.
1010
* Add `tfma.export.build_parsing_eval_input_receiver_fn` which is analogous to
1111
`tf.estimator.export.build_parsing_serving_input_receiver_fn`.
12+
* Add a new post export metric
13+
`tfma.post_export_metrics.post_export_metrics.auc()`.
1214

1315
## Bug fixes and other changes
1416

@@ -19,15 +21,15 @@
1921

2022
## Breaking changes
2123

22-
* EvalSavedModels produced by TFMA 0.6.0 will not be compatible with TFMA 0.7.0
23-
due to the following changes:
24-
* EvalSavedModels are now written out with a custom "eval_saved_model" tag,
25-
as opposed to the "serving" tag before.
26-
* EvalSavedModels now include version metadata about the TFMA version that
27-
they were exported with.
28-
* Metrics and plot outputs now include version metadata about the TFMA version
29-
that they were exported with. Metrics and plots produced by TFMA 0.6.0 will
30-
not be compatible with TFMA 0.7.0.
24+
* EvalSavedModels produced by TFMA 0.6.0 will not be compatible with later
25+
versions due to the following changes:
26+
* EvalSavedModels are now written out with a custom "eval_saved_model"
27+
tag, as opposed to the "serving" tag before.
28+
* EvalSavedModels now include version metadata about the TFMA version that
29+
they were exported with.
30+
* Metrics and plot outputs now include version metadata about the TFMA version
31+
that they were exported with. Metrics and plots produced by TFMA 0.6.0 will
32+
not be compatible with later versions.
3133

3234
## Deprecations
3335

examples/chicago_taxi/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
FROM ubuntu:17.10
14+
FROM ubuntu:18.04
1515

1616
MAINTAINER TFX <[email protected]>
1717

1818
RUN apt-get update && apt-get install -y \
19-
curl
19+
curl \
20+
gnupg
2021

2122
# Add TensorFlow Serving repo
2223

0 commit comments

Comments
 (0)