Upload 3 files
Browse files- README.md +36 -0
- config.json +10 -0
- model.onnx +3 -0
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- onnx
|
5 |
+
- onnxruntime
|
6 |
+
- image-classification # or text-classification, object-detection, ner, etc.
|
7 |
+
- your-custom-tag
|
8 |
+
---
|
9 |
+
|
10 |
+
# 🧠 Model Name
|
11 |
+
|
12 |
+
This is an ONNX model for **[task]**, trained/fine-tuned using [framework/training pipeline].
|
13 |
+
|
14 |
+
## 🚀 Model Details
|
15 |
+
|
16 |
+
- **Task**: Image Classification
|
17 |
+
- **Model Format**: ONNX
|
18 |
+
- **Input Shape**: (1, 3, 224, 224)
|
19 |
+
- **Output Shape**: (1, 1000)
|
20 |
+
- **Framework**: ONNX Runtime
|
21 |
+
- **Model Size**: ~XX MB
|
22 |
+
|
23 |
+
## 📥 Inputs
|
24 |
+
|
25 |
+
- `input`: A tensor of shape `(1, 3, 224, 224)`
|
26 |
+
- Typically a preprocessed image (RGB, normalized).
|
27 |
+
|
28 |
+
## 📤 Outputs
|
29 |
+
|
30 |
+
- `output`: A tensor of shape `(1, 1000)`
|
31 |
+
- Softmax scores for 1000 classes (or class logits).
|
32 |
+
|
33 |
+
## 🏷️ Labels
|
34 |
+
|
35 |
+
```json
|
36 |
+
["class_0", "class_1", "class_2", "..."]
|
config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "onnx",
|
3 |
+
"framework": "onnxruntime",
|
4 |
+
"task": "text-classification", // or "text-classification", "ner", etc.
|
5 |
+
"input_names": ["input"],
|
6 |
+
"output_names": ["output"],
|
7 |
+
"input_shape": [1, 3, 224, 224], // update this based on your model
|
8 |
+
"output_shape": [1, 1000], // update based on your model
|
9 |
+
"labels": ["label", "sentence"] // optional, especially useful for classification
|
10 |
+
}
|
model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dfd775251d3e1e9f03e5972b2d030923607123da001eb16b03e4924d84d35506
|
3 |
+
size 35222
|