Instructions to use keras-io/structured-data-classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TF-Keras
How to use keras-io/structured-data-classification with TF-Keras:
# Note: 'keras<3.x' or 'tf_keras' must be installed (legacy) # See https://github.com/keras-team/tf-keras for more details. from huggingface_hub import from_pretrained_keras model = from_pretrained_keras("keras-io/structured-data-classification") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -25,6 +25,7 @@ This tool does not provide medical advice It is intended for informational purpo
|
|
| 25 |
## Training and evaluation data
|
| 26 |
|
| 27 |
[Our dataset](https://archive.ics.uci.edu/ml/datasets/heart+Disease) is provided by the Cleveland Clinic Foundation for Heart Disease. It's a CSV file with 303 rows. Each row contains information about a patient (a sample), and each column describes an attribute of the patient (a feature). We use the features to predict whether a patient has a heart disease (binary classification).
|
|
|
|
| 28 |
|
| 29 |
## Training procedure
|
| 30 |
Training proceeds for 50 epochs with default Adam optimizer on binary crossentropy.
|
|
|
|
| 25 |
## Training and evaluation data
|
| 26 |
|
| 27 |
[Our dataset](https://archive.ics.uci.edu/ml/datasets/heart+Disease) is provided by the Cleveland Clinic Foundation for Heart Disease. It's a CSV file with 303 rows. Each row contains information about a patient (a sample), and each column describes an attribute of the patient (a feature). We use the features to predict whether a patient has a heart disease (binary classification).
|
| 28 |
+
The model is trained on 80% of data and evaluated on remaining 20%.
|
| 29 |
|
| 30 |
## Training procedure
|
| 31 |
Training proceeds for 50 epochs with default Adam optimizer on binary crossentropy.
|