LLM-self-identification
收藏资源简介:
LLM Self Identification数据集是由SupraLabs创建的专门用于让语言模型了解自身身份信息的训练集。该数据集旨在帮助开发者和训练者通过定制化的身份信息来增强语言模型的自我认知能力。数据集包含7个可替换的正则表达式标记,分别对应模型的关键身份属性:模型ID(唯一标识符)、模型名称(人类可读名称)、模型创建者(开发个人或组织)、模型家族(所属系列)、模型架构(神经网络架构)、参数数量(近似或精确值)和知识截止日期(训练数据的最新时间点)。数据集提供了详细的标记替换指南和完整的使用示例,展示了如何将通用标记替换为具体的模型身份信息。该数据集适用于文本生成和问答任务,特别适合需要语言模型具备自我认知和身份识别能力的应用场景。数据集规模小于1000个样本,使用Apache-2.0开源许可证。
The LLM Self Identification dataset is a training set created by SupraLabs specifically designed to help language models understand their own identity information. The dataset aims to assist developers and trainers in enhancing the self-awareness of language models through customized identity information. It contains 7 replaceable regular expression tokens corresponding to key model identity attributes: model ID (unique identifier), model name (human-readable name), model creator (developer individual or organization), model family (series), model architecture (neural network architecture), parameter count (approximate or exact value), and knowledge cutoff date (latest training data time). The dataset provides detailed token replacement guidelines and complete usage examples, demonstrating how to replace generic tokens with specific model identity information. It is suitable for text generation and question answering tasks, especially for scenarios requiring language models to have self-awareness and identity recognition capabilities. The dataset size is less than 1000 samples, licensed under Apache-2.0.
数据集概述:LLM Self Identification
- 数据集名称: LLM Self Identification
- 数据集地址: https://huggingface.co/datasets/SupraLabs/LLM-self-identification
- 许可证: Apache-2.0
- 语言: 英语 (en)
- 任务类别: 文本生成 (text-generation)、问答 (question-answering)
- 数据集规模: n<1K (小于1000条)
- 标签: self-identification, llm, identity
核心用途
该数据集旨在让开发者或训练者通过微调,使语言模型能够认知并表述自身的身份信息。通过在训练数据中插入特定的正则标记(Regex Marker),模型可以学习回答关于“你是谁?”这类问题,并输出诸如模型名称、创建者、架构等自定义信息。
数据集内容
训练集包含一问一答的对话形式,其中助手的回答中使用了以下7个可替换的正则标记。每个标记对应一个需要自定义的身份信息字段:
| 正则标记 (Regex Marker) | 含义 (Description) | 替换示例 |
|---|---|---|
{{SELF_ID.MODEL_ID}} |
模型的唯一标识符,通常为仓库名或部署ID | SupraLabs/Supra-2-65M |
{{SELF_ID.MODEL_NAME}} |
模型的人类可读名称 | Supra-2 Mini |
{{SELF_ID.MODEL_CREATOR}} |
创建模型的个人、团队或组织 | SupraLabs |
{{SELF_ID.MODEL_FAMILY}} |
模型所属的家族或系列 | Supra-2 |
{{SELF_ID.MODEL_ARCHITECTURE}} |
模型底层的神经网络架构 | supra-arch |
{{SELF_ID.PARAMETER_COUNT}} |
模型的参数量,如65M、7B | 65M |
{{SELF_ID.KNOWLEDGE_CUTOFF}} |
模型训练知识的最新日期 | February, 2026 |
使用方式
开发者需将数据集中所有出现的上述正则标记替换为对应模型的实际身份信息。数据集页面提供了一个UI动画指南和一个完整的Python脚本,指导用户如何:
- 从Hugging Face导入数据集。
- 逐一收集每个个人化字段(如上表所示)。
- 将收集到的值应用到数据集中,替换所有标记。
- 验证无误后保存个性化的数据集。




