Numera-V1
Collection
Family of Gen-1 of Numera models • 3 items • Updated
• 1
Numera-v1 is a 3 Billion parameter transformer-based causal decoder model designed for high-quality text generation and conceptual coherence. It is part of the Numera series focusing on structural integrity and advanced architectural optimization.
Here are the details for Numera (Gen-1) 3b :
This model is intended for research into:
Note: This model is a statistical approximation and not a trained model. It may exhibit repetitive behaviors or lack specific factual knowledge.
You can use this model with the transformers library:
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "luigicfilho/Numera-v1-3b"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
prompt = "The nature of mathematics is"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
This model is released under the MIT License.