Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- toxicity
|
6 |
+
- tabular_classification
|
7 |
+
- binary_classification
|
8 |
+
- multiclass_classification
|
9 |
+
pretty_name: Toxicity
|
10 |
+
size_categories:
|
11 |
+
- 10K<n<100K
|
12 |
+
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
|
13 |
+
- tabular-classification
|
14 |
+
configs:
|
15 |
+
- encoding
|
16 |
+
- income
|
17 |
+
- income-no race
|
18 |
+
- race
|
19 |
+
---
|
20 |
+
# Adult
|
21 |
+
The [Toxicity dataset](https://archive-beta.ics.uci.edu/dataset/728/toxicity) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
22 |
+
The dataset includes 171 molecules designed for functional domains of a core clock protein, CRY1, responsible for generating circadian rhythm.
|
23 |
+
|
24 |
+
# Configurations and tasks
|
25 |
+
| **Configuration** | **Task** | **Description** |
|
26 |
+
|-------------------|---------------------------|-----------------------------------------------------------------|
|
27 |
+
| toxicity | Binary classification | Is the molecule toxic? |
|
28 |
+
|
29 |
+
# Usage
|
30 |
+
```python
|
31 |
+
from datasets import load_dataset
|
32 |
+
|
33 |
+
dataset = load_dataset("mstz/toxicity", "toxicity")["train"]
|
34 |
+
```
|