Skip to content

Instantly share code, notes, and snippets.

@Crazz-Zaac
Created February 27, 2021 09:23
Show Gist options
  • Save Crazz-Zaac/b01c88bd77b05683ba9da561937e80ee to your computer and use it in GitHub Desktop.
Save Crazz-Zaac/b01c88bd77b05683ba9da561937e80ee to your computer and use it in GitHub Desktop.
Importing necessary packages
from keras.models import Sequential
from keras.layers import Conv2D, ZeroPadding2D, Activation, Input, concatenate
from keras.models import Model
from keras.layers.normalization import BatchNormalization
from keras.layers.pooling import MaxPooling2D, AveragePooling2D
from keras.layers.merge import Concatenate
from keras.layers.core import Lambda, Flatten, Dense
from keras.initializers import glorot_uniform
from keras.engine.topology import Layer
from keras import backend as K
K.set_image_data_format('channels_first')
import cv2
import os
import numpy as np
from numpy import genfromtxt
import pandas as pd
import tensorflow as tf
from fr_utils import *
from inception_blocks_v2 import *
%matplotlib inline
%load_ext autoreload
%autoreload 2
np.set_printoptions(threshold=np.nan)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment