musk / README.md
mstz's picture
Upload 4 files
0f70e69
|
raw
history blame
999 Bytes
---
language:
- en
tags:
- musk
- tabular_classification
- binary_classification
- multiclass_classification
pretty_name: Musk
size_categories:
- 10K<n<100K
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
- tabular-classification
configs:
- musk1
- musk2
---
# Musk
The [Musk dataset](https://archive.ics.uci.edu/ml/datasets/Musk) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
Census dataset including personal characteristic of a person, and their income threshold.
# Configurations and tasks
| **Configuration** | **Task** | **Description** |
|-------------------|---------------------------|------------------------|
| musk1 | Binary classification | Is the molecule a musk?|
| musk2 | Binary classification | Is the molecule a musk?|
# Usage
```python
from datasets import load_dataset
dataset = load_dataset("mstz/musk", "musk1")["train"]
```