Giter VIP home page Giter VIP logo

tea's Introduction

Tea

Tea is a deep learning application library to make it easy to test ideas quick, to build model from end to end. It is config driven so users write minimal code to try ideas.

It won't be another deep learning framework such as pytorch, tensorflow.

It is easy to make things complicated, but it is hard to make things simple. As the old saying goes “大道至简”. Thus, it strives the best to make code understandable and maintainable even if we have to make code longer. It avoids unnecessary tricks whenever possible.

Quick to build model from config file

The following is an example on how modified vgg can be built from config file.

[input]
# It is super important to get input dimension right
# Batch x channel x H x W
size=None x 3 x 56 x 56

#
# M --> Maxpool
#
[quickconvs-0]
filters=64, 64, M, 128, 128, M, 256, 256, 256, M, 512, 512, 512
kernel=3
stride=1
has_pad=1
has_bn=1
pool_kernel=2
pool_stride=2
activation=relu

[quickfcs-1]
reshape=1
size=4096, D, 2048, D
activation=relu

[fc-3]
size=200
activation=linear

tea's People

Contributors

taohu88 avatar

Stargazers

 avatar

Watchers

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