dataset that are to
be chunked. Default is None which means that all elements of dataset are considered.
float32.
Algorithm:
For each chunk (determined by the chunk_specification) the model calls
the method run_chunk() and passes as arguments the corresponding portion
of dataset_index, the whole dataset and all additional
arguments. By default the order of elements in dataset_index is
preserved. This can be changed by redefining the method
get_agents_order() (see below).
Output:
The class returns an array of the same size as dataset_index and of type result_array_type
(passed to the method as input).
Values of this array are return values of the (possibly) multiple calls of the method run_chunk().
The
-th value in this array is a result for the dataset_index[
]-th element of dataset.