Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -6,10 +6,59 @@ tags:
|
|
| 6 |
- financial
|
| 7 |
- malawi
|
| 8 |
- banking
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
license: mit
|
| 10 |
pipeline_tag: text-generation
|
| 11 |
---
|
| 12 |
|
| 13 |
# Malawi Financial Assistant
|
| 14 |
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- financial
|
| 7 |
- malawi
|
| 8 |
- banking
|
| 9 |
+
- loans
|
| 10 |
+
- savings
|
| 11 |
+
- investments
|
| 12 |
+
- mobile-money
|
| 13 |
license: mit
|
| 14 |
pipeline_tag: text-generation
|
| 15 |
---
|
| 16 |
|
| 17 |
# Malawi Financial Assistant
|
| 18 |
|
| 19 |
+
## Model Description
|
| 20 |
+
|
| 21 |
+
The Malawi Financial Assistant is a specialized language model fine-tuned to provide financial guidance and banking advice tailored to the Malawian context.
|
| 22 |
+
|
| 23 |
+
**Developed by:** Nellissa
|
| 24 |
+
**Model type:** GPT-2 based text generation
|
| 25 |
+
**Languages:** English, Chichewa
|
| 26 |
+
|
| 27 |
+
## Intended Use & Limitations
|
| 28 |
+
|
| 29 |
+
### Intended Use Cases
|
| 30 |
+
- Basic financial literacy education
|
| 31 |
+
- Banking procedure explanations for Malawi
|
| 32 |
+
- Personal budgeting advice in Malawian context
|
| 33 |
+
- Small business financial guidance
|
| 34 |
+
- Explanation of financial products available in Malawi
|
| 35 |
+
|
| 36 |
+
### Limitations
|
| 37 |
+
❌ **Not for Professional Financial Advice** - This model provides general information only
|
| 38 |
+
❌ **No Real-time Financial Data** - Does not access current market rates or bank offers
|
| 39 |
+
❌ **Limited Legal Authority** - Cannot provide legally binding financial guidance
|
| 40 |
+
❌ **Regional Specificity** - Focused primarily on Malawian financial context
|
| 41 |
+
|
| 42 |
+
## Quick Start
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 46 |
+
|
| 47 |
+
model_name = 'Nellissa/Malawi-Financial-model'
|
| 48 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 49 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 50 |
+
|
| 51 |
+
prompt = 'Explain how to open a savings account in Malawi:'
|
| 52 |
+
inputs = tokenizer(prompt, return_tensors='pt')
|
| 53 |
+
outputs = model.generate(**inputs, max_length=200)
|
| 54 |
+
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 55 |
+
print(response)
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
## Ethical Considerations
|
| 59 |
+
|
| 60 |
+
⚠️ **This model does not replace professional financial advisors**
|
| 61 |
+
⚠️ **Users should verify information with local financial institutions**
|
| 62 |
+
⚠️ **Financial decisions should be made with qualified professionals**
|
| 63 |
+
|
| 64 |
+
*This model is intended for educational purposes only. Always consult with qualified financial professionals in Malawi before making financial decisions.*
|