Simsso / NIPS-2018-Adversarial-Vision-Challenge

Code, documents, and deployment configuration files, related to our participation in the 2018 NIPS Adversarial Vision Challenge "Robust Model Track"
MIT License
10 stars 1 forks source link

Logger Class #60

Closed Simsso closed 6 years ago

Simsso commented 6 years ago

Write a generic logger class that can be used to accumulate scalar values and histograms, with logging to TensorFlow.

Simsso commented 6 years ago

Started the development in the logger-class branch, which we can then merge back into vq-resnet once it has all the features we want.

FlorianPfisterer commented 6 years ago

In the ResNet constructor, it would be better to have a default parameter value of logger_factory=None to prevent unexpected errors.

Simsso commented 6 years ago

Done in https://github.com/Simsso/NIPS-2018-Adversarial-Vision-Challenge/commit/93ab81044c61ce6058dc6decd5f2763e203a6ece; thanks for reporting.