Results 5 issues of Jed Simson

In previous work, asynchronous training was implemented using the Kotlin co-routine APIs. These APIs have changed slightly since then, so it would be good to: - Review the implementation -...

enhancement
investigation

The Kotlin `Flow` API looks interesting and like it could provide some benefits in the system, e.g. instruction generation, population generation. Would be worthwhile to investigate where it might fit...

investigation

There are a few places where the following syntax is used in the system: ``` (0..n).forEach { // Do something } ``` According to [this article](https://sites.google.com/a/athaydes.com/renato-athaydes/posts/kotlinshiddencosts-benchmarks), `forEach` is 300% slower...

At the moment, there is no built-in way to encode categorical features/targets which means the burden is on the user to manually construct their data set in a way that...