SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 492
NEEV: An Education Informational Chatbot
Aysha Khan1, Sakshi Ranka2, Chaitali Khakare3, Subodh Karve4
4Assisstant Professor, Department of Computer Engineering, Datta Meghe College of Engineering, Airoli,
Navi Mumbai-400 708, Maharashtra, India.
1-3B.E.Students, Department of Computer Engineering, Datta Meghe College of Engineering, Airoli,
Navi Mumbai-400 708, Maharashtra, India.
---------------------------------------------------------------------***----------------------------------------------------------------------
With increasing importance towards education & the no. of
evolving areas of study, it has become a difficult task for the
students to keep a track on them. This lack of awareness can
affect their decision in identifying what they really want. The
proposed system developed is an Informational cum Guidance
Chatbot which tackles issues like what are the trending
courses, finding new courses or courses of one’s interest,
providing guidance, finding colleges, etc. The idea is to collect
basic information about user’s interestthroughconversations.
The Chatbot interacts with the user by asking basic questions,
processes the query using MachineLearning Algorithmsalong
with Natural Language Processing, and accordingly, servethe
response or suggest the possible options.
Key Words: NLP, ML, Supervised Learning, Intent
Matching, Chatbot, Android Application
1. INTRODUCTION
A Chatbot is a program that mimics human-like intelligent
conversations through text chats and voice commands[1].It
is fast and less confusing which makes it easy to install as
there is no need to have installation packages. Also, these
packages are easy to manage and distribute [2]. Generally,
Chatbots can either be Rule-based or Self-learning bots [3].
Rule based approach uses if-else techniques whereas Self-
learning approach uses ML techniques to continue learning
in case it encounters something unusual with respect to
whatever is stored in the data repository or the knowledge
base.
The current era is seeing an increasing trend in Artificial
Intelligence, Machine Learning and Natural Language
Processing. The strategy used in making Chatbotsis inclined
towards these technologies. According to A. Vaish,“Globally,
the Chatbot market has seen explosivegrowth witha growth
rate of 35% CAGR” (2017). These reasons have been a great
driving force for us to build this Chatbot project. Another
reason to develop this Chatbot is to make the information
available to everyone and everywhere. Chatbots have been
developed for many domains like e-commerce,
entertainment, traveling, etc. This Chatbot is built for the
Education domain where we exploit the available
frameworks. The general architecture for the Chatbot is
shown in Fig-1[4].
Conversational intelligence using Supervised Machine
Learning techniques provide a rich experience by allowing
the feeling of personal approach.
Fig-1: Chatbot Architecture
2. LITERATURE SURVEY
There are various Chatbots in the day to day market that
provide different types of services to the userusingdifferent
strategies. Until now, no such Chatbot has been developed
which facilitates the students in choosing careers. AChatbot
named Career Geek is implemented using Facebook
Messenger. It provides advices on résumé and cover letter.
Naveen Kumar M, Linga Chandar P C, Venkatesh Prasad A,
Sumangali K [5] discuss a chat of similar interest for visually
impaired people. Also, websites have been developed that
help the students in choosing their career by asking some
questions to find out the best career to chose. Shiksha.com is
one of those websites that help students know about which
career is good and which path should be chosen. Chatbots
with similar features, have been developed, but for some
other purposes that help the user in their routine activities.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 493
These bots use Natural Language processing and various
artificial intelligence algorithm that help them work in a
better way to serve the user.
Disadvantages of existing system
1) A large no. of experts are required for providing
guidance thereby, increasing manpower.
2) There is no mechanism for intelligent communication.
3) There is no voice input and output; it only has text input
and output.
2. PROPOSED SYSTEM
The proposed systemcalledNEEVisanIntelligentChatbot,
that is, it makes use of Supervised Machine Learning
techniques and NLP (Natural Language Processing). The
motivation for the proposed system is derived from seeing
the disadvantages of the existing system and to make
information available for free. The system focuses on
reducing the manpower to a single expert system which
replies to all queries andprovidesintelligentcommunication
between the Chatbot and user. Also, all of the data can be in
text or voice form for query as well as response. The system
will be developed for handling two languages. To maintain
connectivity an active Internet connection will be needed.
The user can input their query and get the response.
Moreover, an FAQ page can be maintained along with
feedbacks to keep a track on the Chatbot performance.
Advantages:
1) 24 x 7 system availability.
2) Reduced Manpower.
3) Voice as well as text input and output.
4) User friendly system.
5) User does not have to follow standard format while
asking any queries.
6) The built in artificial intelligence system will carry out
all the processing to give suitable answers to the user.
4. IMPLEMENTATION
This Chatbot is deployed as an Android application. An
already available framework from Google called Dialogflow
(previously known as api.ai) is used. Firebase fromGoogle is
used as the data repository. The GUI (Graphical User
Interface) & connectivity to Dialogflow is provided using
Android Studio. The system makes use of Machine Learning
at the back end for processing and training purposes, and
NLP & NLU (Natural Language Understanding) for taking
and understanding the input. Fig-2 shows how Dialogflow
handles the user query, processes it and serves theresponse
to the user. Fig-3 represents a brief conversation life-cycle
diagram.
Fig-2: Dialogflow’s Working
Fig-3: Life Cycle of a Conversation
4.1 ALGORITHM
1. Take input from the user either in Text or Voice format.
2. IF the input is in Voice format
Then convert it into Text format
ELSE keep the text format as it is
3. Send text input for further processing
4. Match the input for intents and entities
5. Search the data repository for an appropriateansweror
generate the response
6. Serve the result either in Speech or in Text format or
both
7. IF the conversation has ended
Then STOP
ELSE repeat step 1
4.2 TRAINING THE SYSTEM
Since, the training for ML algorithms is provided by
Dialogflow; this section discusses how the intents, entities &
fulfillment are used for training.
[5]Intents:
In intents, we define possible utterances of user that can
trigger the intent, what to extract from them and how to
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 494
respond. Each intent representsoneturnofdialogwithin the
conversation. Intents helps to map user input to a
corresponding response as a single thing by a user can be
asked in multiple ways. Intentshave4components:Training
phrases, Action & Parameters, Responses & Fulfillment.
Training Phrases:
It defines examples of what users can say. Using these
training phrases, extension to many similar phrases is done
so as to build a language model that accurately matches the
user input. A more robust model is built using more training
and ML.
Action & Phrases:
It improves intent’s language model, we annotate training
phrases with entities or categories of data that we want the
system to match. This ensures that we don’t just match the
literal or free-form user inputs rather match a particular
type of input. Thus, the system extracts matched entities as
parameters from Training Phrases. These parameters are
further processed to customize a response to the user.
Responses:
They define a text or speech response to the user which
indicates the user in a way that lets them know where the
conversation is headed or if it is ending. They can be pre-
defined or generated. Responses provided are such that
further user input can be matched to one of the predefined
intents
Fulfillment:
Fulfillment is used because the system uses generative
model for answering. This is the part responsible for
providing non-defined responses to user query and serving
it back to user. NLP has the feature which directly responds
with a simple text by inferring the intents and entities but
since, we deal with real-time environment, an external
environment is required to compute the correct response.
This environment, hooked via NLP, is called Webhook for
fulfillment where the parameters from intents are extracted
and their values are passed to fulfillment.Then, the response
from Webhook will be served as an actual response.
Entities:
Entity basically represents a concept in a Chatbot. In this
system, it can be college, courses, etc. Without entities, the
system will try to find the exact training phrasethatmatches
the user input.
As the program gets more trained, the accuracy of each
response in relation to the input statement increases. The
program selects the closest matching response or will
generate an answer if no input-response pair can be
matched from the knowledge base.
5. CONCLUSION
As the name suggests, NEEV means foundation & so, this
intelligent Chatbot for career counseling and obtaining
suggestions, will help user in choosing the right career by
giving an appropriate response to user’s query. It is an
intelligent system which will think in a way as the humans
would usually think. This system will be helpful in reducing
the overall pressure on the students of going on different
websites for searching about the possible options. Due to an
accurate knowledge base, quick and faithful answers will be
given to user.
6. FUTURE SCOPE
In future this Chatbot can be expanded by adding several
features like multilingual capability. By adding this feature
the Chatbot will be more user friendly. Also the career
options that are left for now can be added to it. It can also be
expanded by adding college information for a particular
course and the admission process for that particularcollege.
A rating and comment section can be provided for the same.
ACKNOWLEDGEMENT
We would like to thank our guide Mr. Subodh Karve for
discussing and encouraging us to explore this topic and
guiding us throughout it. We would also liketoappreciateall
the online websites, magazines and journals for their
tutorials and content for the same.
REFERENCES
[1] Moses, S. P. July 21, 2018. How to build a Chatbot with
Dialog flow | Chapter 1 — Introduction. Retrieved
January 31,2019fromhttps://medium.com/swlh/how-
to-build-a-chatbot-with-dialog-flow-chapter-1-
introduction-ab880c3428b5
[2] A. M. Rahman, A. A. Mamun, A. Islam, "Programming
challenges of Chatbot: Current and future
prospective", 2017 IEEE Region 10 Humanitarian
Technology Conference (R10-HTC), pp. 75-78, 2017.
[3] Pandey, P. September 17, 2018. Building a Simple
Chatbot from Scratch in Python(using NLTK).Retrieved
January 31, 2019 from https://medium.com/analytics-
vidhya/building-a-simple-chatbot-in-python-using-nltk-
7c8c8215ac6e.
[4] Surmenok, P. September12, 2016.ChatbotArchitecture.
Retrieved February,2019 from
https://medium.com/@surmenok/chatbot-
architecture-496f5bf820ed
[5] Retrieved February 2019 from
https://dialogflow.com/docs/intro/agents
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 495
[6] M. N. Kumar, P.C.L. Chandar, A. V. Prasad,K. Sumangali,
“Android based educational Chatbot for visually
impaired people”, Proc. IEEE Int. Conf. Computational
Intelligence and Computing Research (ICCIC), pp. 1-4,
2016.
BIOGRAPHIES
Aysha Khan
B.E. (Computer Engineering)
Sakshi Ranka
B.E. (Computer Engineering)
Chaitali Khakare
B.E. (Computer Engineering)
Subodh Karve
Assistant Professor (Computer
Dept.)

