--- language: - ar license: apache-2.0 size_categories: - 1K= 3) high_quality = dataset['train'].filter( lambda x: x['qwen2_5_72b_inst_score'] >= 3 ) print(f"High quality examples: {len(high_quality)}") ``` ### Load Only Specific Fields ```python from datasets import load_dataset dataset = load_dataset("sboughorbel/arabic-web-edu-seed") # Keep only specific columns clean_dataset = dataset['train'].select_columns([ 'text', 'qwen2_5_72b_inst_score', 'url' ]) ``` ### Stream Large Dataset ```python from datasets import load_dataset # Stream the dataset without downloading everything dataset = load_dataset("sboughorbel/arabic-web-edu-seed", streaming=True) # Iterate through examples for example in dataset['train']: print(example['text']) break ``` ## Dataset Fields - **text**: The Arabic text content - **qwen2_5_72b_inst_score**: Educational quality score (0-5) - **prompt**: The evaluation prompt used (optional) - **completion**: The evaluation explanation (optional) ## Educational Score Scale The `qwen2_5_72b_inst_score` ranges from 0 to 5: - **0**: No educational value - **1**: Basic information with non-academic content - **2**: Some educational elements, not aligned with standards - **3**: Appropriate for education, introduces key concepts - **4**: Highly relevant for grade school education - **5**: Outstanding educational value ## Citation If you use this dataset in your research, please cite: ```bibtex @dataset{arabic_web_edu_seed_2024, author = {Majd Hawasly, Tasnim Mohiuddin, Hamdy Mubarak, Sabri Boughorbel}, title = {ArabicWeb-Edu: Educational Quality Data for Arabic LLM Training}, year = {2025}, publisher = {Hugging Face}, howpublished = {\url{https://huggingface.co/datasets/sboughorbel/arabic-web-edu-seed}} } ``` ## License [Please specify your license] ## Contact For questions or issues, please contact through the Hugging Face dataset repository.