Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 1.16 KB

README.md

File metadata and controls

8 lines (5 loc) · 1.16 KB

deeplearning_assistant

For simple problem, many deep learning problem share many parts. Thus, implementing shared part in every time to solve those simple problems is very inefficient. So, this package provides a reusable code for typical parts of deep learning, and all user need is just implement own Neural Network Architecture and Iterator to feed the network.

You can inherit AbstractModelBuilder Class in model_builder.py to implement your own Network architecture, and also inherit Iterator Class of Keras to implement to feed the network.

After doing above tasks, set a hyper parameters like hparams.json. Also, more parameters are available and you can refer it in assistant.py.

Finally, after implement the code like run.py, you will get another version of deep learning training example!!