| 1234567891011121314151617181920212223242526 | # Copyright (c) Meta Platforms, Inc. and affiliates.# This software may be used and distributed according to the terms of the Llama 2 Community License Agreement.from dataclasses import dataclass, fieldfrom typing import List@dataclassclass lora_config:     r: int=8     lora_alpha: int=32     target_modules: List[str] = field(default_factory=lambda: ["q_proj", "v_proj"])     bias= "none"     task_type: str= "CAUSAL_LM"     lora_dropout: float=0.05     inference_mode: bool = False@dataclassclass llama_adapter_config:     adapter_len: int= 10     adapter_layers: int= 30     task_type: str= "CAUSAL_LM"@dataclassclass prefix_config:     num_virtual_tokens: int=30     task_type: str= "CAUSAL_LM"    
 |