nhellyercreek commited on
Commit
3b6cafb
·
verified ·
1 Parent(s): 4458e15

Upload model config

Browse files
Files changed (1) hide show
  1. config.json +33 -0
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "moon_cipher_detector",
3
+ "num_classes": 27,
4
+ "char_set": "A-Z and ~",
5
+ "weight_format": "PyTorch .pth (state_dict)",
6
+ "tensor_type": "F32",
7
+ "safetensors": false,
8
+ "models_in_repo": [
9
+ "end_to_end",
10
+ "classifier"
11
+ ],
12
+ "end_to_end": {
13
+ "architecture": "DeepCRNN",
14
+ "filename": "best_end_to_end.pth",
15
+ "input": "grayscale image",
16
+ "output": "decoded text (CTC)",
17
+ "params": 7856348,
18
+ "params_display": "7,856,348 params",
19
+ "size_mb": 30.0,
20
+ "tensor_type": "F32"
21
+ },
22
+ "classifier": {
23
+ "architecture": "MoonClassifier",
24
+ "filename": "best_classifier.pth",
25
+ "input_size": 128,
26
+ "input": "128x128 grayscale glyph crop",
27
+ "output": "class logits (27 classes)",
28
+ "params": 13616347,
29
+ "params_display": "13,616,347 params",
30
+ "size_mb": 51.98,
31
+ "tensor_type": "F32"
32
+ }
33
+ }