TeamHG-Memex / tensorboard_logger

Log TensorBoard events without touching TensorFlow
MIT License
630 stars 50 forks source link

Add unconfigure function #24

Closed vmayoral closed 5 years ago

vmayoral commented 5 years ago

Useful when logging repeatedly across different destinations.

lopuhin commented 5 years ago

@vmayoral looks good, thanks for the PR 👍 Could you please also mention that in the API section in the README: https://github.com/TeamHG-Memex/tensorboard_logger#api

Also if you want to log to different destinations, IMO a cleaner approach would be to create several tensorboard_logger.Logger instances and use them to log values, instead of using the global one. Also you can call configure multiple times to override default config. But still unconfigure makes sense and has it's place.

vmayoral commented 5 years ago

Will do, thanks for the response! I'll be back with an update.

vmayoral commented 5 years ago

@lopuhin, done. Let me know if you require more changes.