More Related Content

What's hot

Chat-Bot for College Management System using A.I
Chat-Bot for College Management System using A.IChat-Bot for College Management System using A.I
Chat-Bot for College Management System using A.IIRJET Journal
 
IRJET - College Enquiry Chatbot
IRJET - College Enquiry ChatbotIRJET - College Enquiry Chatbot
IRJET - College Enquiry ChatbotIRJET Journal
 
IRJET- Artificial Intelligence Based Chat-Bot
IRJET-  	  Artificial Intelligence Based Chat-BotIRJET-  	  Artificial Intelligence Based Chat-Bot
IRJET- Artificial Intelligence Based Chat-BotIRJET Journal
 
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008Journal For Research
 
IRJET- Multimedia Chatbot using Classification
IRJET- Multimedia Chatbot using ClassificationIRJET- Multimedia Chatbot using Classification
IRJET- Multimedia Chatbot using ClassificationIRJET Journal
 
IRJET - Chatbot for HR Department using AIML and LSA
IRJET - Chatbot for HR Department using AIML and LSAIRJET - Chatbot for HR Department using AIML and LSA
IRJET - Chatbot for HR Department using AIML and LSAIRJET Journal
 
IRJET- College Enquiry Chat-Bot using API.AI
IRJET- College Enquiry Chat-Bot using API.AIIRJET- College Enquiry Chat-Bot using API.AI
IRJET- College Enquiry Chat-Bot using API.AIIRJET Journal
 
