Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PaddlePaddle/Paddle
/ _yield_value
Function
_yield_value
python/paddle/utils/layers_utils.py:154–159 ·
view source on GitHub ↗
(iterable)
Source
from the content-addressed store, hash-verified
152
153
154
def
_yield_value(iterable):
155
if
isinstance(iterable, dict):
156
for
key in _sorted(iterable):
157
yield
iterable[key]
158
else
:
159
yield
from
iterable
160
161
162
def
_yield_flat_nest(nest):
Callers
3
_yield_flat_nest
Function · 0.85
_packed_nest_with_indices
Function · 0.85
_recursive_assert_same_structure
Function · 0.85
Calls
1
_sorted
Function · 0.85
Tested by
no test coverage detected