Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kiritoind/neural-network-for-cat-image-classification

This script defines essential functions for constructing a deep neural network from scratch for image classification. It includes activation functions like sigmoid and ReLU, data loading from H5 files, parameter initialization, forward and backward propagation for training, gradient descent for parameter updates, and functions for prediction
https://github.com/kiritoind/neural-network-for-cat-image-classification

classification computer-vision deep-learning deep-neural-networks jupyter-notebook numpy python

Last synced: 2 days ago
JSON representation

This script defines essential functions for constructing a deep neural network from scratch for image classification. It includes activation functions like sigmoid and ReLU, data loading from H5 files, parameter initialization, forward and backward propagation for training, gradient descent for parameter updates, and functions for prediction

Awesome Lists containing this project

README

        

# Cat Image Classification Neural Network

A from scratch neural network for classifying cat images using deep learning.

## Introduction

This project is a example of building a neural network to classify cat images. The neural network is trained on a dataset of labeled cat and non-cat images.

## Features

- Image classification as "cat" or "not cat."
- Pre-trained model for quick inference.
- Training scripts for custom dataset.