Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LdDl/cnns
Convolutional Neural Networks in Go
https://github.com/LdDl/cnns
cnn convolutional-neural-networks machine-learning mlp neural-networks
Last synced: 5 days ago
JSON representation
Convolutional Neural Networks in Go
- Host: GitHub
- URL: https://github.com/LdDl/cnns
- Owner: LdDl
- License: mit
- Created: 2018-07-11T05:17:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T21:29:41.000Z (about 1 year ago)
- Last Synced: 2024-06-20T02:05:30.861Z (5 months ago)
- Topics: cnn, convolutional-neural-networks, machine-learning, mlp, neural-networks
- Language: Go
- Homepage:
- Size: 9.76 MB
- Stars: 49
- Watchers: 4
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![GoDoc](https://godoc.org/github.com/LdDl/cnns?status.svg)](https://godoc.org/github.com/LdDl/cnns)
[![Build Status](https://travis-ci.com/LdDl/cnns.svg?branch=master)](https://travis-ci.com/LdDl/cnns)
[![Go Report Card](https://goreportcard.com/badge/github.com/LdDl/cnns)](https://goreportcard.com/report/github.com/LdDl/cnns)![alt text](https://raw.githubusercontent.com/LdDl/cnns/master/cnns_png.png)
# CNNs #
CNNS (Convolutional Neural Networks) is a little package for developing simple neural networks, such as CNN (you don't say?) and MLP.## It has been made only for studying purposes. Do not use it in production!
## Any PR's (new layers, learning optimizators, Excel-examples, bug-fixes) to improve this library will be appreciated.## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Support](#support)## Features
- CNN (convolutional neural network)
- MLP (multilayer perceptron)## Installation
Installation is pretty simple:
```go
go get github.com/LdDl/cnns
```## Usage
Just look into [examples folder](examples)
For some people it is really hard to understand algorithms without step-by-step examples. So we provide some in xlsx-based files
## Support
If you have troubles or questions please [open an issue](https://github.com/LdDl/cnns/issues/new).