All Projects → vahidk → Tensorflowframework

vahidk / Tensorflowframework

An extendable framework for training neural network models using TensorFlow.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tensorflowframework

Elgg
A social networking engine in PHP/MySQL
Stars: ✭ 1,510 (+1190.6%)
Mutual labels:  framework
Drone
CLI utility for Drone, an Embedded Operating System.
Stars: ✭ 114 (-2.56%)
Mutual labels:  framework
Nim ios sdk
网易云信 iOS SDK 发布仓库。#推荐客户得比特币,首次推荐得0.02BTC,连续推荐得0.03BTC/单,上不封顶。点击参与https://yunxin.163.com/promotion/recommend
Stars: ✭ 116 (-0.85%)
Mutual labels:  framework
Basys
Toolbox for building full-stack Vue.js apps
Stars: ✭ 113 (-3.42%)
Mutual labels:  framework
Marklogic Data Hub
The MarkLogic Data Hub: documentation ==>
Stars: ✭ 113 (-3.42%)
Mutual labels:  framework
Asakusafw
Asakusa Framework
Stars: ✭ 114 (-2.56%)
Mutual labels:  framework
Iframework
Simple Unity Framework
Stars: ✭ 110 (-5.98%)
Mutual labels:  framework
Vcomponents
VComponents is a SwiftUI framework that contains 40+ customizable UI components
Stars: ✭ 117 (+0%)
Mutual labels:  framework
Webgme
Web-based Generic Modeling Environment
Stars: ✭ 112 (-4.27%)
Mutual labels:  framework
Xtcp
A TCP Server Framework with graceful shutdown, custom protocol.
Stars: ✭ 116 (-0.85%)
Mutual labels:  framework
Alpha
Craft your own web-based chatbot
Stars: ✭ 113 (-3.42%)
Mutual labels:  framework
Reactinterface
This is the repository for my course, Building a Web Interface with React.js on LinkedIn Learning and Lynda.com.
Stars: ✭ 113 (-3.42%)
Mutual labels:  framework
Framework
💎 Go! AOP PHP - modern aspect-oriented framework for the new level of software development
Stars: ✭ 1,559 (+1232.48%)
Mutual labels:  framework
Evnestoreplatform
📱Electronic commerce iOS APP framework
Stars: ✭ 112 (-4.27%)
Mutual labels:  framework
Cyclejs
A functional and reactive JavaScript framework for predictable code
Stars: ✭ 9,996 (+8443.59%)
Mutual labels:  framework
Nanocaml
Nanopass for OCaml
Stars: ✭ 112 (-4.27%)
Mutual labels:  framework
Flexy
Flexy is minimal CSS framework made with Flex
Stars: ✭ 114 (-2.56%)
Mutual labels:  framework
Pystiche
Framework for Neural Style Transfer (NST) built upon PyTorch
Stars: ✭ 117 (+0%)
Mutual labels:  framework
Css
The CSS design system that powers GitHub
Stars: ✭ 10,670 (+9019.66%)
Mutual labels:  framework
Thetta Dao Framework
Thetta - an open-source framework to help you build the DAO of your dreams
Stars: ✭ 116 (-0.85%)
Mutual labels:  framework

Tensorflow training framework

This repository includes an extendable framework for training neural network models using TensorFlow. The framework handles things like parallel data reading, batching, shuffling, saving/loading checkpoints, and logging. It also supports training on multiple GPUs. You can simply add your own dataset by following the example in dataset/mnist.py, and write your own classifier similar to the bundled CNN classifier in model/alexnet.py. The framework does most of the boilerplate code for you, letting you focus on developing the actual neural net model.

Also, make sure to checkout Effective Tensorflow, which to some extents explains the code in this framework.

Pull requests with new datasets or models are welcome!

Install dependencies

pip install tensorflow numpy pillow matplotlib six

Training

To train an mnist classification model run:

python -m trainer --config=configs/mnist.json

To visualize the training logs on Tensorboard run:

tensorboard --logdir=output

Current included datasets are:

  • mnist
  • cifar10
  • cifar100

Bundled models include:

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