svercoutere commited on
Commit
a3a360a
1 Parent(s): ac43a81

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -3
README.md CHANGED
@@ -1,3 +1,51 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+
3
+ language: nl
4
+ tags:
5
+ - Dutch
6
+ - Flemish
7
+ - RoBERTa
8
+ - RobBERT
9
+ - BERT
10
+ - lblod
11
+ - abb
12
+ - agentschap binnenlands bestuur
13
+ license: mit
14
+ datasets:
15
+ - Lokaal-Beslist
16
+ ---
17
+
18
+ # RobBERT-2023-abb-classifier: Model fine-tuned on Flemish Local Decisions for ABB
19
+
20
+ Multilabel classifier built using [svercoutere/robbert-2023-dutch-base-abb](https://huggingface.co/svercoutere/robbert-2023-dutch-base-abb), trained on the data of [Lokaal Beslist](https://www.vlaanderen.be/lokaal-bestuur/data-en-tools/lokaal-beslist).
21
+ Specifically, we used the subset of [svercoutere/llama3_abb_instruct_dataset](https://huggingface.co/datasets/svercoutere/llama3_abb_instruct_dataset) related to the classification of agenda items.
22
+ The model assigns one or more labels from the following top-level categories:
23
+
24
+ [
25
+ 'stadsbestuur'
26
+ 'samenleven, welzijn en gezondheid'
27
+ 'wonen en (ver)bouwen'
28
+ 'groen en milieu'
29
+ 'mobiliteit en openbare werken'
30
+ 'cultuur, sport en vrije tijd'
31
+ 'werken en ondernemen'
32
+ 'onderwijs en kinderopvang'
33
+ 'burgerzaken'
34
+ 'veiligheid en preventie'
35
+ ]
36
+
37
+ ## How to use
38
+
39
+ Download the files, load them into spaCy, and use as follows:
40
+
41
+ ```python
42
+ import spacy
43
+ nlp = load("../robbert-2023-abb-agendapunten-classifier")
44
+
45
+ text = """
46
+ 2021_CBS_01153 - 2021/00226M - Aktename melding voor het bouwen van een veranda langs Berkenstraat 3 in 3950 Bocholt - Goedkeuring Aktename melding voor het bouwen van een veranda langs de Berkenstraat
47
+ """
48
+ doc = nlp(text)
49
+
50
+ print(doc.cats)
51
+ ```