source/embed.py [341:348]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parser.add_argument('--buffer-size', type=int, default=10000,
                        help='Buffer size (sentences)')
    parser.add_argument('--max-tokens', type=int, default=12000,
                        help='Maximum number of tokens to process in a batch')
    parser.add_argument('--max-sentences', type=int, default=None,
                        help='Maximum number of sentences to process in a batch')
    parser.add_argument('--cpu', action='store_true',
                        help='Use CPU instead of GPU')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tasks/xnli/xnli.py [52:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
parser.add_argument('--buffer-size', type=int, default=10000,
    help='Buffer size (sentences)')
parser.add_argument('--max-tokens', type=int, default=12000,
    help='Maximum number of tokens to process in a batch')
parser.add_argument('--max-sentences', type=int, default=None,
    help='Maximum number of sentences to process in a batch')
parser.add_argument('--cpu', action='store_true',
    help='Use CPU instead of GPU')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



