Esempio n. 1
0
 @Override
 protected void postGlobal() {
   if (_mb != null) _mb.postGlobal();
 }
Esempio n. 2
0
 private float[] compute_metrics(Chunk[] chks, int row_in_chunk, float[] tmp, double[] preds) {
   for (int i = 0; i < tmp.length; i++) tmp[i] = (float) chks[i].atd(row_in_chunk);
   _mb.perRow(preds, tmp, GLRMModel.this);
   return tmp;
 }
Esempio n. 3
0
 @Override
 public void reduce(GLRMScore other) {
   if (_mb != null) _mb.reduce(other._mb);
 }