umaimaparveennineteen commited on
Commit
fa61f8f
·
verified ·
1 Parent(s): 93f801d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - minicpm
5
+ - intel
6
+ - optimum-intel
7
+ - tiny-random
8
+ - openvino
9
+ ---
10
+
11
+ # Tiny-Random MiniCPM-o-2_6 for Testing
12
+
13
+ This is a minimal, randomly initialized version of the **MiniCPM-o-2_6** architecture. It is designed specifically for **CI/CD testing** and unit tests in libraries like `optimum-intel`.
14
+
15
+ ## Model Details
16
+ - **Architecture:** MiniCPMForCausalLM
17
+ - **Hidden Size:** 24
18
+ - **Layers:** 1
19
+ - **Precision:** BF16
20
+ - **Total Size:** ~5.9 MB (under the 6MB requirement)
21
+
22
+ ## Intended Use
23
+ This model is NOT for actual inference or text generation. It is used to verify that integration pipelines (like OpenVINO conversion and quantization) are working correctly without the need to download several gigabytes of data.
24
+
25
+ ## Verification
26
+ The model has been verified to:
27
+ 1. Load via `AutoModelForCausalLM`.
28
+ 2. Perform a successful forward pass.
29
+ 3. Fit within the strict 6MB size limit for lightweight testing suites.