Lines Matching +full:- +full:- +full:quiet
11 "https://ossci-datasets.s3.amazonaws.com/mnist/",
15 "train-images-idx3-ubyte.gz",
16 "train-labels-idx1-ubyte.gz",
17 "t10k-images-idx3-ubyte.gz",
18 "t10k-labels-idx1-ubyte.gz",
26 ) -> None:
27 if file_size != -1:
33 def download(destination_path: str, resource: str, quiet: bool) -> None:
35 if not quiet:
42 hook = None if quiet else report_download_progress
48 if not quiet:
56 def unzip(zipped_path: str, quiet: bool) -> None:
59 if not quiet:
65 if not quiet:
69 def main() -> None:
74 "-d", "--destination", default=".", help="Destination directory"
77 "-q", "--quiet", action="store_true", help="Don't report about progress"
87 download(path, resource, options.quiet)
88 unzip(path, options.quiet)