All Projects → AlloyTeam → netural

AlloyTeam / netural

Licence: MIT license
netural === neural net, simple AI for the web.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to netural

Emojiintelligence
Neural Network built in Apple Playground using Swift
Stars: ✭ 1,323 (+6515%)
Mutual labels:  neural
Modernmt
Neural Adaptive Machine Translation that adapts to context and learns from corrections.
Stars: ✭ 231 (+1055%)
Mutual labels:  neural
neural name tagging
Code for "Reliability-aware Dynamic Feature Composition for Name Tagging" (ACL2019)
Stars: ✭ 39 (+95%)
Mutual labels:  neural
Neural Tools
Tools made for usage alongside artistic style transfer projects
Stars: ✭ 150 (+650%)
Mutual labels:  neural
Pytorch Beam Search Decoding
PyTorch implementation of beam search decoding for seq2seq models
Stars: ✭ 204 (+920%)
Mutual labels:  neural
flatiron-school-data-science-curriculum-resources
Lesson material on data science and machine learning topics/concepts
Stars: ✭ 118 (+490%)
Mutual labels:  neural
Ehcf
This is our implementation of EHCF: Efficient Heterogeneous Collaborative Filtering (AAAI 2020)
Stars: ✭ 70 (+250%)
Mutual labels:  neural
Faces
A Python wrapper around FaceApp 😔 → 😀
Stars: ✭ 79 (+295%)
Mutual labels:  neural
Tts Cube
End-2-end speech synthesis with recurrent neural networks
Stars: ✭ 213 (+965%)
Mutual labels:  neural
Plant-Disease-Identification-using-CNN
Plant Disease Identification Using Convulutional Neural Network
Stars: ✭ 89 (+345%)
Mutual labels:  neural
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (+660%)
Mutual labels:  neural
Tinn
A tiny neural network library
Stars: ✭ 1,944 (+9620%)
Mutual labels:  neural
tensorflow-art
Artwork Classifier based on a Tensorflow Deep Neural Network
Stars: ✭ 14 (-30%)
Mutual labels:  neural
Neural Api
CAI NEURAL API - Pascal based neural network API optimized for AVX, AVX2 and AVX512 instruction sets plus OpenCL capable devices including AMD, Intel and NVIDIA.
Stars: ✭ 94 (+370%)
Mutual labels:  neural
parallel-corpora-tools
Tools for filtering and cleaning parallel and monolingual corpora for machine translation and other natural language processing tasks.
Stars: ✭ 35 (+75%)
Mutual labels:  neural
Tensorflow Cifar 10
Cifar-10 CNN implementation using TensorFlow library with 20% error.
Stars: ✭ 85 (+325%)
Mutual labels:  neural
Neural-Tile
A better tiling script for Neural-Style
Stars: ✭ 35 (+75%)
Mutual labels:  neural
NothingButNumPy
This repo is part of a series of blog post titled "Nothing but NumPy"
Stars: ✭ 43 (+115%)
Mutual labels:  neural
ml-ai
ML-AI Community | Open Source | Built in Bharat for the World | Data science problem statements and solutions
Stars: ✭ 32 (+60%)
Mutual labels:  neural
tempo-cnn
Framework for estimating temporal properties of music tracks.
Stars: ✭ 62 (+210%)
Mutual labels:  neural

Netural

netural === neural net, simple AI for the web.

Features

  • Simple API
  • Super tiny size, 1 KB (gzip)
  • Support for forward propagation and back propagation

Install

npm install netural

Hello Netural

import netural from 'netural'

let network = new netural.Network({
    framework: [2, 2, 2],
    layers: [
        {w: [0.15, 0.20, 0.25, 0.30], b: 0.35, type: netural.SIGMOID},
        {w: [0.40, 0.45, 0.50, 0.55], b: 0.60, type: netural.SIGMOID}
    ],
    input: [0.05, 0.10]
})

//output: [0.010000000002984098, 0.9899999999997068]
network.train([0.01, 0.99], 300000)

License

This content is released under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].