--- language: - uk configs: - config_name: default data_files: - split: train path: data/train-* - split: subset_disjunctive_syllogism path: data/subset_disjunctive_syllogism-* - split: subset_modus_ponens path: data/subset_modus_ponens-* - split: subset_material_implication path: data/subset_material_implication-* - split: subset_constructive_dilemma path: data/subset_constructive_dilemma-* - split: subset_modus_tollens path: data/subset_modus_tollens-* dataset_info: features: - name: context dtype: string - name: question dtype: string - name: answer dtype: string - name: sex dtype: string - name: rule dtype: string splits: - name: train num_bytes: 5365040 num_examples: 10000 - name: subset_disjunctive_syllogism num_bytes: 1073008.0 num_examples: 2000 - name: subset_modus_ponens num_bytes: 1073008.0 num_examples: 2000 - name: subset_material_implication num_bytes: 1073008.0 num_examples: 2000 - name: subset_constructive_dilemma num_bytes: 1073008.0 num_examples: 2000 - name: subset_modus_tollens num_bytes: 1073008.0 num_examples: 2000 download_size: 662549 dataset_size: 10730080.0 --- This dataset is designed to evaluate the logical reasoning capabilities of multilingual language models in the Ukrainian language. It consists of multiple-choice questions derived from formal logical rules. The questions follow a strict logical structure and are formatted in natural Ukrainian. ## Dataset Format - Each sample contains: - `context`: (optional) supporting text - `question`: the main logical question - `answer`: the correct answer string - `sex`: gender of the subject in the question (for tracking bias) - `rule`: the logical rule being applied Example: ```json { "context": "", "question": "Якщо хтось читає книжку, то він розумний. Петро читає книжку. Чи розумний Петро?", "answer": "так", "sex": "male", "rule": "modus_ponens" } ``` - The dataset is split into 5 subsets based on a logical rule: - subset_modus_ponens - subset_modus_tollens - subset_disjunctive_syllogism - subset_constructive_dilemma - subset_material_implication