Modelleri yükleme
Bir model yükleyerek başlayalım. spacy zaten içe aktarılmış durumda.
Bu egzersiz
spaCy ile İleri Düzey NLP
kursunun bir parçasıdırUygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
# Load the 'en_core_web_sm' model – spaCy is already imported
nlp = ____
text = "It’s official: Apple is the first U.S. public company to reach a $1 trillion market value"
# Process the text
doc = ____
# Print the document text
print(____.____)