tqdm
, imageio
and Seaborn
: Three essential python modules.
tqdm
to display command line and Jupyter progress bars, imageio
to easily load and save images and Seaborn
to create beautiful graphs and visualizations.
Continue reading
⧗
4'
tf.data
is much better than feed_dict
and how to build a simple data pipeline in 5 minutes.
feed_dict
method of loading data into your model where data is passed to tensorflow through the tf.Session.run()
or tf.Tensor.eval()
function calls. There is, however, a much better and almost easier way of doing this. Using the tf.data
API you can create high-performance data pipelines in just a few lines of code.
Continue reading
⧗
8'