Created
September 20, 2019 07:42
-
-
Save dipanjanS/f6e138324dffa3de051e868c01877b4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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