Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
Size:
< 1K
Libraries:
Datasets
pandas
License:
nicholasKluge commited on
Commit
6431efa
·
verified ·
1 Parent(s): cf10439

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -37
README.md CHANGED
@@ -77,50 +77,22 @@ dataset_info:
77
  license: cc
78
  language:
79
  - en
80
- pretty_name: breast-cancer-wisconsin
81
  size_categories:
82
  - n<1K
 
 
 
 
83
  ---
84
- # breast-cancer-wisconsin
85
 
86
- ## Overview
87
 
88
- The dataset contains features computed from digitized images of breast cancer biopsies, which are used to predict
89
- whether a breast mass is benign (non-cancerous) or malignant (cancerous).
90
-
91
- ## Dataset Details
92
-
93
- The original dataset is the [Breast Cancer Wisconsin (Diagnostic)](https://archive.ics.uci.edu/dataset/17/breast+cancer+wisconsin+diagnostic). This file concerns credit card applications.
94
- The dataset is based on features computed from digitized images of breast mass tissue samples. These features are computed from a digitized image of a fine needle aspirate (FNA) of a breast mass.
95
- Based on these features, the goal is to predict whether the mass is benign or malignant.
96
-
97
- ```latex
98
- @inproceedings{Street1993NuclearFE,
99
- title={Nuclear feature extraction for breast tumor diagnosis},
100
- author={William Nick Street and William H. Wolberg and Olvi L. Mangasarian},
101
- booktitle={Electronic imaging},
102
- year={1993},
103
- url={https://api.semanticscholar.org/CorpusID:14922543}
104
- }
105
- ```
106
-
107
- - Dataset Name: breast-cancer-wisconsin
108
- - Language: English
109
- - Total Size: 569 demonstrations
110
-
111
- ## Contents
112
- The dataset consists of a data frame with 30 columns + diagnosis = M (37,3%) and B (62,7%).
113
-
114
-
115
- ## How to use
116
 
117
  ```python
118
  from datasets import load_dataset
119
 
120
- dataset = load_dataset("AiresPucrs/breast-cancer-wisconsin", split='train')
121
-
122
  ```
123
-
124
- ## License
125
-
126
- This dataset is licensed under a [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/legalcode) (CC BY 4.0) license.
 
77
  license: cc
78
  language:
79
  - en
80
+ pretty_name: Breast Cancer Wisconsin
81
  size_categories:
82
  - n<1K
83
+ task_categories:
84
+ - text-classification
85
+ tags:
86
+ - biology
87
  ---
88
+ # Breast Cancer Wisconsin (Teeny-Tiny Castle)
89
 
90
+ This dataset is part of the tutorial tied to the [Teeny-Tiny Castle](https://github.com/Nkluge-correa/TeenyTinyCastle), an open-source repository containing educational tools for AI Ethics and Safety research.
91
 
92
+ ## How to Use
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  ```python
95
  from datasets import load_dataset
96
 
97
+ dataset = load_dataset("AiresPucrs/breast-cancer-wisconsin", split = 'train')
 
98
  ```