Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/microsoft/qlib
/ load_obj
Method
load_obj
qlib/utils/objm.py:117–119 ·
view source on GitHub ↗
(self, name)
Source
from the content-addressed store, hash-verified
115
self.save_obj(obj, name)
116
117
def
load_obj(self, name):
118
with
(self.path / name).open(
"rb"
)
as
f:
119
return
pickle.load(f)
120
121
def
exists(self, name):
122
return
(self.path / name).exists()
Callers
nothing calls this directly
Calls
1
load
Method · 0.45
Tested by
no test coverage detected