Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,122 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- Qwen/Qwen2.5-14B-Instruct-1M
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
library_name: transformers
|
| 9 |
+
tags:
|
| 10 |
+
- text-generation-inference
|
| 11 |
+
- R1
|
| 12 |
+
- math
|
| 13 |
+
- RL
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+

|
| 17 |
+
|
| 18 |
+
# **Diophantus-14B-R1-Instruct**
|
| 19 |
+
|
| 20 |
+
> **Diophantus-14B-R1-Instruct** is based on the Qwen 2.5 14B modality architecture, designed to optimize performance for mathematical reasoning, general-purpose problem solving, and robust policy optimization using distributed reinforcement learning (RL). This model excels in contextual understanding, logical deduction, multi-step reasoning, and optimization-based tasks. It has been fine-tuned using long chain-of-thought datasets, optimization problem-solving corpora, and structured reasoning datasets to improve comprehension, structured responses, and intelligent decision-making.
|
| 21 |
+
|
| 22 |
+
## **Key Improvements**
|
| 23 |
+
1. **Advanced Mathematical and Logical Reasoning**:
|
| 24 |
+
Enhanced capabilities for solving complex equations, optimization tasks, symbolic computation, theorem proving, and step-by-step math problem-solving.
|
| 25 |
+
|
| 26 |
+
2. **Robust Policy Optimization**:
|
| 27 |
+
Fine-tuned for distributed reinforcement learning (RL) tasks, improving decision-making robustness and solution generalization across complex optimization problems.
|
| 28 |
+
|
| 29 |
+
3. **General Knowledge and Problem Solving**:
|
| 30 |
+
Strong foundation across diverse domains, excelling in answering factual questions and executing structured multi-step reasoning processes.
|
| 31 |
+
|
| 32 |
+
4. **Instruction Following and Adaptability**:
|
| 33 |
+
Improved performance in understanding complex instructions and adapting to diverse prompts, maintaining coherence across extended conversations.
|
| 34 |
+
|
| 35 |
+
5. **Long-Context Understanding**:
|
| 36 |
+
Supports up to 128K tokens for input, and can generate up to 8K tokens, ideal for deep, multi-turn dialogues, mathematical derivations, and long-chain logical reasoning.
|
| 37 |
+
|
| 38 |
+
6. **Coding and Algorithmic Mastery**:
|
| 39 |
+
Excels in code generation, debugging, algorithm design, refactoring, and analysis across multiple programming languages, with a special focus on optimization algorithms.
|
| 40 |
+
|
| 41 |
+
## **Quickstart with transformers**
|
| 42 |
+
|
| 43 |
+
Here's how to load and use the model with the `transformers` library and `apply_chat_template`:
|
| 44 |
+
|
| 45 |
+
```python
|
| 46 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 47 |
+
|
| 48 |
+
model_name = "prithivMLmods/Diophantus-14B-R1-Instruct"
|
| 49 |
+
|
| 50 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 51 |
+
model_name,
|
| 52 |
+
torch_dtype="auto",
|
| 53 |
+
device_map="auto"
|
| 54 |
+
)
|
| 55 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 56 |
+
|
| 57 |
+
prompt = "Explain the key techniques used in robust policy optimization."
|
| 58 |
+
messages = [
|
| 59 |
+
{"role": "system", "content": "You are an expert assistant in optimization, reinforcement learning, and general-purpose reasoning."},
|
| 60 |
+
{"role": "user", "content": prompt}
|
| 61 |
+
]
|
| 62 |
+
text = tokenizer.apply_chat_template(
|
| 63 |
+
messages,
|
| 64 |
+
tokenize=False,
|
| 65 |
+
add_generation_prompt=True
|
| 66 |
+
)
|
| 67 |
+
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
|
| 68 |
+
|
| 69 |
+
generated_ids = model.generate(
|
| 70 |
+
**model_inputs,
|
| 71 |
+
max_new_tokens=512
|
| 72 |
+
)
|
| 73 |
+
generated_ids = [
|
| 74 |
+
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
|
| 75 |
+
]
|
| 76 |
+
|
| 77 |
+
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
## **Intended Use**
|
| 81 |
+
1. **Optimization Problem Solving**:
|
| 82 |
+
Specialized for solving and explaining general optimization problems, including convex, non-convex, and combinatorial optimization.
|
| 83 |
+
|
| 84 |
+
2. **Mathematical and Logical Reasoning**:
|
| 85 |
+
Excels at solving equations, mathematical proofs, symbolic manipulations, and structured logical reasoning.
|
| 86 |
+
|
| 87 |
+
3. **Reinforcement Learning Applications**:
|
| 88 |
+
Useful for designing, analyzing, and explaining RL algorithms, particularly robust and distributed RL.
|
| 89 |
+
|
| 90 |
+
4. **Educational and Research Assistance**:
|
| 91 |
+
Suitable for providing detailed explanations, mathematical derivations, and research-oriented insights for students, educators, and researchers.
|
| 92 |
+
|
| 93 |
+
5. **Coding and Algorithm Development**:
|
| 94 |
+
Ideal for writing, improving, debugging, and explaining code, with a strong emphasis on optimization algorithms and computational logic.
|
| 95 |
+
|
| 96 |
+
6. **Conversational AI and Chatbots**:
|
| 97 |
+
Supports intelligent, context-aware dialogue generation for technical domains, education, and professional assistance.
|
| 98 |
+
|
| 99 |
+
7. **Long-Form Technical Content Generation**:
|
| 100 |
+
Capable of producing extensive, coherent articles, reports, and tutorials, especially for technical and mathematical content.
|
| 101 |
+
|
| 102 |
+
8. **Structured Data Processing**:
|
| 103 |
+
Analyzes and generates structured outputs such as JSON, tables, and formal proofs, beneficial for data science and automation.
|
| 104 |
+
|
| 105 |
+
## **Limitations**
|
| 106 |
+
1. **High Hardware Requirements**:
|
| 107 |
+
Requires substantial memory and high-performance GPUs or TPUs due to large parameter size and long-context processing.
|
| 108 |
+
|
| 109 |
+
2. **Potential Training Biases**:
|
| 110 |
+
May reflect biases present in optimization-specific datasets or mathematical corpora.
|
| 111 |
+
|
| 112 |
+
3. **Creative Generation Limitations**:
|
| 113 |
+
Less optimized for freeform creative writing or storytelling compared to technical reasoning.
|
| 114 |
+
|
| 115 |
+
4. **No Real-Time Awareness**:
|
| 116 |
+
Lacks knowledge of real-world events or developments post-training cutoff.
|
| 117 |
+
|
| 118 |
+
5. **Error Propagation in Long-Chain Tasks**:
|
| 119 |
+
Small early errors in long mathematical or optimization tasks may propagate in extended outputs.
|
| 120 |
+
|
| 121 |
+
6. **Prompt Sensitivity**:
|
| 122 |
+
The quality of outputs can be sensitive to prompt clarity and structure, especially for complex optimization or technical questions.
|