NTX
Collection
1 item • Updated • 1
NTX-350m is a compact assistant model built to bring a familiar GRaPE-style feel into an edge-sized model.
In simple terms: this is an attempt to capture the habitual GRaPE-style tone and interaction pattern in a lightweight 350M-class model that is easier to run in constrained environments.
The model was fine-tuned on SL-AI/GRaPE-Base-Mix, with a total of approximately 3.03M rows. The training focus emphasized assistant behavior, conversational tone, instruction following, and consistent identity in a small-footprint setting.
NTX-350m is intended for:
from transformers import pipeline
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
generator = pipeline("text-generation", model="DedeProGames/NTX-350m-Preview", device="cuda")
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
print(output["generated_text"])
This model was trained with SFT.