prithivMLmods commited on
Commit
b8c3281
·
verified ·
1 Parent(s): 8e9d1bd

Update README.md

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