# 영어 리더보드
# 평가 도구 다운로드
git clone https://github.com/EleutherAI/lm-evaluation-harness
# 다운로드된 폴더로 이동
cd lm-evaluation-harness
# 패키지 설치
pip install -r requirements.txt
pip install evaluate
lm_eval \
--model hf \
--model_args pretrained={Your Model Huggingface ID} \
--tasks hellaswag,copa,boolq,mmlu \
--device cuda:0 \
--batch_size 1 \
--num_fewshot {0~50}
# 한국어 리더보드
git clone https://github.com/Beomi/ko-lm-evaluation-harness
python main.py \
--model gpt2 \
--model_args pretrained={Your Model Huggingface ID} \
--tasks hellaswag,copa,boolq,mmlu \
--device cuda:0 \
--batch_size 1 \
--num_fewshot {0~50}
'A.I.(인공지능) & M.L.(머신러닝) > A.I. Information' 카테고리의 다른 글
인테리어 이미지 유사도 검색: 오늘의 집 (0) | 2024.05.16 |
---|---|
[이론] LLM GPU 학습 병렬처리 (DP, DDP, FSDP) (0) | 2024.04.18 |
[실습] google gemini 테스트 [python] 10분컷 (1) | 2024.01.31 |
[이론] 퍼셉트론 이란? (0) | 2024.01.16 |
[이론] LoRA (Low-Rank Adaptation) (0) | 2024.01.11 |