WiroAI LLMs
Collection
WiroAI's specially trained/tuned language models.
•
6 items
•
Updated
•
2
📝 Model Details The model is the finance data fine-tuned version of Qwen 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-Qwen-7B"
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("<|end▁of▁sentence|>")
]
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 task in balancing the trade-off between controlling inflation and maintaining economic growth, especially in an environment of high public debt and geopolitical uncertainty. To address this, central banks can implement several strategies:
1. Implementing monetary policy tools: Central banks can use interest rate adjustments, open market operations, and liquidity management to control inflation and manage the economy's growth. For instance, by raising interest rates, they can slow down economic activity and reduce inflationary pressures.
2. Encouraging fiscal prudence: Central banks should collaborate with governments to ensure fiscal sustainability. This involves encouraging fiscal reforms, reducing excessive public debt, and preventing excessive government spending.
3. Promoting financial inclusion: By addressing issues of financial exclusion and enhancing access to financial services, central banks can help reduce poverty and stimulate economic growth.
4. Building resilient financial systems: Central banks should strengthen the stability of financial markets by regulating financial institutions, ensuring the availability and liquidity of credit, and preventing financial crises.
5. Engaging in international cooperation: Central banks should work closely with other countries to address global economic challenges, such as geopolitical tensions and trade disputes, and support international agreements that promote economic stability.
6. Communicating effectively: Central banks should maintain open and transparent communication with the public, providing regular updates on monetary policy decisions and their implications for inflation and economic growth.
By implementing these strategies, central banks can strive to balance the trade-off between controlling inflation and promoting economic growth, even in the face of high public debt and geopolitical uncertainty.
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-Qwen-7B},
author={Abdullah Bezir, Furkan Burhan Türkay, Cengiz Asmazoğlu},
year={2025},
url={https://huggingface.co/WiroAI/WiroAI-Finance-Qwen-7B}
}