hghcomphys commited on
Commit
ae209e0
1 Parent(s): 77fb91e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -4
README.md CHANGED
@@ -7,15 +7,21 @@ tags:
7
  - GEOBERTje
8
  ---
9
 
 
 
 
10
 
11
 
12
- # GEOBERTje
13
- A domain-adapted large language model trained on geological borehole descriptions in the Dutch language from Flanders region in Belgium.
 
14
 
15
- <img src="https://raw.githubusercontent.com/hghcomphys/hghcomphys.github.io/master/assets/urls/GEOBERTJE.png" width="300">
 
 
16
 
17
 
18
- How to use:
19
  ```python
20
  from transformers import AutoTokenizer, AutoModel
21
 
 
7
  - GEOBERTje
8
  ---
9
 
10
+ <!-- # GEOBERTje -->
11
+ <img src="https://raw.githubusercontent.com/hghcomphys/hghcomphys.github.io/master/assets/urls/GEOBERTJE.png" width="500">
12
+ A domain-adapted language model trained on geological borehole descriptions in the Dutch language from Flanders region in Belgium.
13
 
14
 
15
+ How to use GEOBERTje as a pipeline:
16
+ ```python
17
+ from transformers import pipeline
18
 
19
+ pipe = pipeline("fill-mask", model="hghcomphys/geobertje-base-dutch-uncased")
20
+ pipe("grijs fijn zand met enkele [MASK]")
21
+ ```
22
 
23
 
24
+ Load model directly:
25
  ```python
26
  from transformers import AutoTokenizer, AutoModel
27