(self, *args, **kwargs)
| 865 | self._viz = visdom.Visdom(server="http://" + server, port=port) |
| 866 | |
| 867 | def log(self, *args, **kwargs): |
| 868 | raise NotImplementedError( |
| 869 | "log not implemented for BaseVisdomLogger, which is an abstract class.") |
| 870 | |
| 871 | def _viz_prototype(self, vis_fn): |
| 872 | ''' Outputs a function which will log the arguments to Visdom in an appropriate way. |