From 016b66817196002425f8a82a9b56c08f056b26ac Mon Sep 17 00:00:00 2001 From: Ian Wong Date: Wed, 21 Jun 2017 12:50:17 +0800 Subject: [PATCH] Support Tensorflow model file read/write (#800) * nn refactor * nn refactor * fix code style issue * change back the layers * code refactor * change tests to automatic test * add more test for model save * remove some useless unit test * add more save test * add more writer test * rnn test case automation * refine save test * refine save unit test * remove NHWC * meet code review * meet code review * use MulConst in MulTF * add a flatten node for tf 1.1 * fix code style and failed unit test * mv tf model layers to another package * add a python example to show how to define model in tensorflow and run in BigDL * move tf example python code to example folder * Add backward test in LeNet and AlexNet (#19) * add unit test of lenet backward * add some print * add backward test in lenet and alexnet * seperate testModel into forward and backward methods