-
-
Notifications
You must be signed in to change notification settings - Fork 897
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support custom field for completion from yml (#580)
* support custom field for completion from yml * remove legacy completion check and add doc * update README docs
- Loading branch information
Showing
5 changed files
with
53 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
""" | ||
Basic completion text | ||
""" | ||
from typing import Any, Dict, Optional | ||
|
||
from axolotl.prompt_tokenizers import CompletionPromptTokenizingStrategy | ||
from axolotl.prompters import CompletionPrompter | ||
|
||
|
||
def load(tokenizer, cfg, ds_cfg: Optional[Dict[str, Any]] = None): | ||
strat = CompletionPromptTokenizingStrategy( | ||
CompletionPrompter(), | ||
tokenizer, | ||
cfg.train_on_inputs, | ||
cfg.sequence_len, | ||
) | ||
if ds_cfg and "field" in ds_cfg: | ||
strat.field = ds_cfg["field"] | ||
|
||
return strat |
This file contains 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 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