Enes commited on
Commit
43e2cda
·
verified ·
1 Parent(s): 9a780ea

Add Hub download stats query config

Browse files
Files changed (1) hide show
  1. config.json +43 -0
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "autolens_image_classifier",
3
+ "architectures": [
4
+ "AutoLensImageClassifier"
5
+ ],
6
+ "library_name": "onnxruntime",
7
+ "pipeline_tag": "image-classification",
8
+ "task": "image-classification",
9
+ "base_model_name": "efficientnet_b2",
10
+ "backbone_library": "timm",
11
+ "num_labels": 8,
12
+ "id2label": {
13
+ "0": "SUV",
14
+ "1": "VAN",
15
+ "2": "STATION WAGON",
16
+ "3": "MICRO",
17
+ "4": "OPEN WHEEL / F1",
18
+ "5": "SEDAN",
19
+ "6": "HATCHBACK",
20
+ "7": "PICK UP"
21
+ },
22
+ "label2id": {
23
+ "SUV": 0,
24
+ "VAN": 1,
25
+ "STATION WAGON": 2,
26
+ "MICRO": 3,
27
+ "OPEN WHEEL / F1": 4,
28
+ "SEDAN": 5,
29
+ "HATCHBACK": 6,
30
+ "PICK UP": 7
31
+ },
32
+ "image_size": 224,
33
+ "exported_files": [
34
+ "model.onnx",
35
+ "model.safetensors"
36
+ ],
37
+ "download_stats": {
38
+ "purpose": "Query file for Hugging Face Hub download counting while keeping the repository private.",
39
+ "counted_by_hub": true,
40
+ "source_doc": "https://huggingface.co/docs/hub/models-download-stats"
41
+ },
42
+ "source_metadata_file": "metadata.json"
43
+ }