# train the model with the default config
python src/train.py
# train the model with the overridden parameter
python src/train.py model.model_name="torchvision.models/vit_l_16"
# train the model with the overridden parameter and add a new parameter
python src/train.py model.model_name="torch.hub/vit_l_16_v2" ++model.model_repo="repository"