You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We downloaded pretrained models from PhysioNet and conducted evaluations on both MeLLaMA-13B-chat and MeLLaMA-70B-chat models. However, the results we obtained were significantly different. Here we list our reproduced results. Do you know any potential issues that might be affecting the reproducibility of the results? Looking forward to your reply.
We downloaded pretrained models from PhysioNet and conducted evaluations on both MeLLaMA-13B-chat and MeLLaMA-70B-chat models. However, the results we obtained were significantly different. Here we list our reproduced results. Do you know any potential issues that might be affecting the reproducibility of the results? Looking forward to your reply.
Here's our running script.
`eval_path='/workspace/Me-LLaMA'
export PYTHONPATH="$eval_path/src:$eval_path/src/medical-evaluation:$eval_path/src/metrics/BARTScore"
echo $PYTHONPATH
export VLLM_WORKER_MULTIPROC_METHOD=spawn
MODEL_NAME=hf-causal-vllm
TASKS="PUBMEDQA,MedQA,MedMCQA,DDI2013,hoc,MTSample,PUBMEDSUM,BioNLI"
PRETRAINED=/datasets/MedData/me-llama/models/1.0.0/MeLLaMA-13B-chat
BATCHSZIE=50000
python src/eval.py
--model $MODEL_NAME
--tasks $TASKS
--model_args "use_accelerate=True,pretrained="$PRETRAINED",use_fast=False"
--no_cache
--batch_size $BATCHSZIE
--write_out
--output_path "./MeLLaMA-13B-chat_results_${TASKS}.json"
`
The text was updated successfully, but these errors were encountered: