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
# Standard Library | |
import argparse | |
import json | |
import logging | |
import subprocess | |
import time | |
from typing import List | |
# Configure logging | |
logging.basicConfig( |
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
import numpy as np | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
import matplotlib.animation | |
from sklearn.model_selection import train_test_split | |
plt.rcParams["animation.html"] = "jshtml" | |
from keras.models import Sequential | |
from keras.layers import Dense, Activation, Dropout | |
from keras.utils import to_categorical, plot_model |