All Projects → dsindex → Tensorflow_examples

dsindex / Tensorflow_examples

reference code for tensorflow

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tensorflow examples

Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (+2621.43%)
Mutual labels:  tensorflow-tutorials
Android Tensorflow Lite Example
Android TensorFlow Lite Machine Learning Example
Stars: ✭ 681 (+4764.29%)
Mutual labels:  tensorflow-tutorials
Tensorlayer
Deep Learning and Reinforcement Learning Library for Scientists and Engineers 🔥
Stars: ✭ 6,796 (+48442.86%)
Mutual labels:  tensorflow-tutorials
Tensorflow Tutorial
Tensorflow tutorial from basic to hard, 莫烦Python 中文AI教学
Stars: ✭ 4,122 (+29342.86%)
Mutual labels:  tensorflow-tutorials
Generative Adversarial Networks
Introduction to generative adversarial networks, with code to accompany the O'Reilly tutorial on GANs
Stars: ✭ 505 (+3507.14%)
Mutual labels:  tensorflow-tutorials
Tensorflow 2.x Tutorials
TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。
Stars: ✭ 6,088 (+43385.71%)
Mutual labels:  tensorflow-tutorials
Tensorflow chessbot
Predict chessboard FEN layouts from images using TensorFlow
Stars: ✭ 362 (+2485.71%)
Mutual labels:  tensorflow-tutorials
Machine Learning Collection
A resource for learning about ML, DL, PyTorch and TensorFlow. Feedback always appreciated :)
Stars: ✭ 883 (+6207.14%)
Mutual labels:  tensorflow-tutorials
Machine Learning Book
《机器学习宝典》包含:谷歌机器学习速成课程(招式)+机器学习术语表(口诀)+机器学习规则(心得)+机器学习中的常识性问题 (内功)。该资源适用于机器学习、深度学习研究人员和爱好者参考!
Stars: ✭ 616 (+4300%)
Mutual labels:  tensorflow-tutorials
My Tensorflow Tutorials
This repo contains all of my TensorFlow tutorials
Stars: ✭ 795 (+5578.57%)
Mutual labels:  tensorflow-tutorials
Androidtensorflowmnistexample
Android TensorFlow MachineLearning MNIST Example (Building Model with TensorFlow for Android)
Stars: ✭ 449 (+3107.14%)
Mutual labels:  tensorflow-tutorials
Docs
TensorFlow documentation
Stars: ✭ 4,999 (+35607.14%)
Mutual labels:  tensorflow-tutorials
Tensorflow Tutorial
TensorFlow and Deep Learning Tutorials
Stars: ✭ 748 (+5242.86%)
Mutual labels:  tensorflow-tutorials
Tensorflow learning notes
tensorflow学习笔记,来源于电子书:《Tensorflow实战Google深度学习框架》
Stars: ✭ 403 (+2778.57%)
Mutual labels:  tensorflow-tutorials
Seq2seq Signal Prediction
Signal forecasting with a Sequence-to-Sequence (seq2seq) Recurrent Neural Network (RNN) model in TensorFlow - Guillaume Chevalier
Stars: ✭ 890 (+6257.14%)
Mutual labels:  tensorflow-tutorials
Dr.sure
🏫DeepLearning学习笔记以及Tensorflow、Pytorch的使用心得笔记。Dr. Sure会不定时往项目中添加他看到的最新的技术,欢迎批评指正。
Stars: ✭ 365 (+2507.14%)
Mutual labels:  tensorflow-tutorials
Machine Learning
머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고자 만든 repository입니다. (This repository is intented for helping whom are interested in machine learning study)
Stars: ✭ 705 (+4935.71%)
Mutual labels:  tensorflow-tutorials
Tensorflow Find Object
📸 A simple application to demonstrate TensorflowJS using mobile net model to predict objects via camera API.
Stars: ✭ 12 (-14.29%)
Mutual labels:  tensorflow-tutorials
Tensorflow Tutorial
Some interesting TensorFlow tutorials for beginners.
Stars: ✭ 893 (+6278.57%)
Mutual labels:  tensorflow-tutorials
Reinforcement Learning With Tensorflow
Simple Reinforcement learning tutorials, 莫烦Python 中文AI教学
Stars: ✭ 6,948 (+49528.57%)
Mutual labels:  tensorflow-tutorials

tensorflow

description

  • test code for tensorflow
  • tensorflow
    • version : tf 1.0

simple test code

tutorial video by hunkim(in korean)

IRIS softmax regression test code

IRIS multi-layer perceptron test code

MNIST softmax regression test code

MNIST multi-layer perceptron test code

  • code
  • distributed version
    $ ./mlp_mnist_dist.sh -v -v
    
    # worker0 log
    job : worker/0 step :  0 ,training accuracy : 0.9
    job : worker/0 step :  100 ,training accuracy : 0.9
    job : worker/0 step :  200 ,training accuracy : 0.86
    job : worker/0 step :  300 ,training accuracy : 0.9
    ...
    
    # worker1 log
    job : worker/1 step :  0 ,training accuracy : 0.12
    job : worker/1 step :  0 ,training accuracy : 0.14
    job : worker/1 step :  300 ,training accuracy : 0.82
    job : worker/1 step :  500 ,training accuracy : 0.92
    job : worker/1 step :  600 ,training accuracy : 0.94
    ....
    
    • accuracy : 0.9604
    • if you have a trouble like 'failed to connect...', read

MNIST convolutaional neural network test code

MNIST LSTM(recurrent neural network) test code

RNN

word2vec

tensorflow serving

  • setup tensorflow serving
    $ sudo find /usr/lib -name "*protobuf*" -delete
    $ git clone https://github.com/grpc/grpc.git
    $ cd grpc/
    $ git submodule update --init
    $ cd third_party/protobuf
    # install autoconf, libtool (on OS X)
    $ brew install autoconf && brew install libtool
    $ ./autogen.sh
    # if you got an error related to 'libtool' on OS X, edit Makefile to use '/usr/bin/libtool' instead of '/usr/local/bin/libtool'
    $ ./configure; make; sudo make install
    $ cd python
    $ python setup.py build; python setup.py test; sudo python setup.py install --user
    $ cd ../../..
    $ make; sudo make install
    $ which grpc_python_plugin
    $ pip install grpcio --user
    
  • serving basic

data preprocessing(tf.SequenceExample)

model dump and inference

references

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