如何单独进行infer和eval #1021
Answered
by
Mor-Li
IcyFeather233
asked this question in
Q&A
如何单独进行infer和eval
#1021
-
我有一个需求是我想添加一个API model来做eval_subjective_alignbench的评测,我想让这个评测infer和eval分开跑,即我先跑出来infer结果,然后慢慢改model文件来跑eval。我想知道怎么做到指定之前某次的infer结果单独跑eval? |
Beta Was this translation helpful? Give feedback.
Answered by
Mor-Li
Apr 3, 2024
Replies: 1 comment 3 replies
-
Hi, you can try python run.py path/to/your/config.py -r path/to/infer/folder --mode eval like this python run.py path/to/your/config.py -r 20240117_XXXXXX --mode eval |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
IcyFeather233
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, you can try
python run.py path/to/your/config.py -r path/to/infer/folder --mode eval
like this
python run.py path/to/your/config.py -r 20240117_XXXXXX --mode eval