Numera-V1
Collection
Family of Gen-1 of Numera models • 3 items • Updated • 1
This model was automatically generated using LCDev-Numera, a proprietary tool for numerical model generation.
Here are the details for Numera (Gen-1) :
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.
from transformers import AutoTokenizer, AutoModelForCausalLM
model_name = "./Numera-v1"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)
prompt = "The future of AI is"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_length=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
MIT