This directory contains all evaluation scripts used for the main experiments.
Each script follows the naming pattern:
llm.{BASE_MODEL}+data.{DATA}.sh
| Identifier | Corresponding Model |
|---|---|
| llama-3_1-8b | meta-llama/Meta-Llama-3.1-8B |
| llama-3_1-70b | meta-llama/Meta-Llama-3.1-70B |
| qwen-2_5-1_5b | Qwen/Qwen2.5-1.5B |
| qwen-2_5-7b | Qwen/Qwen2.5-7B |
| Identifier | Dataset Source |
|---|---|
| code generation | ise-uiuc/Magicoder-Evol-Instruct-110K |
| commonsense reasoning | zwhe99/commonsense_170k |
Each script runs multiple PEFT (Parameter-Efficient Fine-Tuning) methods and LoRA ranks:
loramorarasagralora
By default, each script iterates through all supported PEFT methods and LoRA rank configurations.
If you want to run a script for a single PEFT method (e.g., gralora), you can manually modify the loop in the script.
Example: Change the following line:
for METHOD in lora mora rasa gralora;to:
for METHOD in gralora;This ensures the script only runs the gralora method.