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 argparse | |
import logging | |
import os.path as path | |
from PIL import Image | |
import numpy as np | |
logger = logging.getLogger(__name__) | |
logging.basicConfig(format='%(name)s::%(levelname)-8s: %(message)s') | |
class VerbosityParsor(argparse.Action): |