An open API service indexing awesome lists of open source software.

https://github.com/mehrab-kalantari/airfoil-lift-coefficient-prediction

Building a multi-input-output CNN to predict airfoil lift coefficients
https://github.com/mehrab-kalantari/airfoil-lift-coefficient-prediction

mlp-regressor multi-channel-cnn multi-input-neural-network multi-output-regression

Last synced: 4 months ago
JSON representation

Building a multi-input-output CNN to predict airfoil lift coefficients

Awesome Lists containing this project

README

        

# Airfoil Lift Coefficient Prediction
Airfoil Lift Coefficients Prediction using Multi-input-output CNNs

## Contents
### Loading Dataset
Dataset is an excel file containing numerical features and images.

### Preparing and Cleaning Data
* Handling images missing data
* Handling wrong values
* Resizing images to (64, 64)

### Preprocessing Data
* Scaling
* Standardization

### Creating Model
Here is the model with two inputs (images and two numerical features) and two outputs (coefficients)
* ![p](pics/model.jpg)

### Evaluating Model
Total loss function (MSE)
* ![p1](pics/loss.jpg)

Additionally, r2 score for CL and CD predictions were 0.94 and 0.45 respectively.