menthor icon indicating copy to clipboard operation
menthor copied to clipboard

Parallelizing Machine Learning-- Functionally.

Results 4 menthor issues
Sort by recently updated
recently updated
newest added

When there are less vertices than workers, `Graph.iterate` crashes. ``` processing.parallel.Graph@b05236: caught java.lang.IllegalArgumentException: requirement failed java.lang.IllegalArgumentException: requirement failed at scala.Predef$.require(Predef.scala:133) at scala.collection.Iterator$GroupedIterator.(Iterator.scala:773) at scala.collection.Iterator$class.grouped(Iterator.scala:886) at scala.collection.LinearSeqLike$$anon$1.grouped(LinearSeqLike.scala:52) at scala.collection.IterableLike$class.grouped(IterableLike.scala:147) at scala.collection.immutable.List.grouped(List.scala:45)...

bug

Using Lists for the vertex neighbors and for the messages puts some constraints on the structure of a vertex. Wouldn't it be better to use instead an Iterable/Iterator type for...

enhancement