diff --git a/.github/workflows/llm-ppl-evaluation.yml b/.github/workflows/llm-ppl-evaluation.yml index d10d395d..d3647965 100644 --- a/.github/workflows/llm-ppl-evaluation.yml +++ b/.github/workflows/llm-ppl-evaluation.yml @@ -17,9 +17,9 @@ on: workflow_dispatch: inputs: seq_len: - description: 'sequence length, input one number' + description: 'sequence length, input one number and must be quoted.' required: true - type: number + type: string model_name: description: 'Model names, seperated by comma and must be quoted.' required: true @@ -29,13 +29,9 @@ on: required: true type: string language: - description: 'language, can be en, zh, or all' + description: 'language, can be en, zh, or all and must be quoted.' required: true - type: choice - options: - - "en" - - "zh" - - "all" + type: string runs-on: description: 'Labels to filter the runners, seperated by comma and must be quoted.' default: "accuracy" @@ -202,4 +198,4 @@ jobs: --precisions ${{ matrix.precision }} \ --device ${{ matrix.device }} \ --dataset_path ${DATASET_DIR} \ - --language ${{ matrix.language }} + --language ${{ matrix.language }} \ No newline at end of file