File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
algo/src/main/java/org/neo4j/gds/embeddings/node2vec Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2020package org .neo4j .gds .embeddings .node2vec ;
2121
2222import org .neo4j .gds .annotation .ValueClass ;
23+ import org .neo4j .gds .collections .ha .HugeObjectArray ;
2324import org .neo4j .gds .core .concurrency .RunWithConcurrency ;
2425import org .neo4j .gds .core .utils .mem .MemoryEstimation ;
2526import org .neo4j .gds .core .utils .mem .MemoryEstimations ;
26- import org .neo4j .gds .collections .ha .HugeObjectArray ;
2727import org .neo4j .gds .core .utils .partition .PartitionUtils ;
2828import org .neo4j .gds .core .utils .progress .tasks .ProgressTracker ;
2929import org .neo4j .gds .mem .BitUtil ;
@@ -184,7 +184,7 @@ Result train() {
184184 .run ();
185185
186186 double loss = tasks .stream ().mapToDouble (TrainingTask ::lossSum ).sum ();
187- progressTracker .logInfo (formatWithLocale ("Loss %.4f" , loss ));
187+ progressTracker .logInfo (formatWithLocale ("Maximum likelihood objective is %.4f" , loss ));
188188 lossPerIteration .add (loss );
189189
190190 progressTracker .endSubTask ();
You can’t perform that action at this time.
0 commit comments