MCPcopy Create free account
hub / github.com/catboost/catboost / iteritems

Function iteritems

library/python/resource/__init__.py:27–32  ·  view source on GitHub ↗
(prefix="", strip_prefix=False)

Source from the content-addressed store, hash-verified

25
26
27def iteritems(prefix="", strip_prefix=False):
28 for key in iterkeys(prefix=prefix):
29 value = find(key)
30 if strip_prefix:
31 key = key[len(prefix) :]
32 yield key, value
33
34
35def resfs_file_exists(path):

Callers 11

buildMethod · 0.85
__init__Method · 0.85
fitMethod · 0.85
__init__Method · 0.85
_load_modelMethod · 0.85
_params_type_castFunction · 0.85
set_paramsMethod · 0.85
__init__Method · 0.85
__init__Method · 0.85
__init__Method · 0.85

Calls 3

iterkeysFunction · 0.85
lenFunction · 0.85
findFunction · 0.70

Tested by

no test coverage detected