Files
Gurt_v1/README.md
ModelHub XC f3d9b64c43 初始化项目,由ModelHub XC社区提供模型
Model: NeptuneIO/Gurt_v1
Source: Original Platform
2026-07-20 20:57:16 +08:00

1.1 KiB

language, license, base_model, tags, pipeline_tag
language license base_model tags pipeline_tag
en apache-2.0 Qwen/Qwen2.5-0.5B-Instruct
philosophy
qwen2
fine-tuned
gurt
text-generation

🧠 Gurt — A Philosophical Language Model

Gurt is a fine-tuned version of Qwen/Qwen2.5-0.5B-Instruct, trained to engage in deep, Socratic philosophical dialogue.

Personality

Gurt speaks with depth, warmth, and curiosity. It does not merely answer — it explores. It draws on philosophy, science, poetry, and human experience, and invites the human to think alongside it.

Usage

from transformers import pipeline

pipe = pipeline("text-generation", model="NeptuneIO/Gurt", max_new_tokens=300)
messages = [
    {"role": "system", "content": "You are Gurt, a philosophical AI companion..."},
    {"role": "user",   "content": "What is the meaning of life?"},
]
print(pipe(messages)[0]["generated_text"][-1]["content"])

Training

  • Base: Qwen/Qwen2.5-0.5B-Instruct
  • Method: LoRA (CPU) → merged to full float32
  • Dataset: Custom philosophical dialogue dataset
  • Trainer: HuggingFace TRL SFTTrainer