MCPcopy Create free account
hub / github.com/tensorflow/datasets / _iter_full_names

Function _iter_full_names

tensorflow_datasets/core/load.py:881–890  ·  view source on GitHub ↗

Yield all registered datasets full_names (see `list_full_names`).

(current_version_only: bool)

Source from the content-addressed store, hash-verified

879
880
881def _iter_full_names(current_version_only: bool) -> Iterator[str]:
882 """Yield all registered datasets full_names (see `list_full_names`)."""
883 for builder_name in registered.list_imported_builders():
884 builder_cls_ = builder_cls(builder_name)
885 for full_name in _iter_single_full_names(
886 builder_name,
887 builder_cls_,
888 current_version_only=current_version_only,
889 ):
890 yield full_name
891
892
893def list_full_names(current_version_only: bool = False) -> list[str]:

Callers 1

list_full_namesFunction · 0.85

Calls 2

builder_clsFunction · 0.85
_iter_single_full_namesFunction · 0.85

Tested by

no test coverage detected