CoolFace
Modelpublic

Harsha901/swinv2-tiny-human-pose-classification-model

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes10downloads
config.json93 linesDownload Raw Back to root
1{2  "architectures": [3    "Swinv2ForImageClassification"4  ],5  "attention_probs_dropout_prob": 0.0,6  "depths": [7    2,8    2,9    6,10    211  ],12  "drop_path_rate": 0.1,13  "embed_dim": 96,14  "encoder_stride": 32,15  "hidden_act": "gelu",16  "hidden_dropout_prob": 0.0,17  "hidden_size": 768,18  "id2label": {19    "0": "calling",20    "1": "clapping",21    "2": "cycling",22    "3": "dancing",23    "4": "drinking",24    "5": "eating",25    "6": "fighting",26    "7": "hugging",27    "8": "laughing",28    "9": "listening_to_music",29    "10": "running",30    "11": "sitting",31    "12": "sleeping",32    "13": "texting",33    "14": "using_laptop"34  },35  "image_size": 256,36  "initializer_range": 0.02,37  "label2id": {38    "calling": 0,39    "clapping": 1,40    "cycling": 2,41    "dancing": 3,42    "drinking": 4,43    "eating": 5,44    "fighting": 6,45    "hugging": 7,46    "laughing": 8,47    "listening_to_music": 9,48    "running": 10,49    "sitting": 11,50    "sleeping": 12,51    "texting": 13,52    "using_laptop": 1453  },54  "layer_norm_eps": 1e-05,55  "mlp_ratio": 4.0,56  "model_type": "swinv2",57  "num_channels": 3,58  "num_heads": [59    3,60    6,61    12,62    2463  ],64  "num_layers": 4,65  "out_features": [66    "stage4"67  ],68  "out_indices": [69    470  ],71  "patch_size": 4,72  "path_norm": true,73  "pretrained_window_sizes": [74    0,75    0,76    0,77    078  ],79  "problem_type": "single_label_classification",80  "qkv_bias": true,81  "stage_names": [82    "stem",83    "stage1",84    "stage2",85    "stage3",86    "stage4"87  ],88  "torch_dtype": "float32",89  "transformers_version": "4.52.4",90  "use_absolute_embeddings": false,91  "window_size": 1692}93