This file contains 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 pandas as pd | |
import urllib | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import cv2 | |
import glob | |
import os | |
import time | |
from PIL import Image | |
from keras.applications.vgg16 import VGG16 | |
from keras.layers import Flatten, Dense, Conv2D, MaxPooling2D, Input, Dropout | |
from keras.models import Model, Sequential | |
from keras.preprocessing.image import ImageDataGenerator | |
from keras.optimizers import Adam | |
df = pd.read_json("Indian_Number_plates.json", lines=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment