From bac4765a8126746675f517c7bfa1b04b88044d51 Mon Sep 17 00:00:00 2001 From: Devon Date: Thu, 25 Apr 2019 11:19:24 -0400 Subject: [PATCH] removing mlp_config --- cortex_DIM/models/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cortex_DIM/models/controller.py b/cortex_DIM/models/controller.py index ec204f6..b4d3ad6 100644 --- a/cortex_DIM/models/controller.py +++ b/cortex_DIM/models/controller.py @@ -15,6 +15,7 @@ from cortex_DIM.models.dim import LocalDIM, GlobalDIM from cortex_DIM.models.coordinates import CoordinatePredictor + logger = logging.getLogger('cortex_DIM') # We put this out here instead of inside the encoder because of pickle. @@ -151,7 +152,6 @@ def build(self, output_units=64, encoder_config='basic32x32', encoder_args={}, config_dict = dict() config_dict.update(**convnet_configs) config_dict.update(**resnet_configs) - config_dict.update(**mlp_configs) config = config_dict.get(encoder_config, None) if config is None: