Instructions to use igorsterner/german-english-code-switching-identification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use igorsterner/german-english-code-switching-identification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="igorsterner/german-english-code-switching-identification")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("igorsterner/german-english-code-switching-identification") model = AutoModelForTokenClassification.from_pretrained("igorsterner/german-english-code-switching-identification", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
5cfcc1d
1
Parent(s): 53ccbec
Update README.md
Browse files
README.md
CHANGED
|
@@ -32,8 +32,6 @@ n_steps = 789
|
|
| 32 |
max_seq_len = 512
|
| 33 |
learning_rate = 3e-5
|
| 34 |
weight_decay = 0.01
|
| 35 |
-
Adam beta = (0.9, 0.999)
|
| 36 |
-
lr_schedule = LinearWarmup
|
| 37 |
seed = 2021
|
| 38 |
```
|
| 39 |
|
|
|
|
| 32 |
max_seq_len = 512
|
| 33 |
learning_rate = 3e-5
|
| 34 |
weight_decay = 0.01
|
|
|
|
|
|
|
| 35 |
seed = 2021
|
| 36 |
```
|
| 37 |
|