tf.keras.utils.split_dataset
Stay organized with collections
Save and categorize content based on your preferences.
Split a dataset into a left half and a right half (e.g. train / test).
tf.keras.utils.split_dataset(
dataset, left_size=None, right_size=None, shuffle=False, seed=None
)
Args |
dataset
|
A tf.data.Dataset object or a list/tuple of arrays with the
same length.
|
left_size
|
If float, it should be in range [0, 1] range and signifies
the fraction of the data to pack in the left dataset. If integer, it
signifies the number of samples to pack in the left dataset. If
None , it defaults to the complement to right_size .
|
right_size
|
If float, it should be in range [0, 1] range and signifies
the fraction of the data to pack in the right dataset. If integer, it
signifies the number of samples to pack in the right dataset. If
None , it defaults to the complement to left_size .
|
shuffle
|
Boolean, whether to shuffle the data before splitting it.
|
seed
|
A random seed for shuffling.
|
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. Some content is licensed under the numpy license.
Last updated 2022-10-27 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 2022-10-27 UTC."],[],[]]