Brion-1-Pre
Welcome everyone with a new series of models: "Brion". Brion-1-Pre is first model of this family. Brion family is upgraded version of "BrtGPT" family. (MORE Accurate answers, better at math.) Brion-1-Pre is a bit worse version of BrtGPT-1-Pre (Model is NOT trained with CODE data, so it can't write codes). It gives longer, answers to questions. This is "-Pre" version, so don't expect any good results. Actual version is will be relased in 10 july 2026.
Training Details
Model is trained on 600.000~ high-quality QA Pairs (Pre-fine tuning). Actural version will be trained on +2.5m Alpaca QA Pairs, +RLHF (Reinforcement Learning with Human Feedback)
Use Code
from transformers import pipeline
# Pipeline
pipe = pipeline(
"text-generation",
model="Bertug1911/Brion-1",
trust_remote_code=True,
top_k=40, # Good for creativity
temperature=0.8 # Good for creativity
#max_new_tokens=512 # Default maximum model output (Maximum 1024)
)
# Messages
messages = [
{"role": "user", "content": "What is the capital of France?"},
]
# Take out
output = pipe(messages)
# Only write asistant's (Model output) answer
assistant_response = output[0]["generated_text"][-1]["content"].strip()
# Special token conversions
formatted_out = assistant_response.replace(" ", "").replace("Ġ", " ").replace("Ċ", "\n")
print(formatted_out)
- Downloads last month
- 16