IRJET - Artificial Conversation Entity for an Educational Institute
IRJET - Artificial Conversation Entity for an Educational InstituteIRJET - Artificial Conversation Entity for an Educational Institute
IRJET - Artificial Conversation Entity for an Educational InstituteIRJET Journal
 
IRJET - E-Assistant: An Interactive Bot for Banking Sector using NLP Process
IRJET -  	  E-Assistant: An Interactive Bot for Banking Sector using NLP ProcessIRJET -  	  E-Assistant: An Interactive Bot for Banking Sector using NLP Process
IRJET - E-Assistant: An Interactive Bot for Banking Sector using NLP ProcessIRJET Journal
 
IRJET - Development of Chatbot Automation Application – DGCT CSE ALEXA
IRJET -  	  Development of Chatbot Automation Application – DGCT CSE ALEXAIRJET -  	  Development of Chatbot Automation Application – DGCT CSE ALEXA
IRJET - Development of Chatbot Automation Application – DGCT CSE ALEXAIRJET Journal
 
IRJET- My Buddy App: Communications between Smart Devices through Voice A...
IRJET-  	  My Buddy App: Communications between Smart Devices through Voice A...IRJET-  	  My Buddy App: Communications between Smart Devices through Voice A...
IRJET- My Buddy App: Communications between Smart Devices through Voice A...IRJET Journal
 
Rsqrd AI - Challenges in Deploying Explainable Machine Learning
Rsqrd AI - Challenges in Deploying Explainable Machine LearningRsqrd AI - Challenges in Deploying Explainable Machine Learning
Rsqrd AI - Challenges in Deploying Explainable Machine LearningAlessya Visnjic
 
IRJET - Chat-Bot for College Information System using AI
IRJET -  	  Chat-Bot for College Information System using AIIRJET -  	  Chat-Bot for College Information System using AI
IRJET - Chat-Bot for College Information System using AIIRJET Journal
 
Banking botreport
Banking botreportBanking botreport
Banking botreportusha raj
 
IRJET - A Web-based College Enquiry Chatbot using .Net and Dataset
IRJET - A Web-based College Enquiry Chatbot using .Net and DatasetIRJET - A Web-based College Enquiry Chatbot using .Net and Dataset
IRJET - A Web-based College Enquiry Chatbot using .Net and DatasetIRJET Journal
 
