AK Python
1.86K subscribers
39 photos
2 videos
11 files
236 links
Join here to unlock your programming ability
Download Telegram
#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
#YKYG: Recent studies have shown that over 70% of coding jobs are in fields outside of technology.
Keep 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 ๐ŸŒŸ
Video Update: Next video is about Creating AI chatbot๐Ÿ˜. Video will be uploaded soon๐Ÿค“
Watch this video ๐ŸŒŸ
And share support ๐ŸŒŸ
Code for Chatbot using python
#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)
Keep support and share to your friends โค๏ธ
How many of you use linux distributions as primary operating systems?
Anonymous Poll
42%
Yes
58%
No
#YKYG : Video Games : In 2013 ,One of the research shows that games can increase learning outcomes by two grade levels.
#YKYG : .aac is a popular audio extension.Do you know it's Full form?
Anonymous Quiz
20%
Audio Advanced coding
52%
Advanced audio coding
22%
Audio augmented coding
7%
A Audio coding
New video preparation is started today.Scripting is going on.I will meet you on end of this week.
Thanks.... stay tuned
AK Python
Photo
2D game development using Python