{ "id": "python-nltk", "title": "পাইথনের NLTK মডিউল", "slug": "nltk", "description": "NLTK হলো একটি পাইথন মডিউল যা দ্বারা পাইথন প্রোগ্রামিং ভাষায় ন্যাচালার ল্যাঙ্গুয়েজ প্রসেসিংয়ের কাজ করা হয়।", "colorPref": "#E6515E", "contents": [{ "title": "সেট-আপ", "items": [{ "definition": "মডিউল ইনস্টল করা", "code": "pip install nltk" }, { "definition": "মডিউল ইমপোর্ট করা", "code": "import nltk" } ] }, { "title": "টোকেনাইজেশন", "items": [{ "definition": "শব্দ টোকেনাইজেশন", "code": "nltk.word_tokenize(text)" }, { "definition": "বাক্য টোকেনাইজেশন", "code": "nltk.sent_tokenize(text)" } ] }, { "title": "লেমাটাইজেশন ও স্টেমিং", "items": [{ "definition": "স্টেমার ইনিশিয়ালাইজ করা", "code": "porter­=nl­tk.P­or­ter­Stemmer" }, { "definition": "WordNet লেমাটাইজার ইনিশিয়ালাইজ করা", "code": "WNL=nl­tk.W­or­dNe­tLe­mma­tizer()" } ] }, { "title": "POS ট্যাগিং", "items": [{ "definition": "POS-এর ডেফিনিশন দেখা", "code": "nltk.h­elp.up­enn­_ta­gse­t('MD')" }, { "definition": "বিল্ট-ইন POS ট্যাগার ব্যবহার করা", "code": "nltk.h­elp.up­enn­_ta­gse­t('MD')" } ] } ] }