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: 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 25
Question Answering System using Artificial Neural Network
Saifali Prasla1, Sairaj Tawde2, Vatsal Shah3, Jyoti Chavhan4
1,2,3B.E. student, Dept. of Information and Technology, Atharva College of Engineering, Maharashtra, India
4Assistant Professor, Dept. of Information and Technology, Atharva College of Engineering, Maharashtra, India
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - In today’s modern world, the Question Answering
system is being used everywhere and it is a vital part of
everyone’s lives as it allows people to search their queries
and gain knowledge. However, the major issue with all the
existing systems is that they all fail to answer complex
questions which require interpretation of the data and
question asked by the user. They are all limited to answering
only simple and objective questions. The proposed system
aims to get overcome this problem by creating a deep
artificial neural network with associative memory from
various documents like pdf, txt, etc. provided by the user. It
processes the question asked by the user and comprehends
the question, and understand its contextual meaning. After
that, it then proceeds to find the answer from the deep
neural network created from the documents.
Key Words: Question Answering system, Artificial
neural network, Natural Language Processing,
Intelligent data retrieval system.
1. INTRODUCTION
NLP is used to understand the knowledge provided to the
system and to process that knowledge. A Question
Answering System is used for fast extraction by exempting
the user to read all the unnecessary information which
might not lead to the answer. There are multiple NLP
models used in the Question Answering System. These
models are usually symbol matching which makes use of
linguistic annotations, structured world knowledge, and
semantic parsing. The neural network’s information
processing mechanism is similar to the human brain. Due
to this, it is used in various artificial intelligence models
like pattern recognition, associative memory, etc. and they
yield very high performance. Unlike any ML models, it
doesn’t require training sets to develop models. The
proposed system, that creates a deep neural network from
the documents provided by the user and storing them for
future use. It will try to imitate the human information
recalling feature by processing the document first -
understanding it and then try to find the answer to the
questions asked. The system will process, comprehend
and try to understand what is the answer to the question
asked and then try to find the answer from the deep
neural network created from the documents previously
provided.
2. RELATED WORKS
A Question Answering System is a system that reduces the
human effort of searching for an answer by extracting it
from its database or from the internet. Lu Liu and Jing Luo
[1] had proposed a question answering system based on
deep learning. Here the system used the CNN model and
Word2Vec model to find the correct answer to the
question asked. The reason for using these models is that
the system was made to work in the Chinese language and
in Chinese, there are no spaces between 2 words so
eventually, the entire sentence is one single word and also
the Chinese language has a lot of ambiguity in it. Sudha
Morwal, Nusrat Jahan and Deepti Chopra [2] had proposed
Name Entity Recognition using Hidden Markov Model
(HMM). The HMM model was used to develop a language-
independent NER. Yashvardhan Sharma and Sahil Gupta
[3] had proposed a deep learning approach for question
answering system, where the system used a basic AIML
chat-bot to answer factual questions and then LSTM
models and different memory networks to get accuracy as
high as 98 percent.
3. PROPOSED SYSTEM AND IMPLEMENTATION
3.1 Proposed System
The proposed QAS system comprises two phases namely
the learning phase and the extraction phase. The first
phase takes a document as an input, processes it and
generates or updates the system’s neural network. After
the document has been processed, the user can view the
document and ask questions. In the second phase, the user
can ask questions directly to the system. In this phase, the
system takes a question as an input. The system then
produces an answer to this question, if it has the answer,
and displays the answer.
Figure -1: Overview of the system.
The block diagram in Figure 2 shows in schematic form
the general arrangement of the parts or components of the
proposed system.
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 26
Figure -2: Architecture
3.2 Implementation
3.2.1 Learning Phase
A. Sentence Analysis
This step involves Natural language processing in which
knowledge units are derived from the sentence and
words(neurons) from knowledge units.
B. Network Creation
After sentence analysis, an artificial neural network is
created from the extracted words. If the words exist in the
same knowledge unit then a connection is generated
between them.
C. Assigning Deep Case
The deep case is assigned to the neurons in an artificial
neural network to improve its inference capabilities. The
deep cases that we are going to consider are shown below.
Deep Case Information
Agent One who performs the action or main
actor.
Action The action(event) being performed.
Location A location where the action occurred.
Time Time of the event.
Instrument The object with which action is
performed.
Patient Action being performed on.
State Current condition/state of agent or
patient.
Table 1: Deep Case
3.2.2. Extraction phase
A. Question Analysis
In question analysis what answer is to be extracted can be
estimated from the type of question asked. For example, if
the question includes “where” then the answer will
include a location. Words from the question are also
extracted to search the neuron and the connection
between them.
B. Search in Neural Networks
The neurons(words) extracted from the question analysis
are searched in ANN to find a connection between them.
This connection leads to the knowledge layer.
C. Backtrack to Knowledge Layer
This step involves generating a knowledge unit that
possibly can be the answer to the question asked by the
user.
3.2.3 Result
An experiment was carried out wherein a QAS document
was fetched to the system and the results are illustrated
below.
Step 1: In this step, an input (text data) was provided to
the system from the user. Let’s say the document contains
the following details.
“Shivaji Maharaj was born on 19 February 1630 at
Shivneri fort”.
Step 2: In this step, the input sentences were divided into
words and each word was assigned with a unique ID. The
division of each input data and ID assignment is shown in
Table 2.
ID Words
ID1 Shivaji Maharaj
ID2 Born
ID3 19 February 1630
ID4 Shivneri Fort
Table 2: Assignment of id’s to each word
Step 3: After assigning Unique ID’s, knowledge units were
extracted from the input data. Table 3 shows the extracted
knowledge units and ID’s assigned to each unit.
Knowledge ID Knowledge
K1 Shivaji Maharaj was born on 19
February 1630
K2 Shivaji Maharaj was born in
Shivneri fort
Table 3: Assigning knowledge ID’s to each word
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 27
Step 4: Word type was assigned to each word after
extracting the knowledge unit. The assignment of each
word is shown in Table 4.
ID Words Word type
ID1 Shivaji Maharaj Who
ID2 Born What
ID3 19 February
1630
When
ID4 Shivneri Fort Where
Table 4: Assigning word type to each word
Step 5: Now deep cases are assigned to each word. Table 5
shows the various deep cases assigned to each word.
ID Words Deep cases
ID1 Shivaji Maharaj Agent
ID2 Born Action
ID3 19 February 1630 Date
ID4 Shivneri Fort Place
Table 5: Assignment of deep cases to each word
Step 6: In this step, the relationship between words and
knowledge units was determined.
First Word Second Word Knowledge ID
ID1 ID2 K1
ID2 ID3 K1
ID1 ID3 K1
ID1 ID4 K2
ID1 ID2 K2
ID2 ID4 K2
Table 6: Relationship between knowledge units and
words
Step 7: Finally a network was generated based on the
sentence. The network generated is shown in figure 3.
Figure 3: Network Diagram
Step 8: Now the neural network is generated. The system
has some knowledge and can answer the questions based
on this knowledge only. So, when a question is asked to
the system our system will analyze each word from the
question.
“Where was Shivaji Maharaj born?”
Table 7 below contains the words in the question.
Words
Shivaji Maharaj
Born
Where
Table 7: Different words of the question
Step 9: Now the words are searched from the network and
knowledge units that relate these words are extracted. All
the knowledge units that are related to the words in the
question are shown in Table 8.
First Word Second Word Knowledge ID
ID1 ID2 K1
ID2 ID3 K1
ID1 ID3 K1
ID1 ID4 K2
ID1 ID2 K2
ID2 ID4 K2
Table 8: Searching the required knowledge unit
In the above sentence, K1 and K2 both relate the word
“Shivaji Maharaj” and “born”.
K1 answers “when” whereas K2 answers “where”. We
evaluate this from the word type table that was created in
the learning phase. The user has asked “where” so the
output knowledge unit will be K2.
Step 10: Finally, when the system will have the required
knowledge it will display the selected knowledge unit. i.e.
“Shivaji Maharaj was born at Shivneri fort.”
4. CONCLUSION
The proposed system is able to answer the complex
questions asked by the user based on the provided
documents. The system can answer the questions
elaboratively unlike the previous systems which answered
only simple questions or answered in a yes or no format.
The proposed system can be further enhanced to process
other types of files. It can also be enhanced to extract
information from tables or even images.
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 28
ACKNOWLEDGMENT
We would like to thank our project guide Prof. Jyoti
Chavhan for her immense cooperation and guidance. We
have no words to communicate our appreciation for a
person who wholeheartedly supported the project and
generously gave her valuable time while making this
project. All the inputs provided by her were extremely
useful and helped us build this project. She has always
been a source of motivation for us.
REFERENCES
[1] Lu Liu and Jing Luo, “A Question Answering System
Based on Deep Learning”, in Springer International
Publishing, 2018.
[2] Sudha Morwal, Nusrat Jahan and Deepti Chopra, “Name
Entity Recognition using Hidden Markov Model (HMM)”,
in International Journal on Natural Language Computing
(IJNLC), December 2012.
[3] Yashvardhan Sharma and Sahil Gupta, “Deep Learning
Approach for Question Answering System”, in
International Conference on Computational Intelligence
and Data Science (ICCIDS 2018) Procedia Computer
Science 132(Elsevier), April 2018.
[4] Tsukasa Sagara and Masafumi Hagiwara, “Natural
language neural network and its application to question-
answering system”, in IEEE, 2012.
[5] Shivani Singh, Nishtha Das, Rachel Michael, and Dr.
Poonam Tanwar, “The Question Answering System using
NLP and AL”, in International Journal of Scientific and
Engineering Research, December 2016.
[6] Karl Moritz Hermann, Tomáš Kočisky, Edward
Grefenstette, Lasse Espeholt, Will Kay, Mustafa Suleyman,
Phil Blunsom, “Teaching Machine to Read and
Comprehend, in arXiv.org, June 2015.
[7] Abhishek Kumar, Kunal Thakur, Pranav Nachnekar and
Nayan Vaity, “Question-Answer Text Mining using
Machine Learning”, in IRJET, March 2019.
[8] Mohit Iyyer, Jordan Boyd-Graber, Leonardo Claudino,
Richard Socher, and Hal Daumé III, “A Neural Network for
Factoid Question Answering over Paragraphs”, in
aclweb.org, 2014.
[9] Fatima Ashraf, Tansel Ozyer and Reda Alhajj,
“Employing Clustering Techniques for Automatic
Information Extraction from HTML Documents”, in IEEE,
September 2008.
[10] C. L. Philip Chen, “Deep Learning for Pattern Learning
and Recognition”, in IEEE, 2015.
[11] Maryam Habibi and Andrei Popescu-Belis, “Keyword
Extraction and Clustering for Document Recommendation
in Conversations”, in IEEE, 2015.

