GithubHelp home page GithubHelp logo

tuyenth / deep-learning-2nd Goto Github PK

View Code? Open in Web Editor NEW

This project forked from supertigim/deep-learning-2nd

0.0 2.0 0.0 206 KB

Deep Learning Implementation using tiny-dnn

C# 4.15% C++ 92.45% CMake 3.39%

deep-learning-2nd's Introduction

Introduction

All previous neural net studies has been transformed from my own neural network codes to tiny-dnn which is c++14 based open source. Please make sure that all applications here are tested on mac os environment.

Cloning and build

git clone --recursive https://github.com/supertigim/deep-learning-2nd.git  
  
// to make tiny-dnn the latest version  
git submodule foreach git pull origin master   

Go to sub folders like cnn, and xor-problem, and read the README.md to build each application.

Changes in tiny-DNN

Don't change unless any improvement happens in your environment

Uncomment defines in config.h

#define CNN_USE_SSE  
#define CNN_USE_OMP  
#define CNN_USE_GCD  

Random generator in random.h

class random_generator {  
public:  
	static random_generator &get_instance() {  
	static random_generator instance;  
	return instance;  
}  

std::mt19937 &operator()() {   
	set_seed(rd_());  // ADD!!!
	return gen_;  
}    

void set_seed(unsigned int seed) { gen_.seed(seed); }  

private:  
	// avoid gen_(0) for MSVC known issue  
	// https://connect.microsoft.com/VisualStudio/feedback/details/776456  
	random_generator() : gen_(3) {}  
	std::mt19937 gen_;  
	std::random_device rd_;	// ADD!!!  
};

Reference

1.tiny-dnn online manual
2.comparison between neural network libraries
3.Solving XOR problem using tiny-DNN
4.딥러닝 활용 추천 시스템 개발
5.구글 AI Experiments
6.AI Duet이라는 들은 음악에 맞춰 자동 연주
7.Caffe로 구현한 breakout with DQN
8.python으로 구현한 self driving car
9.8번 설명 사이트
9.Caffe c++ 스터디

license

MIT

deep-learning-2nd's People

Contributors

supertigim avatar

Watchers

 avatar  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.