Skip to content

Commit

Permalink
Update docs/source/ar/tasks/token_classification.md
Browse files Browse the repository at this point in the history
Co-authored-by: Abdullah Mohammed <[email protected]>
  • Loading branch information
AhmedAlmaghz and abodacs authored Jan 5, 2025
1 parent b3cc6b0 commit c40a6b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/ar/tasks/token_classification.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ pip install transformers datasets evaluate seqeval
... logits = model(**inputs).logits
```

احصل على الفئة ذات الاحتمالية الأعلى، واستخدم خريطة `id2label` للنموذج لتحويلها إلى تسمية نصية:
استخرج الفئة ذات الاحتمالية الأعلى، واستخدم جدول `id2label` الخاصة بالنموذج لتحويلها إلى تسمية نصية:

```py
>>> predictions = torch.argmax(logits, dim=2)
Expand Down

0 comments on commit c40a6b5

Please sign in to comment.