Keras-Project-Template icon indicating copy to clipboard operation
Keras-Project-Template copied to clipboard

Test for comet-ml API key is broken.

Open kyrre opened this issue 6 years ago • 1 comments

https://github.com/Ahmkel/Keras-Project-Template/blob/a6bed14ac8f062f437cc1e34ac9b3f24b5a52a1e/trainers/simple_mnist_trainer.py#L35

This always returns true because self.config is a dotmap.DotMap object.

kyrre avatar Jul 19 '18 12:07 kyrre

Change to and it will work:

if ("comet_api_key" in self.config):

artiom-zayats avatar Sep 28 '18 20:09 artiom-zayats