9 lines
243 B
Bash
Executable File
9 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
model_name=viruscommentcls_11/checkpoint-200
|
|
|
|
python src/eval.py \
|
|
--model_name_or_path data/output_models/${model_name} \
|
|
--data_path data/raw_dataset/VirusComment.py \
|
|
--report_path eval_results/${model_name} |