forked from ggml-org/llama.cpp
-
Notifications
You must be signed in to change notification settings - Fork 6
Add initial LoRA finetuning support; vulkan OUT_PROD; vulkan cross-entropy-backward #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
makaveli10
wants to merge
17
commits into
tetherto:temp-finetuning
Choose a base branch
from
makaveli10:lora-finetuning
base: temp-finetuning
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,360
−21
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
f7b0025
Add lora finetuning from adapter
makaveli10 116f3dd
Add: create new lora adapter for target modules to finetune if no lor…
makaveli10 9e6d8ce
Fix identical loss over epochs; fix garbage lora initization
makaveli10 8bb11c0
Remove lora training from finetune.cpp
makaveli10 486ebc1
Add adapter saving & other lora target modules
makaveli10 c23ada9
Add finetune-lora for lora finetuning in examples
makaveli10 3f295e1
Add dequantization to out_prod cuda kernel
makaveli10 0c1ffd1
Update README with finetune-lora
makaveli10 e9f5d88
Vulkan: add support for fp32 OUT_PROD op
fb0e501
CPU: add support for fp16_fp32 OUT_PROD op
2b0c835
Vulkan: add support for f16_f32 OUT_PROD op
0aef6c8
Vulkan: Add Q4_0/Q8_0 OUT_PROD Vulkan support
zoq 25c5316
vulkan: Add initial cross entropy loss backward shader
makaveli10 0721550
vulkan: Fix cross-entropy-loss-back dispatch size and wg denominator
makaveli10 bc7dd9f
vulkan: Change uint32 cast to int32 for outprod; allows android compi…
makaveli10 b820541
wip vulkan crash fix
25dfd75
vulkan: Set out_prod pipeline disable_robustness to true
makaveli10 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change looks good but the commit msg should be updated to remove
wip
- would also be good to explain what specific crash this fixes in the commit msg.