Skip to content

EddahMurrey/AI-ML-proj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

cocos-usecase

Covid-19 Detection Usecase Using Pytorch

We are researching on Covid 19 detection using chest xray images using Pytorch. The images were downloaded from Kaggle, an online community for data scientists and machine learning enthusiasts. The algorithm would then try to detect from the images downloaded which patient image has covid-19. The images are in three folders normal, viral, covid with about 1000 images each. This is a continual research hence, we are working to improve the usecase and algorithm and also add more datasets.

Prerequisites

  • Anaconda or Google Colab to write code in Jupyter notebook

How It Works

The algorithm has set of sets that it follows to achieve accurate prediction. These steps are critical and dependent on the previous step hence these steps affect each other.These are:

  1. Importing Libraries Python libraries are imported to be used for the project. This code cell after importing libraries prints th
%matplotlib inline

import os
import shutil
import random
import torch
import torchvision
import numpy as np

from PIL import Image
from matplotlib import pyplot as plt

torch.manual_seed(0)

print('Using PyTorch version', torch.__version__)
  1. Preparing Training and Test Sets

  2. Creating Custom Dataset

  3. Image Transformations

  4. Prepare DataLoader

  5. Data Visualization

  6. Model Creation

  7. Model Training

  8. Prediction

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published