MCPcopy
hub / github.com/hyperopt/hyperopt / inputs

Method inputs

hyperopt/pyll/base.py:286–293  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

284 return rval
285
286 def inputs(self):
287 # -- this function gets called a lot and it's not 100% safe to cache
288 # so the if/else is a small optimization
289 if self.named_args:
290 rval = self.pos_args + [v for (k, v) in self.named_args]
291 else:
292 rval = self.pos_args
293 return rval
294
295 @property
296 def arg(self):

Callers 11

clone_from_inputsMethod · 0.95
eval_nodesMethod · 0.80
set_in_memoMethod · 0.80
_expr_to_configFunction · 0.80
build_posteriorFunction · 0.80
fooFunction · 0.80
dfsFunction · 0.80
toposortFunction · 0.80
cloneFunction · 0.80
clone_mergeFunction · 0.80
test_expr_to_configFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_expr_to_configFunction · 0.64