Skip to content

Rishit-dagli/CV-with-TF-Demos

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

CV with TensorFlow Demos Twitter URL

Binder Open In Colab

License GitHub followers Twitter Follow

This repo contains supporting material for my talk about the very basics of Computer Vision with TensorFlow by example. You can check out talks.md to know more about the talks I have given about this and also take a look at the slides . Please consider giving this repo a ⭐ if this is helpful to you!

About the Notebooks

fashion-mnist.ipynb

Open In Colab Binder

In this tutorial you will see how you can create a simple CNN to create an image classification algorithm with the Fashion MNIST Dataset. We will be using Keras, a high level abstraction so you can very easily get started on making your first CNN.

cats-vs-dogs.ipynb

Open In Colab Binder

In this notebook you will create your first Computer Vision based Deep Learning model to classify between cats and dogs with TensorFlow. We will use the dogs-vs-cats dataset which is open-sourced. We will create a simple 2 class binary CNN to do so. You wil see all the aspects of training such a model, data preprocressing, the actual model, reducing overfitting and finally making inferences.