VineBot
VineBot is a fine-tuned TinyLlama-1.1B model,
trained for Q&A on the Blessed Vineyard Church ministry manual.
๐ ๏ธ Usage
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "exzort/VineBot"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
inputs = tokenizer("What is the vision of the ministry?", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
- Downloads last month
- 1