forked from huggingface/transformers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add model card * lowercase identifier Co-authored-by: Julien Chaumond <[email protected]>
- Loading branch information
1 parent
ef93a25
commit 72d6c9c
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
model_cards/sarnikowski/electra-small-discriminator-da-256-cased/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
language: da | ||
license: cc-by-4.0 | ||
--- | ||
|
||
# Danish ELECTRA small (cased) | ||
|
||
An [ELECTRA](https://arxiv.org/abs/2003.10555) model pretrained on a custom Danish corpus (~17.5gb). | ||
For details regarding data sources and training procedure, along with benchmarks on downstream tasks, go to: https://github.com/sarnikowski/danish_transformers/tree/main/electra | ||
|
||
## Usage | ||
|
||
```python | ||
from transformers import AutoTokenizer, AutoModel | ||
|
||
tokenizer = AutoTokenizer.from_pretrained("sarnikowski/electra-small-discriminator-da-256-cased") | ||
model = AutoModel.from_pretrained("sarnikowski/electra-small-discriminator-da-256-cased") | ||
``` | ||
|
||
## Questions? | ||
|
||
If you have any questions feel free to open an issue on the [danish_transformers](https://github.com/sarnikowski/danish_transformers) repository, or send an email to [email protected] |