File size: 484 Bytes
4cf9519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
library_name: tensorflow
tags:
- tensorflow
- savedmodel
- image-classification
---
# Tiny TensorFlow SavedModel
A minimal CNN exported as SavedModel for testing.
**Structure**: SavedModel files are at repository root (not in a subdirectory)
- `saved_model.pb` - Model definition
- `variables/` - Model weights
- `config.json` - Model configuration
**Usage**:
- **Input**: float32 tensor [batch, 224, 224, 3]
- **Output**: logits [batch, 10]
- **Classes**: class_0 to class_9
|