CNTK and UserMinibatchSource prefetch

Viewed 58

If I implement an UserMinibatchSource in python, will the minibatch data be prefetched when training?

1 Answers

The prefetching functionality is part of the Deserializer classes in C++. Therefore, prefetching will not be available for custom data unless you write some C++ code.

Related