Upload folder using huggingface_hub
Browse files- README.md +21 -0
- config.json +34 -0
- fingerprint.pb +3 -0
- saved_model.pb +3 -0
- variables/variables.data-00000-of-00001 +0 -0
- variables/variables.index +0 -0
README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: tensorflow
|
| 3 |
+
tags:
|
| 4 |
+
- tensorflow
|
| 5 |
+
- savedmodel
|
| 6 |
+
- image-classification
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Tiny TensorFlow SavedModel
|
| 10 |
+
|
| 11 |
+
A minimal CNN exported as SavedModel for testing.
|
| 12 |
+
|
| 13 |
+
**Structure**: SavedModel files are at repository root (not in a subdirectory)
|
| 14 |
+
- `saved_model.pb` - Model definition
|
| 15 |
+
- `variables/` - Model weights
|
| 16 |
+
- `config.json` - Model configuration
|
| 17 |
+
|
| 18 |
+
**Usage**:
|
| 19 |
+
- **Input**: float32 tensor [batch, 224, 224, 3]
|
| 20 |
+
- **Output**: logits [batch, 10]
|
| 21 |
+
- **Classes**: class_0 to class_9
|
config.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"TinyTFCNN"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "tensorflow_savedmodel",
|
| 6 |
+
"framework": "tensorflow",
|
| 7 |
+
"num_channels": 3,
|
| 8 |
+
"image_size": 224,
|
| 9 |
+
"num_labels": 10,
|
| 10 |
+
"id2label": {
|
| 11 |
+
"0": "class_0",
|
| 12 |
+
"1": "class_1",
|
| 13 |
+
"2": "class_2",
|
| 14 |
+
"3": "class_3",
|
| 15 |
+
"4": "class_4",
|
| 16 |
+
"5": "class_5",
|
| 17 |
+
"6": "class_6",
|
| 18 |
+
"7": "class_7",
|
| 19 |
+
"8": "class_8",
|
| 20 |
+
"9": "class_9"
|
| 21 |
+
},
|
| 22 |
+
"label2id": {
|
| 23 |
+
"class_0": 0,
|
| 24 |
+
"class_1": 1,
|
| 25 |
+
"class_2": 2,
|
| 26 |
+
"class_3": 3,
|
| 27 |
+
"class_4": 4,
|
| 28 |
+
"class_5": 5,
|
| 29 |
+
"class_6": 6,
|
| 30 |
+
"class_7": 7,
|
| 31 |
+
"class_8": 8,
|
| 32 |
+
"class_9": 9
|
| 33 |
+
}
|
| 34 |
+
}
|
fingerprint.pb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35e984cc46cfd1607901f6b7b9e1ad0337b5bdb2dd963ca25e5381b7478690bf
|
| 3 |
+
size 97
|
saved_model.pb
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d99f4dbbc72ab6a8c281f6baa1f7649c8930b2b0f1f6e2d1750d1774423276ab
|
| 3 |
+
size 47105
|
variables/variables.data-00000-of-00001
ADDED
|
Binary file (44.8 kB). View file
|
|
|
variables/variables.index
ADDED
|
Binary file (834 Bytes). View file
|
|
|