--- license: apache-2.0 language: - en - ru - code task_categories: - text-generation - text2text-generation - question-answering size_categories: - 100B`, `<|end_of_text|>`, role definitions). * **Tasks:** Includes physical commonsense reasoning (PIQA), general reasoning (HellaSwag), multi-task accuracy (MMLU), and Russian language understanding (XWinograd RU). --- ## 🚀 Usage You can easily load this dataset using the `datasets` library from Hugging Face: ```python from datasets import load_dataset # Load the fine-tuning dataset sft_dataset = load_dataset("firdavsus/LLM_multimodal", split="fine_tune") # Load the pre-training dataset (Requires streaming due to size) pretrain_dataset = load_dataset("firdavsus/LLM_multimodal", split="pre_train", streaming=True) # Example output from the SFT dataset print(sft_dataset[0])