forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython-nltk.json
More file actions
56 lines (56 loc) · 2.32 KB
/
Copy pathpython-nltk.json
File metadata and controls
56 lines (56 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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=nltk.PorterStemmer"
},
{
"definition": "WordNet লেমাটাইজার ইনিশিয়ালাইজ করা",
"code": "WNL=nltk.WordNetLemmatizer()"
}
]
},
{
"title": "POS ট্যাগিং",
"items": [{
"definition": "POS-এর ডেফিনিশন দেখা",
"code": "nltk.help.upenn_tagset('MD')"
},
{
"definition": "বিল্ট-ইন POS ট্যাগার ব্যবহার করা",
"code": "nltk.help.upenn_tagset('MD')"
}
]
}
]
}