tff.simulation.datasets.build_dataset_mixture
Stay organized with collections
Save and categorize content based on your preferences.
Build a new dataset that probabilistically returns examples.
tff.simulation.datasets.build_dataset_mixture(
a, b, a_probability, seed=None
)
Args |
a
|
The first tf.data.Dataset .
|
b
|
The second tf.data.Dataset .
|
a_probability
|
The float probability to select the next example from the
a dataset.
|
seed
|
An optional int seed for creating a tf.random.Generator . If set to
None , the generator will be created via
tf.random.Generator.from_non_deterministic_state . Note that setting a
random seed alone is not enough to guarantee complete reproducibility of
results. For example, random number generation is not guaranteed to be
consistent across TensorFlow versions (see
https://www.tensorflow.org/guide/versions#what_is_not_covered).
|
Returns |
A tf.data.Dataset that returns examples from dataset a with probability
a_probability , and examples form dataset b with probability (1 -
a_probability) . The dataset will yield the number of examples equal to the
smaller of a or b .
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-20 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-20 UTC."],[],[]]