(parser)
| 4 | |
| 5 | |
| 6 | def add_base_options(parser): |
| 7 | group = parser.add_argument_group("base") |
| 8 | group.add_argument("--tag", type=str, required=True, help="checkpoint directory") |
| 9 | group.add_argument("-g", "--gpu_id", default=0, type=int, help="Device id to use.") |
| 10 | group.add_argument('--only_enc', action='store_true', help="") |
| 11 | |
| 12 | |
| 13 | def add_encoding_training_options(parser): |
no outgoing calls
no test coverage detected