lucyknada commited on
Commit
cc41e26
·
verified ·
1 Parent(s): 1b1f6a3

Upload ./README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - tiiuae/Falcon3-10B-Base
4
+ library_name: transformers
5
+ license: other
6
+ tags:
7
+ - mergekit
8
+ - merge
9
+
10
+ ---
11
+ ### exl2 quant (measurement.json in main branch)
12
+ ---
13
+ ### check revisions for quants
14
+ ---
15
+
16
+ <img src="https://huggingface.co/arcee-train/Virtuoso-Lite/resolve/main/virtuoso-lite.jpg" alt="Virtuoso-Lite Logo" style="display: block; margin: 0 auto;" />
17
+
18
+ **Virtuoso-Lite (10B)** is our next-generation, 10-billion-parameter language model based on the Llama-3 architecture. It is distilled from Deepseek-v3 using ~1.1B tokens/logits, allowing it to achieve robust performance at a significantly reduced parameter count compared to larger models. Despite its compact size, Virtuoso-Lite excels in a variety of tasks, demonstrating advanced reasoning, code generation, and mathematical problem-solving capabilities.
19
+
20
+ ### GGUF
21
+ Quantizations available [here](https://huggingface.co/arcee-ai/Virtuoso-Lite-GGUF)
22
+
23
+ ### Model Details
24
+ - **Architecture Base:** Falcon-10B (based on Llama-3)
25
+ - **Parameter Count:** 10B
26
+ - **Tokenizer:**
27
+ - Initially integrated with Deepseek-v3 tokenizer for logit extraction.
28
+ - Final alignment uses the Llama-3 tokenizer, with specialized “tokenizer surgery” for cross-architecture compatibility.
29
+ - **Distillation Data:**
30
+ - ~1.1B tokens/logits from Deepseek-v3’s training data.
31
+ - Logit-level distillation using a proprietary “fusion merging” approach for maximum fidelity.
32
+ - **License:** [falcon-llm-license](https://falconllm.tii.ae/falcon-terms-and-conditions.html)
33
+
34
+ ### Background on Deepseek Distillation
35
+ Deepseek-v3 serves as the teacher model, from which we capture logits across billions of tokens. Rather than standard supervised fine-tuning, Virtuoso-Lite applies a full logit-level replication to preserve the most crucial insights from the teacher. This approach enables:
36
+ - Strong performance on technical/scientific queries
37
+ - Enhanced code generation and debugging
38
+ - Improved consistency in math-intensive tasks
39
+
40
+ ### Intended Use Cases
41
+ - **Chatbots & Virtual Assistants**
42
+ - **Lightweight Enterprise Data Analysis**
43
+ - **Research Prototypes & Proofs of Concept**
44
+ - **STEM Educational Tools (where smaller footprint is advantageous)**
45
+
46
+ ### Evaluations
47
+ <img src="https://huggingface.co/arcee-train/Virtuoso-Lite/resolve/main/Benchmarks.png" alt="Virtuoso-Lite Logo" style="display: block; margin: 0 auto;" />
48
+
49
+
50
+ ### How to Use
51
+ Below is a sample code snippet using `transformers`:
52
+
53
+ ```python
54
+ from transformers import AutoTokenizer, AutoModelForCausalLM
55
+
56
+ model_name = "arcee-ai/virtuoso-lite"
57
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
58
+ model = AutoModelForCausalLM.from_pretrained(model_name)
59
+
60
+ prompt = "Provide a concise summary of quantum entanglement."
61
+ inputs = tokenizer(prompt, return_tensors="pt")
62
+ outputs = model.generate(**inputs, max_new_tokens=150)
63
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
64
+ ```
65
+
66
+ ### Training & Fine-Tuning
67
+ - **Initial Training:** Began with Falcon-10B, optimized for large-scale text ingestion.
68
+ - **Distillation & Merging:**
69
+ - Trained on ~1.1B tokens/logits from Deepseek-v3.
70
+ - Employed “fusion merging” to capture detailed teacher insights.
71
+ - Final step included DPO to enhance alignment and mitigate hallucinations.
72
+ - **Future Developments:** We plan to incorporate additional R1 distillations to further improve specialized performance and reduce model footprint.
73
+
74
+ ### Performance
75
+ Virtuoso-Lite demonstrates strong results across multiple benchmarks (e.g., BBH, MMLU-PRO, MATH), often standing its ground against models with higher parameter counts. This efficiency is largely credited to logit-level distillation, which compresses the teacher model’s capabilities into a more parameter-friendly package.
76
+
77
+ ### Limitations
78
+ - **Context Length:** 128k Tokens (may vary depending on the final tokenizer settings and system resources).
79
+ - **Knowledge Cut-off:** Training data may not reflect the latest events or developments beyond June 2024.
80
+
81
+ ### Ethical Considerations
82
+ - **Content Generation Risks:** Like any language model, Virtuoso-Lite can generate potentially harmful or biased content if prompted in certain ways.
83
+ -
84
+ ### License
85
+ **Virtuoso-Lite (10B)** is released under the [falcon-llm-license License](https://falconllm.tii.ae/falcon-terms-and-conditions.html). You are free to use, modify, and distribute this model in both commercial and non-commercial applications, subject to the terms and conditions of the license.
86
+
87
+ If you have questions or would like to share your experiences using Virtuoso-Lite (10B), please connect with us on social media. We’re excited to see what you build—and how this model helps you innovate!