Predicting-ages-of-bones-from-X-Rays

This notebook is my attempt at predicting ages of children from the X-Ray images of their hands.

View the Project on GitHub NitishaS-812k/Predicting-ages-of-bones-from-X-Rays

Predicting-ages-of-bones-from-X-Rays

This notebook explore the dataset used in the Pediatric Bone Age Challenge, 2017, also known as the RSNA(Radiological Society of North America) and attempts to predict the ages of children using X-Ray images of their hands.More information about the dataset and the dataset itself can be found on kaggle here.

Model description

The notebook uses the pre-trained model Xception to predict ages.The ImageDataGenerator class from keras has been used to enable efficient loading, preprocessing and augmentation of the dataset.The model obtained a mean absolute error of approximately 7.6 months.

Requirements

Results

</img>

Improvements possible

InceptionResNetV2 might perform slightly better but it wasn’t possible to train it because of the large size of its weights.There are many combinations of models possible using different pre-trained models, optimizers and learning rates.

The same notebook is available on kaggle here.