Skip to content

jayaramakarthikeya/solo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SOLO Instance Segmentation

SOLO (Segmenting Objects by Locations) is an instance segmentation project that segments objects in an image using a unique approach where objects are localized and segmented in a unified process.

Project Structure

  • datasets/: Contains scripts and data for handling datasets.
  • images/: Includes sample images for inference and visualization.
  • models/: Contains model architectures used for segmentation.
  • trainer.py: The main training script for training the segmentation model.
  • inference.py: Script for running inference on images using a pre-trained model.
  • utils/: Utility functions for data preprocessing, post-processing, and visualization.

Installation and Requirements

To run this project, ensure you have the following installed:

  • Python 3.7 or higher
  • PyTorch
  • torchvision
  • NumPy
  • OpenCV

Install dependencies using:

pip install -r requirements.txt

Usage

  1. Training the model To train the model, use the trainer.py script:
  python trainer.py
  1. Running Inference To test the model on sample images, run:
    python inference.py
    

Results

The project outputs segmented images where each instance is highlighted distinctly.

Following are the loss curves for training and validation:

Total training loss Focal loss (Category) for training data Dice loss (Mask) for training data
Total Validation loss Focal loss (Category) for validation data Dice loss (Mask) for validation data

Sample Dataset and Predictions

Sample Dataset

Below is an image showing a sample from the dataset used for training and validation:

Sample Dataset

Predictions

Here are some example predictions made by the model:

Prediction 1 Prediction 2 Prediction 3

Explanation

These predictions illustrate the model's ability to segment instances in the input images effectively, highlighting its performance on unseen data.

Usage

Customize the dataset and modify configurations as needed in the datasets/yolo_dataset.py script. The output from training and predictions can be visualized using the provided utility scripts.

Contact

For any questions or issues, please feel free to reach out or contribute to this project.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages