Not sure if somebody has asked this before. Let me give an example. Say, I train a model that will save its state after each epoch. Each time it finishes an epoch, it will overwrite the previous state. So on a hard drive, the size of the saved state doesn't change much. Are these writing operations counted towards the 1GB quota? This is important because I'd like to save my model training constantly so that I can resume it later. The server is getting really crowded. I don't expect to finish a model training in a single shot.

Created by Li Shen thefaculty
Hi, > Each time it finishes an epoch, it will overwrite the previous state. So on a hard drive, the size of the saved state doesn't change much. Are these writing operations counted towards the 1GB quota? No, these operations are not counted. The system only counts the data that you can retrieve, i.e. the content of `/modelState` at the time your training submission ends.

How is the 1GB per day for modelState calculated? page is loading…