Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 1006 Bytes

task_request_description.md

File metadata and controls

25 lines (21 loc) · 1006 Bytes

Task request description

  • script_url (str): The URL to download the model archive.
  • optimized (bool): If True, the model script has already be optimized by Neural Coder.
  • arguments (List[Union[int, str]], optional): Arguments that are needed for running the model.
  • approach (str, optional): The optimization approach supported by Neural Coder.
  • requirements (List[str], optional): The environment requirements.
  • priority(int, optional): The importance of the task, the optional value is 1, 2, and 3, 1 is the highest priority.

An example:

{
    "script_url": "https://github.com/huggingface/transformers/blob/v4.21-release/examples/pytorch/text-classification/run_glue.py",
    "optimized": "False",
    "arguments": [
        "--model_name_or_path bert-base-cased --task_name mrpc --do_eval --output_dir result"
    ],
    "approach": "static",
    "requirements": [
    ],
    "priority": 1
}