MUFAC
收藏MUFAC (Machine Unlearning for Facial Age Classifier) 数据集概述
📜 基本信息
- 许可证: MIT
- 任务类别: 图像分类
- 语言: 英语
- 论文链接: arXiv:2311.02240
- 代码仓库: https://github.com/ndb796/MachineUnlearning
- 联系方式: dasolchoi@yonsei.ac.kr
📘 数据集描述
- 内容: 包含超过13,000张亚洲人脸图像的多类别年龄分类数据集。
- 预处理: 图像已清洗并调整为128×128分辨率。
- 用途: 特别适用于评估机器遗忘算法,尤其是在任务无关设置中。
🗂️ 数据集结构
MUFAC/ ├── forget_images/ # 需要遗忘的图像 ├── retain_images/ # 需要保留的图像 ├── train_images/ # 训练图像池 ├── val_images/ # 验证图像池 ├── test_images/ # 测试图像池 ├── fixed_test_dataset/ # 身份平衡的测试数据 ├── fixed_val_dataset/ # 身份平衡的验证数据 ├── custom_train_dataset.csv # 包含图像路径和标签的CSV文件 ├── custom_val_dataset.csv ├── custom_test_dataset.csv
🔹 使用方法
-
克隆数据集: bash !git lfs install !git clone https://huggingface.co/datasets/Dasool/MUFAC
-
加载CSV文件: python import pandas as pd df = pd.read_csv("MUFAC/custom_train_dataset.csv")
-
可视化图像: python from PIL import Image import os img_path = os.path.join("MUFAC/train_images", df.iloc[0]["image_path"]) Image.open(img_path).show()
📊 引用
bibtex @misc{choi2023machine, title={Towards Machine Unlearning Benchmarks: Forgetting the Personal Identities in Facial Recognition Systems}, author={Dasol Choi and Dongbin Na}, year={2023}, eprint={2311.02240}, archivePrefix={arXiv}, primaryClass={cs.CV} }




