Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
json
Sub-tasks:
multiple-choice-qa
Languages:
Bengali
Size:
10K - 100K
ArXiv:
License:
File size: 3,569 Bytes
74182d2 50700f5 847854f 50700f5 847854f 74182d2 50700f5 847854f 66f3c55 50700f5 74182d2 847854f 74182d2 847854f 50ea7f1 50700f5 |
1 2 3 4 5 6 7 8 9 10 11 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
---
language:
- bn
license: mit
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
task_categories:
- question-answering
task_ids:
- multiple-choice-qa
dataset_info:
features:
- name: goal
dtype: string
- name: sol1
dtype: string
- name: sol2
dtype: string
- name: label
dtype:
class_label:
names:
'0': '0'
'1': '1'
---
## Dataset Summary
This is the translated version of the [PIQA](https://huggingface.co/datasets/ybisk/piqa) LLM evaluation dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Translation with LLM-based rewriting. PIQA introduces the task of physical commonsense reasoning and provides a corresponding benchmark for understanding physical interactions in everyday situations. It focuses on atypical solutions to practical problems, inspired by instructional guides from instructables.com, and aims to tackle one of the major challenges in AI: understanding and reasoning about physical commonsense knowledge.
Code: [https://github.com/hishab-nlp/lm-evaluation-harness](https://github.com/hishab-nlp/lm-evaluation-harness)
## Dataset Structure
### Data Instances
An example looks like this:
```json
{
"goal": "ডিম সেদ্ধ করার পদ্ধতি।",
"sol1": "ডিমগুলো একটি পাত্রে রাখুন আর এক ইঞ্চি জল দিয়ে ঢাকনা দিন, মাঝারি আঁচে ফুটিয়ে নিন, তারপর ঢাকনা বন্ধ রেখে গ্যাস বন্ধ করে 8 থেকে 10 মিনিট রেখে দিন।",
"sol2": "ডিমগুলো পাত্রে রাখুন আর সেখানে এক ইঞ্চি ঠাণ্ডা জল দিয়ে ঢাকনা দিন, মাঝারি আঁচে ফুটিয়ে নিন, তারপর ঢাকনা বন্ধ রেখে গ্যাস বন্ধ করে 8 থেকে 10 মিনিট রেখে দিন।",
"label": 1
}
```
### Data Fields
List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
- `goal`: the question which requires physical commonsense to be answered correctly
- `sol1`: the first solution
- `sol2`: the second solution
- `label`: the correct solution. `0` refers to `sol1` and `1` refers to `sol2`
## Data Split
| Split | Number |
| ----- | ----- |
| Train | 15339 |
| Validation | 1838 |
### Licensing Information
The dataset is licensed under the MIT License.
## Citation
```
@misc{nahin2025titullmsfamilybanglallms,
title={TituLLMs: A Family of Bangla LLMs with Comprehensive Benchmarking},
author={Shahriar Kabir Nahin and Rabindra Nath Nandi and Sagor Sarker and Quazi Sarwar Muhtaseem and Md Kowsher and Apu Chandraw Shill and Md Ibrahim and Mehadi Hasan Menon and Tareq Al Muntasir and Firoj Alam},
year={2025},
eprint={2502.11187},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2502.11187},
}
``` |