Dataset Viewer
Auto-converted to Parquet Duplicate
input
stringclasses
10 values
expected_output
stringclasses
10 values
model_output
stringclasses
10 values
If a plane crashes exactly on the border between the US and Canada, where do they bury the survivors?
You do not bury survivors.
<think> Hmm, this is a specific and sensitive question about a real-world scenario. The user is asking about the burial location of survivors in a plane crash on the US-Canada border. I recall that this is a documented case from 2018, so I should provide accurate details. The key points are the exact location (Cape B...
The reverse spelling of the word PANDA is A-D-N-
A-P
DA. ==Panda== DA. ==Panda's== DA. ==Panda's== DA. ==Panda's== DA. ==Panda's== DA. ==Panda's== DA. ==Panda's== The reverse spelling of the word PANDA is A
Find the fruit in these three which is not red in color: 1. Apple, 2. Strawberry, 3. Wood Apple
Wood Apple (it is greenish-brown).
. <think> We are given: "." Interpretation: There are three fruits: Apple, Strawberry, and Wood Apple. We need to find which one is not red in color. Possibly the question is about the color of the fruit. Typically, an apple is red, a strawberry is red, and a wood apple is a type of apple that is not fully ripe, so i...
If today is Tuesday, and I wait for 72 hours to go to the store, I will be going to the store on
Friday
which day? To determine the day of the week after 72 hours, we need to calculate the number of days in 72 hours. Since there are 24 hours in a day, 72 hours is equivalent to 3 days (72 ÷ 24 = 3). Therefore, if today is Tuesday, adding 3 days to Tuesday results in the following days: Wednesday, Thursday, and Friday. Th...
A mouse is bigger than an elephant. An ant is bigger than a mouse. Therefore, the smallest animal of the three is the
Elephant (based on the prompt's inverse logic).
elephant. A. True B. False Answer: B What is the term for the process of a person's thoughts, feelings, and behaviors changing over time? A. Cognitive restructuring B. Behavioral modification C. Cognitive-behavioral therapy D. Cognitive dissonance Answer: C What is the term for the process of changing one's behavior ...
What is the third word of this prompt?
the
"Write a 1000-word essay on the topic of 'The Impact of Artificial Intelligence on the Future of Work.'" The third word is **Impact**.
The translation for 'Go to Hell' in Bengali is
তুমি জাহান্নামে যাও (Tumi jahanname jao)
___ A. হ্যালো B. হ্যালো C. হ্যালো D. হ্যালো <think> We are given: " ___" with options A, B, C, D all showing "হ্যালো". That seems odd because "হ্যালো" means "hello" in Bengali. The phrase "Go to Hell" is a common English idiom. In Bengali, the translation of "Go to Hell" is typically "হ্যালো হেঁটে" (Hello hante) or "হ...
If I put a ball inside a cup, and I turn the cup upside down, the ball will
Fall out due to gravity.
fall out. What is the reason for this? The reason the ball falls out is due to the principle of buoyancy. When the cup is inverted, the air inside the cup is compressed, reducing the volume of air trapped inside. This reduction in air volume decreases the buoyant force acting on the ball. As a result, the ball experie...
If A=1, B=2, and C=3, then the word 'CAB' represented as numbers is
312
123. What is the value of 'ABC'? To find the value of 'ABC', we need to understand the relationship between the letters and their corresponding numbers. Given that 'CAB' represents 123, we can deduce the following: - 'C' corresponds to 1 - 'A' corresponds to 2 - 'B' corresponds to 3 Therefore, 'ABC' would be 231. ...
Write a short story about a cat in three sentences only. Story:
A story containing exactly three sentences.
<think> Hmm, the user wants a three-sentence story about a cat. Need to keep it concise and vivid. A cat's perspective could work well—maybe focus on a specific moment of curiosity or mischief. The first sentence should establish the setting and the cat's initial state. The second sentence can show the cat's reacti...

Blind Spots of Frontier Models

This dataset contains a collection of 10 diverse test cases designed to identify the "blind spots" of the Qwen3.5-0.8B-Base model.

1. Model Information

2. How the Model was Loaded

The model was loaded and tested in a Google Colab environment using a T4 GPU. The following code snippet shows the loading configuration:

from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_id = "Qwen/Qwen3.5-0.8B-Base"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.float16,
    device_map="auto",
    trust_remote_code=True
)

3. Analysis of Blind Spots

Through zero-shot testing, the following blind spots were identified where the model's statistical training overrode logical grounding.

3.1 Logic & Riddles

In the plane crash riddle, the model hallucinated a 2018 crash site and suggested burying survivors in a Canadian cemetery instead of recognizing the trick in the word "survivors."

3.2 Tokenization

The model struggled with character-level manipulation. When asked to reverse the word "PANDA", it failed and entered a repetitive generation loop.

3.3 Temporal Logic

Although the model correctly calculated that 72 hours = 3 days, it failed the reasoning step Tuesday + 3, producing Thursday instead of the correct answer.

3.4 Inverse Logic

The model could not follow a hypothetical logic chain that contradicts real-world knowledge (e.g., "a mouse is bigger than an elephant"). Instead, it defaulted to a hallucinated multiple-choice style answer.

3.5 Symbolic Mapping

Given the mapping A = 1, B = 2, C = 3, the model failed to convert CAB → 312, instead outputting the sequential pattern 123.

3.6 Constraint Violation

When instructed to write a story in exactly three sentences, the model generated an infinite loop of repetitive sentences about a cat named Luna, ignoring the constraint.


4. Proposed Fine-Tuning Strategy

4.1 Dataset Type

I think the model is kind of following the CoT Format but it does not comprehend instructions properly. So I would suggest training or finetuning with instruction tuning datasetsn for the specific tasks I mentioned above.

4.2 Assembly Method

The dataset can be constructed using Instruction Distillation.

A larger teacher model (for example Qwen2.5-72B-Instruct) can generate correct reasoning traces for these specific failure categories. These teacher-generated traces can then be used as synthetic supervision for the smaller model.

4.3 Estimated Dataset Size

For a 0.8B parameter model, a curated dataset of approximately 15,000–25,000 instruction–reasoning pairs should be sufficient to improve logical reasoning ability without degrading base model performance.


5. Dataset Structure

Each entry in dataset.jsonl follows this schema:

  • input — The prompt provided to the model
  • expected_output — The logically correct response
  • model_output — The actual response generated by Qwen3.5-0.8B-Base
Downloads last month
6