Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- fr
|
| 4 |
+
- en
|
| 5 |
+
license: llama3
|
| 6 |
+
tags:
|
| 7 |
+
- finance
|
| 8 |
+
- credit
|
| 9 |
+
- adsim
|
| 10 |
+
- text-generation
|
| 11 |
+
- conversational
|
| 12 |
+
base_model: curiousily/Llama-3-8B-Instruct-Finance-RAG
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# AdSim Financial IA
|
| 16 |
+
|
| 17 |
+
<div align="center">
|
| 18 |
+
<h3>🏦 Modèle d'IA spécialisé en analyse financière et crédit</h3>
|
| 19 |
+
<p>Développé par <strong>AdSim SRL</strong> - The Christie's of Digital Marketing</p>
|
| 20 |
+
</div>
|
| 21 |
+
|
| 22 |
+
## 📋 Description
|
| 23 |
+
|
| 24 |
+
AdSim Financial IA est un modèle de langage spécialisé dans l'analyse financière et le conseil en crédit,
|
| 25 |
+
optimisé pour les besoins du secteur du courtage en crédit et de la finance personnelle.
|
| 26 |
+
|
| 27 |
+
### Cas d'usage principaux
|
| 28 |
+
- 🔍 Analyse de dossiers de crédit
|
| 29 |
+
- 💡 Recommandations financières personnalisées
|
| 30 |
+
- 📊 Support RAG pour documentation financière
|
| 31 |
+
- 🤝 Assistance au courtage en crédit (type Wallfin)
|
| 32 |
+
- 📈 Analyse de capacités de remboursement
|
| 33 |
+
|
| 34 |
+
## 🎯 Origine & Licence
|
| 35 |
+
|
| 36 |
+
Ce modèle est basé sur [curiousily/Llama-3-8B-Instruct-Finance-RAG](https://huggingface.co/curiousily/Llama-3-8B-Instruct-Finance-RAG),
|
| 37 |
+
lui-même un fine-tuning de **Meta-Llama-3-8B-Instruct** sur le dataset `virattt/financial-qa-10K`.
|
| 38 |
+
|
| 39 |
+
**Licence:** Llama 3 de Meta - Usage commercial autorisé avec attribution
|
| 40 |
+
|
| 41 |
+
## 🚀 Utilisation
|
| 42 |
+
```python
|
| 43 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 44 |
+
|
| 45 |
+
model_name = "VOTRE_USERNAME/AdSim-Financial-IA"
|
| 46 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 47 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 48 |
+
|
| 49 |
+
prompt = "Quels sont les critères pour obtenir un crédit hypothécaire en Belgique ?"
|
| 50 |
+
inputs = tokenizer(prompt, return_tensors="pt")
|
| 51 |
+
outputs = model.generate(**inputs, max_length=200)
|
| 52 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## 🏢 À propos d'AdSim
|
| 56 |
+
|
| 57 |
+
**AdSim SRL** est une agence de marketing digital belge basée à Liège, spécialisée dans :
|
| 58 |
+
- SEO & SEA pour le secteur financier
|
| 59 |
+
- Marketing automation
|
| 60 |
+
- Solutions IA pour le crédit et la finance
|
| 61 |
+
- Expertise particulière dans le secteur du crédit à la consommation
|
| 62 |
+
|
| 63 |
+
**Chiffres clés:**
|
| 64 |
+
- 1.2M€ de CA annuel
|
| 65 |
+
- 40+ clients
|
| 66 |
+
- Expertise de 11 ans dans le digital finance
|
| 67 |
+
|
| 68 |
+
## 📞 Contact
|
| 69 |
+
|
| 70 |
+
- **Website:** [AdSim.be](https://adsim.be)
|
| 71 |
+
- **Email:** contact@adsim.be
|
| 72 |
+
- **Location:** Liège, Belgique
|
| 73 |
+
|
| 74 |
+
## ⚖️ Crédits & Mentions légales
|
| 75 |
+
|
| 76 |
+
- Modèle source: [curiousily/Llama-3-8B-Instruct-Finance-RAG](https://huggingface.co/curiousily/Llama-3-8B-Instruct-Finance-RAG)
|
| 77 |
+
- Base model: Meta-Llama-3-8B-Instruct
|
| 78 |
+
- Dataset: virattt/financial-qa-10K
|
| 79 |
+
- Adaptation & branding: AdSim SRL © 2024
|
| 80 |
+
|
| 81 |
+
---
|
| 82 |
+
|
| 83 |
+
*Ce modèle est fourni à des fins de recherche et de démonstration.
|
| 84 |
+
Pour un usage commercial, veuillez contacter AdSim SRL.*
|