Sajjad-Ali-Shah commited on
Commit
5b229a9
·
verified ·
1 Parent(s): 38e1d1b

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +67 -0
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "lstm",
3
+ "task": "sign-language-detection",
4
+ "framework": "tensorflow",
5
+ "input_shape": [
6
+ 50,
7
+ 20
8
+ ],
9
+ "num_classes": 36,
10
+ "classes": [
11
+ "0",
12
+ "1",
13
+ "2",
14
+ "3",
15
+ "4",
16
+ "5",
17
+ "6",
18
+ "7",
19
+ "8",
20
+ "9",
21
+ "a",
22
+ "b",
23
+ "c",
24
+ "d",
25
+ "e",
26
+ "f",
27
+ "g",
28
+ "h",
29
+ "i",
30
+ "j",
31
+ "k",
32
+ "l",
33
+ "m",
34
+ "n",
35
+ "o",
36
+ "p",
37
+ "q",
38
+ "r",
39
+ "s",
40
+ "t",
41
+ "u",
42
+ "v",
43
+ "w",
44
+ "x",
45
+ "y",
46
+ "z"
47
+ ],
48
+ "features": {
49
+ "type": "hand_landmark_distances",
50
+ "feature_count": 20,
51
+ "description": "Distance-based features from MediaPipe hand landmarks"
52
+ },
53
+ "preprocessing": {
54
+ "mediapipe_model": "hands",
55
+ "max_num_hands": 1,
56
+ "min_detection_confidence": 0.5,
57
+ "sequence_length": 50,
58
+ "normalization": "l2"
59
+ },
60
+ "training": {
61
+ "optimizer": "adam",
62
+ "loss": "categorical_crossentropy",
63
+ "metrics": [
64
+ "accuracy"
65
+ ]
66
+ }
67
+ }