cli.py 2.8 KB
Newer Older
H
Hui Zhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse


def default_argument_parser():
    r"""A simple yet genral argument parser for experiments with parakeet.
H
huangyuxin 已提交
19 20 21

    This is used in examples with parakeet. And it is intended to be used by
    other experiments with parakeet. It requires a minimal set of command line
H
Hui Zhang 已提交
22
    arguments to start a training script.
H
huangyuxin 已提交
23 24

    The ``--config`` and ``--opts`` are used for overwrite the deault
H
Hui Zhang 已提交
25
    configuration.
H
huangyuxin 已提交
26 27 28

    The ``--data`` and ``--output`` specifies the data path and output path.
    Resuming training from existing progress at the output directory is the
H
Hui Zhang 已提交
29
    intended default behavior.
H
huangyuxin 已提交
30

H
Hui Zhang 已提交
31
    The ``--checkpoint_path`` specifies the checkpoint to load from.
H
huangyuxin 已提交
32

H
Hui Zhang 已提交
33
    The ``--device`` and ``--nprocs`` specifies how to run the training.
H
huangyuxin 已提交
34 35


H
Hui Zhang 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
    See Also
    --------
    parakeet.training.experiment
    Returns
    -------
    argparse.ArgumentParser
        the parser
    """
    parser = argparse.ArgumentParser()

    # yapf: disable
    # data and output
    parser.add_argument("--config", metavar="FILE", help="path of the config file to overwrite to default config with.")
    parser.add_argument("--dump-config", metavar="FILE", help="dump config to yaml file.")
    parser.add_argument("--output", metavar="OUTPUT_DIR", help="path to save checkpoint and logs.")

    # load from saved checkpoint
    parser.add_argument("--checkpoint_path", type=str, help="path of the checkpoint to load")

    # running
56 57
    parser.add_argument("--device", type=str, default='gpu', choices=["cpu", "gpu"],
                        help="device type to use, cpu and gpu are supported.")
H
Hui Zhang 已提交
58 59 60
    parser.add_argument("--nprocs", type=int, default=1, help="number of parallel processes to use.")

    # overwrite extra config and default config
H
huangyuxin 已提交
61
    # parser.add_argument("--opts", nargs=argparse.REMAINDER,
62 63 64
    # help="options to overwrite --config file and the default config, passing in KEY VALUE pairs")
    parser.add_argument("--opts", type=str, default=[], nargs='+',
                        help="options to overwrite --config file and the default config, passing in KEY VALUE pairs")
H
huangyuxin 已提交
65 66

    parser.add_argument("--seed", type=int, default=None,
H
Hui Zhang 已提交
67
                        help="seed to use for paddle, np and random. None or 0 for random, else set seed.")
H
Hui Zhang 已提交
68 69 70
    # yapd: enable

    return parser