Skip to content

yjg30737/pyqt-pytorch-image-classification-gui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyqt-pytorch-image-classification-gui



PyQt5 usecase of pytorch image classification

This is the showcase of using a simple model that distinguishes between five types of flowers (tulips, dandelions, sunflowers, daisies, and roses) and presented result in a PyQt5 GUI.

The model training code can be found at kaggle notebook.

The dataset includes five types of flowers, and the model was trained on this dataset for 15 epochs, with data augmentation applied to enhance accuracy.

The total size of the model file is small, at 15MB.

Below is a graph showing the changes in the model's performance (predictions, errors) according to the frequency of model training.

image

It can be seen that the model's performance gradually improves as it trains.

If you are interested in learning about basic AI model creation with PyTorch, obtaining datasets, training methods, and utilization, please refer here!

Requirements

  • PyQt5 >= 5.14
  • torch
  • torchvision
  • numpy

How to Run

  1. git clone ~
  2. pip install -r requirements.txt
  3. python main.py

Preview

image