MCPcopy
hub / github.com/openai/evals / copy

Method copy

evals/solvers/solver.py:122–125  ·  view source on GitHub ↗
(self: SolverType)

Source from the content-addressed store, hash-verified

120 return {}
121
122 def copy(self: SolverType) -> SolverType:
123 # The deepcopy may be quite heavy for some solvers; if that's the
124 # case they should override this function.
125 return deepcopy(self)
126
127
128class DummySolver(Solver):

Callers 15

eval_sampleMethod · 0.45
propagateFunction · 0.45
iter_testMethod · 0.45
__call__Method · 0.45
format_promptFunction · 0.45
__call__Method · 0.45
__init__Method · 0.45
extract_metricsFunction · 0.45
make_plots.pyFile · 0.45
get_baseline_scoreFunction · 0.45

Calls

no outgoing calls

Tested by 1

iter_testMethod · 0.36