finbloom-model
This is an adapter model fine-tuned for financial text generation.
Usage
You can load and use this model with the Hugging Face Transformers library:
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "SHAIK-SWABIRA-CHAND/finbloom-model"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
# Example inference
# (Add your specific inference code here)