Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,12 +17,18 @@ configs:
|
|
| 17 |
The [Higgs dataset](https://www.nature.com/articles/ncomms5308/) from "[Searching for exotic particles in high-energy physics with deep learning](https://www.nature.com/articles/ncomms5308/)".
|
| 18 |
Try to classify particles as Higgs bosons.
|
| 19 |
|
| 20 |
-
# Configurations and tasks
|
| 21 |
# Configurations and tasks
|
| 22 |
| **Configuration** | **Task** | **Description** |
|
| 23 |
|-------------------|---------------------------|-----------------------------------------------------------------|
|
| 24 |
| higgs | Binary classification | Is the particle a Higgs boson? |
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
# Features
|
| 27 |
|**Feature** |**Type** |
|
| 28 |
|---------------------------|-----------|
|
|
|
|
| 17 |
The [Higgs dataset](https://www.nature.com/articles/ncomms5308/) from "[Searching for exotic particles in high-energy physics with deep learning](https://www.nature.com/articles/ncomms5308/)".
|
| 18 |
Try to classify particles as Higgs bosons.
|
| 19 |
|
|
|
|
| 20 |
# Configurations and tasks
|
| 21 |
| **Configuration** | **Task** | **Description** |
|
| 22 |
|-------------------|---------------------------|-----------------------------------------------------------------|
|
| 23 |
| higgs | Binary classification | Is the particle a Higgs boson? |
|
| 24 |
|
| 25 |
+
# Usage
|
| 26 |
+
```python
|
| 27 |
+
from datasets import load_dataset
|
| 28 |
+
|
| 29 |
+
dataset = load_dataset("mstz/higgs")["train"]
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
# Features
|
| 33 |
|**Feature** |**Type** |
|
| 34 |
|---------------------------|-----------|
|