llava-small-open-elm-aimv2
/
TinyLLaVA_Factory
/tinyllava
/data
/template
/qwen2_instruct_template.py
from dataclasses import dataclass | |
from typing import TYPE_CHECKING, Dict, List, Optional, Sequence, Tuple, Union | |
from .formatter import EmptyFormatter, StringFormatter | |
from .base import Template | |
from .formatter import Formatter | |
from . import register_template | |
from transformers import PreTrainedTokenizer | |
import torch | |
system = "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions." | |
class Qwen2InstructTemplate(Template): | |
format_image_token: "Formatter" = StringFormatter(slot="<image>\n{{content}}") | |
format_user: "Formatter" = StringFormatter(slot="USER" + ": " + "{{content}}" + " ") | |
format_assistant: "Formatter" = StringFormatter(slot="ASSISTANT" + ": " + "{{content}}" + "<|im_end|>") | |
system: "Formatter" = EmptyFormatter(slot=system+" ") | |
separator: "Formatter" = EmptyFormatter(slot=[' ASSISTANT: ', '<|im_end|>']) | |