Question 4
Given the following code snippet:
from transformers import AutoModelForSequenceClassificationfrom peft import LoraConfig
base_model = AutoModelForSequenceClassification.from_pretrained("bert-base-uncased", num_labels=2)lora_config = LoraConfig( r=8, lora_alpha=16, lora_dropout=0.1)Which of the following options correctly adds LoRA to the base_model? (Whichever option you choose, assume the corresponding imports already done for them)