pokemon_classifier / config.json
IAmFlyingMonkey's picture
Update config.json
f49c85f verified
raw
history blame
No virus
1.51 kB
{
"_name_or_path": "imjeffhi/pokemon_classifier",
"architectures": [
"ViTForImageClassification"
],
"attention_probs_dropout_prob": 0.0,
"encoder_stride": 16,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.0,
"hidden_size": 768,
"id2label": {
"0": "Bulbasaur",
"1": "Ivysaur",
"2": "Venusaur",
"3": "Charmander",
"4": "Charmeleon",
"5": "Charizard",
"6": "Squirtle",
"7": "Wartortle",
"8": "Blastoise",
"9": "Caterpie",
"10": "Metapod",
"11": "Butterfree",
"12": "Weedle",
"13": "Kakuna",
"14": "Beedrill",
"15": "Pidgey",
"16": "Pidgeotto",
"17": "Pidgeot",
"18": "Rattata",
"19": "Raticate"
},
"image_size": 224,
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"Bulbasaur": "0",
"Ivysaur": "1",
"Venusaur": "2",
"Charmander": "3",
"Charmeleon": "4",
"Charizard": "5",
"Squirtle": "6",
"Wartortle": "7",
"Blastoise": "8",
"Caterpie": "9",
"Metapod": "10",
"Butterfree": "11",
"Weedle": "12",
"Kakuna": "13",
"Beedrill": "14",
"Pidgey": "15",
"Pidgeotto": "16",
"Pidgeot": "17",
"Rattata": "18",
"Raticate": "19"
},
"layer_norm_eps": 1e-12,
"model_type": "vit",
"num_attention_heads": 12,
"num_channels": 3,
"num_hidden_layers": 12,
"patch_size": 16,
"problem_type": "single_label_classification",
"qkv_bias": true,
"torch_dtype": "float32",
"transformers_version": "4.38.2"
}