--- title: Ensemble Learner keywords: fastai sidebar: home_sidebar summary: "Implements functions necessary to build an `EnsembleLearner` suitable for bioimgage segmentation" description: "Implements functions necessary to build an `EnsembleLearner` suitable for bioimgage segmentation" nb_path: "nbs/00_learner.ipynb" ---
#from fastai.callback import progress
#progress.master_bar, progress.progress_bar = fastprogress.force_console_behavior()
t1 = Config(n=3)
t1.save('test_config')
t2 = Config()
t2.load('test_config.json')
test_eq(t1, t2)
e = np.random.randn(1024,1024)
test_close(energy_max(e, ks=100),0, eps=1e-01)