run_inference.py [22:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def setup_config(config_file_path):
    config = ConfigParser()
    config.read(config_file_path)
    return config

def setup_logger(config):
    # Removing handlers that might be associated with environment; and logs
    # out to both stderr and a log file
    for handler in logging.root.handlers[:]:
        logging.root.removeHandler(handler)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



run_model.py [25:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def setup_config(config_file_path):
    config = ConfigParser()
    config.read(config_file_path)
    return config

def setup_logger(config):
    # Removing handlers that might be associated with environment; and logs
    # out to both stderr and a log file
    for handler in logging.root.handlers[:]:
        logging.root.removeHandler(handler)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



