June 2025Research Work

Early Prediction of Down Syndrome Using Deep Transfer Learning-Based Approaches

A transfer learning study for early Down Syndrome screening from facial images using multiple pre-trained CNN architectures and targeted fine-tuning.

Read paper

Overview

This research project focused on building a deep learning-based system to detect Down Syndrome in children using facial images. The goal was to create a non-contact early screening approach that could assist clinicians or caregivers in identifying potential signs with high accuracy.

Motivation

Down Syndrome, caused by an extra chromosome 21, is one of the most common genetic disorders globally. Early detection helps with timely medical and social interventions.

Because facial characteristics are often indicative of the condition, this work explored whether convolutional neural networks could learn subtle visual differences between Down Syndrome and non-Down Syndrome children.

Dataset

The work used a public Kaggle dataset containing around 3,000 facial images of children. The dataset was roughly balanced between children diagnosed with Down Syndrome and children without Down Syndrome, with ages ranging from 0 to 15 years.

  • Images were resized and normalized before training.
  • Augmentation included rotation, flipping, and zooming.
  • The data was split into 75% training and 25% test sets.

Methodology

Transfer learning was applied using four pre-trained CNN architectures: Xception, InceptionV3, DenseNet121, and EfficientNetB0. Early layers were frozen to preserve general visual features, while deeper layers were fine-tuned for the task.

Batch size, learning rate, and dropout were tuned carefully to improve stability and reduce overfitting.

Results

All evaluated models achieved strong accuracy, with Xception producing the best overall performance. Its depthwise separable convolution design helped capture fine-grained facial patterns efficiently and consistently.

Final Takeaway

This project demonstrates how transfer learning can make medical-image classification more practical when labeled data is limited. The study also highlights the importance of model selection and careful fine-tuning in sensitive screening workflows.