So I've been playing around with this code: https://www.tensorflow.org/tutorials/generative/dcgan and have almost developed a good idea about its functioning. However, I can't quite discover what is the BUFFER_SIZE variable's use. I suspect that it may be used to create a subset of the database of size BUFFER_SIZE and then the batches are taken from this subset, but I don't see the point on it and neither can find someone explaining it.
So, if someone could explain me what BUFFER_SIZE does, I would be thankful ❤
It's used as the
buffer_size
argument intf.data.Dataset.shuffle
. Have you read the docs?