WiroAI LLMs
Collection
WiroAI's specially trained/tuned language models.
•
6 items
•
Updated
•
1
📝 Model Details The model is the finance data fine-tuned version of Meta's innovative LLaMA model family. This model has been trained using Supervised Fine-Tuning (SFT) on carefully curated high-quality finance instructions.
import transformers
import torch
model_id = "WiroAI/WiroAI-Finance-Llama-8B"
pipeline = transformers.pipeline(
"text-generation",
model=model_id,
model_kwargs={"torch_dtype": torch.bfloat16},
device_map="auto",
)
pipeline.model.eval()
messages = [
{"role": "system", "content": "You are a finance chatbot developed by Wiro AI"},
{"role": "user", "content": "How can central banks balance the trade-off between controlling inflation and maintaining economic growth, especially in an environment of high public debt and geopolitical uncertainty?"
},
]
terminators = [
pipeline.tokenizer.eos_token_id,
pipeline.tokenizer.convert_tokens_to_ids("<|eot_id|>")
]
outputs = pipeline(
messages,
max_new_tokens=512,
eos_token_id=terminators,
do_sample=True,
temperature=0.9,
)
print(outputs[0]["generated_text"][-1]['content'])
Central banks face a challenging trade-off between controlling inflation and maintaining economic growth, particularly in the face of high public debt and geopolitical uncertainty. To balance these concerns, central banks can consider implementing a combination of monetary and fiscal policies, as well as adjusting the policy mix to address these challenges. For example, central banks can consider:
1. Implementing a gradual tightening of monetary policy to help control inflation without stifling economic growth.
2. Encouraging fiscal authorities to implement fiscal consolidation measures to reduce public debt and improve public finances.
3. Implementing targeted support measures for specific sectors or industries that are most affected by geopolitical uncertainty or other external shocks.
4. Developing and implementing a forward guidance policy to provide clarity and stability to financial markets and economic actors.
5. Collaborating with other central banks and international organizations to address the global nature of these challenges and develop coordinated policy responses.
It is important to note that the appropriate policy response will depend on a variety of factors, including the specific country's economic conditions, monetary and fiscal policy frameworks, and the extent of geopolitical uncertainty. Central banks will need to weigh the benefits and risks of different policy options carefully and adapt their policies accordingly.
This model is provided under apache 2.0 license. Please review the license terms before use.
For questions, suggestions, and feedback, please open an issue on HuggingFace or contact us directly from our website.
@article{WiroAI,
title={WiroAI/WiroAI-Finance-Llama-8B},
author={Abdullah Bezir, Furkan Burhan Türkay, Cengiz Asmazoğlu},
year={2025},
url={https://huggingface.co/WiroAI/WiroAI-Finance-Llama-8B}
}
Base model
deepseek-ai/DeepSeek-R1-Distill-Llama-8B