# https://lightning.ai/docs/pytorch/stable/api/lightning.pytorch.callbacks.EarlyStopping.htmlearly_stopping:_target_:lightning.pytorch.callbacks.EarlyStoppingmonitor:???# quantity to be monitored, must be specified !!!min_delta:0.# minimum change in the monitored quantity to qualify as an improvementpatience:3# number of checks with no improvement after which training will be stoppedverbose:False# verbosity modemode:"min"# "max" means higher metric value is better, can be also "min"strict:True# whether to crash the training if monitor is not found in the validation metricscheck_finite:True# when set True, stops training when the monitor becomes NaN or infinitestopping_threshold:null# stop training immediately once the monitored quantity reaches this thresholddivergence_threshold:null# stop training as soon as the monitored quantity becomes worse than this thresholdcheck_on_train_epoch_end:null# whether to run early stopping at the end of the training epoch# log_rank_zero_only: False # this keyword argument isn't available in stable version