jupyterjazz
commited on
Commit
·
3f72891
1
Parent(s):
ee8863c
refactor: optional arg
Browse filesSigned-off-by: jupyterjazz <[email protected]>
- modeling_xlm_roberta.py +1 -1
modeling_xlm_roberta.py
CHANGED
@@ -452,7 +452,7 @@ class XLMRobertaModel(XLMRobertaPreTrainedModel):
|
|
452 |
convert_to_tensor: bool = False,
|
453 |
device: Optional[torch.device] = None,
|
454 |
normalize_embeddings: bool = False,
|
455 |
-
truncate_dim: int = None,
|
456 |
**tokenizer_kwargs,
|
457 |
) -> Union[List[torch.Tensor], np.ndarray, torch.Tensor]:
|
458 |
"""
|
|
|
452 |
convert_to_tensor: bool = False,
|
453 |
device: Optional[torch.device] = None,
|
454 |
normalize_embeddings: bool = False,
|
455 |
+
truncate_dim: Optional[int] = None,
|
456 |
**tokenizer_kwargs,
|
457 |
) -> Union[List[torch.Tensor], np.ndarray, torch.Tensor]:
|
458 |
"""
|