mLoRA icon indicating copy to clipboard operation
mLoRA copied to clipboard

Add bleu, rouge evaluation indicators.

Open LianxinGao opened this issue 1 year ago • 2 comments

we need model evaluation method.

LianxinGao avatar Sep 01 '23 02:09 LianxinGao

I have wrote a BERT based auto evaluator mainly focus on fast evaluation to checkpoints of LLM for early stop when fine-tunning.

mikecovlee avatar Sep 01 '23 02:09 mikecovlee

I have wrote a BERT based auto evaluator mainly focus on fast evaluation to checkpoints of LLM for early stop when fine-tunning.

OK,maybe the way below is a necessary method to offer

python mlora.py \
  --eval \
  --base_model {model_path}  \ 
  --checkpoint {fine-tuned checkpoint path} \
  --dataset_path {dataset to eval}

LianxinGao avatar Sep 01 '23 07:09 LianxinGao