recodehive / machine-learning-repos

A curated list of awesome machine learning frameworks, libraries and software (by language). I
https://machine-learning-repos.vercel.app/
MIT License
170 stars 307 forks source link

💡[Feature]: Predicting COVID-19 from Chest X-Ray Images #454

Closed ashis2004 closed 4 months ago

ashis2004 commented 4 months ago

Is there an existing issue for this?

Feature Description

Built and trained a convolutional neural network in Keras with TensorFlow as backend from scratch to predict patients if they were infected with COVID-19 or not using their chest X-ray images. Matplotlib was used for data visualization. Data preprocessing and data augmentation was carried out using tensorflow 2.0 The model used was sequential with a combination of convolutional layers, pooling layers, dropout layers, dense layers with relu activation and output layer with sigmoid activation. The dataset contained the lungs X-ray images of both groups i.e non-covid and covid infected patients. The dataset was obtained from kaggle. Metrics chosen for model evaluation were Training set, test set and validation set accuracy. Adam optimizer with learning rate of 0.001 was choosed for gradient descent The entire project was carried out on the Google Colab environment Results of the model were following:

Training Set Accuracy : 98.41 %

Training Set Loss : 0.0490

Validation Set Accuracy : 97.51 %

Validation Set Loss: 0.0759

Test Set Accuracy : 94.83 %

Test Set Loss : 0.1141

Use Case

The prediction of COVID-19 from chest X-ray images using Convolutional Neural Networks (CNNs) has several critical use cases in the healthcare sector. Firstly, it enhances diagnostic accuracy and speed in clinical settings, especially in regions with limited access to PCR testing facilities. By rapidly analyzing X-ray images, CNNs can assist radiologists in identifying COVID-19-related abnormalities, enabling timely isolation and treatment of infected individuals. Secondly, CNN-based models can serve as valuable tools in emergency departments, where quick decision-making is essential. They help in triaging patients, determining the severity of lung involvement, and prioritizing those needing immediate medical attention.

Benefits

No response

Add ScreenShots

image image

Priority

High

Record

github-actions[bot] commented 4 months ago

Thank you for creating this issue! 🎉 We'll look into it as soon as possible. In the meantime, please make sure to provide all the necessary details and context. If you have any questions reach out to LinkedIn. Your contributions are highly appreciated! 😊

Note: This repo is for beginners to learn and start with Opensource we won't accept more than 10 issues from a single person, This restriction applies to Gssoc project which has a similar kind of adding folder files, Points will be reduced when we find Spam.

I Maintain the repo issue twice a day, or ideally 1 day, If your issue goes stale for more than one day you can tag and comment on this same issue.

You can also check our CONTRIBUTING.md for guidelines on contributing to this project.

ashis2004 commented 4 months ago

@sanjay-kv please assign it to me.

ashis2004 commented 4 months ago

i've tried many times but it denied why? @sanjay-kv sir image

sanjay-kv commented 4 months ago

fork, clone, create branch, push.

you trying to push directly, you wont be able to do that.

ashis2004 commented 4 months ago

ig all steps i've followed @sanjay-kv image image image

sanjay-kv commented 4 months ago

your work tree is clean , make some changes and try push again

ashis2004 commented 4 months ago

image again getting same @sanjay-kv

ashis2004 commented 4 months ago

in another issue in this repo getting same image

ShashwatAgrawal20 commented 4 months ago

Hi @ashis2004, could you please share the output of the command git remote -v

Additionally, I hope you have your access token setup because it looks like you're using HTTPS.

ashis2004 commented 4 months ago

check it sir @ShashwatAgrawal20 image

jindalpriyanshu101 commented 4 months ago

try git push -u upstream fix @ashis2004

here, fix = Your current branch name, name it accordingly. maybe its f1 or fix check for it yourself

ShashwatAgrawal20 commented 4 months ago

check it sir @ShashwatAgrawal20 image

DUDE!! can you see what you were doing wrong?

ashis2004 commented 4 months ago

Nope @ShashwatAgrawal20

ShashwatAgrawal20 commented 4 months ago

Nope @ShashwatAgrawal20

have you tried what @jindalpriyanshu101 said?

Usually, the origin URL points to your forked repository, and the upstream URL points to the original repository you forked from. In your case, they are swapped. So, when you try to push using git push origin .., origin points to the original repository, and you likely don't have access to it.

ashis2004 commented 4 months ago

Thank you @ShashwatAgrawal20 @jindalpriyanshu101

github-actions[bot] commented 4 months ago

Hello @ashis2004! Your issue #454 has been closed. Thank you for your contribution!