The post was not added to the feed. Please check your privacy settings.
Fatima Ahmed: Alright! Check out the latest featured story on Python Chatterbot. Have been waiting on this Python demo for a while. Thanks to Masum for the tutorial. Now, its complete with the illustrations, my added intro and the Python concepts. Check the full... moreAlright! Check out the latest featured story on Python Chatterbot. Have been waiting on this Python demo for a while. Thanks to Masum for the tutorial. Now, its complete with the illustrations, my added intro and the Python concepts. Check the full article here as well as in the featured story menu...
Link to my previous video- https://www.youtube.com/watch?v=OanIciGv6GQ&feature=youtu.be
May 4, 2018
Fatima Ahmed
Masum, thanks for the intro. So where exactly do people use this technology most often? Or what are some use cases? For example, can the chatterbot example you showed previously use this concept? Or is that too simple?
May 1, 2018
Masum Bin Alam
Well, Tensorflow has a wide range of applications but basically it's used for machine learning purpose. We can use Tensorflow to let the machine learn on it's own. And yes it can be applied in the chatterbot so that our bot can learn itself from our given data.
Fatima Ahmed: Intro video about Tensorflow...used to hear this word many times. Good to know about it high level. Thanks to Masum for the contribution.
Link to my previous video- https://www.youtube.com/watch?v=OanIciGv6GQ&feature=youtu.be
May 1, 2018
Fatima Ahmed
Masum, thanks for the intro. So where exactly do people use this technology most often? Or what are some use cases? For example, can the chatterbot example you showed previously use this concept? Or is that too simple?
May 1, 2018
Masum Bin Alam
Well, Tensorflow has a wide range of applications but basically it's used for machine learning purpose. We can use Tensorflow to let the machine learn on it's own. And yes it can be applied in the chatterbot so that our bot can learn itself from our given data.
Fatima Ahmed: Final video about the Python Chatterbot tutorial with music and visuals. Thanks to Masum all the way from Bangladesh University of Engineering and Technology to show me the chatbot coding logic. Featured article on this coming soon!
Want to build a super quick and functional chatbot using Python? Then check this video which shows how to use Python's Chatterbot library to quickly deploy a...
Fatima Ahmed
ok, can you please send me the source code of your main program? I think you named it ourchatbot in this tutorial. So basically you used the github code and your code together for this chatbot to work, right?
from chatterbot import ChatBot
from chatterbot.trainers import... moreyes...here's the code..
from chatterbot import ChatBot
from chatterbot.trainers import ListTrainer
import os
bot=ChatBot('Bot')
bot.set_trainer(ListTrainer)
for files in os.listdir ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'):
data = open ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'+files, 'r').readlines()
bot.train(data)
while True:
message = raw_input ('You:')
if message.strip() != 'Bye':
reply = bot.get_response(message)
print('ChatBot:',reply)
if message.strip() == 'Bye':
print('ChatBot: Bye')
break less
Fatima Ahmed
ok, can you please e-mail me the ourchatbot.py file? I will include it in the main featured article for people to download it...
April 16, 2018
Fatima Ahmed
OK, got the file. Last thing...do you think you can share the original mp4 file also? While adding the music/visual effects before posting to my main site, I may need it, so I dont have to re-record again.
April 16, 2018
Fatima Ahmed: Hi, thanks for the video! It is very good and and I like the instructors video on the bottom right. My favorite part is in the end when that chatbot was asking weird questions!
Fatima Ahmed
ok, can you please send me the source code of your main program? I think you named it ourchatbot in this tutorial. So basically you used the github code and your code together for this chatbot to work, right?
from chatterbot import ChatBot
from chatterbot.trainers import... moreyes...here's the code..
from chatterbot import ChatBot
from chatterbot.trainers import ListTrainer
import os
bot=ChatBot('Bot')
bot.set_trainer(ListTrainer)
for files in os.listdir ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'):
data = open ('C:/Users/Masum\Desktop\chatterbot-corpus-master\chatterbot_corpus\data\english/'+files, 'r').readlines()
bot.train(data)
while True:
message = raw_input ('You:')
if message.strip() != 'Bye':
reply = bot.get_response(message)
print('ChatBot:',reply)
if message.strip() == 'Bye':
print('ChatBot: Bye')
break less
Fatima Ahmed
ok, can you please e-mail me the ourchatbot.py file? I will include it in the main featured article for people to download it...
April 16, 2018
Fatima Ahmed
OK, got the file. Last thing...do you think you can share the original mp4 file also? While adding the music/visual effects before posting to my main site, I may need it, so I dont have to re-record again.