Esempio n. 1
0
 def add_arguments(argparser):
     argparser.add_argument("filenames", nargs="+", help="passage file names to convert and upload")
     argparser.add_argument("-l", "--log", help="filename to write log of uploaded passages to")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
 def add_arguments(argparser):
     argparser.add_argument("filenames",
                            help="passage file names to convert and upload")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 3
0
 def add_arguments(argparser):
     argparser.add_argument("task_ids",
                            nargs="+",
                            help="IDs of tasks to download and convert")
     argparser.add_argument("-f",
                            "--by-filename",
                            action="store_true",
                            help="treat task_ids as a filename, "
                            "otherwise it is a list of IDs")
     TaskDownloader.add_write_arguments(argparser)
     argparser.add_argument(
         "-V",
         "--validate",
         help="run validation on downloaded passages and save errors to file"
     )
     argparser.add_argument("-N",
                            "--normalize",
                            action="store_true",
                            help="normalize downloaded passages")
     argparser.add_argument("--strict",
                            action="store_true",
                            help="fail on reading or normalization error")
     argparser.add_argument(
         "-l",
         "--log",
         help="filename to write log of downloaded passages to")
     ServerAccessor.add_arguments(argparser)
Esempio n. 4
0
 def add_arguments(argparser):
     argparser.add_argument(
         "filename",
         help="a file where each line is a <User ID> <TOKENIZATION TASK ID>"
     )
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 5
0
 def add_arguments(argparser):
     argparser.add_argument("filenames", nargs="+", help="filename pattern of CoNLL-U files")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_user_id_argument(argparser)
     argparser.add_argument("--annotation-user-id", type=int, help="user id for annotation tasks, if different")
     ServerAccessor.add_arguments(argparser)
