We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4895fa commit c79fefbCopy full SHA for c79fefb
smartbot.py
@@ -8,6 +8,11 @@
8
"""
9
10
#Description: This is a 'self learning' chatbot program
11
+#Resources:
12
+#(1) https://www.freecodecamp.org/news/how-to-process-textual-data-using-tf-idf-in-python-cd2bbc0a94a3/
13
+#(2) https://github.com/randerson112358/Building-a-Simple-Chatbot-in-Python-using-NLTK
14
+#(3) http://www.tfidf.com/
15
+#(4) https://scikit-learn.org/stable/modules/generated/sklearn.metrics.pairwise.cosine_similarity.html
16
17
#Install the package NLTk
18
pip install nltk
@@ -161,4 +166,4 @@ def response(user_response):
161
166
print("DOCBot: "+response(user_response))
162
167
else:
163
168
flag = False
164
- print("DOCBot: Chat with you later !")
169
+ print("DOCBot: Chat with you later !")
0 commit comments