documentation
dict
validate_training
bool
val_split_mode
string
val_data_root
null
val_split_proportion
float64
stabilize_training_loss
bool
stabilize_split_proportion
float64
every_n_epochs
int64
seed
int64
{ "validate_training": "If true, validate the training using a separate set of image/caption pairs, and log the results as `loss/val`. The curve will trend downwards as the model trains, then flatten and start to trend upwards as effective training finishes and the model begins to overfit the training data. Very useful for preventing overfitting, for checking if your learning rate is too low or too high, and for deciding when to stop training.", "val_split_mode": "Either 'automatic' or 'manual', ignored if validate_training is false. 'automatic' val_split_mode picks a random subset of the training set (the number of items is controlled by val_split_proportion) and removes them from training to use as a validation set. 'manual' val_split_mode lets you provide your own folder of validation items (images+captions), specified using 'val_data_root'.", "val_split_proportion": "For 'automatic' val_split_mode, how much of the train dataset that should be removed to use for validation. Typical values are 0.15-0.2 (15-20% of the total dataset). Higher is more accurate but slower.", "val_data_root": "For 'manual' val_split_mode, the path to a folder containing validation items.", "stabilize_training_loss": "If true, stabilize the train loss curves for `loss/epoch` and `loss/log step` by re-calculating training loss with a fixed random seed, and log the results as `loss/train-stabilized`. This more clearly shows the training progress, but it is not enough alone to tell you if you're overfitting.", "stabilize_split_proportion": "For stabilize_training_loss, the proportion of the train dataset to overlap for stabilizing the train loss graph. Typical values are 0.15-0.2 (15-20% of the total dataset). Higher is more accurate but slower.", "every_n_epochs": "How often to run validation (1=every epoch).", "seed": "The seed to use when running validation and stabilization passes." }
true
automatic
null
0.15
true
0.15
1
555
README.md exists but content is empty. Use the Edit dataset card button to edit it.
Downloads last month
1