agentlans commited on
Commit
ca7a890
·
verified ·
1 Parent(s): dac1bad

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - problem-solving
6
+ - chain-of-thought
7
+ - reasoning
8
+ base_model:
9
+ - deepseek-ai/DeepSeek-R1-Distill-Llama-8B
10
+ - Skywork/Skywork-o1-Open-Llama-3.1-8B
11
+ - NousResearch/DeepHermes-3-Llama-3-8B-Preview
12
+ - O1-OPEN/OpenO1-LLama-8B-v0.1
13
+ - SimpleBerry/LLaMA-O1-Supervised-1129
14
+ - terrycraddock/Reflection-Llama-3.1-8B
15
+ ---
16
+
17
+ # Llama3.1-deep-o1
18
+
19
+ This is a merge of several DeepSeek R1 distilled and O1-style long chain-of-thought (CoT) large language models (LLMs). It is designed for generating long, coherent solutions and excels at problem-solving tasks among models with 8 billion parameters.
20
+
21
+ ## Model Overview
22
+
23
+ **Key Features:**
24
+ - Generates detailed, manual-like explanations for complex questions.
25
+ - Suitable for creating solution outlines, analyzing problems, and writing essays.
26
+
27
+ **Limitations:**
28
+ - Does not follow standard CoT formats like `<thought>` tags.
29
+ - Prone to calculation errors and careless mistakes in reasoning.
30
+ - Struggles with multiturn conversations and user alignment.
31
+ - For example, it may ask questions mid-response but continue answering regardless, in line with its CoT origins.
32
+
33
+ ## Merge Details
34
+
35
+ The model was created using the following YAML configuration:
36
+
37
+ ```yaml
38
+ models:
39
+ - model: DeepSeek-R1-Distill-Llama-8B
40
+ parameters:
41
+ weight: 1.5
42
+ - model: Skywork-o1-Open-Llama-3.1-8B
43
+ parameters:
44
+ weight: 1.5
45
+ - model: DeepHermes-3-Llama-3-8B-Preview
46
+ - model: OpenO1-LLama-8B-v0.1
47
+ - model: LLaMA-O1-Supervised-1129
48
+ - model: Reflection-Llama-3.1-8B
49
+ merge_method: linear
50
+ parameters:
51
+ weight: 1
52
+ dtype: bfloat16
53
+ ```
54
+
55
+ ## Usage Recommendations
56
+
57
+ - To generate hints for scientific problem solving
58
+ - As a foundation model for finetuning and merging
59
+
60
+ ### Examples to Try:
61
+ - Write the equations for glycolysis and pyruvate oxidation.
62
+ - Calculate net ATP formation from glucose metabolism (excluding electron transport chain).
63
+ - Integrate x^2 e^x dx.
64
+ - Prove that the complete bipartite graph K_{3,3} isn't planar.
65
+ - Derive a formula for the critical angle between two media with refractive indices n_1 and n_2.
66
+ - Compare steam vs. diesel engines including their capabilities and historical significance.
67
+
68
+ ### Notes on Performance:
69
+ While the model provides coherent and expert-like responses, users should verify its outputs for accuracy - especially in calculations or logical reasoning tasks.
70
+
71
+ ## Warning
72
+
73
+ - This model is experimental and may require careful validation when used for critical applications.
74
+ - It is not optimized for conversational tasks but performs well in single-turn question answering.