batchSize method

ImageConfig batchSize(
  1. int size
)

Sets batch size for generation

Implementation

ImageConfig batchSize(int size) {
  _config['batchSize'] = size;
  return this;
}