tf.keras.tree.flatten
Stay organized with collections
Save and categorize content based on your preferences.
Flattens a possibly nested structure into a list.
tf.keras.tree.flatten(
structure
)
In the case of dict instances, the sequence consists of the values,
sorted by key to ensure deterministic behavior. This is true also for
collections.OrderedDict
instances: their sequence order is
considered. The same convention is followed in unflatten_as
.
This correctly unflattens dicts and OrderedDict
after they have been
flattened, or vice-versa.
Dictionaries with non-sortable keys cannot be flattened.
Examples:
keras.tree.flatten([[1, 2, 3], [4, [5], [[6]]]])
[1, 2, 3, 4, 5, 6]
keras.tree.flatten(None)
[None]
keras.tree.flatten(1)
[1]
keras.tree.flatten({100: 'world!', 6: 'Hello'})
['Hello', 'world!']
Args |
structure
|
An arbitrarily nested structure.
|
Returns |
A list, the flattened version of the input structure .
|
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 2024-06-07 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-06-07 UTC."],[],[]]