Datasets:
Tasks:
Text Classification
Formats:
parquet
Languages:
English
Size:
10K - 100K
Tags:
legal
License:
Update README.md
Browse files
README.md
CHANGED
@@ -93,57 +93,19 @@ language:
|
|
93 |
pretty_name: COMPAS
|
94 |
size_categories:
|
95 |
- 10K<n<100K
|
|
|
|
|
|
|
|
|
96 |
---
|
|
|
97 |
|
98 |
-
|
99 |
|
100 |
-
##
|
101 |
-
|
102 |
-
The COMPAS (Correctional Offender Management Profiling for Alternative Sanctions) dataset has been used to analyze various aspects of the criminal justice system, including whether certain groups of defendants are more likely
|
103 |
-
to receive harsher sentences, whether the algorithm's predictions are accurate, and the impact of these predictions on sentencing decisions. However, it's crucial to consider the context and potential biases when interpreting the results from this dataset.
|
104 |
-
|
105 |
-
|
106 |
-
## Dataset Details
|
107 |
-
|
108 |
-
This data originally came from [COMPAS Recidivism Racial Bias](https://www.kaggle.com/datasets/danofer/compass)
|
109 |
-
|
110 |
-
The 40 columns provide a detailed look at the defendant's demographic information, assessment details,
|
111 |
-
recidivism indicators, and risk scores assigned by the COMPAS algorithm. Each row represents a unique assessment or case,
|
112 |
-
capturing the information associated with an individual's involvement with the criminal justice system and the assessment made by the
|
113 |
-
COMPAS tool regarding their risk of Recidivism and other factors.
|
114 |
-
|
115 |
-
An in-depth analysis by ProPublica can be found in their [data methodology article](https://www.propublica.org/article/how-we-analyzed-the-compas-recidivism-algorithm).
|
116 |
-
|
117 |
-
Original Article:
|
118 |
-
[Machine Bias](https://www.propublica.org/article/machine-bias-risk-assessments-in-criminal-sentencing)
|
119 |
-
|
120 |
-
```latex
|
121 |
-
@incollection{angwin2022machine,
|
122 |
-
title={Machine bias},
|
123 |
-
author={Angwin, Julia and Larson, Jeff and Mattu, Surya and Kirchner, Lauren},
|
124 |
-
booktitle={Ethics of data and analytics},
|
125 |
-
pages={254--264},
|
126 |
-
year={2022},
|
127 |
-
publisher={Auerbach Publications}
|
128 |
-
}
|
129 |
-
```
|
130 |
-
- Dataset Name: **COMPAS**
|
131 |
-
- Language: English
|
132 |
-
- Total Size: 18,316 demonstrations
|
133 |
-
|
134 |
-
## Contents
|
135 |
-
Data contains variables used by the COMPAS algorithm in scoring defendants and their outcomes within 2 years of the decision for over 10,000 criminal defendants in Broward County, Florida.
|
136 |
-
3 subsets of the data are provided, including a subset of only violent recidivism (as opposed to, e.g. being reincarcerated for non-violent offenses such as vagrancy or Marijuana).
|
137 |
-
|
138 |
-
|
139 |
-
## How to use
|
140 |
|
141 |
```python
|
142 |
from datasets import load_dataset
|
143 |
|
144 |
-
dataset = load_dataset("AiresPucrs/COMPAS", split='train')
|
145 |
-
|
146 |
```
|
147 |
-
|
148 |
-
## License
|
149 |
-
The dataset is licensed under the [Open Database Commons ](https://opendatacommons.org/licenses/dbcl/1-0/).
|
|
|
93 |
pretty_name: COMPAS
|
94 |
size_categories:
|
95 |
- 10K<n<100K
|
96 |
+
task_categories:
|
97 |
+
- text-classification
|
98 |
+
tags:
|
99 |
+
- legal
|
100 |
---
|
101 |
+
# COMPAS (Teeny-Tiny Castle)
|
102 |
|
103 |
+
This dataset is part of the tutorial tied to the [Teeny-Tiny Castle](https://github.com/Nkluge-correa/TeenyTinyCastle), an open-source repository containing educational tools for AI Ethics and Safety research.
|
104 |
|
105 |
+
## How to Use
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
|
107 |
```python
|
108 |
from datasets import load_dataset
|
109 |
|
110 |
+
dataset = load_dataset("AiresPucrs/COMPAS", split = 'train')
|
|
|
111 |
```
|
|
|
|
|
|