Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
tags:
|
| 4 |
+
- minicpm-o
|
| 5 |
+
- tiny-random
|
| 6 |
+
- openvino
|
| 7 |
+
- optimum-intel
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Tiny Random MiniCPM-o-2.6
|
| 11 |
+
|
| 12 |
+
This is a tiny, randomly initialized version of the **MiniCPM-o-2.6** model, designed specifically for CI/CD testing and integration validation in `optimum-intel`.
|
| 13 |
+
|
| 14 |
+
### Model Details
|
| 15 |
+
- **Weight Size:** 5.47 MB
|
| 16 |
+
- **Task:** image-text-to-text (Visual Causal LM)
|
| 17 |
+
- **Use Case:** This model is intended for testing OpenVINO export and inference pipelines without the overhead of the full-scale model weights.
|
| 18 |
+
|
| 19 |
+
### How to use
|
| 20 |
+
```python
|
| 21 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 22 |
+
|
| 23 |
+
model_id = "umaimaparveennineteen/tiny-random-MiniCPM-o-2_6"
|
| 24 |
+
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
|