Image Classification
PyTorch
torch
resnet
diagrams
computer-vision
Ayamohamed commited on
Commit
2b4733c
·
verified ·
1 Parent(s): dcef806

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +14 -0
config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "resnet",
3
+ "num_labels": 2,
4
+ "labels": {
5
+ "0": "diagram",
6
+ "1": "none"
7
+ },
8
+ "input_size": [224, 224],
9
+ "normalization": {
10
+ "mean": [0.485, 0.456, 0.406],
11
+ "std": [0.229, 0.224, 0.225]
12
+ },
13
+ "framework": "pytorch"
14
+ }