Artificial Intelligence Based Training and Placement Management
Artificial Intelligence Based Training and Placement ManagementArtificial Intelligence Based Training and Placement Management
Artificial Intelligence Based Training and Placement Managementijtsrd
 
IRJET - Optical Character Recognition and Translation
IRJET -  	  Optical Character Recognition and TranslationIRJET -  	  Optical Character Recognition and Translation
IRJET - Optical Character Recognition and TranslationIRJET Journal
 
IRJET- Career Counselling Chatbot
IRJET-  	  Career Counselling ChatbotIRJET-  	  Career Counselling Chatbot
IRJET- Career Counselling ChatbotIRJET Journal
 
Voicenotes - Android Based Smart Classroom
Voicenotes - Android Based Smart ClassroomVoicenotes - Android Based Smart Classroom
Voicenotes - Android Based Smart ClassroomIRJET Journal
 

What's hot (20)

Chat-Bot for College Management System using A.I
Chat-Bot for College Management System using A.IChat-Bot for College Management System using A.I
Chat-Bot for College Management System using A.I
 
IRJET - College Enquiry Chatbot
IRJET - College Enquiry ChatbotIRJET - College Enquiry Chatbot
IRJET - College Enquiry Chatbot
 
IRJET- Artificial Intelligence Based Chat-Bot
IRJET-  	  Artificial Intelligence Based Chat-BotIRJET-  	  Artificial Intelligence Based Chat-Bot
IRJET- Artificial Intelligence Based Chat-Bot
 
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
CHATBOT FOR COLLEGE RELATED QUERIES | J4RV4I1008
 
IRJET- Multimedia Chatbot using Classification
IRJET- Multimedia Chatbot using ClassificationIRJET- Multimedia Chatbot using Classification
IRJET- Multimedia Chatbot using Classification
 
IRJET - Chatbot for HR Department using AIML and LSA
IRJET - Chatbot for HR Department using AIML and LSAIRJET - Chatbot for HR Department using AIML and LSA
IRJET - Chatbot for HR Department using AIML and LSA
 
IRJET- College Enquiry Chat-Bot using API.AI
IRJET- College Enquiry Chat-Bot using API.AIIRJET- College Enquiry Chat-Bot using API.AI
IRJET- College Enquiry Chat-Bot using API.AI
 
IRJET - Artificial Conversation Entity for an Educational Institute
IRJET - Artificial Conversation Entity for an Educational InstituteIRJET - Artificial Conversation Entity for an Educational Institute
IRJET - Artificial Conversation Entity for an Educational Institute
 
IRJET - E-Assistant: An Interactive Bot for Banking Sector using NLP Process
IRJET -  	  E-Assistant: An Interactive Bot for Banking Sector using NLP ProcessIRJET -  	  E-Assistant: An Interactive Bot for Banking Sector using NLP Process
IRJET - E-Assistant: An Interactive Bot for Banking Sector using NLP Process
 
IRJET - Development of Chatbot Automation Application – DGCT CSE ALEXA
IRJET -  	  Development of Chatbot Automation Application – DGCT CSE ALEXAIRJET -  	  Development of Chatbot Automation Application – DGCT CSE ALEXA
IRJET - Development of Chatbot Automation Application – DGCT CSE ALEXA
 
IRJET- My Buddy App: Communications between Smart Devices through Voice A...
IRJET-  	  My Buddy App: Communications between Smart Devices through Voice A...IRJET-  	  My Buddy App: Communications between Smart Devices through Voice A...
IRJET- My Buddy App: Communications between Smart Devices through Voice A...
 
Rsqrd AI - Challenges in Deploying Explainable Machine Learning
Rsqrd AI - Challenges in Deploying Explainable Machine LearningRsqrd AI - Challenges in Deploying Explainable Machine Learning
Rsqrd AI - Challenges in Deploying Explainable Machine Learning
 
IRJET - Chat-Bot for College Information System using AI
IRJET -  	  Chat-Bot for College Information System using AIIRJET -  	  Chat-Bot for College Information System using AI
IRJET - Chat-Bot for College Information System using AI
 
Banking botreport
Banking botreportBanking botreport
Banking botreport
 
IRJET - A Web-based College Enquiry Chatbot using .Net and Dataset
IRJET - A Web-based College Enquiry Chatbot using .Net and DatasetIRJET - A Web-based College Enquiry Chatbot using .Net and Dataset
IRJET - A Web-based College Enquiry Chatbot using .Net and Dataset
 
Artificial Intelligence Based Training and Placement Management
Artificial Intelligence Based Training and Placement ManagementArtificial Intelligence Based Training and Placement Management
Artificial Intelligence Based Training and Placement Management
 
IRJET - Optical Character Recognition and Translation
IRJET -  	  Optical Character Recognition and TranslationIRJET -  	  Optical Character Recognition and Translation
IRJET - Optical Character Recognition and Translation
 
IRJET- Career Counselling Chatbot
IRJET-  	  Career Counselling ChatbotIRJET-  	  Career Counselling Chatbot
IRJET- Career Counselling Chatbot
 
Voicenotes - Android Based Smart Classroom
Voicenotes - Android Based Smart ClassroomVoicenotes - Android Based Smart Classroom
Voicenotes - Android Based Smart Classroom
 
iot pet feeder report
iot pet feeder reportiot pet feeder report
iot pet feeder report
 

Similar to IRJET- NEEV: An Education Informational Chatbot

INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEMINTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEMIRJET Journal
 
IRJET- Interactive Interview Chatbot
IRJET-  	  Interactive Interview ChatbotIRJET-  	  Interactive Interview Chatbot
IRJET- Interactive Interview ChatbotIRJET Journal
 
Design of Chatbot using Deep Learning
Design of Chatbot using Deep LearningDesign of Chatbot using Deep Learning
Design of Chatbot using Deep LearningIRJET Journal
 
A Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOT
A Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOTA Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOT
A Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOTIRJET Journal
 
VOCAL- Voice Command Application using Artificial Intelligence
VOCAL- Voice Command Application using Artificial IntelligenceVOCAL- Voice Command Application using Artificial Intelligence
VOCAL- Voice Command Application using Artificial IntelligenceIRJET Journal
 
IRJET - Mobile Chatbot for Information Search
 IRJET - Mobile Chatbot for Information Search IRJET - Mobile Chatbot for Information Search
IRJET - Mobile Chatbot for Information SearchIRJET Journal
 
IRJET- An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...
IRJET-  	  An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...IRJET-  	  An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...
IRJET- An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...IRJET Journal
 
IRJET- Chatbot using NLP and Deep Learning
IRJET-  	  Chatbot using NLP and Deep LearningIRJET-  	  Chatbot using NLP and Deep Learning
IRJET- Chatbot using NLP and Deep LearningIRJET Journal
 
IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...
IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...
IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...IRJET Journal
 
WHATSAPP CHATBOT FOR CAREER GUIDANCE
WHATSAPP CHATBOT FOR CAREER GUIDANCEWHATSAPP CHATBOT FOR CAREER GUIDANCE
WHATSAPP CHATBOT FOR CAREER GUIDANCEIRJET Journal
 
WEB APPLICATION FOR MATHEMATICS CLUB OF P.C.E
WEB APPLICATION FOR MATHEMATICS CLUB OF P.C.EWEB APPLICATION FOR MATHEMATICS CLUB OF P.C.E
WEB APPLICATION FOR MATHEMATICS CLUB OF P.C.EIRJET Journal
 
IRJET- Communication between Personal Assistant and User to Understand Interv...
IRJET- Communication between Personal Assistant and User to Understand Interv...IRJET- Communication between Personal Assistant and User to Understand Interv...
IRJET- Communication between Personal Assistant and User to Understand Interv...IRJET Journal
 
IRJET- Recruitment Chatbot
IRJET- Recruitment ChatbotIRJET- Recruitment Chatbot
IRJET- Recruitment ChatbotIRJET Journal
 
IRJET- A Survey Paper on Chatbots
IRJET- A Survey Paper on ChatbotsIRJET- A Survey Paper on Chatbots
IRJET- A Survey Paper on ChatbotsIRJET Journal
 
A Survey Paper On Chatbots
A Survey Paper On ChatbotsA Survey Paper On Chatbots
A Survey Paper On ChatbotsKristen Flores
 
IRJET - Hand Gestures Recognition using Deep Learning
IRJET -  	  Hand Gestures Recognition using Deep LearningIRJET -  	  Hand Gestures Recognition using Deep Learning
IRJET - Hand Gestures Recognition using Deep LearningIRJET Journal
 
IRJET- Voice based Email Application for Blind People
IRJET-  	  Voice based Email Application for Blind PeopleIRJET-  	  Voice based Email Application for Blind People
IRJET- Voice based Email Application for Blind PeopleIRJET Journal
 
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...IRJET Journal
 
“Mentors View” Application
“Mentors View” Application“Mentors View” Application
“Mentors View” ApplicationAI Publications
 
A Review Comparative Analysis On Various Chatbots Design
A Review   Comparative Analysis On Various Chatbots DesignA Review   Comparative Analysis On Various Chatbots Design
A Review Comparative Analysis On Various Chatbots DesignCourtney Esco
 

