Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -12,6 +12,7 @@ task_categories:
|
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- australian_credit
|
|
|
15 |
---
|
16 |
# Australian Credit
|
17 |
The [Australian Credit](https://archive-beta.ics.uci.edu/dataset/143/statlog+australian+credit+approval) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
@@ -28,5 +29,9 @@ Classification of loan approval.
|
|
28 |
```python
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
-
dataset = load_dataset("mstz/australian_credit"
|
32 |
-
```
|
|
|
|
|
|
|
|
|
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- australian_credit
|
15 |
+
license: cc
|
16 |
---
|
17 |
# Australian Credit
|
18 |
The [Australian Credit](https://archive-beta.ics.uci.edu/dataset/143/statlog+australian+credit+approval) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
|
|
29 |
```python
|
30 |
from datasets import load_dataset
|
31 |
|
32 |
+
dataset = load_dataset("mstz/australian_credit")["train"]
|
33 |
+
```
|
34 |
+
|
35 |
+
|
36 |
+
# Features
|
37 |
+
Target feature changes according to the selected configuration and is always in last position in the dataset.
|