Upload dataset
Browse files- README.md +125 -0
- data/train-00000-of-00001.parquet +2 -2
README.md
CHANGED
|
@@ -1,3 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Law School Admission Dataset
|
| 2 |
|
| 3 |
## Dataset Overview
|
|
|
|
| 1 |
+
---
|
| 2 |
+
configs:
|
| 3 |
+
- config_name: default
|
| 4 |
+
data_files:
|
| 5 |
+
- split: train
|
| 6 |
+
path: data/train-*
|
| 7 |
+
dataset_info:
|
| 8 |
+
features:
|
| 9 |
+
- name: lsat
|
| 10 |
+
dtype: float32
|
| 11 |
+
- name: gpa
|
| 12 |
+
dtype: float32
|
| 13 |
+
- name: race
|
| 14 |
+
dtype:
|
| 15 |
+
class_label:
|
| 16 |
+
names:
|
| 17 |
+
'0': Asian
|
| 18 |
+
'1': Black
|
| 19 |
+
'2': Hispanic
|
| 20 |
+
'3': White
|
| 21 |
+
- name: resident
|
| 22 |
+
dtype:
|
| 23 |
+
class_label:
|
| 24 |
+
names:
|
| 25 |
+
'0': out-of-state
|
| 26 |
+
'1': in-state
|
| 27 |
+
- name: college
|
| 28 |
+
dtype:
|
| 29 |
+
class_label:
|
| 30 |
+
names:
|
| 31 |
+
'0': Akron
|
| 32 |
+
'1': Arizona
|
| 33 |
+
'2': Arizona State
|
| 34 |
+
'3': Baltimore
|
| 35 |
+
'4': Buffalo
|
| 36 |
+
'5': Cincinnati
|
| 37 |
+
'6': Cleveland State
|
| 38 |
+
'7': George Mason
|
| 39 |
+
'8': Hawaii
|
| 40 |
+
'9': Houston
|
| 41 |
+
'10': Idaho
|
| 42 |
+
'11': Louisiana State
|
| 43 |
+
'12': Michigan
|
| 44 |
+
'13': Minnesota
|
| 45 |
+
'14': Missouri at Columbia
|
| 46 |
+
'15': Missouri at Kansas City
|
| 47 |
+
'16': Nevada Las Vegas
|
| 48 |
+
'17': North Carolina
|
| 49 |
+
'18': Northern Illinois
|
| 50 |
+
'19': Ohio State
|
| 51 |
+
'20': Virginia
|
| 52 |
+
'21': Washington
|
| 53 |
+
'22': West Virginia
|
| 54 |
+
'23': William and Mary
|
| 55 |
+
'24': Wyoming
|
| 56 |
+
- name: year
|
| 57 |
+
dtype:
|
| 58 |
+
class_label:
|
| 59 |
+
names:
|
| 60 |
+
'0': '2005'
|
| 61 |
+
'1': '2006'
|
| 62 |
+
'2': '2007'
|
| 63 |
+
'3': '2008'
|
| 64 |
+
'4': 200x
|
| 65 |
+
- name: gender
|
| 66 |
+
dtype:
|
| 67 |
+
class_label:
|
| 68 |
+
names:
|
| 69 |
+
'0': female
|
| 70 |
+
'1': male
|
| 71 |
+
- name: admit
|
| 72 |
+
dtype:
|
| 73 |
+
class_label:
|
| 74 |
+
names:
|
| 75 |
+
'0': denied
|
| 76 |
+
'1': admitted
|
| 77 |
+
- name: black
|
| 78 |
+
dtype:
|
| 79 |
+
class_label:
|
| 80 |
+
names:
|
| 81 |
+
'0': 0.0
|
| 82 |
+
'1': 1.0
|
| 83 |
+
- name: hispanic
|
| 84 |
+
dtype:
|
| 85 |
+
class_label:
|
| 86 |
+
names:
|
| 87 |
+
'0': 0.0
|
| 88 |
+
'1': 1.0
|
| 89 |
+
- name: asian
|
| 90 |
+
dtype:
|
| 91 |
+
class_label:
|
| 92 |
+
names:
|
| 93 |
+
'0': 0
|
| 94 |
+
'1': 1
|
| 95 |
+
- name: white
|
| 96 |
+
dtype:
|
| 97 |
+
class_label:
|
| 98 |
+
names:
|
| 99 |
+
'0': 0
|
| 100 |
+
'1': 1
|
| 101 |
+
- name: missingrace
|
| 102 |
+
dtype:
|
| 103 |
+
class_label:
|
| 104 |
+
names:
|
| 105 |
+
'0': 0
|
| 106 |
+
'1': 1
|
| 107 |
+
- name: urm
|
| 108 |
+
dtype:
|
| 109 |
+
class_label:
|
| 110 |
+
names:
|
| 111 |
+
'0': 0
|
| 112 |
+
'1': Black OR Hispanic
|
| 113 |
+
- name: enroll
|
| 114 |
+
dtype:
|
| 115 |
+
class_label:
|
| 116 |
+
names:
|
| 117 |
+
'0': not enrolled
|
| 118 |
+
'1': enrolled
|
| 119 |
+
splits:
|
| 120 |
+
- name: train
|
| 121 |
+
num_bytes: 14090514
|
| 122 |
+
num_examples: 124557
|
| 123 |
+
download_size: 1062910
|
| 124 |
+
dataset_size: 14090514
|
| 125 |
+
---
|
| 126 |
# Law School Admission Dataset
|
| 127 |
|
| 128 |
## Dataset Overview
|
data/train-00000-of-00001.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:495b188be8119a558bae3807a3793d292a189471fb83d699866dae4b559918b6
|
| 3 |
+
size 1062910
|