Skip to content

Commit

Permalink
Update BatchGenerator.java
Browse files Browse the repository at this point in the history
  • Loading branch information
dickensc committed Nov 30, 2023
1 parent c51799d commit b33adfd
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.linqs.psl.model.predicate.DeepPredicate;
import org.linqs.psl.reasoner.term.ReasonerTerm;
import org.linqs.psl.reasoner.term.SimpleTermStore;
import org.linqs.psl.util.Logger;
import org.linqs.psl.util.RandUtils;
import org.linqs.psl.util.Reflection;

Expand All @@ -38,8 +37,6 @@
* A batch in this case is a set of terms and corresponding atoms defining a subgraph of the complete factor graph.
*/
public abstract class BatchGenerator {
private static final Logger log = Logger.getLogger(BatchGenerator.class);

protected InferenceApplication inferenceApplication;
protected SimpleTermStore<? extends ReasonerTerm> fullTermStore;
protected AtomStore fullTruthAtomStore;
Expand Down Expand Up @@ -139,8 +136,6 @@ public void generateBatches() {
for (int i = 0; i < numBatchTermStores(); i++) {
batchPermutation.add(i);
}

log.info("Generated " + numBatchTermStores() + " batches.");
}

protected abstract void generateBatchesInternal();
Expand Down

0 comments on commit b33adfd

Please sign in to comment.