input stringclasses 10
values | expected_output stringclasses 10
values | model_output stringclasses 10
values |
|---|---|---|
What is the capital of Burkina Faso? | Ouagadougou | What is the capital of Burkina Faso? Also, what is the capital of the country of the name of the country? Additionally, what is the capital of the country of the name of the country? And what is the capital of the country of the name of the country?
Let me break this down step by step.
First question: What is the cap... |
If 10y + 5 = 30, find y. | 2.5 | If 10y + 5 = 30, find y. To solve the equation 10y + 5 = 30, we need to isolate y. Let's start by subtracting 5 from both sides of the equation to get rid of the constant term on the left side.
So, subtracting 5 from both sides gives:
10y + 5 - 5 = 30 - 5
Simplifying both sides:
10y = 25
Now, to solve for y, we n... |
Define the word 'bank'. | A financial institution or the side of a river, depending on context | Define the word 'bank'. The first letter is 'b', the second is 'a', the third is 'n', and the fourth is 'k'. The fifth letter is 'a', the sixth is 'n', and the seventh is 'k'. The eighth letter is 'a', the ninth is 'n', and the tenth is 'k'.
Now, the word 'bank' is defined as the word formed by the letters in the wor... |
Explain why photosynthesis is important. | Photosynthesis with the use of chlorophyll allows plants to convert sunlight into energy, producing oxygen essential for life. | Explain why photosynthesis is important. What are the main factors that affect the rate of photosynthesis? Explain the role of chlorophyll in photosynthesis. What is the role of the Calvin cycle in photosynthesis? What is the role of the light-dependent and light-independent reactions in photosynthesis? What is the rol... |
What does the igbo word 'nwachukwu' mean in English | God's child | What does the igbo word 'nwachukwu' mean in English?
The igbo word 'nwachukwu' is a term that is used in the Igbo language, which is spoken in the Igbo region of Nigeria. The word 'nwachukwu' is a term that is used to describe a certain type of person or entity in the Igbo language. The exact meaning of the word 'nwac... |
What are the major ethnic groups in Nigeria | Igbo, Hausa, Yoruba | What are the major ethnic groups in Nigeria? The answer is a list of the major ethnic groups in Nigeria. The answer is a list of the major ethnic groups in Nigeria. The answer is a list of the major ethnic groups in Nigeria. The answer is a list of the major ethnic groups in Nigeria. The answer is a list of the major e... |
Evaluate 3 + 5 - 7 * 10 | -62 | Evaluate 3 + 5 - 7 * 10 + 12 * 13 - 14 * 15 + 16 * 17 - 18 * 19 + 20 * 21 - 22 * 23 + 24 * 25 - 26 * 27 + 28 * 29 - 30 * 31 + 32 * 33 - 34 * 35 + 36 |
Who wrote the book 'Americana'? | Chimamanda Ngozi Adichie | Who wrote the book 'Americana'? The answer is in the book 'The American Dream' by which author? The answer is in the book 'The American Dream' by which author? The answer is in the book 'The American Dream' by which author? The answer is in the book 'The American Dream' by which author? The answer is in the book 'The A... |
If you have two apples and I take away three, how many do you have left? | -1 (or not possible, since you can’t take more apples than you have) | If you have two apples and I take away three, how many do you have left? Also, if you have two apples and you take away one apple, how many do you have left?
Let's solve these problems step by step.
First problem: You have two apples and you take away three. How many do you have left?
Let's break this down. The ini... |
Why is the sky blue | The sky appears blue because molecules in the air scatter blue sunlight more than other colors. | Why is the sky blue, and what are the different types of clouds? Also, what is the role of the atmosphere in the Earth's climate?
### The Sky is Blue
The sky is blue because of the way light interacts with the atmosphere. When sunlight enters the atmosphere, it is scattered by the molecules and atoms in the atmospher... |
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Blind Spots of DeepBrainz-R1-0.6B
This dataset captures blind spots of the DeepBrainz-R1-0.6B model: Model Link.
I generated 10 diverse prompts to test the model’s responses against expected answers. The prompts cover factual knowledge, math, language, reasoning, and commonsense questions. This helps highlight where the model may give incorrect or misleading outputs.
Prompts Tested
- "What is the capital of Burkina Faso?"
- "If 10y + 5 = 30, find y."
- "Define the word 'bank'."
- "Explain why photosynthesis is important."
- "What does the Igbo word 'nwachukwu' mean in English?"
- "What are the major ethnic groups in Nigeria?"
- "Evaluate 3 + 5 - 7 * 10"
- "Who wrote the book 'Americana'?"
- "If you have two apples and I take away three, how many do you have left?"
- "Why is the sky blue?"
How the model was loaded
Example code snippet used in Colab:
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "DeepBrainz/DeepBrainz-R1-0.6B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id, device_map="auto", torch_dtype=torch.bfloat16
)
prompt = "What is the capital of Burkina Faso?"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)
generated_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(generated_text)
Observed Blind Spots
| Category | Example Issue |
|---|---|
| Factual errors | Misnaming capitals or historical facts (e.g., Burkina Faso → "Nouakam") |
| Arithmetic & logic errors | Mistakes in solving simple math or equations (e.g., solving 10y + 5 = 30) |
| Context drift & verbosity | Repeating phrases and unnecessary long responses |
| Ambiguity handling | Difficulty with words that have multiple meanings (e.g., "bank") |
| Commonsense failures | Errors in everyday reasoning (e.g., taking more apples than available) |
Suggested Fine-Tuning Dataset
To fix the errors observed, the model could be fine-tuned on a diverse dataset covering:
- Factual QA – Questions about countries, capitals, history, and general knowledge to improve factual accuracy.
- Math & Reasoning – Simple and multi-step arithmetic, algebra, and logic problems to improve calculation and reasoning skills.
- Commonsense Reasoning – Everyday scenarios and puzzles to handle practical logic errors (e.g., taking more apples than available).
- Word Definitions & Multilingual Terms – Definitions, synonyms, and words from less common languages to handle ambiguity and language gaps.
How to assemble/find such a dataset:
- Use existing public datasets.
- Crowdsourcing small additional datasets for gaps or uncommon languages.
- Scraping structured factual information from reliable sources like Wikipedia or educational websites.
Recommended dataset size: Around 50,000 to 100,000 high-quality examples, ensuring coverage across all categories (facts, math, reasoning, language).
This will give the model enough examples to improve its accuracy and reduce blind spots.
- Downloads last month
- 6