How to avoiding having too large checkpoints in CLU? #1221
-
Original question by @linlu-qiu: Hi, CLU question: i'm using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answer by @Marvin182: the |
Beta Was this translation helpful? Give feedback.
Answer by @Marvin182:
the
ckpt-*.data
files contain the state of your input pipeline. This is important if you care about deterministic training. If not you can stop checkpointing the input iterator or switch toflax.training.checkpoints
(which will not checkpoint the input pipeline).