Exam 12: Natural Language Processing
Exam 1: Introduction to Computers and Python 28 Questions
Exam 2: Introduction to Python Programming 32 Questions
Exam 3: Control Statements and Program Development 20 Questions
Exam 4: Functions 18 Questions
Exam 5: Sequences: Lists and Tuples 25 Questions
Exam 6: Dictionaries and Sets 27 Questions
Exam 7: Array-Oriented Programming With Num 18 Questions
Exam 8: Strings: a Deeper Look 20 Questions
Exam 9: Files and Exceptions 30 Questions
Exam 10: Object-Oriented Programming 42 Questions
Exam 11: Computer Science Thinking: Recursion, Searching, Sorting and Big O18 Questions
Exam 12: Natural Language Processing 22 Questions
Exam 13: Data Mining Twitter 15 Questions
Exam 14: Ibm Watson and Cognitive Computing 31 Questions
Exam 15: Machine Learning: Classification, Regression and Clustering 66 Questions
Exam 16: Deep Learning 76 Questions
Exam 17: Big Data: Hadoop, Spark, Nosql and Iot 79 Questions
Select questions type
Which of the following is not a TextBlob capability?
Free
(Multiple Choice)
4.7/5
(44)
Correct Answer:
D
Which of the following statements is false?
Free
(Multiple Choice)
4.8/5
(40)
Correct Answer:
D
Consider the following code: In [18]: blob
Out[18]: TextBlob("Today is a beautiful day. Tomorrow looks like bad weather.")
In [19]: blob.sentiment
Out[19]: Sentiment(polarity=0.07500000000000007,
Subjectivity=0.8333333333333333)
Which of the following statements is false?
Free
(Multiple Choice)
4.7/5
(48)
Correct Answer:
D
The following code creates and configures a WordCloud object: from wordcloud import WordCloud
Wordcloud = WordCloud(colormap='prism', mask=mask_image,
Background_color='white')
Which of the following statements is false?
(Multiple Choice)
4.8/5
(38)
Given the following Word object: In [1]: from textblob import Word
In [2]: happy = Word('happy')
Which of the following statements a), b) or c) is false?
(Multiple Choice)
4.8/5
(29)
Splitting text into meaningful units, such as words and numbers is called ________.
(Multiple Choice)
5.0/5
(32)
In the field of NLP, a text collection is generally known as a ________.
(Multiple Choice)
4.7/5
(40)
Assuming you have a TextBlob named blob containing 'Today is a beautiful day. Tomorrow looks like bad weather.', what property should replace the ? in the following snippet to get the output shown below? In [8]: blob.?
Out[8]: WordList(['Today', 'is', 'a', 'beautiful', 'day', 'Tomorrow', 'looks', 'like', 'bad', 'weather'])
(Multiple Choice)
4.8/5
(44)
________ are sets of consecutive words in a corpus for use in identifying words that frequently appear adjacent to one another.
(Multiple Choice)
4.9/5
(39)
Which of the following statements about WordCloud is false?
(Multiple Choice)
4.8/5
(33)
Showing 1 - 20 of 22
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)