forked from foundation-model-stack/fms-hf-tuning
-
Notifications
You must be signed in to change notification settings - Fork 5
/
filelogging_tracker.py
95 lines (79 loc) · 3.71 KB
/
filelogging_tracker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Copyright The FMS HF Tuning Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Standard
from datetime import datetime
import json
import logging
import os
# Third Party
from transformers import TrainerCallback
# Local
from .tracker import Tracker
from tuning.config.tracker_configs import FileLoggingTrackerConfig
class FileLoggingCallback(TrainerCallback):
"""Exports metrics, e.g., training loss to a file in the checkpoint directory."""
training_logs_filename = "training_logs.jsonl"
def __init__(self, logs_filename=None):
self.training_logs_filename = logs_filename
def on_log(self, args, state, control, logs=None, **kwargs):
"""Checks if this log contains keys of interest, e.g., loss, and if so, creates
training_logs.jsonl in the model output dir (if it doesn't already exist),
appends the subdict of the log & dumps the file.
"""
# All processes get the logs from this node; only update from process 0.
if not state.is_world_process_zero:
return
log_file_path = os.path.join(args.output_dir, self.training_logs_filename)
if logs is not None and "loss" in logs and "epoch" in logs:
self._track_loss("loss", "training_loss", log_file_path, logs, state)
elif logs is not None and "eval_loss" in logs and "epoch" in logs:
self._track_loss("eval_loss", "validation_loss", log_file_path, logs, state)
def _track_loss(self, loss_key, log_name, log_file, logs, state):
try:
# Take the subdict of the last log line; if any log_keys aren't part of this log
# object, assume this line is something else, e.g., train completion, and skip.
log_obj = {
"name": log_name,
"data": {
"epoch": round(logs["epoch"], 2),
"step": state.global_step,
"value": logs[loss_key],
"timestamp": datetime.isoformat(datetime.now()),
},
}
except KeyError:
return
# append the current log to the jsonl file
with open(log_file, "a", encoding="utf-8") as f:
f.write(f"{json.dumps(log_obj, sort_keys=True)}\n")
class FileLoggingTracker(Tracker):
def __init__(self, tracker_config: FileLoggingTrackerConfig):
"""Tracker which encodes callback to record metric, e.g., training loss
to a file in the checkpoint directory.
Args:
tracker_config (FileLoggingTrackerConfig): An instance of file logging tracker
which contains the location of file where logs are recorded.
"""
super().__init__(name="file_logger", tracker_config=tracker_config)
# Get logger with root log level
self.logger = logging.getLogger()
def get_hf_callback(self):
"""Returns the FileLoggingCallback object associated with this tracker.
Returns:
FileLoggingCallback: The file logging callback which inherits
transformers.TrainerCallback and records the metrics to a file.
"""
file = self.config.training_logs_filename
self.hf_callback = FileLoggingCallback(logs_filename=file)
return self.hf_callback