From e975db0a74cf8ba14780cc2775a1d0d99f13e275 Mon Sep 17 00:00:00 2001 From: lty <247969917@qq.com> Date: Wed, 14 Jul 2021 18:14:43 +0800 Subject: [PATCH] Fix a spelling error in README.md --- 6-NLP/1-Introduction-to-NLP/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-NLP/1-Introduction-to-NLP/README.md b/6-NLP/1-Introduction-to-NLP/README.md index 0d47a1d7..227ad589 100644 --- a/6-NLP/1-Introduction-to-NLP/README.md +++ b/6-NLP/1-Introduction-to-NLP/README.md @@ -81,7 +81,7 @@ This gave the impression that Eliza understood the statement and was asking a fo ## Exercise - coding a basic conversational bot -A conversational bot, like Eliza, is a program that elicits user input and seems to understand and respond intelligently. Unlike Eliza, our bot will not have several rules giving it the appearance of having an intelligent conversation. Instead, out bot will have one ability only, to keep the conversation going with random responses that might work in almost any trivial conversation. +A conversational bot, like Eliza, is a program that elicits user input and seems to understand and respond intelligently. Unlike Eliza, our bot will not have several rules giving it the appearance of having an intelligent conversation. Instead, our bot will have one ability only, to keep the conversation going with random responses that might work in almost any trivial conversation. ### The plan