menasi11 commited on
Commit
2104dbe
·
verified ·
1 Parent(s): 40c3328

Upload /content/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. content/config.json +32 -0
content/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "resnet18",
3
+ "framework": "pytorch",
4
+ "task": "image-classification",
5
+ "num_classes": 10,
6
+ "classifier": {
7
+ "type": "Sequential",
8
+ "layers": [
9
+ {
10
+ "Linear": [
11
+ 512,
12
+ 120
13
+ ]
14
+ },
15
+ "ReLU",
16
+ {
17
+ "Dropout": 0.2
18
+ },
19
+ {
20
+ "Linear": [
21
+ 120,
22
+ 10
23
+ ]
24
+ }
25
+ ]
26
+ },
27
+ "input_size": [
28
+ 3,
29
+ 224,
30
+ 224
31
+ ]
32
+ }