Similar to IRJET- NEEV: An Education Informational Chatbot (20)

INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEMINTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
 
IRJET- Interactive Interview Chatbot
IRJET-  	  Interactive Interview ChatbotIRJET-  	  Interactive Interview Chatbot
IRJET- Interactive Interview Chatbot
 
Design of Chatbot using Deep Learning
Design of Chatbot using Deep LearningDesign of Chatbot using Deep Learning
Design of Chatbot using Deep Learning
 
A Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOT
A Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOTA Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOT
A Research Paper on HUMAN MACHINE CONVERSATION USING CHATBOT
 
VOCAL- Voice Command Application using Artificial Intelligence
VOCAL- Voice Command Application using Artificial IntelligenceVOCAL- Voice Command Application using Artificial Intelligence
VOCAL- Voice Command Application using Artificial Intelligence
 
IRJET - Mobile Chatbot for Information Search
 IRJET - Mobile Chatbot for Information Search IRJET - Mobile Chatbot for Information Search
IRJET - Mobile Chatbot for Information Search
 
IRJET- An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...
IRJET-  	  An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...IRJET-  	  An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...
IRJET- An Intelligent Behaviour Shown by Chatbot System for Banking in Ve...
 
IRJET- Chatbot using NLP and Deep Learning
IRJET-  	  Chatbot using NLP and Deep LearningIRJET-  	  Chatbot using NLP and Deep Learning
IRJET- Chatbot using NLP and Deep Learning
 
IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...
IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...
IRJET- A Survey to Chatbot System with Knowledge Base Database by using Artif...
 
WHATSAPP CHATBOT FOR CAREER GUIDANCE
WHATSAPP CHATBOT FOR CAREER GUIDANCEWHATSAPP CHATBOT FOR CAREER GUIDANCE
WHATSAPP CHATBOT FOR CAREER GUIDANCE
 
WEB APPLICATION FOR MATHEMATICS CLUB OF P.C.E
WEB APPLICATION FOR MATHEMATICS CLUB OF P.C.EWEB APPLICATION FOR MATHEMATICS CLUB OF P.C.E
WEB APPLICATION FOR MATHEMATICS CLUB OF P.C.E
 
IRJET- Communication between Personal Assistant and User to Understand Interv...
IRJET- Communication between Personal Assistant and User to Understand Interv...IRJET- Communication between Personal Assistant and User to Understand Interv...
IRJET- Communication between Personal Assistant and User to Understand Interv...
 
IRJET- Recruitment Chatbot
IRJET- Recruitment ChatbotIRJET- Recruitment Chatbot
IRJET- Recruitment Chatbot
 
IRJET- A Survey Paper on Chatbots
IRJET- A Survey Paper on ChatbotsIRJET- A Survey Paper on Chatbots
IRJET- A Survey Paper on Chatbots
 
A Survey Paper On Chatbots
A Survey Paper On ChatbotsA Survey Paper On Chatbots
A Survey Paper On Chatbots
 
IRJET - Hand Gestures Recognition using Deep Learning
IRJET -  	  Hand Gestures Recognition using Deep LearningIRJET -  	  Hand Gestures Recognition using Deep Learning
IRJET - Hand Gestures Recognition using Deep Learning
 
IRJET- Voice based Email Application for Blind People
IRJET-  	  Voice based Email Application for Blind PeopleIRJET-  	  Voice based Email Application for Blind People
IRJET- Voice based Email Application for Blind People
 
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
IRJET- QUEZARD : Question Wizard using Machine Learning and Artificial Intell...
 
“Mentors View” Application
“Mentors View” Application“Mentors View” Application
“Mentors View” Application
 
A Review Comparative Analysis On Various Chatbots Design
A Review   Comparative Analysis On Various Chatbots DesignA Review   Comparative Analysis On Various Chatbots Design
A Review Comparative Analysis On Various Chatbots Design
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Ramkumar k
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Call Girls Mumbai
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"mphochane1998
 
Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilVinayVitekari
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...Amil baba
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptxrouholahahmadi9876
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxpritamlangde
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...jabtakhaidam7
 

Recently uploaded (20)

Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech Civil
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
 

