Skip to content

Instantly share code, notes, and snippets.

@Sanlap1997
Created October 2, 2020 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sanlap1997/938d0b753968e51215cea8d627242c15 to your computer and use it in GitHub Desktop.
Save Sanlap1997/938d0b753968e51215cea8d627242c15 to your computer and use it in GitHub Desktop.
import tensorflow.keras
import tensorflow as tf
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import os
from tqdm.keras import TqdmCallback
# Setting seed for reproducibility
np.random.seed(1234)
PYTHONHASHSEED = 0
from sklearn import preprocessing
from sklearn.metrics import confusion_matrix, recall_score, precision_score
from tensorflow.keras.models import Sequential,load_model
from tensorflow.keras.layers import Dense, Dropout, LSTM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment