// boston = load_boston()
// If using multiple instances, they are normally sent to SMAC through the scenario object as
// filenames/folder names, which can be loaded from inside the target algorithm
instances = os.listdir(INSTANCE_PATH)
instances = [[INSTANCE_PATH+i] for i in instances]
sample_X, sample_y = load_data_from_file(instances[0][0], delimiter=" ")
logger = logging.getLogger("RF-example")
logging.basicConfig(level=logging.INFO)
After Change
// Example call of the function with default values
// It returns: Status, Cost, Runtime, Additional Infos
def_value = smac.get_tae_runner().run(cs.get_default_configuration(), 1)[1]
print("Value for default configuration: %.2f" % def_value)
// Start optimization
try: