Chatbot Python (Exam 2) Flashcards

1
Q

A computer program that simulates human conversation with an end user. It can understand human language, process it and interact back with humans.

A

Chatbot

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Import corpus
  2. Preprocess data
  3. Text case handling
  4. Tokenization
  5. Stemming
  6. Bag of words (BOW)
  7. One hot encoding.
A

How does a chatbot work?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The training data needed for the chatbot to learn. Without it, a chatbot cannot effectively understand and respond to the user.

A

Corpus

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Convert all the data coming as an input to either upper or lower case. This will avoid misrepresentation and
misinterpretation of words if spelt under lower or uppercase.

A

Data preprocessing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The structured process of converting a sentence into individual collection of words.

A

Tokenization

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Process of finding similarities between words with the same root words

A

Stemming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

It’s a representation of text data where each
word in the text is treated as an individual token, regardless of its position or order in the text. The context or order of words is not preserved in this method; it only cares about the frequency of each word.

A

Bag of words

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A process that converts
categorical information into a format that may
be fed into machine learning algorithms to
improve prediction accuracy

A

One hot encoding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly