|
--- |
|
license: apache-2.0 |
|
language: |
|
- it |
|
widget: |
|
- text: "milano è una [MASK] dell'italia" |
|
example_title: "Example 1" |
|
- text: "giacomo leopardi è stato uno dei più grandi [MASK] del classicismo italiano" |
|
example_title: "Example 2" |
|
- text: "la pizza è un piatto tipico della [MASK] gastronomica italiana" |
|
example_title: "Example 3" |
|
--- |
|
-------------------------------------------------------------------------------------------------- |
|
|
|
<body> |
|
<span class="vertical-text" style="background-color:lightgreen;border-radius: 3px;padding: 3px;"> </span> |
|
<br> |
|
<span class="vertical-text" style="background-color:orange;border-radius: 3px;padding: 3px;"> </span> |
|
<br> |
|
<span class="vertical-text" style="background-color:lightblue;border-radius: 3px;padding: 3px;"> Model: BERT</span> |
|
<br> |
|
<span class="vertical-text" style="background-color:tomato;border-radius: 3px;padding: 3px;"> Lang: IT</span> |
|
<br> |
|
<span class="vertical-text" style="background-color:lightgrey;border-radius: 3px;padding: 3px;"> Type: Uncased</span> |
|
<br> |
|
<span class="vertical-text" style="background-color:#CF9FFF;border-radius: 3px;padding: 3px;"> </span> |
|
</body> |
|
|
|
-------------------------------------------------------------------------------------------------- |
|
|
|
<h3>Model description</h3> |
|
|
|
This is an uncased <b>BERT</b> <b>[1]</b> model for the <b>Italian</b> language, obtained using the uncased <b>mBERT</b> ([bert-base-multilingual-uncased](https://huggingface.co/bert-base-multilingual-uncased)) as a starting point and focusing it on the Italian language by modifying the embedding layer |
|
(as in <b>[2]</b>, computing document-level frequencies over the <b>Wikipedia</b> dataset) |
|
|
|
The resulting model has 110M parameters, a vocabulary of 30.154 tokens, and a size of ~430 MB. |
|
|
|
<h3>Quick usage</h3> |
|
|
|
```python |
|
from transformers import BertTokenizerFast, BertModel |
|
|
|
tokenizer = BertTokenizerFast.from_pretrained("osiria/bert-base-italian-uncased") |
|
model = BertModel.from_pretrained("osiria/bert-base-italian-uncased") |
|
``` |
|
|
|
<h3>References</h3> |
|
|
|
[1] https://arxiv.org/abs/1810.04805 |
|
|
|
[2] https://arxiv.org/abs/2010.05609 |
|
|
|
<h3>License</h3> |
|
|
|
The model is released under <b>Apache-2.0</b> license |
|
|