Introducing the torch_snippets library
As you may have noticed, we are using the same functions in almost all the sections. It is a waste of our time to write the same lines of functions again and again. For convenience, we, the authors of this book, have written a Python library by the name of torch_snippets
so that our code looks short and clean.
Utilities such as reading an image, showing an image, and the entire training loop are quite repetitive. We want to circumvent writing the same functions over and over by wrapping them in code that is preferably a single function call. For example, to read a color image, we need not write cv2.imread(...)
followed by cv2.cvtColor(...)
every time. Instead, we can simply call read(...)
. Similarly, for plt.imshow(...)
, there are numerous hassles, including the fact that the size of the image should be optimal, and that the channel dimension should be last (remember, PyTorch has them first).
These will always be taken care of by the...