More Related Content

What's hot

Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...
Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...
Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...Biswaranjan Samal
 
Sentiment Analysis and Classification of Tweets using Data Mining
Sentiment Analysis and Classification of Tweets using Data MiningSentiment Analysis and Classification of Tweets using Data Mining
Sentiment Analysis and Classification of Tweets using Data MiningIRJET Journal
 
IRJET- Survey on Various Techniques of Attendance marking and Attention D...
IRJET-  	  Survey on Various Techniques of Attendance marking and Attention D...IRJET-  	  Survey on Various Techniques of Attendance marking and Attention D...
IRJET- Survey on Various Techniques of Attendance marking and Attention D...IRJET Journal
 
VTU final year project report Main
VTU final year project report MainVTU final year project report Main
VTU final year project report Mainathiathi3
 
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
 
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- Machine Learning: Survey, Types and Challenges
IRJET- Machine Learning: Survey, Types and ChallengesIRJET- Machine Learning: Survey, Types and Challenges
IRJET- Machine Learning: Survey, Types and ChallengesIRJET Journal
 
IRJET- Question-Answer Text Mining using Machine Learning
IRJET- Question-Answer Text Mining using Machine LearningIRJET- Question-Answer Text Mining using Machine Learning
IRJET- Question-Answer Text Mining using Machine LearningIRJET Journal
 
