Skip to content

Commit

Permalink
Merge pull request bytedance#63 from bytedance/fix_general_perf_deberta
Browse files Browse the repository at this point in the history
fix(general_perf): fix deberta inputs mismatch prob
  • Loading branch information
YJessicaGao authored Apr 10, 2024
2 parents 3662456 + 7b63c32 commit 63b599c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"framework_version": "1.10.0",
"model_format": "pt",
"model_precision": "FP32",
"inputs":"input_ids.1,attention_mask.1",
"inputs":"input_ids.1,attention_mask.1,token_type_ids.1",
"outputs":"start_logits,end_logits",
"input_shape": {"input_ids.1": [1,384], "attention_mask.1": [1,384]},
"input_type": "LONG,LONG",
"input_shape": {"input_ids.1": [1,384], "attention_mask.1": [1,384], "token_type_ids.1": [1,384]},
"input_type": "LONG,LONG,LONG",
"dataset_name": "open_squad",
"max_batch_size": 64,
"is_quantized": false
Expand Down

0 comments on commit 63b599c

Please sign in to comment.