smdebug/tensorflow/keras.py [1027:1038]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if self._is_not_supported():
            return

        self.record_trace_events(
            training_phase="Step:" + str(mode),
            op_name="Step:" + str(mode),
            phase="X",
            timestamp=self.start,  # this is start time for step
            duration=time.time() - self.start,
            pid=os.getpid(),
            step_num=str(self.mode_steps[mode]),
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



smdebug/tensorflow/keras.py [1396:1407]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if self._is_not_supported():
            return

        self.record_trace_events(
            training_phase="Step:" + str(mode),
            op_name="Step:" + str(mode),
            phase="X",
            timestamp=self.start,  # this is start time for step
            duration=time.time() - self.start,
            pid=os.getpid(),
            step_num=str(self.mode_steps[mode]),
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



