You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python implementation of the simple perceptron or also known as a single-layer neural network, is a binary classification algorithm by Frank Rosenblatt based on the neural model of Warren McCulloch and Walter Pitts developed in 1943.
This repository contains the code to reproduce the results in the paper A Variational algorithm for Quantum Neural Networks, accepted in the International Conference on Computational Science 2020, Quantum Computing track.
This repository contains the code to reproduce the results in the paper "A Variational Algorithm for Quantum Single Layer Perceptron" submitted to The 8th International Online & Onsite Conference on Machine Learning, Optimization, and Data Science
Contains work done mainly on Neural Networks and Machine Learning as a part of my interest for Data Science. The codes are in python and uses TensorFlow for Deep learning
NeuralNetwork Language is a console application that uses a single-layer neural network to identify the language of a given text. It trains on data in the trainData folder and predicts the language of texts in the testData folder or manually inputted text. The application supports multiple languages as long as they are correctly labeled.
Single Layer Perceptrons (SLPs) and Multi-Layer Perceptrons (MLPs) from scratch, only with numpy, for classification and regression. MLPs with Keras for time-series prediction.