IntentClassifier / README.md
nvkhanh86's picture
Upload 3 files
5a491ae verified
|
Raw
History Blame Contribute Delete
800 Bytes
---
license: mit
tags:
- onnx
- onnxruntime
- image-classification # or text-classification, object-detection, ner, etc.
- your-custom-tag
---
# ๐Ÿง  Model Name
This is an ONNX model for **[task]**, trained/fine-tuned using [framework/training pipeline].
## ๐Ÿš€ Model Details
- **Task**: Image Classification
- **Model Format**: ONNX
- **Input Shape**: (1, 3, 224, 224)
- **Output Shape**: (1, 1000)
- **Framework**: ONNX Runtime
- **Model Size**: ~XX MB
## ๐Ÿ“ฅ Inputs
- `input`: A tensor of shape `(1, 3, 224, 224)`
- Typically a preprocessed image (RGB, normalized).
## ๐Ÿ“ค Outputs
- `output`: A tensor of shape `(1, 1000)`
- Softmax scores for 1000 classes (or class logits).
## ๐Ÿท๏ธ Labels
```json
["class_0", "class_1", "class_2", "..."]