监听器
在DL4J模型上添加钩子和监听器。
什么是监听器?
用法
MultiLayerNetwork model = new MultiLayerNetwork(conf);
model.init();
//打印每次迭代的分数
model.setListeners(new ScoreIterationListener(1));Last updated
Was this helpful?
在DL4J模型上添加钩子和监听器。
MultiLayerNetwork model = new MultiLayerNetwork(conf);
model.init();
//打印每次迭代的分数
model.setListeners(new ScoreIterationListener(1));Last updated
Was this helpful?
Was this helpful?