Skip to content

Commit 7547b84

Browse files
Merge pull request #6913 from smokestacklightnin/ci/docs/fix-addons-docs
Add Addons page
2 parents 9236d49 + 65caf2d commit 7547b84

File tree

2 files changed

+119
-1
lines changed

2 files changed

+119
-1
lines changed

docs/guide/addons.md

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# Community-developed components, examples, and tools for TFX
2+
3+
Developers helping developers. TFX-Addons is a collection of community
4+
projects to build new components, examples, libraries, and tools for TFX.
5+
The projects are organized under the auspices of the special interest group,
6+
SIG TFX-Addons.
7+
8+
[Join the community and share your work with the world!](http://goo.gle/tfx-addons-group)
9+
10+
---
11+
12+
TFX-Addons is available on PyPI for all OS. To install the latest version, run:
13+
14+
```shell
15+
pip install tfx-addons
16+
```
17+
18+
You can then use TFX-Addons like this:
19+
20+
```python
21+
from tfx import v1 as tfx
22+
import tfx_addons as tfxa
23+
24+
# Then you can easily load projects tfxa.{project_name}. For example:
25+
tfxa.feast_examplegen.FeastExampleGen(...)
26+
```
27+
28+
<div class="grid cards" markdown>
29+
30+
- [__Feast ExampleGen Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/feast_examplegen)
31+
32+
---
33+
34+
An [ExampleGen](./examplegen.md) component for ingesting datasets from a [Feast Feature Store](https://feast.dev/).
35+
36+
[:octicons-arrow-right-24: Feast ExampleGen](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/feast_examplegen)
37+
38+
- [__Feature Selection Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/feature_selection)
39+
40+
---
41+
42+
Perform feature selection using various algorithms with this TFX component.
43+
44+
[:octicons-arrow-right-24: Feature Selection](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/feature_selection)
45+
46+
- [__Firebase Publisher Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/firebase_publisher)
47+
48+
---
49+
50+
A TFX component to publish/update ML models to [Firebase ML](https://firebase.google.com/products/ml).
51+
52+
[:octicons-arrow-right-24: Firebase Publisher](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/firebase_publisher)
53+
54+
- [__Hugging Face Pusher Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/huggingface_pusher)
55+
56+
---
57+
58+
[Hugging Face Model Hub](https://huggingface.co/models). Optionally pushes the application to the [Hugging Face Spaces Hub](https://huggingface.co/spaces).
59+
60+
[:octicons-arrow-right-24: Hugging Face Pusher](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/huggingface_pusher)
61+
62+
- [__Message Exit Handler Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/message_exit_handler)
63+
64+
---
65+
66+
Handle the completion or failure of a pipeline by notifying users, including any error messages.
67+
68+
[:octicons-arrow-right-24: Message Exit Handler](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/message_exit_handler)
69+
70+
- [__MLMD Client Library__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/mlmd_client)
71+
72+
---
73+
74+
Client library to inspect content in [ML Metadata](mlmd.md) populated by TFX pipelines.
75+
76+
[:octicons-arrow-right-24: MLMD Cleint](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/mlmd_client)
77+
78+
- [__Model Card Generator__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/model_card_generator)
79+
80+
---
81+
82+
The ModelCardGenerator takes [dataset statistics](statsgen.md), [model evaluation](evaluator.md), and a [pushed model](pusher.md) to automatically populate parts of a model card.
83+
84+
[:octicons-arrow-right-24: Model Card Generator](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/model_card_generator)
85+
86+
- [__Pandas Transform Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/pandas_transform)
87+
88+
---
89+
90+
Use [Pandas dataframes](https://pandas.pydata.org/) instead of the standard Transform component for your feature engineering. Processing is distributed using [Apache Beam](https://beam.apache.org/) for scalability.
91+
92+
[:octicons-arrow-right-24: Pandas Transform](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/pandas_transform)
93+
94+
- [__Sampling Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/sampling)
95+
96+
---
97+
98+
A TFX component to sample data from examples, using probabilistic estimation.
99+
100+
[:octicons-arrow-right-24: Sampling](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/sampling)
101+
102+
- [__Schema Curation Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/schema_curation)
103+
104+
---
105+
106+
Apply user code to a schema produced by the [SchemaGen component](schemagen.md), and curate it based on domain knowledge.
107+
108+
[:octicons-arrow-right-24: Schema Curation](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/schema_curation)
109+
110+
- [__XGBoost Evaluator Component__](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/xgboost_evaluator)
111+
112+
---
113+
114+
Evaluate [XGBoost](https://xgboost.ai/) models by extending the standard [Evaluator component](evaluator.md).
115+
116+
[:octicons-arrow-right-24: XGBoost Evaluator](https://github.com/tensorflow/tfx-addons/tree/main/tfx_addons/xgboost_evaluator)
117+
118+
</div>

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ nav:
152152
- Guide: guide/index.md
153153

154154
- "What's New":
155-
- "TFX-Addons": addons
155+
- "TFX-Addons": guide/addons
156156
- "TFX Cloud Solutions": guide/solutions.md
157157
- "Using Keras with TFX": guide/keras
158158
- "Using Non-TensorFlow Frameworks in TFX": guide/non_tf

0 commit comments

Comments
 (0)