Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces comprehensive support for bitflip-aware LoRA fine-tuning for large language models (LLMs), specifically Llama-3.1-8B, and documents the workflow and results. The changes include new training and evaluation scripts, configuration files for bitflip and LoRA parameters, a step-by-step tutorial, and updates to project documentation with milestone results. The workflow enables injecting random bitflip noise during training and evaluation, allowing LoRA adapters to learn robustness to hardware-level errors, with clear evidence that LoRA fine-tuning dramatically reduces the negative impact of bitflip noise.
Bitflip-aware LoRA fine-tuning workflow and documentation:
clm-bitflip-lora-finetune.md) explaining the theory, configuration, step-by-step usage, and results of bitflip-aware LoRA fine-tuning for Llama-3.1-8B, including training curves and baseline comparisons.fine-tune-bitflip-clm.sh) and evaluation-only runs (eval-bitflip-no-finetune.sh,eval-no-biflip-no-finetune.sh), with automatic calculation of training steps based on model size and batch configuration. [1] [2] [3]Configuration and reproducibility:
transform_cfg.toml) and baseline LoRA (transform_cfg_baseline.toml) setups, specifying bitflip probabilities and LoRA parameters. [1] [2]Results visualization and analysis:
plot_train_loss.py) to visualize training loss curves from W&B CSV exports, highlighting the effectiveness of bitflip-aware LoRA fine-tuning.Documentation and milestone updates: