Method
__init__
(self, fields=None, win=None, env=None, opts={}, port=8097, server="localhost")
Source from the content-addressed store, hash-verified
| 858 | return self._viz |
| 859 | |
| 860 | def __init__(self, fields=None, win=None, env=None, opts={}, port=8097, server="localhost"): |
| 861 | super(BaseVisdomLogger, self).__init__(fields) |
| 862 | self.win = win |
| 863 | self.env = env |
| 864 | self.opts = opts |
| 865 | self._viz = visdom.Visdom(server="http://" + server, port=port) |
| 866 | |
| 867 | def log(self, *args, **kwargs): |
| 868 | raise NotImplementedError( |
Callers
nothing calls this directly
Tested by
no test coverage detected