jvaquet commited on
Commit
fa5d6bf
·
verified ·
1 Parent(s): e4bcc87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -11,10 +11,10 @@ base_model:
11
  - The training objective is BCELoss.
12
  - Labels are one-hot encoded.
13
  - Model output logits can be normalized using sigmoid activation.
 
14
 
15
  # Usage
16
- ## Training
17
- To initialize the model for training, simply provide `id2label` and `label2id`, similarly to standard token classification fine tuning:
18
  ```python
19
  from transformers import AutoModelForTokenClassification
20
 
 
11
  - The training objective is BCELoss.
12
  - Labels are one-hot encoded.
13
  - Model output logits can be normalized using sigmoid activation.
14
+ - This model uses the same weights as `bert-large-cased` and thus needs to be fine-tuned for downstream tasks.
15
 
16
  # Usage
17
+ To initialize the model for fine tuning, simply provide `id2label` and `label2id`, similarly to standard token classification fine tuning:
 
18
  ```python
19
  from transformers import AutoModelForTokenClassification
20