init
Browse files- MODEL_CARD.md +4 -4
- README.md +6 -7
- config.yaml +1 -1
- pyproject.toml +2 -2
MODEL_CARD.md
CHANGED
|
@@ -62,8 +62,8 @@ This is not a single model, but a **bias analysis pipeline** that evaluates poli
|
|
| 62 |
|
| 63 |
```bash
|
| 64 |
pip install transformers torch datasets
|
| 65 |
-
git clone https://huggingface.co/spaces/
|
| 66 |
-
cd
|
| 67 |
pip install -r requirements.txt
|
| 68 |
```
|
| 69 |
|
|
@@ -215,7 +215,7 @@ python run_bias_analysis.py \
|
|
| 215 |
author = {Paris-Saclay University},
|
| 216 |
year = {2026},
|
| 217 |
version = {1.0.0},
|
| 218 |
-
url = {https://huggingface.co/spaces/
|
| 219 |
note = {Fairness in AI Course Project}
|
| 220 |
}
|
| 221 |
```
|
|
@@ -227,4 +227,4 @@ python run_bias_analysis.py \
|
|
| 227 |
## Model Card Contact
|
| 228 |
|
| 229 |
- Email: [your.email@universite-paris-saclay.fr]
|
| 230 |
-
- HuggingFace: [@
|
|
|
|
| 62 |
|
| 63 |
```bash
|
| 64 |
pip install transformers torch datasets
|
| 65 |
+
git clone https://huggingface.co/spaces/moujar/TEMPO-BIAS
|
| 66 |
+
cd TEMPO-BIAS
|
| 67 |
pip install -r requirements.txt
|
| 68 |
```
|
| 69 |
|
|
|
|
| 215 |
author = {Paris-Saclay University},
|
| 216 |
year = {2026},
|
| 217 |
version = {1.0.0},
|
| 218 |
+
url = {https://huggingface.co/spaces/moujar/TEMPO-BIAS},
|
| 219 |
note = {Fairness in AI Course Project}
|
| 220 |
}
|
| 221 |
```
|
|
|
|
| 227 |
## Model Card Contact
|
| 228 |
|
| 229 |
- Email: [your.email@universite-paris-saclay.fr]
|
| 230 |
+
- HuggingFace: [@moujar](https://huggingface.co/moujar)
|
README.md
CHANGED
|
@@ -28,8 +28,8 @@ This project provides tools to measure and compare political biases in LLMs by:
|
|
| 28 |
|
| 29 |
```bash
|
| 30 |
# Clone the repository
|
| 31 |
-
git clone https://huggingface.co/spaces/
|
| 32 |
-
cd
|
| 33 |
|
| 34 |
# Install dependencies
|
| 35 |
pip install -r requirements.txt
|
|
@@ -269,7 +269,7 @@ print(f"Bias reduction: {results['bias_reduction']:.1%}")
|
|
| 269 |
## Project Structure
|
| 270 |
|
| 271 |
```
|
| 272 |
-
|
| 273 |
βββ README.md
|
| 274 |
βββ MODEL_CARD.md
|
| 275 |
βββ requirements.txt
|
|
@@ -301,7 +301,7 @@ If you use this tool in your research, please cite:
|
|
| 301 |
title = {LLM Political Bias Analysis Pipeline},
|
| 302 |
author = {Paris-Saclay University},
|
| 303 |
year = {2026},
|
| 304 |
-
url = {https://huggingface.co/spaces/
|
| 305 |
}
|
| 306 |
```
|
| 307 |
|
|
@@ -321,6 +321,5 @@ Contributions are welcome! Please read our [Contributing Guidelines](CONTRIBUTIN
|
|
| 321 |
|
| 322 |
## Contact
|
| 323 |
|
| 324 |
-
- **
|
| 325 |
-
- **
|
| 326 |
-
- **Institution**: Paris-Saclay University - Fairness in AI Course
|
|
|
|
| 28 |
|
| 29 |
```bash
|
| 30 |
# Clone the repository
|
| 31 |
+
git clone https://huggingface.co/spaces/moujar/TEMPO-BIAS
|
| 32 |
+
cd TEMPO-BIAS
|
| 33 |
|
| 34 |
# Install dependencies
|
| 35 |
pip install -r requirements.txt
|
|
|
|
| 269 |
## Project Structure
|
| 270 |
|
| 271 |
```
|
| 272 |
+
TEMPO-BIAS/
|
| 273 |
βββ README.md
|
| 274 |
βββ MODEL_CARD.md
|
| 275 |
βββ requirements.txt
|
|
|
|
| 301 |
title = {LLM Political Bias Analysis Pipeline},
|
| 302 |
author = {Paris-Saclay University},
|
| 303 |
year = {2026},
|
| 304 |
+
url = {https://huggingface.co/spaces/moujar/TEMPO-BIAS}
|
| 305 |
}
|
| 306 |
```
|
| 307 |
|
|
|
|
| 321 |
|
| 322 |
## Contact
|
| 323 |
|
| 324 |
+
- **Email**: [abderrahmane.moujar@universite-paris-saclay.fr]
|
| 325 |
+
- **Institution**: Paris-Saclay University - Fairness in AI Course under [Adrian Popescu]
|
|
|
config.yaml
CHANGED
|
@@ -121,7 +121,7 @@ huggingface:
|
|
| 121 |
upload: false
|
| 122 |
|
| 123 |
# Repository ID (username/repo-name)
|
| 124 |
-
repo_id: "
|
| 125 |
|
| 126 |
# Token (set via environment variable HF_TOKEN)
|
| 127 |
token: null
|
|
|
|
| 121 |
upload: false
|
| 122 |
|
| 123 |
# Repository ID (username/repo-name)
|
| 124 |
+
repo_id: "moujar/TEMPO-BIAS-results"
|
| 125 |
|
| 126 |
# Token (set via environment variable HF_TOKEN)
|
| 127 |
token: null
|
pyproject.toml
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
[tool.poetry]
|
| 2 |
-
name = "
|
| 3 |
version = "1.0.0"
|
| 4 |
description = "A pipeline for analyzing political bias in Large Language Models using vLLM serving"
|
| 5 |
authors = ["Paris-Saclay University <fairness-ai@universite-paris-saclay.fr>"]
|
| 6 |
readme = "README.md"
|
| 7 |
license = "MIT"
|
| 8 |
-
repository = "https://github.com/
|
| 9 |
keywords = ["llm", "political-bias", "fairness", "vllm", "nlp"]
|
| 10 |
|
| 11 |
[tool.poetry.dependencies]
|
|
|
|
| 1 |
[tool.poetry]
|
| 2 |
+
name = "TEMPO-BIAS"
|
| 3 |
version = "1.0.0"
|
| 4 |
description = "A pipeline for analyzing political bias in Large Language Models using vLLM serving"
|
| 5 |
authors = ["Paris-Saclay University <fairness-ai@universite-paris-saclay.fr>"]
|
| 6 |
readme = "README.md"
|
| 7 |
license = "MIT"
|
| 8 |
+
repository = "https://github.com/moujar/TEMPO-BIAS"
|
| 9 |
keywords = ["llm", "political-bias", "fairness", "vllm", "nlp"]
|
| 10 |
|
| 11 |
[tool.poetry.dependencies]
|