Upload README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
inference: false
|
4 |
+
tags: [green, llmware-rag, p1, ov]
|
5 |
+
---
|
6 |
+
|
7 |
+
# bling-tiny-llama-ov
|
8 |
+
|
9 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
10 |
+
|
11 |
+
**bling-tiny-llama-ov** is an OpenVino int4 quantized version of BLING Tiny-Llama 1B, providing a very fast, very small inference implementation, optimized for AI PCs using Intel GPU, CPU and NPU.
|
12 |
+
|
13 |
+
[**bling-tiny-llama**](https://huggingface.co/llmware/bling-tiny-llama-v0) is a fact-based question-answering model, optimized for complex business documents.
|
14 |
+
|
15 |
+
Get started right away
|
16 |
+
|
17 |
+
1. Install dependencies
|
18 |
+
|
19 |
+
```
|
20 |
+
pip3 install llmware
|
21 |
+
pip3 install openvino
|
22 |
+
pip3 install openvino_genai
|
23 |
+
```
|
24 |
+
|
25 |
+
2. Hello World
|
26 |
+
|
27 |
+
```
|
28 |
+
from llmware.models import ModelCatalog
|
29 |
+
model = ModelCatalog().load_model("bling-tiny-llama-ov")
|
30 |
+
response = model.inference("The stock price is $45.\nWhat is the stock price?")
|
31 |
+
print("response: ", response)
|
32 |
+
```
|
33 |
+
|
34 |
+
Get started right away with [OpenVino](https://github.com/openvinotoolkit/openvino)
|
35 |
+
|
36 |
+
Looking for AI PC solutions and demos, contact us at [llmware](https://www.llmware.ai)
|
37 |
+
|
38 |
+
|
39 |
+
### Model Description
|
40 |
+
|
41 |
+
- **Developed by:** llmware
|
42 |
+
- **Model type:** tinyllama
|
43 |
+
- **Parameters:** 1.1 billion
|
44 |
+
- **Model Parent:** llmware/bling-tiny-llama-v0
|
45 |
+
- **Language(s) (NLP):** English
|
46 |
+
- **License:** Apache 2.0
|
47 |
+
- **Uses:** Fact-based question-answering
|
48 |
+
- **RAG Benchmark Accuracy Score:** 86.5
|
49 |
+
- **Quantization:** int4
|
50 |
+
|
51 |
+
|
52 |
+
## Model Card Contact
|
53 |
+
|
54 |
+
[llmware on hf](https://www.huggingface.co/llmware)
|
55 |
+
|
56 |
+
[llmware website](https://www.llmware.ai)
|