(self, str)
| 73 | self.external_loggers = [] |
| 74 | |
| 75 | def logstr(self, str): |
| 76 | with open(self.filename, "a") as f: |
| 77 | f.write(str + "\n") |
| 78 | f.close() |
| 79 | logging.getLogger("experiment_logger").info(str) |
| 80 | |
| 81 | def log(self, input_count, batch_count, additional_values): |
| 82 | logdict = OrderedDict() |