Skip to content

Commit 815422c

Browse files
committed
Fix comment
1 parent 2878361 commit 815422c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def predict_final_loss(losses, max_epochs):
100100
y = np.array(losses)
101101
t = np.arange(len(y))
102102

103-
# 첫번째 값 기준으로 decay fitting
103+
# Fit a linear model to the log of the losses
104104
y_transformed = np.log(y)
105105
K, log_A = np.polyfit(t, y_transformed, 1)
106106
A = np.exp(log_A)

0 commit comments

Comments
 (0)