Hello Guys If you are in Twitter platform.If you're interested take a look at my account: https://twitter.com/AK96246746 . Thank You❤️
Twitter
AK Python (@AK96246746) | Twitter
The latest Tweets from AK Python (@AK96246746). A Linux Guy
Best editing software your opinion?
Anonymous Poll
42%
Premiere Pro
11%
Final cut 😅
29%
Flimora
18%
Others
#YKYG : Twitter is more addicting than cigarettes..!😢
According to Chicago University’s Booth Business School, the feeling you get from checking Twitter can create the same "Temporary high"or buzz as a cigarette break. Follow Me on Twitter : https://twitter.com/AK96246746 ( with Good intentions 😌)
According to Chicago University’s Booth Business School, the feeling you get from checking Twitter can create the same "Temporary high"or buzz as a cigarette break. Follow Me on Twitter : https://twitter.com/AK96246746 ( with Good intentions 😌)
#YKYG: The Front Page of Internet.Which product belongs this slogan.
Anonymous Quiz
28%
Facebook
24%
Instagram
23%
Tumblr
24%
Reddit
No Bot involved to make this kind questions it is prepared by me & Team❤️ Share & support
Which is your favourite social media?
Anonymous Poll
16%
Twitter
55%
Instagram
23%
Facebook
5%
Reddit
Follow my social handles if you interested: akpythonyt - Instagram🌟
AK Python on twitter 🌟
AK Python on twitter 🌟
Video Update: Next video is about Creating AI chatbot😍. Video will be uploaded soon🤓
#creating chatbot
from chatterbot import ChatBot
chatbot=ChatBot(
'Akpython',
storage_adapter='chatterbot.storage.SQLStorageAdapter',
logic_adapter=[
'chatterbot.logic.MathematicalEvaluation',
'chatterbot.logic.TimeLogicAdapter',
'chatterbot.logic.BestMatch',
{
'import_path':'chatterbot.logic.BestMatch',
'default_response':'I am sorry,I do not understand',
'maximum_similarity_threshold':0.90
}
],
database_uri='sqlite:///database.sqlite3'
)
#Training
from chatterbot.trainers import ListTrainer
trainer=ListTrainer(chatbot)
trainingdata=open('/home/arun/Documents/Trainingdata').read().splitlines()
#Training the corpus
from chatterbot.trainers import ChatterBotCorpusTrainer
trainercorpus=ChatterBotCorpusTrainer(chatbot)
trainercorpus.train(
'chatterbot.corpus.english'
)
#BetterBot
name=input("Enter your name:")
print('Welcome to our Hotel',name,'Let me know how can I help you?')
while True:
request=input(name+':')
if request=='Bye'or request=='bye':
print("Bot:Bye")
break
else:
response=chatbot.get_response(request)
print('Bot:',response)
from chatterbot import ChatBot
chatbot=ChatBot(
'Akpython',
storage_adapter='chatterbot.storage.SQLStorageAdapter',
logic_adapter=[
'chatterbot.logic.MathematicalEvaluation',
'chatterbot.logic.TimeLogicAdapter',
'chatterbot.logic.BestMatch',
{
'import_path':'chatterbot.logic.BestMatch',
'default_response':'I am sorry,I do not understand',
'maximum_similarity_threshold':0.90
}
],
database_uri='sqlite:///database.sqlite3'
)
#Training
from chatterbot.trainers import ListTrainer
trainer=ListTrainer(chatbot)
trainingdata=open('/home/arun/Documents/Trainingdata').read().splitlines()
#Training the corpus
from chatterbot.trainers import ChatterBotCorpusTrainer
trainercorpus=ChatterBotCorpusTrainer(chatbot)
trainercorpus.train(
'chatterbot.corpus.english'
)
#BetterBot
name=input("Enter your name:")
print('Welcome to our Hotel',name,'Let me know how can I help you?')
while True:
request=input(name+':')
if request=='Bye'or request=='bye':
print("Bot:Bye")
break
else:
response=chatbot.get_response(request)
print('Bot:',response)