TensorFlow Image Captioning

Today I learned about Image Captioning using Tensorflow. The guide from the TensorFlow 2.0 Learning Directory and it is inspired from the Show, Attend and Tell: Neural Image Caption Generation with Visual Attention paper written by Kelvin Xu from Cornell...

TensorFlow Clothes

As a continuation of TensorFlow Flowers there is a cool tutorial on classifying Clothes using Keras, a high-level API to build and train deep learning models. It’s used for fast prototyping, advanced research, and production. Prerequisites: I am currently using...

Docker All The Things

Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies,...

TensorFlow Flowers

Over the majority of my independent study on Machine Learning I have studied TensorFlow Library made by google. While following Josh Gordon’s Machine Learning Recipes series on youtube I discovered TensorFlow for Poets Code Lab which is a neural network...

Making the KNeighbors Classifier

K Nearest Neighbors tests the distance to the closest neighbor to classify the unknown data. If there is equidistance between both red and green sides the k = # of neighbors to consider. If k was 1 then it would...