Coder Social home page Coder Social logo

litcoderr / cheenet Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 40 KB

Custom Made Neural Network Framework. By not using pre-made Frameworks, this is a way to actually understand Machine Learning. Free to use it and always welcome to Contribute!

Python 100.00%

cheenet's Introduction

Welcome to CheeNet

What is CheeNet

A Custom-made Framework of Neural Network. Anyone can use this for simple training and actually understand the fundamentals of Neural Network by observing the code.

How to Use the Library

  1. Download(Clone) this repository to your project folder.
    Terminal
git clone https://github.com/litcoderr/CheeNet.git
  1. Import CheeNet to your project (Make Sure all the files are in the same folder)
import CheeNet_v1
  1. Configure a Neural Network
NN = CheeNet_v1.NeuralNetwork(learning_rate=0.1,epochs=10000,limit=0.1)

Hyper Parameters

  • learning_rate
  • epochs
  • limit
  1. Add training Sets
NN.add_trainingSet([[0,0],[1,0],[0,1],[1,1]],[[1,0],[0,1],[0,1],[1,0]])
  1. Design the Network
    Code Example
NN.add_Layer('sigmoid',2,3)
NN.add_Layer('sigmoid',3,4)
NN.add_Layer('sigmoid',4,3)
NN.add_Layer('sigmoid',3,2)
NN.add_Layer('softmax',2,1)
  1. Train the Network
NN.train()

You are Ready to play with Neural Nets!!

cheenet's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.