Update README.md
Browse files
README.md
CHANGED
@@ -4,4 +4,75 @@ language:
|
|
4 |
- fr
|
5 |
tags:
|
6 |
- Objectifs de développement durable (ODD)
|
7 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
- fr
|
5 |
tags:
|
6 |
- Objectifs de développement durable (ODD)
|
7 |
+
---
|
8 |
+
|
9 |
+
# ilovebots/bert-sdg-french
|
10 |
+
|
11 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
12 |
+
|
13 |
+
Ce modèle permet de classer les textes en fonction des objectifs de développement durable (ODD) des Nations Unies.
|
14 |
+
|
15 |
+
![image](https://user-images.githubusercontent.com/73560591/216751462-ced482ba-5d8e-48aa-9a48-5557979a35f1.png)
|
16 |
+
Source:https://www.un.org/development/desa/disabilities/about-us/sustainable-development-goals-sdgs-and-disability.html
|
17 |
+
|
18 |
+
|
19 |
+
## Détails du modèle
|
20 |
+
|
21 |
+
### Description du modèle
|
22 |
+
|
23 |
+
<!-- Provide a longer summary of what this model is. -->
|
24 |
+
|
25 |
+
Ce modèle de classification de texte a été développé en fine-tuning le modèle pré-entraîné dbmdz/bert-base-french-europeana-cased.
|
26 |
+
Les données d'entraînement de ce modèle affiné proviennent de l'ensemble de données communautaires OSDG (OSDG-CD) accessible au public à l'adresse https://zenodo.org/record/5550238#.ZBulfcJByF4.
|
27 |
+
Ce modèle a été réalisé dans le cadre d'une recherche universitaire à l'Université Laval.
|
28 |
+
L'objectif était de créer un modèle de classification de texte SDG basé sur transformers en français que tout le monde pourrait utiliser.
|
29 |
+
Les principaux détails du modèle sont mis en évidence ci-dessous :
|
30 |
+
|
31 |
+
- **Model type:** Text classification
|
32 |
+
- **Language(s) (NLP):** French
|
33 |
+
- **License:** mit
|
34 |
+
- **Finetuned from model [optional]:** dbmdz/bert-base-french-europeana-cased
|
35 |
+
|
36 |
+
### Model Sources
|
37 |
+
<!-- Provide the basic links for the model. -->
|
38 |
+
- **Repository:** https://huggingface.co/ilovebots/bert-sdg-french
|
39 |
+
|
40 |
+
## How to Get Started with the Model
|
41 |
+
|
42 |
+
Utilisez le code ci-dessous pour commencer à utiliser le modèle.
|
43 |
+
```python
|
44 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
45 |
+
tokenizer = AutoTokenizer.from_pretrained("ilovebots/bert-sdg-french")
|
46 |
+
model = AutoModelForSequenceClassification.from_pretrained("ilovebots/bert-sdg-french")
|
47 |
+
```
|
48 |
+
|
49 |
+
|
50 |
+
## Training Data
|
51 |
+
|
52 |
+
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
53 |
+
La base disponible dans https://zenodo.org/record/5550238#.ZBulfcJByF4 a été enrichie des objectifs de développement durable des Nations Unies et traduite en en français.
|
54 |
+
|
55 |
+
## Training Hyperparameters
|
56 |
+
|
57 |
+
- Num_epoch = 4
|
58 |
+
- Learning rate = 2e-5
|
59 |
+
- Epsilon = 1e-8
|
60 |
+
- Optimizer = AdamW
|
61 |
+
- Batch size = 32
|
62 |
+
- Seed random = 42
|
63 |
+
|
64 |
+
|
65 |
+
## Evaluation
|
66 |
+
|
67 |
+
#### Metrics
|
68 |
+
|
69 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
70 |
+
- Accuracy = 0.84
|
71 |
+
|
72 |
+
## Citation
|
73 |
+
Martinez, D.F. (2023). SDG classification with BERT. https://huggingface.co/ilovebots/bert-sdg-french
|
74 |
+
|
75 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
76 |
+
|
77 |
+
|
78 |
+
<!--## Model Card Contact -->
|