Base Model
This adapter was trained on:
unsloth/mistral-7b-instruct-v0.3-bnb-4bit
This is a LoRA adapter only. It is not a standalone model.
Intended Use
适合用于短的单轮中文风格生成:
- 阿獭式随口聊天
- 海边、扇贝、发呆相关的小感悟
- 简短、出人意料的中文哲理句
- 本地 LoRA 推理测试
Limitations
- 单轮效果明显好于多轮聊天。
- 多轮历史开启后,回答可能跑偏、重复或变得不自然。
- 可能生成不通顺、不准确或非官方的句子。
- 它是在模仿风格,不是官方语录检索器。
- 中文效果目前弱于英文版本。
Example Prompt
Loading Example
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
adapter_id = "CasperYL/pascal-unsloth-mistral-lora-chs"
tokenizer = AutoTokenizer.from_pretrained(adapter_id)
base_model = AutoModelForCausalLM.from_pretrained(
"unsloth/mistral-7b-instruct-v0.3-bnb-4bit",
device_map="auto",
)
model = PeftModel.from_pretrained(base_model, adapter_id)
Training Data
The adapter was trained from a small, single-turn Alpaca-style dataset built from Simplified Chinese 阿獭-style quotes and hand-written player prompts.
License / Rights Note
这是一个粉丝向 adapter,仅用于研究和个人实验。Animal Crossing 和阿獭属于其相应权利方。使用时请同时遵守 base model license 以及源材料相关权利限制。