AGI-Edgerunners / LLM-Adapters

Code for our EMNLP 2023 Paper: "LLM-Adapters: An Adapter Family for Parameter-Efficient Fine-Tuning of Large Language Models"
https://arxiv.org/abs/2304.01933
Apache License 2.0
1.01k stars 91 forks source link

Training reproduce #41

Open ChaoGaoUCR opened 9 months ago

ChaoGaoUCR commented 9 months ago

Dear Authors,

Thanks for the great work again. I have a quick question, I try to do training with 4 epochs by setting the trainer epoch to 1 and using for to repeat it four times. I can't get the same result with this, Any hint for what I did wrong? image

Thanks

HZQ950419 commented 9 months ago

Hi,

Did you resume from previous epoch checkpoints? If so, please ensure every epoch is training from scratch. If not, you can set a random seed to strengthen the result reproducibility. Could you report the results you got? I'd like to know how the results vary. Thanks!

ChaoGaoUCR commented 9 months ago

Dear,

Thanks, it's my fault, I set the batch size too big(512), I fixed it with batch size 16, now it works perfectly.

Best