Skip to content

Instantly share code, notes, and snippets.

@shriyaRam
Created January 16, 2020 11:18
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 shriyaRam/bf43ac3b3efc427af353df256cc07d38 to your computer and use it in GitHub Desktop.
Save shriyaRam/bf43ac3b3efc427af353df256cc07d38 to your computer and use it in GitHub Desktop.
"""
Contains variables for image-size, path of models and labels that are required by other modules
"""
IMAGE_SIZE = 50 # We'll be working with 50 * 50 pixel images
MODEL_PATH = "trained_model/bglessmodelv1.h5"
LABELS = ['A', 'C', 'E', 'H', 'I', 'L', 'O', 'U', 'V', 'W']
# Minimum confidence percentage i.e allowed for prediction
THRESHOLD = 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment