mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-10-14 23:58:11 +08:00
fix test
Former-commit-id: 4899309b7cac00573215f6530bfc97d7d87d70b2
This commit is contained in:
parent
b92214f78b
commit
54ba30c47f
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@ -20,6 +20,12 @@ jobs:
|
|||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
environment:
|
||||||
|
name: tests
|
||||||
|
|
||||||
|
env:
|
||||||
|
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -44,7 +44,7 @@ def _check_tokenization(
|
|||||||
|
|
||||||
|
|
||||||
def _check_single_template(model_id: str, template_name: str, prompt_str: str, answer_str: str, use_fast: bool):
|
def _check_single_template(model_id: str, template_name: str, prompt_str: str, answer_str: str, use_fast: bool):
|
||||||
tokenizer = AutoTokenizer.from_pretrained(model_id, use_fast=use_fast)
|
tokenizer = AutoTokenizer.from_pretrained(model_id, use_fast=use_fast, token=os.environ.get("HF_TOKEN", None))
|
||||||
content_str = tokenizer.apply_chat_template(MESSAGES, tokenize=False).rstrip("\n") # avoid extra newline
|
content_str = tokenizer.apply_chat_template(MESSAGES, tokenize=False).rstrip("\n") # avoid extra newline
|
||||||
content_ids = tokenizer.encode(content_str, add_special_tokens=False)
|
content_ids = tokenizer.encode(content_str, add_special_tokens=False)
|
||||||
template = get_template_and_fix_tokenizer(tokenizer, name=template_name)
|
template = get_template_and_fix_tokenizer(tokenizer, name=template_name)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user