prithivMLmods commited on
Commit
1f6bdca
·
verified ·
1 Parent(s): 6228a81

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +100 -3
README.md CHANGED
@@ -1,3 +1,100 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ base_model:
6
+ - deepseek-ai/DeepSeek-R1-Distill-Qwen-14B
7
+ pipeline_tag: text-generation
8
+ library_name: transformers
9
+ tags:
10
+ - text-generation-inference
11
+ - code
12
+ - 14B
13
+ ---
14
+
15
+ # **Alcyoneus-14B-Exp**
16
+
17
+ Alcyoneus-14B-Exp is based on the Qwen 2.5 14B modality architecture, designed to enhance the reasoning capabilities of 14B-parameter models. This model is optimized for general-purpose reasoning and answering, excelling in contextual understanding, logical deduction, and multi-step problem-solving. It has been fine-tuned using a long chain-of-thought reasoning model and specialized datasets to improve comprehension, structured responses, and conversational intelligence.
18
+
19
+ ## **Key Improvements**
20
+ 1. **Enhanced General Knowledge**: The model provides broad knowledge across various domains, improving capabilities in answering questions accurately and generating coherent responses.
21
+ 2. **Improved Instruction Following**: Significant advancements in understanding and following complex instructions, generating structured responses, and maintaining coherence over extended interactions.
22
+ 3. **Versatile Adaptability**: More resilient to diverse prompts, enhancing its ability to handle a wide range of topics and conversation styles, including open-ended and structured inquiries.
23
+ 4. **Long-Context Support**: Supports up to 128K tokens for input context and can generate up to 8K tokens in a single output, making it ideal for detailed responses.
24
+
25
+ ## **Quickstart with transformers**
26
+
27
+ Here is a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and generate content:
28
+
29
+ ```python
30
+ from transformers import AutoModelForCausalLM, AutoTokenizer
31
+
32
+ model_name = "prithivMLmods/Alcyoneus-14B-Exp"
33
+
34
+ model = AutoModelForCausalLM.from_pretrained(
35
+ model_name,
36
+ torch_dtype="auto",
37
+ device_map="auto"
38
+ )
39
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
40
+
41
+ prompt = "What are the key principles of general-purpose AI?"
42
+ messages = [
43
+ {"role": "system", "content": "You are a helpful assistant capable of answering a wide range of questions."},
44
+ {"role": "user", "content": prompt}
45
+ ]
46
+ text = tokenizer.apply_chat_template(
47
+ messages,
48
+ tokenize=False,
49
+ add_generation_prompt=True
50
+ )
51
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
52
+
53
+ generated_ids = model.generate(
54
+ **model_inputs,
55
+ max_new_tokens=512
56
+ )
57
+ generated_ids = [
58
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
59
+ ]
60
+
61
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
62
+ ```
63
+
64
+ ## **Intended Use**
65
+ 1. **General-Purpose Reasoning**:
66
+ Designed for broad applicability, assisting with logical reasoning, answering diverse questions, and solving general knowledge problems.
67
+
68
+ 2. **Educational and Informational Assistance**:
69
+ Suitable for providing explanations, summaries, and research-based responses for students, educators, and general users.
70
+
71
+ 3. **Conversational AI and Chatbots**:
72
+ Ideal for building intelligent conversational agents that require contextual understanding and dynamic response generation.
73
+
74
+ 4. **Multilingual Applications**:
75
+ Supports global communication, translations, and multilingual content generation.
76
+
77
+ 5. **Structured Data Processing**:
78
+ Capable of analyzing and generating structured outputs, such as tables and JSON, useful for data science and automation.
79
+
80
+ 6. **Long-Form Content Generation**:
81
+ Can generate extended responses, including articles, reports, and guides, maintaining coherence over large text outputs.
82
+
83
+ ## **Limitations**
84
+ 1. **Hardware Requirements**:
85
+ Requires high-memory GPUs or TPUs due to its large parameter size and long-context support.
86
+
87
+ 2. **Potential Bias in Responses**:
88
+ While designed to be neutral, outputs may still reflect biases present in training data.
89
+
90
+ 3. **Inconsistent Outputs in Creative Tasks**:
91
+ May produce variable results in storytelling and highly subjective topics.
92
+
93
+ 4. **Limited Real-World Awareness**:
94
+ Does not have access to real-time events beyond its training cutoff.
95
+
96
+ 5. **Error Propagation in Extended Outputs**:
97
+ Minor errors in early responses may affect overall coherence in long-form outputs.
98
+
99
+ 6. **Prompt Sensitivity**:
100
+ The effectiveness of responses may depend on how well the input prompt is structured.