We need to improve CI to find any deprecated API in mxnet. In case changes in MXNet breaks keras-mxnet, we will find out the resolve it before breaking change happen.
For example,
we used mx.sym.Concat, and it's deprecated and we have to change to mx.sym.concat. We need to systematic way to find and replace them before it breaks.
We need to improve CI to find any deprecated API in mxnet. In case changes in MXNet breaks keras-mxnet, we will find out the resolve it before breaking change happen.
For example, we used
mx.sym.Concat
, and it's deprecated and we have to change tomx.sym.concat
. We need to systematic way to find and replace them before it breaks.