2. an efficient approach for web query preprocessing edit sat
2. an efficient approach for web query preprocessing edit sat2. an efficient approach for web query preprocessing edit sat
2. an efficient approach for web query preprocessing edit satIAESIJEECS
 
A Self learning AI Network (ANN) for question classification suresh-kodoor
A Self learning AI Network (ANN) for question classification suresh-kodoorA Self learning AI Network (ANN) for question classification suresh-kodoor
A Self learning AI Network (ANN) for question classification suresh-kodoorSuresh Kodoor
 
IRJET-Sentiment Analysis in Twitter
IRJET-Sentiment Analysis in TwitterIRJET-Sentiment Analysis in Twitter
IRJET-Sentiment Analysis in TwitterIRJET Journal
 
IRJET - Automated System for Frequently Occurred Exam Questions
IRJET - Automated System for Frequently Occurred Exam QuestionsIRJET - Automated System for Frequently Occurred Exam Questions
IRJET - Automated System for Frequently Occurred Exam QuestionsIRJET Journal
 
A Study of Social Media Data and Data Mining Techniques
A Study of Social Media Data and Data Mining TechniquesA Study of Social Media Data and Data Mining Techniques
A Study of Social Media Data and Data Mining TechniquesIJERA Editor
 
IRJET- Twitter Opinion Mining
IRJET- Twitter Opinion MiningIRJET- Twitter Opinion Mining
IRJET- Twitter Opinion MiningIRJET Journal
 
Software Engineering Final Year Project Report
Software Engineering Final Year Project ReportSoftware Engineering Final Year Project Report
Software Engineering Final Year Project Reportjudebwayo
 
VTU final year project report
VTU final year project reportVTU final year project report
VTU final year project reportathiathi3
 
IRJET- Natural Language Query Processing
IRJET- Natural Language Query ProcessingIRJET- Natural Language Query Processing
IRJET- Natural Language Query ProcessingIRJET Journal
 
Zomato eda report
Zomato eda reportZomato eda report
Zomato eda reportvidit jain
 

What's hot (20)

Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...
Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...
Performance Analysis of Supervised Machine Learning Techniques for Sentiment ...
 
Sentiment Analysis and Classification of Tweets using Data Mining
Sentiment Analysis and Classification of Tweets using Data MiningSentiment Analysis and Classification of Tweets using Data Mining
Sentiment Analysis and Classification of Tweets using Data Mining
 
IRJET- Survey on Various Techniques of Attendance marking and Attention D...
IRJET-  	  Survey on Various Techniques of Attendance marking and Attention D...IRJET-  	  Survey on Various Techniques of Attendance marking and Attention D...
IRJET- Survey on Various Techniques of Attendance marking and Attention D...
 
Ko3618101814
Ko3618101814Ko3618101814
Ko3618101814
 
VTU final year project report Main
VTU final year project report MainVTU final year project report Main
VTU final year project report Main
 
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 - Mobile Chatbot for Information Search
 IRJET - Mobile Chatbot for Information Search IRJET - Mobile Chatbot for Information Search
IRJET - Mobile Chatbot for Information Search
 
IRJET- Machine Learning: Survey, Types and Challenges
IRJET- Machine Learning: Survey, Types and ChallengesIRJET- Machine Learning: Survey, Types and Challenges
IRJET- Machine Learning: Survey, Types and Challenges
 
IRJET- Question-Answer Text Mining using Machine Learning
IRJET- Question-Answer Text Mining using Machine LearningIRJET- Question-Answer Text Mining using Machine Learning
IRJET- Question-Answer Text Mining using Machine Learning
 
2. an efficient approach for web query preprocessing edit sat
2. an efficient approach for web query preprocessing edit sat2. an efficient approach for web query preprocessing edit sat
2. an efficient approach for web query preprocessing edit sat
 
A Self learning AI Network (ANN) for question classification suresh-kodoor
A Self learning AI Network (ANN) for question classification suresh-kodoorA Self learning AI Network (ANN) for question classification suresh-kodoor
A Self learning AI Network (ANN) for question classification suresh-kodoor
 
IRJET-Sentiment Analysis in Twitter
IRJET-Sentiment Analysis in TwitterIRJET-Sentiment Analysis in Twitter
IRJET-Sentiment Analysis in Twitter
 
IRJET - Automated System for Frequently Occurred Exam Questions
IRJET - Automated System for Frequently Occurred Exam QuestionsIRJET - Automated System for Frequently Occurred Exam Questions
IRJET - Automated System for Frequently Occurred Exam Questions
 
A Study of Social Media Data and Data Mining Techniques
A Study of Social Media Data and Data Mining TechniquesA Study of Social Media Data and Data Mining Techniques
A Study of Social Media Data and Data Mining Techniques
 
IRJET- Twitter Opinion Mining
IRJET- Twitter Opinion MiningIRJET- Twitter Opinion Mining
IRJET- Twitter Opinion Mining
 
Software Engineering Final Year Project Report
Software Engineering Final Year Project ReportSoftware Engineering Final Year Project Report
Software Engineering Final Year Project Report
 
VTU final year project report
VTU final year project reportVTU final year project report
VTU final year project report
 
IRJET- Natural Language Query Processing
IRJET- Natural Language Query ProcessingIRJET- Natural Language Query Processing
IRJET- Natural Language Query Processing
 
Zomato eda report
Zomato eda reportZomato eda report
Zomato eda report
 
CV
CVCV
CV
 

Similar to IRJET- Question Answering System using Artificial Neural Network

Intelligent information extraction based on artificial neural network
Intelligent information extraction based on artificial neural networkIntelligent information extraction based on artificial neural network
Intelligent information extraction based on artificial neural networkijfcstjournal
 
Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...
Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...
Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...APJ ABDUL KALAM TECHNICAL UNIVERSITY
 
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- Factoid Question and Answering System
IRJET-  	  Factoid Question and Answering SystemIRJET-  	  Factoid Question and Answering System
IRJET- Factoid Question and Answering SystemIRJET Journal
 
DBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEM
DBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEMDBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEM
DBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEMIJwest
 
Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...
Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...
Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...IJERA Editor
 
A Fuzzy Logic Intelligent Agent for Information Extraction
A Fuzzy Logic Intelligent Agent for Information ExtractionA Fuzzy Logic Intelligent Agent for Information Extraction
A Fuzzy Logic Intelligent Agent for Information ExtractionTarekMourad8
 
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...
IRJET- Design an Approach for Prediction of Human Activity Recognition us...IRJET Journal
 
IRJET- Deep Neural Network based Mechanism to Compute Depression in Socia...
IRJET-  	  Deep Neural Network based Mechanism to Compute Depression in Socia...IRJET-  	  Deep Neural Network based Mechanism to Compute Depression in Socia...
IRJET- Deep Neural Network based Mechanism to Compute Depression in Socia...IRJET Journal
 
IRJET- Emotion Classification of Human Face Expressions using Transfer Le...
IRJET-  	  Emotion Classification of Human Face Expressions using Transfer Le...IRJET-  	  Emotion Classification of Human Face Expressions using Transfer Le...
IRJET- Emotion Classification of Human Face Expressions using Transfer Le...IRJET Journal
 
Named Entity Recognition using Bi-LSTM and Tenserflow Model
Named Entity Recognition using Bi-LSTM and Tenserflow ModelNamed Entity Recognition using Bi-LSTM and Tenserflow Model
Named Entity Recognition using Bi-LSTM and Tenserflow ModelIRJET Journal
 
J48 and JRIP Rules for E-Governance Data
J48 and JRIP Rules for E-Governance DataJ48 and JRIP Rules for E-Governance Data
J48 and JRIP Rules for E-Governance DataCSCJournals
 
HOW NEURAL NETWORKS WORK
HOW NEURAL NETWORKS WORKHOW NEURAL NETWORKS WORK
HOW NEURAL NETWORKS WORKAM Publications
 
IRJET - Cyberbulling Detection Model
IRJET -  	  Cyberbulling Detection ModelIRJET -  	  Cyberbulling Detection Model
IRJET - Cyberbulling Detection ModelIRJET Journal
 
MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...
MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...
MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...IRJET Journal
 
IRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face RecognitionIRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face RecognitionIRJET Journal
 
6 Intelligent Problem Solvers In Education Design Method And Applications
6 Intelligent Problem Solvers In Education  Design Method And Applications6 Intelligent Problem Solvers In Education  Design Method And Applications
6 Intelligent Problem Solvers In Education Design Method And ApplicationsBrandi Gonzales
 
OBJECT IDENTIFICATION
OBJECT IDENTIFICATIONOBJECT IDENTIFICATION
OBJECT IDENTIFICATIONIRJET Journal
 

Similar to IRJET- Question Answering System using Artificial Neural Network (20)

Intelligent information extraction based on artificial neural network
Intelligent information extraction based on artificial neural networkIntelligent information extraction based on artificial neural network
Intelligent information extraction based on artificial neural network
 
Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...
Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...
Industrial training (Artificial Intelligence, Machine Learning & Deep Learnin...
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural Networks
 
P2-Artificial.pdf
P2-Artificial.pdfP2-Artificial.pdf
P2-Artificial.pdf
 
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- Factoid Question and Answering System
IRJET-  	  Factoid Question and Answering SystemIRJET-  	  Factoid Question and Answering System
IRJET- Factoid Question and Answering System
 
DBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEM
DBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEMDBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEM
DBPEDIA BASED FACTOID QUESTION ANSWERING SYSTEM
 
Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...
Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...
Automatic Selection of Open Source Multimedia Softwares Using Error Back-Prop...
 
A Fuzzy Logic Intelligent Agent for Information Extraction
A Fuzzy Logic Intelligent Agent for Information ExtractionA Fuzzy Logic Intelligent Agent for Information Extraction
A Fuzzy Logic Intelligent Agent for Information Extraction
 
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...IRJET-  	  Design an Approach for Prediction of Human Activity Recognition us...
IRJET- Design an Approach for Prediction of Human Activity Recognition us...
 
IRJET- Deep Neural Network based Mechanism to Compute Depression in Socia...
IRJET-  	  Deep Neural Network based Mechanism to Compute Depression in Socia...IRJET-  	  Deep Neural Network based Mechanism to Compute Depression in Socia...
IRJET- Deep Neural Network based Mechanism to Compute Depression in Socia...
 
IRJET- Emotion Classification of Human Face Expressions using Transfer Le...
IRJET-  	  Emotion Classification of Human Face Expressions using Transfer Le...IRJET-  	  Emotion Classification of Human Face Expressions using Transfer Le...
IRJET- Emotion Classification of Human Face Expressions using Transfer Le...
 
Named Entity Recognition using Bi-LSTM and Tenserflow Model
Named Entity Recognition using Bi-LSTM and Tenserflow ModelNamed Entity Recognition using Bi-LSTM and Tenserflow Model
Named Entity Recognition using Bi-LSTM and Tenserflow Model
 
J48 and JRIP Rules for E-Governance Data
J48 and JRIP Rules for E-Governance DataJ48 and JRIP Rules for E-Governance Data
J48 and JRIP Rules for E-Governance Data
 
HOW NEURAL NETWORKS WORK
HOW NEURAL NETWORKS WORKHOW NEURAL NETWORKS WORK
HOW NEURAL NETWORKS WORK
 
IRJET - Cyberbulling Detection Model
IRJET -  	  Cyberbulling Detection ModelIRJET -  	  Cyberbulling Detection Model
IRJET - Cyberbulling Detection Model
 
MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...
MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...
MACHINE LEARNING AND DEEP LEARNING TECHNIQUES FOR DETECTING ABUSIVE CONTENT O...
 
IRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face RecognitionIRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face Recognition
 
6 Intelligent Problem Solvers In Education Design Method And Applications
6 Intelligent Problem Solvers In Education  Design Method And Applications6 Intelligent Problem Solvers In Education  Design Method And Applications
6 Intelligent Problem Solvers In Education Design Method And Applications
 
OBJECT IDENTIFICATION
OBJECT IDENTIFICATIONOBJECT IDENTIFICATION
OBJECT IDENTIFICATION
 

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

Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 

Recently uploaded (20)

Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 

IRJET- Question Answering System using Artificial Neural Network

  • 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 25 Question Answering System using Artificial Neural Network Saifali Prasla1, Sairaj Tawde2, Vatsal Shah3, Jyoti Chavhan4 1,2,3B.E. student, Dept. of Information and Technology, Atharva College of Engineering, Maharashtra, India 4Assistant Professor, Dept. of Information and Technology, Atharva College of Engineering, Maharashtra, India ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - In today’s modern world, the Question Answering system is being used everywhere and it is a vital part of everyone’s lives as it allows people to search their queries and gain knowledge. However, the major issue with all the existing systems is that they all fail to answer complex questions which require interpretation of the data and question asked by the user. They are all limited to answering only simple and objective questions. The proposed system aims to get overcome this problem by creating a deep artificial neural network with associative memory from various documents like pdf, txt, etc. provided by the user. It processes the question asked by the user and comprehends the question, and understand its contextual meaning. After that, it then proceeds to find the answer from the deep neural network created from the documents. Key Words: Question Answering system, Artificial neural network, Natural Language Processing, Intelligent data retrieval system. 1. INTRODUCTION NLP is used to understand the knowledge provided to the system and to process that knowledge. A Question Answering System is used for fast extraction by exempting the user to read all the unnecessary information which might not lead to the answer. There are multiple NLP models used in the Question Answering System. These models are usually symbol matching which makes use of linguistic annotations, structured world knowledge, and semantic parsing. The neural network’s information processing mechanism is similar to the human brain. Due to this, it is used in various artificial intelligence models like pattern recognition, associative memory, etc. and they yield very high performance. Unlike any ML models, it doesn’t require training sets to develop models. The proposed system, that creates a deep neural network from the documents provided by the user and storing them for future use. It will try to imitate the human information recalling feature by processing the document first - understanding it and then try to find the answer to the questions asked. The system will process, comprehend and try to understand what is the answer to the question asked and then try to find the answer from the deep neural network created from the documents previously provided. 2. RELATED WORKS A Question Answering System is a system that reduces the human effort of searching for an answer by extracting it from its database or from the internet. Lu Liu and Jing Luo [1] had proposed a question answering system based on deep learning. Here the system used the CNN model and Word2Vec model to find the correct answer to the question asked. The reason for using these models is that the system was made to work in the Chinese language and in Chinese, there are no spaces between 2 words so eventually, the entire sentence is one single word and also the Chinese language has a lot of ambiguity in it. Sudha Morwal, Nusrat Jahan and Deepti Chopra [2] had proposed Name Entity Recognition using Hidden Markov Model (HMM). The HMM model was used to develop a language- independent NER. Yashvardhan Sharma and Sahil Gupta [3] had proposed a deep learning approach for question answering system, where the system used a basic AIML chat-bot to answer factual questions and then LSTM models and different memory networks to get accuracy as high as 98 percent. 3. PROPOSED SYSTEM AND IMPLEMENTATION 3.1 Proposed System The proposed QAS system comprises two phases namely the learning phase and the extraction phase. The first phase takes a document as an input, processes it and generates or updates the system’s neural network. After the document has been processed, the user can view the document and ask questions. In the second phase, the user can ask questions directly to the system. In this phase, the system takes a question as an input. The system then produces an answer to this question, if it has the answer, and displays the answer. Figure -1: Overview of the system. The block diagram in Figure 2 shows in schematic form the general arrangement of the parts or components of the proposed system.
  • 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 26 Figure -2: Architecture 3.2 Implementation 3.2.1 Learning Phase A. Sentence Analysis This step involves Natural language processing in which knowledge units are derived from the sentence and words(neurons) from knowledge units. B. Network Creation After sentence analysis, an artificial neural network is created from the extracted words. If the words exist in the same knowledge unit then a connection is generated between them. C. Assigning Deep Case The deep case is assigned to the neurons in an artificial neural network to improve its inference capabilities. The deep cases that we are going to consider are shown below. Deep Case Information Agent One who performs the action or main actor. Action The action(event) being performed. Location A location where the action occurred. Time Time of the event. Instrument The object with which action is performed. Patient Action being performed on. State Current condition/state of agent or patient. Table 1: Deep Case 3.2.2. Extraction phase A. Question Analysis In question analysis what answer is to be extracted can be estimated from the type of question asked. For example, if the question includes “where” then the answer will include a location. Words from the question are also extracted to search the neuron and the connection between them. B. Search in Neural Networks The neurons(words) extracted from the question analysis are searched in ANN to find a connection between them. This connection leads to the knowledge layer. C. Backtrack to Knowledge Layer This step involves generating a knowledge unit that possibly can be the answer to the question asked by the user. 3.2.3 Result An experiment was carried out wherein a QAS document was fetched to the system and the results are illustrated below. Step 1: In this step, an input (text data) was provided to the system from the user. Let’s say the document contains the following details. “Shivaji Maharaj was born on 19 February 1630 at Shivneri fort”. Step 2: In this step, the input sentences were divided into words and each word was assigned with a unique ID. The division of each input data and ID assignment is shown in Table 2. ID Words ID1 Shivaji Maharaj ID2 Born ID3 19 February 1630 ID4 Shivneri Fort Table 2: Assignment of id’s to each word Step 3: After assigning Unique ID’s, knowledge units were extracted from the input data. Table 3 shows the extracted knowledge units and ID’s assigned to each unit. Knowledge ID Knowledge K1 Shivaji Maharaj was born on 19 February 1630 K2 Shivaji Maharaj was born in Shivneri fort Table 3: Assigning knowledge ID’s to each word
  • 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 27 Step 4: Word type was assigned to each word after extracting the knowledge unit. The assignment of each word is shown in Table 4. ID Words Word type ID1 Shivaji Maharaj Who ID2 Born What ID3 19 February 1630 When ID4 Shivneri Fort Where Table 4: Assigning word type to each word Step 5: Now deep cases are assigned to each word. Table 5 shows the various deep cases assigned to each word. ID Words Deep cases ID1 Shivaji Maharaj Agent ID2 Born Action ID3 19 February 1630 Date ID4 Shivneri Fort Place Table 5: Assignment of deep cases to each word Step 6: In this step, the relationship between words and knowledge units was determined. First Word Second Word Knowledge ID ID1 ID2 K1 ID2 ID3 K1 ID1 ID3 K1 ID1 ID4 K2 ID1 ID2 K2 ID2 ID4 K2 Table 6: Relationship between knowledge units and words Step 7: Finally a network was generated based on the sentence. The network generated is shown in figure 3. Figure 3: Network Diagram Step 8: Now the neural network is generated. The system has some knowledge and can answer the questions based on this knowledge only. So, when a question is asked to the system our system will analyze each word from the question. “Where was Shivaji Maharaj born?” Table 7 below contains the words in the question. Words Shivaji Maharaj Born Where Table 7: Different words of the question Step 9: Now the words are searched from the network and knowledge units that relate these words are extracted. All the knowledge units that are related to the words in the question are shown in Table 8. First Word Second Word Knowledge ID ID1 ID2 K1 ID2 ID3 K1 ID1 ID3 K1 ID1 ID4 K2 ID1 ID2 K2 ID2 ID4 K2 Table 8: Searching the required knowledge unit In the above sentence, K1 and K2 both relate the word “Shivaji Maharaj” and “born”. K1 answers “when” whereas K2 answers “where”. We evaluate this from the word type table that was created in the learning phase. The user has asked “where” so the output knowledge unit will be K2. Step 10: Finally, when the system will have the required knowledge it will display the selected knowledge unit. i.e. “Shivaji Maharaj was born at Shivneri fort.” 4. CONCLUSION The proposed system is able to answer the complex questions asked by the user based on the provided documents. The system can answer the questions elaboratively unlike the previous systems which answered only simple questions or answered in a yes or no format. The proposed system can be further enhanced to process other types of files. It can also be enhanced to extract information from tables or even images.
  • 4. 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 28 ACKNOWLEDGMENT We would like to thank our project guide Prof. Jyoti Chavhan for her immense cooperation and guidance. We have no words to communicate our appreciation for a person who wholeheartedly supported the project and generously gave her valuable time while making this project. All the inputs provided by her were extremely useful and helped us build this project. She has always been a source of motivation for us. REFERENCES [1] Lu Liu and Jing Luo, “A Question Answering System Based on Deep Learning”, in Springer International Publishing, 2018. [2] Sudha Morwal, Nusrat Jahan and Deepti Chopra, “Name Entity Recognition using Hidden Markov Model (HMM)”, in International Journal on Natural Language Computing (IJNLC), December 2012. [3] Yashvardhan Sharma and Sahil Gupta, “Deep Learning Approach for Question Answering System”, in International Conference on Computational Intelligence and Data Science (ICCIDS 2018) Procedia Computer Science 132(Elsevier), April 2018. [4] Tsukasa Sagara and Masafumi Hagiwara, “Natural language neural network and its application to question- answering system”, in IEEE, 2012. [5] Shivani Singh, Nishtha Das, Rachel Michael, and Dr. Poonam Tanwar, “The Question Answering System using NLP and AL”, in International Journal of Scientific and Engineering Research, December 2016. [6] Karl Moritz Hermann, Tomáš Kočisky, Edward Grefenstette, Lasse Espeholt, Will Kay, Mustafa Suleyman, Phil Blunsom, “Teaching Machine to Read and Comprehend, in arXiv.org, June 2015. [7] Abhishek Kumar, Kunal Thakur, Pranav Nachnekar and Nayan Vaity, “Question-Answer Text Mining using Machine Learning”, in IRJET, March 2019. [8] Mohit Iyyer, Jordan Boyd-Graber, Leonardo Claudino, Richard Socher, and Hal Daumé III, “A Neural Network for Factoid Question Answering over Paragraphs”, in aclweb.org, 2014. [9] Fatima Ashraf, Tansel Ozyer and Reda Alhajj, “Employing Clustering Techniques for Automatic Information Extraction from HTML Documents”, in IEEE, September 2008. [10] C. L. Philip Chen, “Deep Learning for Pattern Learning and Recognition”, in IEEE, 2015. [11] Maryam Habibi and Andrei Popescu-Belis, “Keyword Extraction and Clustering for Document Recommendation in Conversations”, in IEEE, 2015.