pjdevelop commited on
Commit
ae946a2
·
verified ·
1 Parent(s): fa725a8

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +50 -6
config.json CHANGED
@@ -1,8 +1,52 @@
1
  {
2
- "model_type": "custom",
3
- "model_name": "dinov2-svm-embeddings-currency_indian",
4
- "model_version": "1.0",
5
- "description": "A model for classifying Indian currency notes using ViT and SVM.",
6
- "input_size": 224,
7
- "output_labels": ["1", "2", "5", "10", "20", "50", "100", "200", "500", "2000"]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  }
 
1
  {
2
+ "_name_or_path": "pjdevelop/dinov2-svm-embeddings-currency_indian",
3
+ "architectures": [
4
+ "ViTForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "encoder_stride": 16,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "1",
13
+ "1": "10",
14
+ "2": "100",
15
+ "3": "2",
16
+ "4": "20",
17
+ "5": "200",
18
+ "6": "2000",
19
+ "7": "5",
20
+ "8": "50",
21
+ "9": "500",
22
+ "10": "Coin",
23
+ "11": "Rupee"
24
+ },
25
+ "image_size": 224,
26
+ "initializer_range": 0.02,
27
+ "intermediate_size": 3072,
28
+ "label2id": {
29
+ "1": 0,
30
+ "10": 1,
31
+ "100": 2,
32
+ "2": 3,
33
+ "20": 4,
34
+ "200": 5,
35
+ "2000": 6,
36
+ "5": 7,
37
+ "50": 8,
38
+ "500": 9,
39
+ "Coin": 10,
40
+ "Rupee": 11
41
+ },
42
+ "layer_norm_eps": 1e-12,
43
+ "model_type": "vit",
44
+ "num_attention_heads": 12,
45
+ "num_channels": 3,
46
+ "num_hidden_layers": 12,
47
+ "patch_size": 16,
48
+ "problem_type": "single_label_classification",
49
+ "qkv_bias": true,
50
+ "torch_dtype": "float32",
51
+ "transformers_version": "4.28.1"
52
  }