Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace feature_whitelist with feature_allowlist in StatsOption #189

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions g3doc/api_docs/python/tfdv/StatsOptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<meta itemprop="name" content="tfdv.StatsOptions" />
<meta itemprop="path" content="Stable" />
<meta itemprop="property" content="desired_batch_size"/>
<meta itemprop="property" content="feature_whitelist"/>
<meta itemprop="property" content="feature_allowlist"/>
<meta itemprop="property" content="generators"/>
<meta itemprop="property" content="num_histogram_buckets"/>
<meta itemprop="property" content="num_quantiles_histogram_buckets"/>
Expand All @@ -28,7 +28,7 @@ Options for generating statistics.
```python
__init__(
generators=None,
feature_whitelist=None,
feature_allowlist=None,
schema=None,
weight_feature=None,
slice_functions=None,
Expand Down Expand Up @@ -56,7 +56,7 @@ Initializes statistics options.
* <b>`generators`</b>: An optional list of statistics generators. A statistics
generator must extend either CombinerStatsGenerator or
TransformStatsGenerator.
* <b>`feature_whitelist`</b>: An optional list of names of the features to
* <b>`feature_allowlist`</b>: An optional list of names of the features to
calculate statistics for.
* <b>`schema`</b>: An optional tensorflow_metadata Schema proto. Currently we
use the schema to infer categorical and bytes features.
Expand Down Expand Up @@ -112,7 +112,7 @@ Initializes statistics options.



<h3 id="feature_whitelist"><code>feature_whitelist</code></h3>
<h3 id="feature_allowlist"><code>feature_allowlist</code></h3>



Expand Down