Default argument '-1'

Hi there,

What exactly “-1” mean as part of the default argument for Huggingface?
e.g., max_steps = -1 like automatically calculates #of steps from provided epochs?

In Pytorch setting, -1 means automatically inferring the other dimension in tensor reshaping

some_tensor.view(3, -1)

Thanks!