Ppoyaa commited on
Commit
9136a11
1 Parent(s): 42cb819

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -1
README.md CHANGED
@@ -13,7 +13,48 @@ tags:
13
  Lumina-5-Instruct is a Mixture of Experts (MoE) made with [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing) with improved reasoning from [Lumina-3](https://huggingface.co/Ppoyaa/Lumina-3). This model uses a context window of up to 32k.
14
 
15
  # Response Examples
16
- Coming soon.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  ## 🏆 Open LLM Leaderboard Evaluation Results
19
  Coming soon.
 
13
  Lumina-5-Instruct is a Mixture of Experts (MoE) made with [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing) with improved reasoning from [Lumina-3](https://huggingface.co/Ppoyaa/Lumina-3). This model uses a context window of up to 32k.
14
 
15
  # Response Examples
16
+ ``` Math
17
+ Input: 25 - 4 * 2 + 3 = ?
18
+ ------------------------------------
19
+ Output: To solve this equation, follow the order of operations (PEMDAS/BODMAS):
20
+
21
+ 1. Parentheses/Brackets
22
+ 2. Exponents
23
+ 3. Multiplication and Division (from left to right)
24
+ 4. Addition and Subtraction (from left to right)
25
+
26
+ The given equation does not have any parentheses or exponents, so we start with multiplication and division:
27
+
28
+ 25 - 4 * 2 + 3
29
+
30
+ Next, perform the multiplication:
31
+
32
+ 25 - 8 + 3
33
+
34
+ Now, do the subtraction from left to right:
35
+
36
+ 17 + 3
37
+
38
+ Finally, add the remaining numbers:
39
+
40
+ 20
41
+
42
+ So, the result is 20.
43
+ ```
44
+
45
+ ``` Reasoning
46
+ Input: Jane is faster than Joe. Joe is faster than Sam. Is Sam faster than Jane? Explain your reasoning step by step.
47
+ ------------------------------------
48
+ Output: Let's analyze this comparison step by step:
49
+
50
+ 1. We are given three individuals - Jane, Joe, and Sam.
51
+ 2. The information provided states that "Jane is faster than Joe" and "Joe is faster than Sam."
52
+ 3. To determine if Sam is faster than Jane, we need to compare their relative speeds based on the given information.
53
+ 4. Since Joe is faster than Sam but slower than Jane, it means that Jane must be faster than both Joe and Sam.
54
+ 5. Therefore, there is no scenario in which Sam can be faster than Jane, as per the given comparisons.
55
+
56
+ Conclusion: No, Sam is not faster than Jane according to the provided information.
57
+ ```
58
 
59
  ## 🏆 Open LLM Leaderboard Evaluation Results
60
  Coming soon.