fall_detection_model / config.json
popkek00's picture
Upload folder using huggingface_hub
4272ef9 verified
raw
history blame contribute delete
690 Bytes
{
"architectures": [
"ResNetForImageClassification"
],
"depths": [
2,
2,
2,
2
],
"downsample_in_bottleneck": false,
"downsample_in_first_stage": false,
"dtype": "float32",
"embedding_size": 64,
"hidden_act": "relu",
"hidden_sizes": [
64,
128,
256,
512
],
"id2label": {
"0": "no_fall",
"1": "fall"
},
"label2id": {
"fall": 1,
"no_fall": 0
},
"layer_type": "basic",
"model_type": "resnet",
"num_channels": 3,
"out_features": [
"stage4"
],
"out_indices": [
4
],
"stage_names": [
"stem",
"stage1",
"stage2",
"stage3",
"stage4"
],
"transformers_version": "5.0.0"
}