Learn practical skills, build real-world projects, and advance your career

Dog_VS_Cat

A tutorial on using CNN to predict dog vs cat.

  • toc: true
  • badges: true
  • comments: true
  • categories: [deep learning,CNN]

Import tools

# Import tensorflow
import tensorflow as tf
import tensorflow_hub as hub
# Check virsion 
print("TF version:", tf.__version__)
print("TF Hub version:", hub.__version__)
TF version: 2.3.0 TF Hub version: 0.10.0

Getting our data ready