In a continual learning paper from last year, I found LoRA was extremely effective for faster fine-tuning and not forgetting the original dataset:
LoRA Learns Less and Forgets Less
21–30 of 65 posts
Re: LoRA Learns Less and Forgets Less
#22Re: LoRA Learns Less and Forgets Less
#23I really wish people would be more careful about choosing names for these things. LoRa has been a popular wireless protocol for like 10 years.
Yes, but this is LoRA, clearly not LoRa.
Re: LoRA Learns Less and Forgets Less
#24I really wish people would be more careful about choosing names for these things. LoRa has been a popular wireless protocol for like 10 years.
Re: LoRA Learns Less and Forgets Less
#25The findings are that the best fine-tune performance comes from fine-tuning all weights, followed my MLPs, followed by attention heads, using LoRA. Authors assert that the performance difference is based on the target module of the NN. Isn’t an equally valid argument that MLPs tend to constitute a greater number of weights in transformer networks than attention heads, and the performance difference can be traced to a…
as a follow up curiosity, has anyone tried using LoRA on the entire model for pretraining to compare regular training model performance to LoRA?
Re: LoRA Learns Less and Forgets Less
#26I really wish people would be more careful about choosing names for these things. LoRa has been a popular wireless protocol for like 10 years.
Re: LoRA Learns Less and Forgets Less
#27I really wish people would be more careful about choosing names for these things. LoRa has been a popular wireless protocol for like 10 years.
99% of ML engineers wouldn't know what it is.
Re: LoRA Learns Less and Forgets Less
#28Earlier quoted context omitted.
I’ve tested specifically this (on my personal time) :) It will train but I found the loss is proportional to the number of trainable parameters. So roughly to hit the performance of a standard 70m param model, you need to train ~70m lora params anyway.
It's worse than that, because lora requires two matrices per layer. At full rank, you have an additional NxN parameters to learn versus full finetuning, where N is min(input_features, output_features). For example, tuning a layer of 128 in x 256 out is 32k params. Learning a full-rank lora for that layer would be two matrices of 128x128 and 128x256 = 48k params.
Re: LoRA Learns Less and Forgets Less
#29I really wish people would be more careful about choosing names for these things. LoRa has been a popular wireless protocol for like 10 years.
Not sure about "popular" 99% of ML engineers wouldn't know what it is.
Re: LoRA Learns Less and Forgets Less
#30I really wish people would be more careful about choosing names for these things. LoRa has been a popular wireless protocol for like 10 years.
Not sure about "popular" 99% of ML engineers wouldn't know what it is.
A much smaller percent among those who write in ML (the functional programming language) probably, though.