SurrogateAnalysis.py 359 B

1234567891011
  1. # quick object for surrogate logging data
  2. class SurrogateAnalysis():
  3. def __init__(self, time, every_ls, r2_scores, r2, evaluations, n_local_search):
  4. self._time = time
  5. self._every_ls = every_ls
  6. self._r2_scores = r2_scores
  7. self._r2 = r2
  8. self._evaluations = evaluations
  9. self._n_local_search = n_local_search