mstz/fertility
收藏资源简介:
--- language: - en tags: - fertility - tabular_classification - binary_classification - multiclass_classification - UCI pretty_name: Fertility size_categories: - n<1K task_categories: - tabular-classification configs: - encoding - fertility license: cc --- # Fertility The [Fertility dataset](https://archive.ics.uci.edu/ml/datasets/Fertility) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets). Classify fertility abnormalities of patients. # Configurations and tasks | **Configuration** | **Task** | **Description** | |-------------------|---------------------------|------------------------------------------| | encoding | | Encoding dictionary | | fertility | Binary classification | Does the patient have fertility issues? | # Usage ```python from datasets import load_dataset dataset = load_dataset("mstz/fertility", "fertility")["train"] ``` # Features |**Feature** |**Type** | |----------------------------------------|------------------| | season_of_sampling | `[string]` | | age_at_time_of_sampling | `[int8]` | | has_had_childhood_diseases | `[bool]` | | has_had_serious_trauma | `[bool]` | | has_had_surgical_interventions | `[bool]` | | has_had_high_fevers_in_the_past_year | `[string]` | | frequency_of_alcohol_consumption | `[float16]` | | smoking_frequency | `[string]` | | number_of_sitting_hours_per_day | `[float16]` |
--- 语言: - 英语 标签: - 生育能力(fertility) - 表格分类(tabular_classification) - 二分类(binary_classification) - 多分类(multiclass_classification) - UCI 美观名称:生育能力(Fertility) 样本规模类别: - n<1K(样本数少于1000) 任务类别: - 表格分类(tabular-classification) 配置项: - 编码(encoding) - 生育能力(fertility) 许可证:CC --- # 生育能力(Fertility) 本数据集为来自UCI机器学习存储库(UCI ML repository)的生育能力数据集(Fertility dataset),数据集链接为:https://archive.ics.uci.edu/ml/datasets/Fertility。 任务目标为对患者的生育能力异常情况进行分类。 # 配置项与任务 | **配置项** | **任务类型** | **描述** | |-------------------|---------------------------|------------------------------------------| | 编码(encoding) | 无 | 编码字典 | | 生育能力(fertility) | 二分类(binary_classification) | 判断患者是否存在生育能力问题 | # 使用方法 python from datasets import load_dataset dataset = load_dataset("mstz/fertility", "fertility")["train"] # 特征字段 | **特征名称** | **数据类型** | |----------------------------------------|------------------| | 采样季节(season_of_sampling) | `string` | | 采样时年龄(age_at_time_of_sampling) | `int8` | | 童年是否罹患疾病(has_had_childhood_diseases) | `bool` | | 是否经历过严重创伤(has_had_serious_trauma) | `bool` | | 是否接受过外科手术干预(has_had_surgical_interventions) | `bool` | | 过去一年是否出现过高烧(has_had_high_fevers_in_the_past_year) | `string` | | 酒精消费频率(frequency_of_alcohol_consumption) | `float16` | | 吸烟频率(smoking_frequency) | `string` | | 每日久坐时长(number_of_sitting_hours_per_day) | `float16` |
数据集概述
基本信息
- 名称: Fertility
- 语言: 英语
- 标签:
- 生育
- 表格分类
- 二分类
- 多分类
- UCI
- 描述: 来自UCI ML仓库的Fertility数据集,用于分类患者的生育异常情况。
- 大小分类: n<1K
- 任务分类: 表格分类
- 许可证: cc
配置与任务
| 配置 | 任务 | 描述 |
|---|---|---|
| encoding | 编码字典 | |
| fertility | 二分类 | 患者是否存在生育问题 |
使用示例
python from datasets import load_dataset
dataset = load_dataset("mstz/fertility", "fertility")["train"]
特征
| 特征 | 类型 |
|---|---|
| season_of_sampling | [string] |
| age_at_time_of_sampling | [int8] |
| has_had_childhood_diseases | [bool] |
| has_had_serious_trauma | [bool] |
| has_had_surgical_interventions | [bool] |
| has_had_high_fevers_in_the_past_year | [string] |
| frequency_of_alcohol_consumption | [float16] |
| smoking_frequency | [string] |
| number_of_sitting_hours_per_day | [float16] |




