| Source | {{ dataset.name }} |
| Dimensions | {{ dataset.dims }} |
| Target variable | {{ dataset.target }} |
| Input features (≤50) | {{ dataset.features_show }} |
| Data split |
Train: {{ dataset.split.train.n }} ({{ '%.1f'|format(dataset.split.train.pct) }}%) |
Validation: {{ dataset.split.val.n }} ({{ '%.1f'|format(dataset.split.val.pct) }}%) |
Test: {{ dataset.split.test.n }} ({{ '%.1f'|format(dataset.split.test.pct) }}%)
|
{% if dataset.preprocessing_text %}
| Preprocessing steps |
{{ dataset.preprocessing_text }} |
{% elif dataset.preprocessing_list %}
| Preprocessing steps |
{% for step in dataset.preprocessing_list %}
- {{ step }}
{% endfor %}
|
{% elif dataset.preprocessing_note %}
| Preprocessing (note) |
{{ dataset.preprocessing_note }} |
{% endif %}
{% if dataset.classes %}