IRJET- NEEV: An Education Informational Chatbot

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 492 NEEV: An Education Informational Chatbot Aysha Khan1, Sakshi Ranka2, Chaitali Khakare3, Subodh Karve4 4Assisstant Professor, Department of Computer Engineering, Datta Meghe College of Engineering, Airoli, Navi Mumbai-400 708, Maharashtra, India. 1-3B.E.Students, Department of Computer Engineering, Datta Meghe College of Engineering, Airoli, Navi Mumbai-400 708, Maharashtra, India. ---------------------------------------------------------------------***---------------------------------------------------------------------- With increasing importance towards education & the no. of evolving areas of study, it has become a difficult task for the students to keep a track on them. This lack of awareness can affect their decision in identifying what they really want. The proposed system developed is an Informational cum Guidance Chatbot which tackles issues like what are the trending courses, finding new courses or courses of one’s interest, providing guidance, finding colleges, etc. The idea is to collect basic information about user’s interestthroughconversations. The Chatbot interacts with the user by asking basic questions, processes the query using MachineLearning Algorithmsalong with Natural Language Processing, and accordingly, servethe response or suggest the possible options. Key Words: NLP, ML, Supervised Learning, Intent Matching, Chatbot, Android Application 1. INTRODUCTION A Chatbot is a program that mimics human-like intelligent conversations through text chats and voice commands[1].It is fast and less confusing which makes it easy to install as there is no need to have installation packages. Also, these packages are easy to manage and distribute [2]. Generally, Chatbots can either be Rule-based or Self-learning bots [3]. Rule based approach uses if-else techniques whereas Self- learning approach uses ML techniques to continue learning in case it encounters something unusual with respect to whatever is stored in the data repository or the knowledge base. The current era is seeing an increasing trend in Artificial Intelligence, Machine Learning and Natural Language Processing. The strategy used in making Chatbotsis inclined towards these technologies. According to A. Vaish,“Globally, the Chatbot market has seen explosivegrowth witha growth rate of 35% CAGR” (2017). These reasons have been a great driving force for us to build this Chatbot project. Another reason to develop this Chatbot is to make the information available to everyone and everywhere. Chatbots have been developed for many domains like e-commerce, entertainment, traveling, etc. This Chatbot is built for the Education domain where we exploit the available frameworks. The general architecture for the Chatbot is shown in Fig-1[4]. Conversational intelligence using Supervised Machine Learning techniques provide a rich experience by allowing the feeling of personal approach. Fig-1: Chatbot Architecture 2. LITERATURE SURVEY There are various Chatbots in the day to day market that provide different types of services to the userusingdifferent strategies. Until now, no such Chatbot has been developed which facilitates the students in choosing careers. AChatbot named Career Geek is implemented using Facebook Messenger. It provides advices on résumé and cover letter. Naveen Kumar M, Linga Chandar P C, Venkatesh Prasad A, Sumangali K [5] discuss a chat of similar interest for visually impaired people. Also, websites have been developed that help the students in choosing their career by asking some questions to find out the best career to chose. Shiksha.com is one of those websites that help students know about which career is good and which path should be chosen. Chatbots with similar features, have been developed, but for some other purposes that help the user in their routine activities.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 493 These bots use Natural Language processing and various artificial intelligence algorithm that help them work in a better way to serve the user. Disadvantages of existing system 1) A large no. of experts are required for providing guidance thereby, increasing manpower. 2) There is no mechanism for intelligent communication. 3) There is no voice input and output; it only has text input and output. 2. PROPOSED SYSTEM The proposed systemcalledNEEVisanIntelligentChatbot, that is, it makes use of Supervised Machine Learning techniques and NLP (Natural Language Processing). The motivation for the proposed system is derived from seeing the disadvantages of the existing system and to make information available for free. The system focuses on reducing the manpower to a single expert system which replies to all queries andprovidesintelligentcommunication between the Chatbot and user. Also, all of the data can be in text or voice form for query as well as response. The system will be developed for handling two languages. To maintain connectivity an active Internet connection will be needed. The user can input their query and get the response. Moreover, an FAQ page can be maintained along with feedbacks to keep a track on the Chatbot performance. Advantages: 1) 24 x 7 system availability. 2) Reduced Manpower. 3) Voice as well as text input and output. 4) User friendly system. 5) User does not have to follow standard format while asking any queries. 6) The built in artificial intelligence system will carry out all the processing to give suitable answers to the user. 4. IMPLEMENTATION This Chatbot is deployed as an Android application. An already available framework from Google called Dialogflow (previously known as api.ai) is used. Firebase fromGoogle is used as the data repository. The GUI (Graphical User Interface) & connectivity to Dialogflow is provided using Android Studio. The system makes use of Machine Learning at the back end for processing and training purposes, and NLP & NLU (Natural Language Understanding) for taking and understanding the input. Fig-2 shows how Dialogflow handles the user query, processes it and serves theresponse to the user. Fig-3 represents a brief conversation life-cycle diagram. Fig-2: Dialogflow’s Working Fig-3: Life Cycle of a Conversation 4.1 ALGORITHM 1. Take input from the user either in Text or Voice format. 2. IF the input is in Voice format Then convert it into Text format ELSE keep the text format as it is 3. Send text input for further processing 4. Match the input for intents and entities 5. Search the data repository for an appropriateansweror generate the response 6. Serve the result either in Speech or in Text format or both 7. IF the conversation has ended Then STOP ELSE repeat step 1 4.2 TRAINING THE SYSTEM Since, the training for ML algorithms is provided by Dialogflow; this section discusses how the intents, entities & fulfillment are used for training. [5]Intents: In intents, we define possible utterances of user that can trigger the intent, what to extract from them and how to
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 494 respond. Each intent representsoneturnofdialogwithin the conversation. Intents helps to map user input to a corresponding response as a single thing by a user can be asked in multiple ways. Intentshave4components:Training phrases, Action & Parameters, Responses & Fulfillment. Training Phrases: It defines examples of what users can say. Using these training phrases, extension to many similar phrases is done so as to build a language model that accurately matches the user input. A more robust model is built using more training and ML. Action & Phrases: It improves intent’s language model, we annotate training phrases with entities or categories of data that we want the system to match. This ensures that we don’t just match the literal or free-form user inputs rather match a particular type of input. Thus, the system extracts matched entities as parameters from Training Phrases. These parameters are further processed to customize a response to the user. Responses: They define a text or speech response to the user which indicates the user in a way that lets them know where the conversation is headed or if it is ending. They can be pre- defined or generated. Responses provided are such that further user input can be matched to one of the predefined intents Fulfillment: Fulfillment is used because the system uses generative model for answering. This is the part responsible for providing non-defined responses to user query and serving it back to user. NLP has the feature which directly responds with a simple text by inferring the intents and entities but since, we deal with real-time environment, an external environment is required to compute the correct response. This environment, hooked via NLP, is called Webhook for fulfillment where the parameters from intents are extracted and their values are passed to fulfillment.Then, the response from Webhook will be served as an actual response. Entities: Entity basically represents a concept in a Chatbot. In this system, it can be college, courses, etc. Without entities, the system will try to find the exact training phrasethatmatches the user input. As the program gets more trained, the accuracy of each response in relation to the input statement increases. The program selects the closest matching response or will generate an answer if no input-response pair can be matched from the knowledge base. 5. CONCLUSION As the name suggests, NEEV means foundation & so, this intelligent Chatbot for career counseling and obtaining suggestions, will help user in choosing the right career by giving an appropriate response to user’s query. It is an intelligent system which will think in a way as the humans would usually think. This system will be helpful in reducing the overall pressure on the students of going on different websites for searching about the possible options. Due to an accurate knowledge base, quick and faithful answers will be given to user. 6. FUTURE SCOPE In future this Chatbot can be expanded by adding several features like multilingual capability. By adding this feature the Chatbot will be more user friendly. Also the career options that are left for now can be added to it. It can also be expanded by adding college information for a particular course and the admission process for that particularcollege. A rating and comment section can be provided for the same. ACKNOWLEDGEMENT We would like to thank our guide Mr. Subodh Karve for discussing and encouraging us to explore this topic and guiding us throughout it. We would also liketoappreciateall the online websites, magazines and journals for their tutorials and content for the same. REFERENCES [1] Moses, S. P. July 21, 2018. How to build a Chatbot with Dialog flow | Chapter 1 — Introduction. Retrieved January 31,2019fromhttps://medium.com/swlh/how- to-build-a-chatbot-with-dialog-flow-chapter-1- introduction-ab880c3428b5 [2] A. M. Rahman, A. A. Mamun, A. Islam, "Programming challenges of Chatbot: Current and future prospective", 2017 IEEE Region 10 Humanitarian Technology Conference (R10-HTC), pp. 75-78, 2017. [3] Pandey, P. September 17, 2018. Building a Simple Chatbot from Scratch in Python(using NLTK).Retrieved January 31, 2019 from https://medium.com/analytics- vidhya/building-a-simple-chatbot-in-python-using-nltk- 7c8c8215ac6e. [4] Surmenok, P. September12, 2016.ChatbotArchitecture. Retrieved February,2019 from https://medium.com/@surmenok/chatbot- architecture-496f5bf820ed [5] Retrieved February 2019 from https://dialogflow.com/docs/intro/agents
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 495 [6] M. N. Kumar, P.C.L. Chandar, A. V. Prasad,K. Sumangali, “Android based educational Chatbot for visually impaired people”, Proc. IEEE Int. Conf. Computational Intelligence and Computing Research (ICCIC), pp. 1-4, 2016. BIOGRAPHIES Aysha Khan B.E. (Computer Engineering) Sakshi Ranka B.E. (Computer Engineering) Chaitali Khakare B.E. (Computer Engineering) Subodh Karve Assistant Professor (Computer Dept.)