add(item)
and contains(item)
, where add
performs as expected and contains
either yields a definite no or a probable yes, meaning false positives are possible but false negatives are not.
Continue reading
⧗
5'
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'