--- language: - bn license: mit task_categories: - text-classification - image-classification - video-classification tags: - fake-news-detection - misinformation - multimodal - bengali - bangla - trimodal - nlp - computer-vision - satire-detection - clickbait-detection pretty_name: "BTMD: Bengali Trimodal Misinformation Dataset" size_categories: - 1K 0.80) according to the Landis and Koch benchmark. ## Usage ### Loading the Dataset ```python from datasets import load_dataset # Load the full dataset dataset = load_dataset("Faysal4200/BTMD") # Access a sample sample = dataset["train"][0] print(sample["heading"]) # News headline print(sample["label"]) # Binary label: Real or Fake print(sample["multi_category"])# Fine-grained label print(sample["image_path"]) # Path to image file (if available) print(sample["video_path"]) # Path to video file (if available) ``` ### Loading with Images ```python from datasets import load_dataset from huggingface_hub import hf_hub_download from PIL import Image dataset = load_dataset("Faysal4200/BTMD") # Load image(s) for a sample # Note: image_path may contain multiple semicolon-separated paths sample = dataset["train"][0] if sample["image_path"]: image_paths = sample["image_path"].split(";") for img_path in image_paths: img = Image.open(hf_hub_download( repo_id="Faysal4200/BTMD", filename=img_path.strip(), repo_type="dataset" )) img.show() ``` ### 5-Fold Cross-Validation (as in the original paper) ```python from datasets import load_dataset from sklearn.model_selection import StratifiedKFold dataset = load_dataset("Faysal4200/BTMD", split="train") skf = StratifiedKFold(n_splits=5, shuffle=True, random_state=42) labels = dataset["label"] for fold, (train_idx, val_idx) in enumerate(skf.split(range(len(dataset)), labels)): train_set = dataset.select(train_idx) val_set = dataset.select(val_idx) print(f"Fold {fold+1}: Train={len(train_set)}, Val={len(val_set)}") ``` ## Citation If you use this dataset in your research, please cite: ```bibtex @article{ahmmed2025mome, title = {MoME-BanglaFake: A Mixture-of-Modality-Experts Framework for Bengali Fake News Detection Using a Novel Trimodal Dataset}, author = {Ahmmed, Faysal and Rafsan, Resadus Salehin and Akther, Airin and Mansib, Muhtadi and Esika, Ainea Esrat and Mridha, F. M.}, journal = {International Journal of Information Management Data Insights}, year = {2026}, note = {Paper under review. Citation details will be updated upon publication.} } ``` > **Note**: The full citation with volume, pages, and DOI will be updated once the paper is published in *International Journal of Information Management Data Insights*. ## License This dataset is released under the [MIT License](https://opensource.org/licenses/MIT). ## Contact For questions or issues regarding this dataset, please contact: - **Faysal Ahmmed** — [22-47069-1@student.aiub.edu](mailto:22-47069-1@student.aiub.edu) or [faysalahmmed4200@gmail.com](mailto:faysalahmmed4200@gmail.com) - **F. M. Mridha** — [firoz.mridha@aiub.edu](mailto:firoz.mridha@aiub.edu) **Affiliation**: Department of Computer Science, American International University-Bangladesh (AIUB), Dhaka-1229, Bangladesh.