Tom Rutten
Tom Rutten
We'd like to add datasets like those available through PyTorch, [Tensorflow](https://www.tensorflow.org/datasets/catalog/overview), [Hugging Face](https://huggingface.co/datasets), and [scikit-learn](https://scikit-learn.org/stable/datasets.html). Here's a non-comprehensive list to get started: ### Text - [x] IMDB reviews - [...
The behavior of `Semigroup.foldRight` and `Monoid.foldRight` is different for non-commutative operations. For monoids, we have: ```java Lazy resultMonoid = Monoid.monoid(String::concat, "").foldRight("", Arrays.asList("1", "2", "3", "4")); resultMonoid.value() // "1234" ``` For...