All Projects → nitroventures → tensorflow-art

nitroventures / tensorflow-art

Licence: MIT license
Artwork Classifier based on a Tensorflow Deep Neural Network

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to tensorflow-art

Neurokernel
Neurokernel Project
Stars: ✭ 491 (+3407.14%)
Mutual labels:  neural
Emojiintelligence
Neural Network built in Apple Playground using Swift
Stars: ✭ 1,323 (+9350%)
Mutual labels:  neural
Pytorch Beam Search Decoding
PyTorch implementation of beam search decoding for seq2seq models
Stars: ✭ 204 (+1357.14%)
Mutual labels:  neural
Pytorch Forecasting
Time series forecasting with PyTorch
Stars: ✭ 849 (+5964.29%)
Mutual labels:  neural
Ehcf
This is our implementation of EHCF: Efficient Heterogeneous Collaborative Filtering (AAAI 2020)
Stars: ✭ 70 (+400%)
Mutual labels:  neural
Neural Tools
Tools made for usage alongside artistic style transfer projects
Stars: ✭ 150 (+971.43%)
Mutual labels:  neural
M
Stars: ✭ 313 (+2135.71%)
Mutual labels:  neural
Neural-Tile
A better tiling script for Neural-Style
Stars: ✭ 35 (+150%)
Mutual labels:  neural
Tensorflow Cifar 10
Cifar-10 CNN implementation using TensorFlow library with 20% error.
Stars: ✭ 85 (+507.14%)
Mutual labels:  neural
Tinn
A tiny neural network library
Stars: ✭ 1,944 (+13785.71%)
Mutual labels:  neural
Genann
simple neural network library in ANSI C
Stars: ✭ 1,088 (+7671.43%)
Mutual labels:  neural
Torch Models
Stars: ✭ 65 (+364.29%)
Mutual labels:  neural
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (+985.71%)
Mutual labels:  neural
Naivecnn
A naive (very simple!) implementation of a convolutional neural network
Stars: ✭ 18 (+28.57%)
Mutual labels:  neural
Tts Cube
End-2-end speech synthesis with recurrent neural networks
Stars: ✭ 213 (+1421.43%)
Mutual labels:  neural
Deeplearning.ai Natural Language Processing Specialization
This repository contains my full work and notes on Coursera's NLP Specialization (Natural Language Processing) taught by the instructor Younes Bensouda Mourri and Łukasz Kaiser offered by deeplearning.ai
Stars: ✭ 473 (+3278.57%)
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 (+571.43%)
Mutual labels:  neural
flatiron-school-data-science-curriculum-resources
Lesson material on data science and machine learning topics/concepts
Stars: ✭ 118 (+742.86%)
Mutual labels:  neural
Modernmt
Neural Adaptive Machine Translation that adapts to context and learns from corrections.
Stars: ✭ 231 (+1550%)
Mutual labels:  neural
Go Perceptron Go
A single / multi layer / recurrent neural network written in Golang.
Stars: ✭ 159 (+1035.71%)
Mutual labels:  neural

Deep Neural Network Artwork Classifier

This is an artwork classifier, which classifies the artist of a painting based on a deep neural network. The neural network has been trainined with paintings of well-known artists such as Claude Monet and Pablo Picasso. A running demo is deployed at Heroku (takes 10 seconds to load).

The deep neural network has been implemented and trained with tensorflow. The model architecture is constituted by a multi-layer convolutional neural network, which is followed by a fully connected layer and completed with a softmax readout layer.

Training was done based on a cross-entropy error function.

screenshot1

Install Dependencies

$ virtualenv -p python2.7 venv
$ source venv/bin/activate
$ pip install -r requirements.txt

Start Web Server

$ gunicorn main:app --log-file=- --timeout=600 --preload

Train Model

$ python preprocess.py
$ python train.py
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].