MCPcopy Create free account
hub / github.com/openai/shap-e / _iterator

Method _iterator

shap_e/models/nn/meta.py:163–167  ·  view source on GitHub ↗
(module)

Source from the content-addressed store, hash-verified

161
162 def named_nonmeta_parameters(self, prefix="", recurse=True):
163 def _iterator(module):
164 meta = module._meta_params if isinstance(module, MetaModule) else set()
165 for name, param in module._parameters.items():
166 if name not in meta:
167 yield name, param
168
169 gen = self._named_members(
170 _iterator,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected