script_url
(str): The URL to download the model archive.optimized
(bool): IfTrue
, the model script has already be optimized byNeural Coder
.arguments
(List[Union[int, str]], optional): Arguments that are needed for running the model.approach
(str, optional): The optimization approach supported byNeural Coder
.requirements
(List[str], optional): The environment requirements.priority
(int, optional): The importance of the task, the optional value is1
,2
, and3
,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
}