diff --git a/psl-core/src/main/java/org/linqs/psl/model/deep/DeepModel.java b/psl-core/src/main/java/org/linqs/psl/model/deep/DeepModel.java index 775ddeac2..aaef05bc1 100644 --- a/psl-core/src/main/java/org/linqs/psl/model/deep/DeepModel.java +++ b/psl-core/src/main/java/org/linqs/psl/model/deep/DeepModel.java @@ -80,28 +80,27 @@ protected DeepModel(String deepModel) { } /** - * Abstract class for initializing specific deep model parameters. - * Return the length of the shared buffer for the specific deep model. + * Initialize specific deep model parameters and return the length of the shared buffer for the specific deep model. */ public abstract int init(); /** - * Abstract class for writing the fit data to the shared buffer. + * Write the fit data to the shared buffer. */ public abstract void writeFitData(); /** - * Abstract class for writing the predict data to the shared buffer. + * Write the predict data to the shared buffer. */ public abstract void writePredictData(); /** - * Abstract class for reading the predict data from the shared buffer. + * Read the predict data from the shared buffer. */ public abstract float readPredictData(); /** - * Abstract class for writing the eval data to the shared buffer. + * Write the eval data to the shared buffer. */ public abstract void writeEvalData(); @@ -235,7 +234,7 @@ public boolean isEpochComplete() { JSONObject response = sendSocketMessage(message); String resultString = getResultString(response); - log.debug("Epoch end deep model results for {} : {}", this, resultString); + log.debug("Is epoch complete deep model results for {} : {}", this, resultString); return response.getBoolean("result"); }