from transformers import pipeline pipe = pipeline( task="hive-token-classification", model="Hiveurban/dictabert-large-parse", trust_remote_code=True, ) sentence = 'בשנת 1948 השלים אפרים קישון את לימודיו בפיסול מתכת ובתולדות האמנות והחל לפרסם מאמרים הומוריסטיים' print(pipe([sentence]))