abhisheks008 / DL-Simplified

Deep Learning Simplified is an Open-source repository, containing beginner to advance level deep learning projects for the contributors, who are willing to start their journey in Deep Learning. Devfolio URL, https://devfolio.co/projects/deep-learning-simplified-f013
https://quine.sh/repo/abhisheks008-DL-Simplified-499023976
MIT License
333 stars 297 forks source link

[Project Addition] Credit Risk Prediction using Neural Networks #723

Open Srijansarkar17 opened 1 month ago

Srijansarkar17 commented 1 month ago

Deep Learning Simplified Repository (Proposing new issue)

:red_circle: Credit Risk Prediction using Neural Networks :
:red_circle: To be able to correctly predict the credit risk of an individual with the help of various featrues :
:red_circle: credit_risk_data.csv :
:red_circle: I will be training this model based on various methods. First I will preprocess the data and then apply some data visualization. Then I will use neural networks for training. For training, I will use various activation functions and various loss metrics for getting the best accuracy score. I will also use numerous hidden layers for the best accuracy :


📍 Follow the Guidelines to Contribute in the Project :


:red_circle::yellow_circle: Points to Note :


:white_check_mark: To be Mentioned while taking the issue :


Happy Contributing 🚀

All the best. Enjoy your open source journey ahead. 😎

github-actions[bot] commented 1 month ago

Thank you for creating this issue! We'll look into it as soon as possible. Your contributions are highly appreciated! 😊

abhisheks008 commented 1 month ago

What are the deep learning models you are planning to implement? Can you please specify.

Srijansarkar17 commented 1 month ago

I will be using basic neural networks, but I will try to use many activation functions such as sigmoid, tanh etc and various loss functions.

abhisheks008 commented 1 month ago

Can you specify the models/architectures you are planning to implement?

Srijansarkar17 commented 1 month ago

I will be using 4 layers hidden neural network architechture with the activation function of hidden layers as 'relu' and the activation function of the output neuron as sigmoid. The loss function used in this case will be 'binary_crossentropy' because the output label is a binary classifier.

abhisheks008 commented 1 month ago

I will be using 4 layers hidden neural network architechture with the activation function of hidden layers as 'relu' and the activation function of the output neuron as sigmoid. The loss function used in this case will be 'binary_crossentropy' because the output label is a binary classifier.

That's one algorithm. What are the other 3 models you are planning for this project.