-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathmkdocs.yml
More file actions
137 lines (128 loc) · 3.76 KB
/
mkdocs.yml
File metadata and controls
137 lines (128 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
site_name: TensorFlow Data Transform
repo_name: "transform"
repo_url: https://github.com/tensorflow/transform
theme:
logo: images/tf_full_color_primary_icon.svg
name: material
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: custom
accent: custom
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: custom
accent: custom
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: custom
accent: custom
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
favicon: images/tf_full_color_primary_icon.svg
features:
- content.code.copy
- content.code.select
- content.action.edit
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: true
show_root_heading: true
unwrap_annotated: true
show_symbol_type_toc: true
show_if_no_docstring: true
show_symbol_type_heading: true
merge_init_into_class: true
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
group_by_category: true
show_category_heading: true
show_submodules: false
show_root_full_path: true
docstring_section_style: "spacy"
inherited_members: true
summary: false
filters:
- "!^_"
- "^__init__$"
- "^__call__$"
- "^__version__$"
- "!^logger"
- "!^test_"
- "!_test$"
extensions:
- griffe_inherited_docstrings
preload_modules:
- apache_beam
load_external_modules: true
inventories:
- https://docs.python.org/3/objects.inv
- https://beam.apache.org/releases/pydoc/current/objects.inv
- mkdocs-jupyter:
ignore_h1_titles: True
- caption
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
markdown_extensions:
- admonition
- attr_list
- def_list
- tables
- markdown_grid_tables
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
linenums: false
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
watch:
- tensorflow_transform
nav:
- Preprocess and transform data: index.md
- Guide:
- Install: install.md
- Get Started: get_started.ipynb
- Using tf.Transform with TensorFlow 2.x: tf2_support.md
- Common Transformations: common_transformations.md
- Data preprocessing best practices: tft_bestpractices.md
- API:
- tft: api_docs/python/tft.md
- tft.coders: api_docs/python/tft-coders.md
- tft.experimental 🧪: api_docs/python/tft-experimental.md
- tft.beam: api_docs/python/tft-beam.md
- tft.beam.analyzer_cache: api_docs/python/tft-beam-analyzer-cache.md
- tft.beam.experimental 🧪: api_docs/python/tft-beam-experimental.md