prithivMLmods commited on
Commit
54d345f
·
verified ·
1 Parent(s): c8163b9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +105 -3
README.md CHANGED
@@ -1,3 +1,105 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ - zh
6
+ base_model:
7
+ - prithivMLmods/Helix-Opus-14B-Exp
8
+ pipeline_tag: text-generation
9
+ library_name: transformers
10
+ tags:
11
+ - text-generation-inference
12
+ - code
13
+ - math
14
+ - trl
15
+ ---
16
+
17
+ ![SXDFsdf.png](https://cdn-uploads.huggingface.co/production/uploads/65bb837dbfb878f46c77de4c/wCzorWqAzE4vp00lHaSsk.png)
18
+
19
+ # **Enceladus-14B-Exp**
20
+
21
+ > Enceladus-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.
22
+
23
+ ## **Key Improvements**
24
+ 1. **Enhanced General Knowledge**: The model provides broad knowledge across various domains, improving capabilities in answering questions accurately and generating coherent responses.
25
+ 2. **Improved Instruction Following**: Significant advancements in understanding and following complex instructions, generating structured responses, and maintaining coherence over extended interactions.
26
+ 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.
27
+ 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.
28
+ 5. **Multilingual Proficiency**: Supports over 29 languages, including English, Chinese, French, Spanish, Portuguese, German, Italian, Russian, Japanese, Korean, Vietnamese, Thai, Arabic, and more.
29
+
30
+ ## **Quickstart with transformers**
31
+
32
+ Here is a code snippet with `apply_chat_template` to show you how to load the tokenizer and model and generate content:
33
+
34
+ ```python
35
+ from transformers import AutoModelForCausalLM, AutoTokenizer
36
+
37
+ model_name = "prithivMLmods/Enceladus-14B-Exp"
38
+
39
+ model = AutoModelForCausalLM.from_pretrained(
40
+ model_name,
41
+ torch_dtype="auto",
42
+ device_map="auto"
43
+ )
44
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
45
+
46
+ prompt = "What are the key principles of general-purpose AI?"
47
+ messages = [
48
+ {"role": "system", "content": "You are a helpful assistant capable of answering a wide range of questions."},
49
+ {"role": "user", "content": prompt}
50
+ ]
51
+ text = tokenizer.apply_chat_template(
52
+ messages,
53
+ tokenize=False,
54
+ add_generation_prompt=True
55
+ )
56
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
57
+
58
+ generated_ids = model.generate(
59
+ **model_inputs,
60
+ max_new_tokens=512
61
+ )
62
+ generated_ids = [
63
+ output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
64
+ ]
65
+
66
+ response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
67
+ ```
68
+
69
+ ## **Intended Use**
70
+ 1. **General-Purpose Reasoning**:
71
+ Designed for broad applicability, assisting with logical reasoning, answering diverse questions, and solving general knowledge problems.
72
+
73
+ 2. **Educational and Informational Assistance**:
74
+ Suitable for providing explanations, summaries, and research-based responses for students, educators, and general users.
75
+
76
+ 3. **Conversational AI and Chatbots**:
77
+ Ideal for building intelligent conversational agents that require contextual understanding and dynamic response generation.
78
+
79
+ 4. **Multilingual Applications**:
80
+ Supports global communication, translations, and multilingual content generation.
81
+
82
+ 5. **Structured Data Processing**:
83
+ Capable of analyzing and generating structured outputs, such as tables and JSON, useful for data science and automation.
84
+
85
+ 6. **Long-Form Content Generation**:
86
+ Can generate extended responses, including articles, reports, and guides, maintaining coherence over large text outputs.
87
+
88
+ ## **Limitations**
89
+ 1. **Hardware Requirements**:
90
+ Requires high-memory GPUs or TPUs due to its large parameter size and long-context support.
91
+
92
+ 2. **Potential Bias in Responses**:
93
+ While designed to be neutral, outputs may still reflect biases present in training data.
94
+
95
+ 3. **Inconsistent Outputs in Creative Tasks**:
96
+ May produce variable results in storytelling and highly subjective topics.
97
+
98
+ 4. **Limited Real-World Awareness**:
99
+ Does not have access to real-time events beyond its training cutoff.
100
+
101
+ 5. **Error Propagation in Extended Outputs**:
102
+ Minor errors in early responses may affect overall coherence in long-form outputs.
103
+
104
+ 6. **Prompt Sensitivity**:
105
+ The effectiveness of responses may depend on how well the input prompt is structured.