common_config={ 'pretrained_vit_model': 'google/vit-base-patch16-224-in21k' } train_config = { 'epochs': 20, 'max_images_real':1900, 'classes':12, 'hindi_path_real': '', 'english_path_real':'', 'gujarati_path_real':'', 'punjabi_path_real':'', 'assamese_path_real':'', 'bengali_path_real':'', 'kannada_path_real':'', 'malayalam_path_real':'', 'marathi_path_real':'', 'odia_path_real':'', 'tamil_path_real':'', 'telugu_path_real':'', 'checkpoints_dir': '' } train_config.update(common_config) test_config = { 'reload_model': '', 'max_images':2000, 'classes':12, 'hindi_path_real': '', 'english_path_real':'', 'gujarati_path_real':'', 'punjabi_path_real':'', 'assamese_path_real':'', 'bengali_path_real':'', 'kannada_path_real':'', 'malayalam_path_real':'', 'marathi_path_real':'', 'odia_path_real':'', 'tamil_path_real':'', 'telugu_path_real':'', } test_config.update(common_config) infer_config = { 'model_path':'', 'img_path': 'image_path', 'folder_path':'', 'csv_path':'', } infer_config.update(common_config)