Triangle104 commited on
Commit
b641860
·
verified ·
1 Parent(s): 2e53976

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md CHANGED
@@ -11,6 +11,68 @@ tags:
11
  This model was converted to GGUF format from [`arcee-ai/Virtuoso-Small-v2`](https://huggingface.co/arcee-ai/Virtuoso-Small-v2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
12
  Refer to the [original model card](https://huggingface.co/arcee-ai/Virtuoso-Small-v2) for more details on the model.
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ## Use with llama.cpp
15
  Install llama.cpp through brew (works on Mac and Linux)
16
 
 
11
  This model was converted to GGUF format from [`arcee-ai/Virtuoso-Small-v2`](https://huggingface.co/arcee-ai/Virtuoso-Small-v2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
12
  Refer to the [original model card](https://huggingface.co/arcee-ai/Virtuoso-Small-v2) for more details on the model.
13
 
14
+ ---
15
+ Virtuoso-Small-v2 (14B) is our next-generation, 14-billion-parameter language model that builds upon the original Virtuoso-Small architecture. This version is distilled from Deepseek-v3, leveraging an expanded dataset of 5B+ tokens worth of logits.
16
+ Model Details
17
+
18
+ Architecture Base: Qwen-2.5-14B
19
+ Parameter Count: 14B
20
+ Tokenizer:
21
+ Initially integrated with Deepseek-v3 tokenizer for logit extraction.
22
+ Final alignment uses the Qwen tokenizer, using specialized “tokenizer surgery” for cross-architecture compatibility.
23
+ Distillation Data:
24
+ ~1.1B tokens/logits from Deepseek-v3’s training data.
25
+ Logit-level distillation using a proprietary “fusion merging” approach afterwards for maximum fidelity.
26
+ License: Apache-2.0
27
+
28
+ Background on Deepseek Distillation
29
+
30
+ Deepseek-v3 serves as the teacher model, from which we capture logits across billions of tokens. Rather than standard supervised fine-tuning, we apply a full logit-level replication. This ensures more precise transference of knowledge, including advanced reasoning in:
31
+
32
+ Technical and scientific queries
33
+ Complex code generation
34
+ Mathematical problem-solving
35
+
36
+ How to Use
37
+
38
+ Below is a sample code snippet using transformers:
39
+
40
+ from transformers import AutoTokenizer, AutoModelForCausalLM
41
+
42
+ model_name = "arcee-ai/Virtuoso-Small-v2"
43
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
44
+ model = AutoModelForCausalLM.from_pretrained(model_name)
45
+
46
+ prompt = "Provide a concise summary of quantum entanglement."
47
+ inputs = tokenizer(prompt, return_tensors="pt")
48
+ outputs = model.generate(**inputs, max_new_tokens=150)
49
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
50
+
51
+ Training & Fine-Tuning
52
+
53
+ Initial Training: Began with Qwen-14B, calibrated for large-scale text ingestion.
54
+ Distillation & Merging:
55
+ Trained on ~1.1B tokens worth of Deepseek-v3 logits.
56
+ Employed “fusion merging” to retain as much teacher expertise as possible.
57
+ Final step included DPO to improve alignment and reduce model hallucinations.
58
+ Continuous Development: Additional R1 distillations are in progress to further enhance performance and specialization.
59
+
60
+ Limitations
61
+
62
+ Context Length: 128k Tokens
63
+ Knowledge Cut-off: Training data may not reflect the latest events or developments, leading to gaps in current knowledge beyond June 2024.
64
+
65
+ Ethical Considerations
66
+
67
+ Content Generation Risks: Like any language model, Virtuoso-Small-v2 can potentially generate harmful or biased content if prompted in certain ways.
68
+
69
+ License
70
+
71
+ Virtuoso-Small-v2 (14B) is released under the Apache-2.0 License. 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.
72
+
73
+ If you have questions or would like to share your experiences using these models, please connect with us on social media. We’re excited to see what you build—and how these models help you innovate!
74
+
75
+ ---
76
  ## Use with llama.cpp
77
  Install llama.cpp through brew (works on Mac and Linux)
78