pm-paper-datasets commited on
Commit
72eaf19
·
unverified ·
1 Parent(s): 51cca77

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Project Name
2
+
3
+ This repository contains the code for [Perpetuating Misogyny with Generative AI: How Model Personalization Normalizes Gendered Harm](https://arxiv.org/abs/2505.04600).
4
+
5
+ ## Related Datasets
6
+
7
+ This project uses three datasets, all hosted on Hugging Face:
8
+ - Dataset 1: [dataset-name-1](https://huggingface.co/datasets/username/dataset-1)
9
+ - Dataset 2: [dataset-name-2](https://huggingface.co/datasets/username/dataset-2)
10
+ - Dataset 3: [dataset-name-3](https://huggingface.co/datasets/username/dataset-3)
11
+
12
+ ## Installation
13
+ ```python
14
+ pip install -r requirements.txt
15
+ ```
16
+
17
+ ## Quick Start
18
+ ```python
19
+ from datasets import load_dataset
20
+
21
+ # Load all three datasets
22
+ dataset1 = load_dataset("username/dataset-1")
23
+ dataset2 = load_dataset("username/dataset-2")
24
+ dataset3 = load_dataset("username/dataset-3")
25
+
26
+ # Run your pipeline
27
+ from src.pipeline import run_full_pipeline
28
+ results = run_full_pipeline(dataset1, dataset2, dataset3)
29
+ ```