Commit a0db5536 authored by Yuxin Wu's avatar Yuxin Wu

bump version

parent a560e667
......@@ -8,6 +8,11 @@ so you won't need to look at here very often.
Here are a list of things that were changed, starting from an early version.
TensorFlow itself also changed APIs before 1.0 and those are not listed here.
+ [2018/03/20] `ModelDesc` starts to use simplified interfaces:
+ `_get_inputs()` renamed to `inputs()` and returns `tf.placeholder`s.
+ `build_graph(self, tensor1, tensor2)` returns the cost tensor directly.
+ `_get_optimizer()` renamed to `optimizer()`.
Old interface will still be available, but new ones are recommended.
+ [2018/03/12] `JSONWriter` use a different file name, and will not automatically restore epoch number.
`AutoResumeTrainConfig` was added to support resuming.
+ [2017/10/21]
......
......@@ -49,4 +49,4 @@ except ImportError:
_HAS_TF = False
__version__ = '0.8.3'
__version__ = '0.8.5'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment