SlideShare ist ein Scribd-Unternehmen logo
1 von 3
Downloaden Sie, um offline zu lesen
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 02 | Feb 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 484
Information Chatbot for an Educational Institute
Sarvesh Shaha1, Rutuja Pokalwar2, Saurabh Agrawal3, Sushravya Udapikar4,
Prof. B.K. Dhurape5
1,2,3,4,5Department of Computer Engineering, Sinhgad College of Engineering,
Savitribai Phule Pune University, Pune, India
----------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - This paper provides an overview of a ChatBot,
primarily designed for accessing information from an
educational institute. Students of an institute are constantly
involved in various exams and activities. To access such
information, a student has to physically visit the information
center as not all information has reached all the students.
This paper proposes a chatbot, which makes it easier
for the student to access such information by directly asking
the chatbot about the information they need. The students
can access such information using natural language as if
they are having a conversation with a human itself and the
human is answering their questions. This system also helps
prospective students to analyze their probability of getting
admission to the college in their preferred department.
The understanding and recognition of a user’s query is
the most basic and important step in the development of a
chatbot. Different chatbots with different purposes all have
some special questions and queries, which are relevant to
their purpose and are uniquely understood by those
chatbots.
The proposed chatbot system understands the special
keyword and questions related to an engineering college.
The system recognizes these queries in text and speech
format using Natural language processing and provides the
user with an answer.
Keywords- Chatbot, Artificial Intelligence, Natural
Language Processing, Prediction, Machine Learning.
1. INTRODUCTION
Chatbots are typically used in dialog systems for various
practical purposes including customer service or
information acquisition. Some chatbots use sophisticated
natural language processing systems, but many simpler
ones scan for keywords within the input, then pull a reply
with the most matching keywords, or the most similar
wording pattern, from a database. A user can ask a chatbot
a question or make a command, and the chatbot responds
or performs the requested action. Different chatbots with
different purposes all have some special questions and
queries, which are relevant to their purpose and are
uniquely understood by those chatbots.
Many students require various kinds of information
concerning their college and university schedules and
activities. To access such information, the students have to
reach out to their respective colleges and university. This
results in delayed access to information and increased labor
on the institution’s side. Going digital is the way to solve
this problem and chatbots are an effective answer for this.
This paper proposes a system for tackling the above issues
with the help of a chatbot.
2. LITERATURE SURVEY
Roshan Khan in Standardized Architecture for
Conversational Agents a.k.a. ChatBots proposes a
standardized architecture for a chatbot solution and
identifies several critical components required for its
effective implementation. Applying such components will
influence the performance of the chatbot. In this paper,
bots are classified into three main types personal assistant,
customer service and functional bot and proposed
standardized architecture can be implemented specifically
for these three different chatbot solutions. Applying the
techniques that are discovered in this paper will ensure a
superior experience to customer services and delivery. [1]
In the paper An Intelligent Behavior Shown by
Chatbot System, the authors Vibhor Sharma, Monika Goyal,
Drishti Malik use a pattern-matching algorithm using
depth first search (DFS). The first step in developing the
FAQ bot consisted of extensive brainstorming and writing
down as many questions as possible. This assisted in
allowing FAQ bot to intelligently match pattern (inputs).
For doing that new AIML files are created and coupled with
the conversational knowledge base of ALICE bot. The
system is more user interactive as it responds to the query
entered by the user very accurately and precisely because
it is a domain specific chatbot system. But it is restricted to
the data present in the datasets. [2]
Ibrahim A. Hameed in the paper Using Natural
Language Processing (NLP) For Designing Socially
Intelligent Robot proposes a system platform, which is
implemented using Python SDK and the code run on a
remote computer connected to NAO robot. A python
implementation of the Rapid Automatic Keyword
Extraction (RAKE) and search for text functions are used to
extract personal information and keywords. Understand
complex human questions; be able to identify a credible
source for the answer, and figure out the answer. NLP
failure leads to storing the whole sentence and manual
fixing thereafter. [3]
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 02 | Feb 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 485
In the paper, Survey on Chatbot Design Techniques in
Speech Conversation Systems, Sameera A. Abdul-Kader, Dr.
John Woods describe the similarity and differences in the
techniques and examines the significant improvements in
Chatbot in the past Decade. [4]
3. SYSTEM OVERVIEW
The system is divided into two primary parts. First is the
chatbot user interface in the form of an Android
application through which the users will communicate
with the system. The second part of the system includes
the backend functionalities in which a server is set
including different modules such as text recognition and
context understanding and question classifying. The main
perspective of the project is to provide a human
conversation like experience to the user with respect to
college information.
The chatbot system processes the input using machine-
learning paradigms and fetches a corresponding output
from the database. The query used for data fetching is
generated in such a way that it accurately reflects the
intentions of the user’s question. The fetched answer is
then displayed to the user in natural language form so that
the user feels as if the conversation is being carried out
with a human.
4. PROPOSED ARCHITECTURE
The input is taken from the user in speech or text
format. This input is sent to the chatbot server where input
processing is carried out. The chatbot server returns the
question type. The chatbot then generates the query based
on the question type. If the question type’s requirements
are not fulfilled, the chatbot interface asks the user to
provide more information. Once that information is
provided, the query is generated. The query is then sent to
the database and the answer is fetched. If the answer is in
text format then it is converted into natural language form
and then displayed to the user.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 02 | Feb 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 486
5. METHODOLOGY
[A] Processing Input:
1. Start.
2. Get the input question from the user.
3. If(input in Speech format)
4. Convert to text
5. Split the input query
6. Remove irrelevant words
7. Recognize relevant entities
8. End.
[B] Processing Question Type:
1. Start.
2. Get the relevant entities.
3. Get the context of the input query.
4. Based on the relevant entities and context, classify
the question type.
5. Return the question type to the chatbot interface
6. End.
[C] Processing Requirements:
1. Start.
2. Get the question type.
3. Analyze the requirements corresponding to the
question type
4. while(all requirements are not met)
5. Ask the user to enter missing requirements
6. End.
[D] Processing Answer:
1. Start.
2. If(all requirements met)
3. Prepare the query to the database based on the
values
of the requirements
4. Fire the query
5. Get the answer
6. If(answer’s type is text)
7. Convert answer into natural language form
8. Show the answer to the user in the chatbot interface
9. Stop.
[E] Predicting Admission:
1. Start.
2. Gather previous few year’s data
3. Build a prediction model based on Naïve Bayes
algorithm
4. Get the student’s information
5. Predict the possibility of a student getting admission
into the educational institute
6. Stop.
6. ADVANTAGES
A. Students get easy access to information.
B. Precise prediction of whether a prospective student
gets admission or not is provided.
C. A specialized chatbot with a special purpose natural
language processing system for educational
institutions.
7. CONCLUSION
The proposed chatbot system helps students with college
information access and help with admission prediction. The
system not only benefits the student but also the college
institution as it helps reduce the need for excess manpower.
The system makes information access easier for students.
The input processing carried out within the system
efficiently processes keywords related to colleges and
education. Thus, making the implementation of a
specialized chatbot for engineering college.
8. FUTURE WORK
The proposed system can be further worked upon and the
input processing can be expanded to all the words in the
dictionary. The speech and text recognition databases can
be expanded for this purpose. The scope of questions that
are recognized by the chatbot can be enlarged by adding to
the database, fine tuning it and taking feedback from the
user.
9. REFERENCES
[1] Roshan Khan, Standardized Architecture for
Conversational Agents a.k.a. ChatBots, International
Journal of Computer Trends and Technology (IJCTT) –
Volume 50 Number 2 August 2017.
[2] Vibhor Sharma, Monika Goyal, Drishti Malik, An
Intelligent Behaviour Shown by Chatbot System,
International Journal of New Technology and Research
(IJNTR) ISSN: 2454-4116, Volume-3, Issue-4, April 2017
Pages 52-54.
[3] Ibrahim A. Hameed, Using Natural Language Processing
(NLP) For Designing Socially Intelligent Robot, 2016 Joint
IEEE International Conference on Development and
Learning and Epigenetic Robotics (ICDL-EpiRob) Cergy-
Pontoise, Paris, France, Sept 19-22, 2016.
[4] Sameera A. Abdul-Kader, Dr John Woods, Survey on
Chatbot Design Techniques in Speech Conversation
Systems, (IJACSA) International Journal of Advanced
Computer Science and Applications, Vol. 6, No. 7, 2015.
[5] Bhargav Srinivasa- Desikan, Natural Language
Processing and Computational Linguistics, Packt
Publishing.

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

IRJET- Review of Chatbot System in Hindi Language
IRJET-  	  Review of Chatbot System in Hindi LanguageIRJET-  	  Review of Chatbot System in Hindi Language
IRJET- Review of Chatbot System in Hindi Language
 
IRJET- Interactive Interview Chatbot
IRJET-  	  Interactive Interview ChatbotIRJET-  	  Interactive Interview Chatbot
IRJET- Interactive Interview Chatbot
 
IRJET- Multimedia Chatbot using Classification
IRJET- Multimedia Chatbot using ClassificationIRJET- Multimedia Chatbot using Classification
IRJET- Multimedia Chatbot using Classification
 
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
 
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
 
An Intelligent Career Counselling Bot A System for Counselling
An Intelligent Career Counselling Bot A System for CounsellingAn Intelligent Career Counselling Bot A System for Counselling
An Intelligent Career Counselling Bot A System for Counselling
 
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 Intelligence Based Chat-Bot
IRJET-  	  Artificial Intelligence Based Chat-BotIRJET-  	  Artificial Intelligence Based Chat-Bot
IRJET- Artificial Intelligence Based Chat-Bot
 
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 - 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 - 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- 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 - 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
 
Banking botreport
Banking botreportBanking botreport
Banking botreport
 
Complete-Mini-Project-Report
Complete-Mini-Project-ReportComplete-Mini-Project-Report
Complete-Mini-Project-Report
 
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
 
IRJET- Career Counselling Chatbot
IRJET-  	  Career Counselling ChatbotIRJET-  	  Career Counselling Chatbot
IRJET- Career Counselling Chatbot
 
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 - Number/Text Translate from Image
IRJET -  	  Number/Text Translate from ImageIRJET -  	  Number/Text Translate from Image
IRJET - Number/Text Translate from Image
 
TALASH: A SEMANTIC AND CONTEXT BASED OPTIMIZED HINDI SEARCH ENGINE
TALASH: A SEMANTIC AND CONTEXT BASED OPTIMIZED HINDI SEARCH ENGINETALASH: A SEMANTIC AND CONTEXT BASED OPTIMIZED HINDI SEARCH ENGINE
TALASH: A SEMANTIC AND CONTEXT BASED OPTIMIZED HINDI SEARCH ENGINE
 

Ähnlich wie IRJET- Information Chatbot for an Educational Institute

Automated information retrieval and services of graduate school using chatbo...
Automated information retrieval and services of graduate  school using chatbo...Automated information retrieval and services of graduate  school using chatbo...
Automated information retrieval and services of graduate school using chatbo...
IJECEIAES
 

Ähnlich wie IRJET- Information Chatbot for an Educational Institute (19)

INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEMINTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
INTELLIGENT CHATBOT FOR COLLEGE ENQUIRY SYSTEM
 
COLLEGE ENQUIRY CHATBOT SYSTEM IN JAVASCRIPT
COLLEGE ENQUIRY CHATBOT SYSTEM IN JAVASCRIPTCOLLEGE ENQUIRY CHATBOT SYSTEM IN JAVASCRIPT
COLLEGE ENQUIRY CHATBOT SYSTEM IN JAVASCRIPT
 
WHATSAPP CHATBOT FOR CAREER GUIDANCE
WHATSAPP CHATBOT FOR CAREER GUIDANCEWHATSAPP CHATBOT FOR CAREER GUIDANCE
WHATSAPP CHATBOT FOR CAREER GUIDANCE
 
Design of Chatbot using Deep Learning
Design of Chatbot using Deep LearningDesign of Chatbot using Deep Learning
Design of Chatbot using Deep Learning
 
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 - Query Processing using NLP
IRJET - Query Processing using NLPIRJET - Query Processing using NLP
IRJET - Query Processing using NLP
 
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
 
DEEPESH KUSHWAH PROJECT 3rd sem 1.docx
DEEPESH KUSHWAH PROJECT 3rd sem 1.docxDEEPESH KUSHWAH PROJECT 3rd sem 1.docx
DEEPESH KUSHWAH PROJECT 3rd sem 1.docx
 
Student information chatbot final report
Student information chatbot  final report Student information chatbot  final report
Student information chatbot final report
 
IRJET- Chatbot System for Latest Applications and Software
IRJET- Chatbot System for Latest Applications and SoftwareIRJET- Chatbot System for Latest Applications and Software
IRJET- Chatbot System for Latest Applications and Software
 
HealthCare ChatBot Using Machine Learning
HealthCare ChatBot Using Machine LearningHealthCare ChatBot Using Machine Learning
HealthCare ChatBot Using Machine Learning
 
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
 
MINI PRC FINAL.pptx
MINI PRC FINAL.pptxMINI PRC FINAL.pptx
MINI PRC FINAL.pptx
 
AI and Web-Based Interactive College Enquiry Chatbot
AI and Web-Based Interactive College Enquiry ChatbotAI and Web-Based Interactive College Enquiry Chatbot
AI and Web-Based Interactive College Enquiry Chatbot
 
A Survey on Various Types of Chatbots
A Survey on Various Types of ChatbotsA Survey on Various Types of Chatbots
A Survey on Various Types of Chatbots
 
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- Cloud based Chat Bot using IoT and Arduino
IRJET- Cloud based Chat Bot using IoT and ArduinoIRJET- Cloud based Chat Bot using IoT and Arduino
IRJET- Cloud based Chat Bot using IoT and Arduino
 
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
 
Automated information retrieval and services of graduate school using chatbo...
Automated information retrieval and services of graduate  school using chatbo...Automated information retrieval and services of graduate  school using chatbo...
Automated information retrieval and services of graduate school using chatbo...
 

Mehr von IRJET Journal

Mehr von 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...
 

Kürzlich hochgeladen

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
dharasingh5698
 

Kürzlich hochgeladen (20)

notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
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
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 

IRJET- Information Chatbot for an Educational Institute

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 02 | Feb 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 484 Information Chatbot for an Educational Institute Sarvesh Shaha1, Rutuja Pokalwar2, Saurabh Agrawal3, Sushravya Udapikar4, Prof. B.K. Dhurape5 1,2,3,4,5Department of Computer Engineering, Sinhgad College of Engineering, Savitribai Phule Pune University, Pune, India ----------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - This paper provides an overview of a ChatBot, primarily designed for accessing information from an educational institute. Students of an institute are constantly involved in various exams and activities. To access such information, a student has to physically visit the information center as not all information has reached all the students. This paper proposes a chatbot, which makes it easier for the student to access such information by directly asking the chatbot about the information they need. The students can access such information using natural language as if they are having a conversation with a human itself and the human is answering their questions. This system also helps prospective students to analyze their probability of getting admission to the college in their preferred department. The understanding and recognition of a user’s query is the most basic and important step in the development of a chatbot. Different chatbots with different purposes all have some special questions and queries, which are relevant to their purpose and are uniquely understood by those chatbots. The proposed chatbot system understands the special keyword and questions related to an engineering college. The system recognizes these queries in text and speech format using Natural language processing and provides the user with an answer. Keywords- Chatbot, Artificial Intelligence, Natural Language Processing, Prediction, Machine Learning. 1. INTRODUCTION Chatbots are typically used in dialog systems for various practical purposes including customer service or information acquisition. Some chatbots use sophisticated natural language processing systems, but many simpler ones scan for keywords within the input, then pull a reply with the most matching keywords, or the most similar wording pattern, from a database. A user can ask a chatbot a question or make a command, and the chatbot responds or performs the requested action. Different chatbots with different purposes all have some special questions and queries, which are relevant to their purpose and are uniquely understood by those chatbots. Many students require various kinds of information concerning their college and university schedules and activities. To access such information, the students have to reach out to their respective colleges and university. This results in delayed access to information and increased labor on the institution’s side. Going digital is the way to solve this problem and chatbots are an effective answer for this. This paper proposes a system for tackling the above issues with the help of a chatbot. 2. LITERATURE SURVEY Roshan Khan in Standardized Architecture for Conversational Agents a.k.a. ChatBots proposes a standardized architecture for a chatbot solution and identifies several critical components required for its effective implementation. Applying such components will influence the performance of the chatbot. In this paper, bots are classified into three main types personal assistant, customer service and functional bot and proposed standardized architecture can be implemented specifically for these three different chatbot solutions. Applying the techniques that are discovered in this paper will ensure a superior experience to customer services and delivery. [1] In the paper An Intelligent Behavior Shown by Chatbot System, the authors Vibhor Sharma, Monika Goyal, Drishti Malik use a pattern-matching algorithm using depth first search (DFS). The first step in developing the FAQ bot consisted of extensive brainstorming and writing down as many questions as possible. This assisted in allowing FAQ bot to intelligently match pattern (inputs). For doing that new AIML files are created and coupled with the conversational knowledge base of ALICE bot. The system is more user interactive as it responds to the query entered by the user very accurately and precisely because it is a domain specific chatbot system. But it is restricted to the data present in the datasets. [2] Ibrahim A. Hameed in the paper Using Natural Language Processing (NLP) For Designing Socially Intelligent Robot proposes a system platform, which is implemented using Python SDK and the code run on a remote computer connected to NAO robot. A python implementation of the Rapid Automatic Keyword Extraction (RAKE) and search for text functions are used to extract personal information and keywords. Understand complex human questions; be able to identify a credible source for the answer, and figure out the answer. NLP failure leads to storing the whole sentence and manual fixing thereafter. [3]
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 02 | Feb 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 485 In the paper, Survey on Chatbot Design Techniques in Speech Conversation Systems, Sameera A. Abdul-Kader, Dr. John Woods describe the similarity and differences in the techniques and examines the significant improvements in Chatbot in the past Decade. [4] 3. SYSTEM OVERVIEW The system is divided into two primary parts. First is the chatbot user interface in the form of an Android application through which the users will communicate with the system. The second part of the system includes the backend functionalities in which a server is set including different modules such as text recognition and context understanding and question classifying. The main perspective of the project is to provide a human conversation like experience to the user with respect to college information. The chatbot system processes the input using machine- learning paradigms and fetches a corresponding output from the database. The query used for data fetching is generated in such a way that it accurately reflects the intentions of the user’s question. The fetched answer is then displayed to the user in natural language form so that the user feels as if the conversation is being carried out with a human. 4. PROPOSED ARCHITECTURE The input is taken from the user in speech or text format. This input is sent to the chatbot server where input processing is carried out. The chatbot server returns the question type. The chatbot then generates the query based on the question type. If the question type’s requirements are not fulfilled, the chatbot interface asks the user to provide more information. Once that information is provided, the query is generated. The query is then sent to the database and the answer is fetched. If the answer is in text format then it is converted into natural language form and then displayed to the user.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 02 | Feb 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 486 5. METHODOLOGY [A] Processing Input: 1. Start. 2. Get the input question from the user. 3. If(input in Speech format) 4. Convert to text 5. Split the input query 6. Remove irrelevant words 7. Recognize relevant entities 8. End. [B] Processing Question Type: 1. Start. 2. Get the relevant entities. 3. Get the context of the input query. 4. Based on the relevant entities and context, classify the question type. 5. Return the question type to the chatbot interface 6. End. [C] Processing Requirements: 1. Start. 2. Get the question type. 3. Analyze the requirements corresponding to the question type 4. while(all requirements are not met) 5. Ask the user to enter missing requirements 6. End. [D] Processing Answer: 1. Start. 2. If(all requirements met) 3. Prepare the query to the database based on the values of the requirements 4. Fire the query 5. Get the answer 6. If(answer’s type is text) 7. Convert answer into natural language form 8. Show the answer to the user in the chatbot interface 9. Stop. [E] Predicting Admission: 1. Start. 2. Gather previous few year’s data 3. Build a prediction model based on Naïve Bayes algorithm 4. Get the student’s information 5. Predict the possibility of a student getting admission into the educational institute 6. Stop. 6. ADVANTAGES A. Students get easy access to information. B. Precise prediction of whether a prospective student gets admission or not is provided. C. A specialized chatbot with a special purpose natural language processing system for educational institutions. 7. CONCLUSION The proposed chatbot system helps students with college information access and help with admission prediction. The system not only benefits the student but also the college institution as it helps reduce the need for excess manpower. The system makes information access easier for students. The input processing carried out within the system efficiently processes keywords related to colleges and education. Thus, making the implementation of a specialized chatbot for engineering college. 8. FUTURE WORK The proposed system can be further worked upon and the input processing can be expanded to all the words in the dictionary. The speech and text recognition databases can be expanded for this purpose. The scope of questions that are recognized by the chatbot can be enlarged by adding to the database, fine tuning it and taking feedback from the user. 9. REFERENCES [1] Roshan Khan, Standardized Architecture for Conversational Agents a.k.a. ChatBots, International Journal of Computer Trends and Technology (IJCTT) – Volume 50 Number 2 August 2017. [2] Vibhor Sharma, Monika Goyal, Drishti Malik, An Intelligent Behaviour Shown by Chatbot System, International Journal of New Technology and Research (IJNTR) ISSN: 2454-4116, Volume-3, Issue-4, April 2017 Pages 52-54. [3] Ibrahim A. Hameed, Using Natural Language Processing (NLP) For Designing Socially Intelligent Robot, 2016 Joint IEEE International Conference on Development and Learning and Epigenetic Robotics (ICDL-EpiRob) Cergy- Pontoise, Paris, France, Sept 19-22, 2016. [4] Sameera A. Abdul-Kader, Dr John Woods, Survey on Chatbot Design Techniques in Speech Conversation Systems, (IJACSA) International Journal of Advanced Computer Science and Applications, Vol. 6, No. 7, 2015. [5] Bhargav Srinivasa- Desikan, Natural Language Processing and Computational Linguistics, Packt Publishing.