Esempio n. 6
0
 def add_arguments(argparser):
     argparser.add_argument("task_ids",
                            nargs="+",
                            type=int,
                            help="IDs of tasks to download and convert")
     TaskDownloader.add_write_arguments(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 7
0
 def add_arguments(argparser):
     argparser.add_argument(
         "filename",
         help="a file where each line is a <User ID> <Passage ID>")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 8
0
 def add_arguments(argparser):
     argparser.add_argument("filenames",
                            nargs="+",
                            help="passage file names to convert and upload")
     argparser.add_argument(
         "-l",
         "--log",
         help="filename to write log of uploaded passages to")
     argparser.add_argument("--no-submit",
                            action="store_false",
                            dest="submit",
                            help="do not submit annotation task")
     argparser.add_argument(
         "--existing-ids",
         help=
         "use existing task IDs from file (output of --log); no creation")
     argparser.add_argument("-n",
                            "--no-upload",
                            action="store_false",
                            dest="upload",
                            help="do not upload anything")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 9
0
 def add_arguments(argparser):
     argparser.add_argument("filename", help="a file where each line is a <User ID> <INPUT TASK ID>, "
                                             "where the input task may be an annotation/review task "
                                             "(if given --review) or a tokenization task")
     ServerAccessor.add_arguments(argparser)
     argparser.add_argument("-r", "--review", action="store_true", help="Create annotation/review task")
     argparser.add_argument("-l", "--log", help="filename to write log of uploaded passages to")
     argparser.add_argument("--manager-comment", help="Manager comment to set for all tasks")
Esempio n. 10
0
 def add_arguments(argparser):
     argparser.add_argument(
         "filename",
         help="file with lines of the form <EXTERNAL ID> <PASSAGE ID>")
     argparser.add_argument("--by-task-id",
                            action="store_true",
                            help="expect task ID instead of passage ID")
     ServerAccessor.add_arguments(argparser)
Esempio n. 11
0
 def add_arguments(argparser):
     argparser.add_argument("task_ids", nargs="+", help="IDs of tasks to download and convert")
     argparser.add_argument("-f", "--by-filename", action="store_true", help="treat task_ids as a filename, "
                                                                             "otherwise it is a list of IDs")
     TaskDownloader.add_write_arguments(argparser)
     argparser.add_argument("-V", "--validate", help="run validation on downloaded passages and save errors to file")
     argparser.add_argument("-N", "--normalize", action="store_true", help="normalize downloaded passages")
     argparser.add_argument("-l", "--log", help="filename to write log of downloaded passages to")
     ServerAccessor.add_arguments(argparser)
Esempio n. 12
0
 def add_arguments(argparser):
     argparser.add_argument("filenames",
                            nargs="+",
                            help="passage file names to convert and upload")
     argparser.add_argument("--user-id",
                            type=int,
                            help="user id, otherwise set by " +
                            USER_ID_ENV_VAR)
     ServerAccessor.add_arguments(argparser)
Esempio n. 13
0
 def add_arguments(argparser):
     argparser.add_argument("filenames",
                            help="passage file names to convert and upload")
     argparser.add_argument(
         "-l",
         "--log",
         help="filename to write log of uploaded passages to")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 14
0
 def add_arguments(argparser):
     argparser.add_argument(
         "filename",
         help="a file where each line is a <User ID> <INPUT TASK ID>, "
         "where the input task may be an annotation/review task "
         "(if given --review) or a tokenization task")
     ServerAccessor.add_arguments(argparser)
     argparser.add_argument("-r",
                            "--review",
                            action="store_true",
                            help="Create annotation/review task")
     argparser.add_argument(
         "-l",
         "--log",
         help="filename to write log of uploaded passages to")
     argparser.add_argument("--manager-comment",
                            help="Manager comment to set for all tasks")
Esempio n. 15
0
 def add_arguments(argparser):
     argparser.add_argument(
         "filename",
         help=
         "text file with one line paragraph, where paragraphs are separated "
         "by multiple newlines and an optional <DELIMITER>")
     argparser.add_argument(
         "-l",
         "--log",
         help="filename to write log of uploaded passages to")
     argparser.add_argument("--lang",
                            choices=["ru", "en", "fr", "de"],
                            default="ru",
                            help="language two-letter code, for tokenizer")
     ServerAccessor.add_project_id_argument(argparser)
     ServerAccessor.add_source_id_argument(argparser)
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 16
0
    def add_arguments(argparser):
        argparser.add_argument("filename", help="file with lines, each with a different task ID")
        argparser.add_argument("-l","--log_file", help="output log file")

        ServerAccessor.add_arguments(argparser)
Esempio n. 17
0
 def add_arguments(argparser):
     argparser.add_argument("filename",
                            help="file with lines of the form <TASK ID>")
     ServerAccessor.add_arguments(argparser)
Esempio n. 18
0
 def add_arguments(argparser):
     argparser.add_argument("filename", help="file with lines of the form <EXTERNAL ID> <PASSAGE ID>")
     argparser.add_argument("--by-task-id", action="store_true", help="expect task ID instead of passage ID")
     ServerAccessor.add_arguments(argparser)
Esempio n. 19
0
 def add_arguments(argparser):
     argparser.add_argument(
         "filename",
         help="file with lines of the form <EXTERNAL ID> <PASSAGE ID>")
     ServerAccessor.add_arguments(argparser)
Esempio n. 20
0
 def add_arguments(argparser):
     argparser.add_argument("filenames", nargs="+", help="passage file names to convert and upload")
     ServerAccessor.add_user_id_argument(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 21
0
 def add_arguments(argparser):
     argparser.add_argument("filename", help="file with lines, each with a different task ID")
     argument_parser.add_argument("-s", "--status", help="should be ONGOING or SUBMITTED",
                                  choices=[ONGOING_STATUS, SUBMITTED_STATUS])
     ServerAccessor.add_arguments(argparser)
Esempio n. 22
0
 def add_arguments(argparser):
     argparser.add_argument("task_ids", nargs="+", type=int, help="IDs of tasks to download and convert")
     TaskDownloader.add_write_arguments(argparser)
     ServerAccessor.add_arguments(argparser)
Esempio n. 23
0
    def add_arguments(argparser):
        argparser.add_argument("filename", help="file with lines, each with a different task ID")
        argparser.add_argument("-l","--log_file", help="output log file")

        ServerAccessor.add_arguments(argparser)
Esempio n. 24
0
 def add_arguments(argparser):
     argparser.add_argument("filenames", nargs="+", help="passage file names to convert and upload")
     argparser.add_argument("--user-id", type=int, help="user id, otherwise set by " + USER_ID_ENV_VAR)
     ServerAccessor.add_arguments(argparser)
Esempio n. 25
0
 def add_arguments(argparser):
     argparser.add_argument("filename", help="file with lines, each with a different task ID")
     ServerAccessor.add_arguments(argparser)
Esempio n. 26
0
 def add_arguments(argparser):
     argparser.add_argument("filename", help="file with lines of the form <TASK ID>")
     ServerAccessor.add_arguments(argparser)