check_directory_exists Source code in tinybig/util/utility.py 72 73 74def check_directory_exists(complete_file_path): directory_path = os.path.dirname(complete_file_path) return os.path.exists(directory_path)