Skip to content

Commit

Permalink
Changing reinvent class input
Browse files Browse the repository at this point in the history
  • Loading branch information
llvllahsa committed Dec 22, 2023
1 parent aa4374c commit 6ddd315
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/vai_lab/DataProcessing/plugins/reinvent.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,11 @@ def __init__(self, config = {}, data_in = [None], ini = False):

class ReinventModel:

def __init__(self, seed=1, acquisition="uncertainty"):
self.seed = seed
self.acquisition = acquisition
def __init__(self):
return

def do_run(self):
seed = self.seed
acquisition = self.acquisition
def do_run(self, seed=1, acquisition="uncertainty"):

##############################
# Quick options
FIT_MODEL = True # whether to fit a Stan model or not
Expand Down

0 comments on commit 6ddd315

Please sign in to comment.