Skip to content

Instantly share code, notes, and snippets.

@dipanjanS
Created September 20, 2019 07:42
Show Gist options
  • Select an option

  • Save dipanjanS/f6e138324dffa3de051e868c01877b4b to your computer and use it in GitHub Desktop.

Select an option

Save dipanjanS/f6e138324dffa3de051e868c01877b4b to your computer and use it in GitHub Desktop.
# to prevent unnecessary warnings
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
# TensorFlow and tf.keras
import tensorflow as tf
from tensorflow import keras
# Helper libraries
import numpy as np
import matplotlib.pyplot as plt
import os
import subprocess
import cv2
import json
import requests
from tqdm import tqdm
tf.logging.set_verbosity(tf.logging.ERROR)
print(tf.__version__)
%matplotlib inline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment