SlideShare una empresa de Scribd logo
1 de 10
Descargar para leer sin conexión
Jan Zizka (Eds) : CCSIT, SIPP, AISC, PDCTA - 2013
pp. 397–406, 2013. © CS & IT-CSCP 2013 DOI : 10.5121/csit.2013.3645
A LANGUAGE INDEPENDENT APPROACH
TO DEVELOP URDUIR SYSTEM
Mohd. Shahid Husain, Iram Siraj
Integral University, Lucknow
{siddiquisahil,sirajiram25}@gmail.com
ABSTRACT
This is the era of Information Technology. Today the most important thing is how one gets the
right information at right time. More and more data repositories are now being made available
online. Information retrieval systems or search engines are used to access electronic
information available on the internet. These information retrieval systems depend on the
available tools and techniques for efficient retrieval of information content in response to the
user query needs. During last few years, a wide range of information in Indian regional
languages like Hindi, Urdu, Bengali, Oriya, Tamil and Telugu has been made available on web
in the form of e-data. But the access to these data repositories is very low because the efficient
search engines/retrieval systems supporting these languages are very limited. We have
developed a language independent system to facilitate efficient retrieval of information
available in Urdu language which can be used for other languages as well. The system gives
precision of 0.63 and the recall of the system is 0.8.
KEYWORDS
Information Retrieval, Urdu IR, Stemming
1. INTRODUCTION
The rapid growth of electronic data has attracted the attention in the research and industry
communities for efficient methods for indexing, analysis and retrieval of information from these
large number of data repositories having wide range of data for a vast domain of applications.
In this era of Information technology, more and more data is now being made available on online
data repositories. Almost every information one need is now available on internet. English and
European Languages basically dominated the web since its inception. However, now the web is
getting multi-lingual. Especially, during last few years, a wide range of information in Indian
regional languages like Hindi, Urdu, Bengali, Oriya, Tamil and Telugu has been made available
on web in the form of e-data. But the access to these data repositories is very low because the
efficient search engines/retrieval systems supporting these languages are very limited. Hence
automatic information processing and retrieval is become an urgent requirement. Moreover, since
India is a country having a wide range of regional languages, in the Indian context, the IR
approach should be such that it can handle multilingual document collections.
398 Computer Science & Information Technology (CS & IT)
A number of information retrieval systems are available to support English and some other
European languages. Work involving development of IR systems for Indian languages is only of
recent interests. Development of such systems is constraint by the lack of the availability of
linguistic resources and tools in these languages. The reported works in this direction for Indian
languages were focused on Hindi, Tamil, Bengali, Marathi and Oriya. But there is no reported
work is done for Urdu language.
There is no sufficient amount of resources available to retrieve information effectively available
on internet in Indian Languages. So there is a need of some efficient tools and techniques to
represent, express, store and retrieve the information available in different languages.
The present work focuses on development of an efficient Information Retrieval system for Urdu
Language.
2. INFORMATION RETRIEVAL
Information Retrieval is the sub domain of text mining and natural language processing. This is
the science in which the software system retrieves the relevant documents or the information in
response to the user query need. The Information Retrieval system match the given user quires
with the data corpus available and rank the documents on the basis of the relevance with the user
need. Then the IR system returns the top ranked documents containing relevant information to the
user query.
IR systems may be monolingual, bi-lingual or multilingual. The main objective of this thesis
work is the development of the mono-lingual information retrieval system for Urdu language.
To retrieve the relevant information on the basis of user query
• The IR system breaks the query statement and the data corpus in a standard format.
• The query is then matched with the documents presented in the corpus and ranked on the
basis of the relevance with the query.
• Top ranked documents are then retrieved.
There are various approaches for converting the query statement and the corpus data in a
standard format like stemming, morphological analysis, Stop word removal, indexing etc.
Similarly there are various techniques or methods for query matching like cosine similarity,
Euclidean distance etc.
The efficiency of any Information Retrieval system depends on the term weighting schemes,
strategies used for indexing the documents and the retrieval model used to develop the IR system.
2.1 Stemmer
Stemming is the backbone process of any IR system. Stemmers are used for getting base or root
form (i.e. stems) from inflected (or sometimes derived) words. Unlike morphological analyzer,
where the root words have some lexical meaning, it’s not necessary with the case of a stemmer.
Computer Science & Information Technology (CS & IT) 399
A stemmer is used to remove the inflected part of the words to get their root form. Stemming is
used to reduce the overhead of indexing and to improve the performance of an IR system. More
specifically, stemmer increases recall of the search engine, whereas Precision decreases. However
sometimes precision may increases depending upon the information need of the users. Stemming
is the basic process of any query system, because a user who needs some information on plays
may also be interested in documents that contain the word play (without the s).
2.2 Term Frequency
This isa local parameter which indicates the frequency or the count of a term within a document.
This parameter gives the relevance of a document with a user query term on the basis of how
many times that term occurs in that particular document.
Mathematically it can be given as: tfij=nij
Where nij is the frequency or the number of occurrence of term ti in the document dj.
2.3 Document Frequency
This is a global parameter and attempts to include distribution of term across the documents. This
parameter gives the importance of the term across the document corpus. The number of the
documents in the corpus containing the considered term t is called the document frequency. To
normalize, it is divided by the total number of the documents in the corpus.
Mathematically it can be given as: dfi=ni/n
Where niis the number of documents that contains termtiand the total number of the documents in
the corpus is n.
idf is the inverse of this document frequency.
2.4 The third factor which may affect the weighting function is the length of the
document.
Hence the term weighting function can be represented by a triplet ABC
here A- tf component
B- idf component
C- Length normalizing component
The factor Term frequency within a document i.e. A may have following options:
400 Computer Science & Information Technology (CS & IT)
Table 1: different options for considering term frequency
N tf = tfij (Raw term
frequency)
B tf = 0 or 1 (binary
weight)
a (Augmented
term
frequency)
l tf = ln(tfij) + 1.0 Logarithmic
term
frequency
The options for the factor inverse document frequency i.e. B is:
Table 2: different options for considering inverse document frequency
N Wt=tf No conversion i.e.
idf is not taken
T Wt=tf*idf Idf is taken into
account
The options for the factor document length i.e. C is:
Table 3: different options for considering document length
N Wij=wt No conversion
C Wij=wt/ sqrt(sum of (wts squared)) Normalized weight
2.5 Indexing
To represent the documents in the corpus and the user query statement indexing is done. That is
the process of transforming document text and given query statement to some representation of it
is known as indexing.
There are different index structures which can be used for indexing. The most commonly used
data structure by IR system is inverted index.
Indexing techniques concerned with the selection of good document descriptors, such as
keywords or terms, to describe information content of the documents.
A good descriptor is one that helps in describing the content of the document and in
discriminating the document from other documents in the collection.
The most widely used method is to represent the query and the document as a set of tokens i.e.
index terms or keywords.
For indexing a document, there are different indexing strategies as given below :






+=
j
ij
Dinmax tf
tf
0.50.5tf
Computer Science & Information Technology (CS & IT) 401
2.5.1 Character Indexing: in this scheme the tokens used for representing the documents are
the characters present in the document.
2.5.2 Word Indexing: this approach uses words in the document to represent it.
2.5.3 N-gram indexing: this method breaks the words into n-grams, these n-grams are used to
index the documents.
2.5.4 Compound Word Indexing: in this method bi-words or tri-words are used for indexing.
2.6 Information Retrieval models
An IR model defines the following aspects of retrieval procedure of a search engine:
How the documents and user’s queries are represented
a. How system retrieves relevant documents according to users’ queries &
b. How retrieved documents are ranked.
Any typical IR model comprises of the following:
a. A model for documents
b. A model for queries and
c. Matching function which compares queries to documents.
The IR models can be categorized as:
2.6.1 Classical models of IR: this is the simplest IR model. It is based on the well recognized
and easy to understood knowledge of mathematics.
Classical models are easy to implement and are very efficient.
The three classical information retrieval models are:
-Boolean
-Vector and
-Probabilistic models
2.6.2 Non-Classical models of IR: Non-classical information retrieval models are based on
principles like information logic model, situation theory model and interaction model. They are
not based on concepts like similarity, probability, Boolean operations etc. on which classical
retrieval models are based on.
2.6.3 Alternative models of IR:Alternative models are advanced classical IR models. These
models make use of specific techniques from other fields like Cluster model, fuzzy model and
latent semantic indexing (LSI) models.
2.6.4 Boolean Retrieval model: This is the simplest retrieval model which retrieves the
information on the basis of the query given in Boolean expression. Boolean queries are queries
that uses And, OR and Not Boolean operations to join the query terms.
402 Computer Science & Information Technology (CS & IT)
The one drawback of Boolean information retrieval model is that it requires Boolean query
instead of free text. The second drawback is that this model cannot rank the documents on the
basis of relevance with the user query. It just gives the document if it contains the query word,
regardless the term count in the document or the actual importance of that query word in the
document.
2.6.5 Vector Space model: This model represents documents and queries as vectors of features
representing terms. Features are assigned some numerical value that is usually some function of
frequency of terms. In this model, each document d is viewed as a vector of tf×idf values, one
component for each term. So we have a vector space where
a. Terms are axes
b. documents live in this space
Ranking algorithm compute similarity between document and query vectors to yield a retrieval
score to each document. The Postulate is: Documents related to the same information are close
together in the vector space.
2.6.6 Probabilistic retrieval model: In this model, initialy some set of documents is retrieved by
using vectorial model or boolean model. The user inspects these documents looking for the
relevant ones and gives his feed back. IR system uses this feedback information to refine the
search criteria.
This process is repeated, untill user gets the desired information in response to his needs.
2.7 Similarity measures
To retrieve the most relevant documents with the user information need, the IR system matches
the documents available in the corpus with the given user query. To perform this process different
similarity measures are used. For example Euclidean distance, cosine similarity.
2.7.1 Cosine Similarity: We regard the query as short document. The documents present in the
corpus and the query are represented by the vectors in the vector space with features as axes.
The IR system rank the documents by the closeness of document vectors to the query vectors. IR
system then retrieve the top ranked documents to the user.
Fig. 1: A VSM model representing 3 documents and a query
Computer Science & Information Technology (CS & IT) 403
The above diagram shows a vector space model where axes ti and tj are the terms used for
indexing.
2.8 Metrics for IR Evaluation
The aim of any Information Retrieval system is to search document in responce to a user query
relavant to his information need. The performance of IR systems is evaluated on the basis of how
relavent documents it retrieve.
Relevance depends upon a specific user’s judgment. It is subjective in nature. The true relevance
of the retrieved document can be judged by the user only, on the basis of his information need.
For same query statement, the desired information need may differ from user to user.
Traditionally the evaluation of IR systems has been done on a set of queries and test document
collections. For each test query a set of ranked relavant documents is created manually then the
system result is cross checked by it.
There are many retrieval models/ algorithms/ systems. Different performance metrics are used to
assess how effeciently an IR system retrieve the documents in responce to a users information
need.
Different Criteria's for evaluation of an IR system are:
a. Coverage of the collection
b. Time lag
c. Presentation format
d. User effort
e. Precision
f. Recall
Effectiveness is the performance measure of any IR system which describes, how much the IR
system satisfy a user’s information need by retrieving relevant documents.
Aspects of effectiveness include:
a. Whether the retrieved documents are pertinent to the information need of the user.
b. Whether the retrieved documents are ranked according to the relevance with the user
query.
c. Whether the IR system returns a reasonable number of relevant documents present in the
corpus to the user etc.
3. OUR APPROACH
In this work, to develop an Information Retrieval system for Urdu language, the following
methods and evaluation parameters are used.
3.1 Stemmer:For Developing Stemmer we have used an unsupervised approach [1] which gives
accuracy of 84.2.
404 Computer Science & Information Technology (CS & IT)
3.2 Term Weighting scheme: For term weighting we have used the tf*idf
3.3 Indexing Scheme: in this work the query statement and the documents are represented
using the word indexing strategy.
3.4 Retrieval Model: To implement our IR system we have used the vector space model.
3.5 Encoding Scheme: As the system focuses on Urdu language, to access the data UTF8
character encoding is used.
3.6 Similarity Measure: for getting documents which are more closely related to the query
i.e.to measure the similarity between different documents in the corpus and the query statement,
the cosine similarity measure is used.
3.7 Ranking of the document: for ranking of the retrieved documents in order to their
relevance with the query, cosine similarity values are used. The document having higher cosine
value (min angular distance) with the query will be more similar i.e. contains the query terms
more frequently and hence these documents will be considered more relevant to the user query.
4. EXPERIMENT
The data set used in this thesis for the training and testing of the developed Urdu IR system is
taken from Emilie corpus. In this corpus documents are in xml format.
The data set taken from EMILLE corpus a tagged data set consist of documents having
information related to health issues, road safety issues, education issues, legal social issues, social
issues, housing issues etc.
The testing data set consist of documents from various domains such as:
Table 4: dataset specification used for Urdu IR
Domain Number of
Documents
Number of
words
Health 33 223412
Education 8 115264
Housing 8 120327
Legal 8 108055
Social issues 12 146083
Homeopathy 32 527360
Drama 13 135680
Myths 10 202880
Story and Novel 21 300160
Media 15 224000
Science 47 704000
History 33 502400
Politics 21 728320
Computer Science & Information Technology (CS & IT) 405
Psychology 27 555520
Religion 34 556800
Sociology 21 398080
Miscellaneous 48 985374
A Query set consist of 200 queries is prepared manually for training and testing of the IR system.
5. RESULTS AND DISCUSSIONS
For testing purpose of the developed Information Retrieval system, a test collection of 350
documents have been used. A set of 200 queries was constructed on these 350 documents. This
query set is used to evaluate the developed Urdu IR.
Table 5: results of the developed Urdu IR system testing
Number of
documents
Number of
queries
Precision Recall
Min (avg.) Max (avg.) Min (avg.) Max (avg.)
350 200 0.13 0.63 0.5 0.8
As shown in the above table, the system has value of 0.13 as the minimum average precision and
maximum average precision value of the system is 0.63.
Similarly the minimum average recall value for the system is 0.5 and maximum average recall
value was found out to be 0.8.
6. CONCLUSION AND FUTURE WORK
In this paper we have discussed various indexing schemes and IR models. We have used tf*idf
scheme for indexing and to implement the IR system VSM (Vector Space Model) is used.
The experimental result shows that the average recall of the developed IR system is 0.8 with 0.3
precision.
IR is one of the hottest research fields. One can do a lot new research to provide efficient IR
system which can satisfy the user’s information needs. A lot of research is needed to develop
language independent approaches to support IR systems for multilingual data collections.
REFERENCES
[1] MohdShahid Husain et. al. “A language Independent Approach to develop Urdu stemmer”.
Proceedings of the second International Conference on Advances in Computing and Information
Technology. 2012.
[2] Rizvi, J et. al. “Modeling case marking system of Urdu-Hindi languages by using semantic
information”. Proceedings of the IEEE International Conference on Natural Language Processing and
Knowledge Engineering (IEEE NLP-KE '05). 2005.
[3] Butt, M. King, T. “Non-Nominative Subjects in Urdu: A Computational Analysis”. Proceedings of
the International Symposium on Non-nominative Subjects, Tokyo, December, pp. 525-548, 2001.
[4] Chen, A. Gey, F. “Building and Arabic Stemmer for Information Retrieval”. Proceedings of the Text
Retrieval Conference, 47, 2002.
406 Computer Science & Information Technology (CS & IT)
[5] R. Wicentowski. "Multilingual Noise-Robust Supervised Morphological Analysis using the Word
Frame Model." In Proceedings of Seventh Meeting of the ACL Special Interest Group on
Computational Phonology (SIGPHON), pp. 70-77, 2004.
[6] Rizvi, Hussain M. “Analysis, Design and Implementation of Urdu Morphological Analyzer”.
SCONEST, 1-7, 2005.
[7] Krovetz, R. “View Morphology as an Inference Process”. In the Proceedings of 5th International
Conference on Research and Development in Information Retrieval, 1993.
[8] Thabet, N. “Stemming the Qur’an”. In the Proceedings of the Workshop on Computational
Approaches to Arabic Script-based Languages, 2004.
[9] Paik, Pauri. “A Simple Stemmer for Inflectional Languages”. FIRE 2008.
[10] Sharifloo, A.A., Shamsfard M. “A Bottom up Approach to Persian Stemming”. IJCNLP, 2008
[11] Kumar, A. and Siddiqui, T. “An Unsupervised Hindi Stemmer with Heuristics Improvements”. In
Proceedings of the Second Workshop on Analytics for Noisy Unstructured Text Data, 2008.
[12] Kumar, M. S. and Murthy, K. N. “Corpus Based Statistical Approach for Stemming Telugu”.
Creation of Lexical Resources for Indian Language Computing and Processing (LRIL), C-DAC,
Mumbai, India, 2007.
[13] Qurat-ul-AinAkram, AsmaNaseer, SarmadHussain. “Assas-Band, an Affix-Exception-List Based
Urdu Stemmer”. Proceedings of ACL-IJCNLP 2009.
[14] http://en.wikipedia.org/wiki/Urdu
[15] http://www.bbc.co.uk/languages/other/guide/urdu/steps.shtml
[16] http://www.andaman.org/BOOK/reprints/weber/rep-weber.htm
[17] Natural Language processing and Information Retrieval by TanveerSiddiqui, U S Tiwary.
[18] Information retrieval: data structure and algorithms by William B. Frakes, Ricardo Baeza-Yates.
[19] http://www.crulp.org/software/ling_resources.htm

Más contenido relacionado

La actualidad más candente

Improving Annotations in Digital Documents using Document Features and Fuzzy ...
Improving Annotations in Digital Documents using Document Features and Fuzzy ...Improving Annotations in Digital Documents using Document Features and Fuzzy ...
Improving Annotations in Digital Documents using Document Features and Fuzzy ...IRJET Journal
 
Web_Mining_Overview_Nfaoui_El_Habib
Web_Mining_Overview_Nfaoui_El_HabibWeb_Mining_Overview_Nfaoui_El_Habib
Web_Mining_Overview_Nfaoui_El_HabibEl Habib NFAOUI
 
76 s201906
76 s20190676 s201906
76 s201906IJRAT
 
Information retrieval-systems notes
Information retrieval-systems notesInformation retrieval-systems notes
Information retrieval-systems notesBAIRAVI T
 
Top 10 cited articles in nlp
Top 10 cited articles in nlpTop 10 cited articles in nlp
Top 10 cited articles in nlpkevig
 
The Process of Information extraction through Natural Language Processing
The Process of Information extraction through Natural Language ProcessingThe Process of Information extraction through Natural Language Processing
The Process of Information extraction through Natural Language ProcessingWaqas Tariq
 
A NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIR
A NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIRA NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIR
A NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIRcscpconf
 
Text databases and information retrieval
Text databases and information retrievalText databases and information retrieval
Text databases and information retrievalunyil96
 
Design of A Spell Corrector For Hausa Language
Design of A Spell Corrector For Hausa LanguageDesign of A Spell Corrector For Hausa Language
Design of A Spell Corrector For Hausa LanguageWaqas Tariq
 
Text mining open source tokenization
Text mining open source tokenizationText mining open source tokenization
Text mining open source tokenizationaciijournal
 
Dictionary based concept mining an application for turkish
Dictionary based concept mining  an application for turkishDictionary based concept mining  an application for turkish
Dictionary based concept mining an application for turkishcsandit
 
An analysis on Filter for Spam Mail
An analysis on Filter for Spam MailAn analysis on Filter for Spam Mail
An analysis on Filter for Spam MailAM Publications
 
NAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATA
NAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATANAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATA
NAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATAijnlc
 
Survey on Indian CLIR and MT systems in Marathi Language
Survey on Indian CLIR and MT systems in Marathi LanguageSurvey on Indian CLIR and MT systems in Marathi Language
Survey on Indian CLIR and MT systems in Marathi LanguageEditor IJCATR
 
Accessing database using nlp
Accessing database using nlpAccessing database using nlp
Accessing database using nlpeSAT Journals
 
An Investigation of Keywords Extraction from Textual Documents using Word2Ve...
 An Investigation of Keywords Extraction from Textual Documents using Word2Ve... An Investigation of Keywords Extraction from Textual Documents using Word2Ve...
An Investigation of Keywords Extraction from Textual Documents using Word2Ve...IJCSIS Research Publications
 

La actualidad más candente (19)

Improving Annotations in Digital Documents using Document Features and Fuzzy ...
Improving Annotations in Digital Documents using Document Features and Fuzzy ...Improving Annotations in Digital Documents using Document Features and Fuzzy ...
Improving Annotations in Digital Documents using Document Features and Fuzzy ...
 
Web_Mining_Overview_Nfaoui_El_Habib
Web_Mining_Overview_Nfaoui_El_HabibWeb_Mining_Overview_Nfaoui_El_Habib
Web_Mining_Overview_Nfaoui_El_Habib
 
76 s201906
76 s20190676 s201906
76 s201906
 
Information retrieval-systems notes
Information retrieval-systems notesInformation retrieval-systems notes
Information retrieval-systems notes
 
Top 10 cited articles in nlp
Top 10 cited articles in nlpTop 10 cited articles in nlp
Top 10 cited articles in nlp
 
The Process of Information extraction through Natural Language Processing
The Process of Information extraction through Natural Language ProcessingThe Process of Information extraction through Natural Language Processing
The Process of Information extraction through Natural Language Processing
 
A NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIR
A NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIRA NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIR
A NOVEL APPROACH OF CLASSIFICATION TECHNIQUES FOR CLIR
 
Lec1,2
Lec1,2Lec1,2
Lec1,2
 
Text databases and information retrieval
Text databases and information retrievalText databases and information retrieval
Text databases and information retrieval
 
Design of A Spell Corrector For Hausa Language
Design of A Spell Corrector For Hausa LanguageDesign of A Spell Corrector For Hausa Language
Design of A Spell Corrector For Hausa Language
 
Text mining open source tokenization
Text mining open source tokenizationText mining open source tokenization
Text mining open source tokenization
 
[IJET-V2I3P19] Authors: Priyanka Sharma
[IJET-V2I3P19] Authors: Priyanka Sharma[IJET-V2I3P19] Authors: Priyanka Sharma
[IJET-V2I3P19] Authors: Priyanka Sharma
 
Dictionary based concept mining an application for turkish
Dictionary based concept mining  an application for turkishDictionary based concept mining  an application for turkish
Dictionary based concept mining an application for turkish
 
An analysis on Filter for Spam Mail
An analysis on Filter for Spam MailAn analysis on Filter for Spam Mail
An analysis on Filter for Spam Mail
 
NAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATA
NAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATANAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATA
NAMED ENTITY RECOGNITION FROM BENGALI NEWSPAPER DATA
 
Survey on Indian CLIR and MT systems in Marathi Language
Survey on Indian CLIR and MT systems in Marathi LanguageSurvey on Indian CLIR and MT systems in Marathi Language
Survey on Indian CLIR and MT systems in Marathi Language
 
Accessing database using nlp
Accessing database using nlpAccessing database using nlp
Accessing database using nlp
 
Accessing database using nlp
Accessing database using nlpAccessing database using nlp
Accessing database using nlp
 
An Investigation of Keywords Extraction from Textual Documents using Word2Ve...
 An Investigation of Keywords Extraction from Textual Documents using Word2Ve... An Investigation of Keywords Extraction from Textual Documents using Word2Ve...
An Investigation of Keywords Extraction from Textual Documents using Word2Ve...
 

Similar a A LANGUAGE INDEPENDENT APPROACH TO DEVELOP URDUIR SYSTEM

CANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEM
CANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEMCANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEM
CANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEMIRJET Journal
 
Indian Language Text Representation and Categorization Using Supervised Learn...
Indian Language Text Representation and Categorization Using Supervised Learn...Indian Language Text Representation and Categorization Using Supervised Learn...
Indian Language Text Representation and Categorization Using Supervised Learn...ijbuiiir1
 
BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)
BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)
BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)kevig
 
A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...
A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...
A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...IRJET Journal
 
A novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching techniqueA novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching techniqueeSAT Journals
 
A Dialogue System for Telugu, a Resource-Poor Language
A Dialogue System for Telugu, a Resource-Poor LanguageA Dialogue System for Telugu, a Resource-Poor Language
A Dialogue System for Telugu, a Resource-Poor LanguageSravanthi Mullapudi
 
Modern Association Rule Mining Methods
Modern Association Rule Mining MethodsModern Association Rule Mining Methods
Modern Association Rule Mining Methodsijcsity
 
IRJET- Determining Document Relevance using Keyword Extraction
IRJET-  	  Determining Document Relevance using Keyword ExtractionIRJET-  	  Determining Document Relevance using Keyword Extraction
IRJET- Determining Document Relevance using Keyword ExtractionIRJET Journal
 
6.domain extraction from research papers
6.domain extraction from research papers6.domain extraction from research papers
6.domain extraction from research papersEditorJST
 
02 20274 improved ichi square...
02 20274 improved ichi square...02 20274 improved ichi square...
02 20274 improved ichi square...IAESIJEECS
 
HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...
HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...
HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...IJCSEA Journal
 
Algorithm for calculating relevance of documents in information retrieval sys...
Algorithm for calculating relevance of documents in information retrieval sys...Algorithm for calculating relevance of documents in information retrieval sys...
Algorithm for calculating relevance of documents in information retrieval sys...IRJET Journal
 
Extraction and Retrieval of Web based Content in Web Engineering
Extraction and Retrieval of Web based Content in Web EngineeringExtraction and Retrieval of Web based Content in Web Engineering
Extraction and Retrieval of Web based Content in Web EngineeringIRJET Journal
 
A Review on the Cross and Multilingual Information Retrieval
A Review on the Cross and Multilingual Information RetrievalA Review on the Cross and Multilingual Information Retrieval
A Review on the Cross and Multilingual Information Retrievaldannyijwest
 
Ontology Based Approach for Semantic Information Retrieval System
Ontology Based Approach for Semantic Information Retrieval SystemOntology Based Approach for Semantic Information Retrieval System
Ontology Based Approach for Semantic Information Retrieval SystemIJTET Journal
 
DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...
DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...
DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...cscpconf
 

Similar a A LANGUAGE INDEPENDENT APPROACH TO DEVELOP URDUIR SYSTEM (20)

CANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEM
CANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEMCANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEM
CANDIDATE SET KEY DOCUMENT RETRIEVAL SYSTEM
 
Indian Language Text Representation and Categorization Using Supervised Learn...
Indian Language Text Representation and Categorization Using Supervised Learn...Indian Language Text Representation and Categorization Using Supervised Learn...
Indian Language Text Representation and Categorization Using Supervised Learn...
 
BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)
BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)
BENGALI INFORMATION RETRIEVAL SYSTEM (BIRS)
 
A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...
A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...
A Robust Keywords Based Document Retrieval by Utilizing Advanced Encryption S...
 
A novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching techniqueA novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching technique
 
A Dialogue System for Telugu, a Resource-Poor Language
A Dialogue System for Telugu, a Resource-Poor LanguageA Dialogue System for Telugu, a Resource-Poor Language
A Dialogue System for Telugu, a Resource-Poor Language
 
Modern Association Rule Mining Methods
Modern Association Rule Mining MethodsModern Association Rule Mining Methods
Modern Association Rule Mining Methods
 
IRJET- Determining Document Relevance using Keyword Extraction
IRJET-  	  Determining Document Relevance using Keyword ExtractionIRJET-  	  Determining Document Relevance using Keyword Extraction
IRJET- Determining Document Relevance using Keyword Extraction
 
6.domain extraction from research papers
6.domain extraction from research papers6.domain extraction from research papers
6.domain extraction from research papers
 
02 20274 improved ichi square...
02 20274 improved ichi square...02 20274 improved ichi square...
02 20274 improved ichi square...
 
HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...
HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...
HIGH SPEED DATA RETRIEVAL FROM NATIONAL DATA CENTER (NDC) REDUCING TIME AND I...
 
Algorithm for calculating relevance of documents in information retrieval sys...
Algorithm for calculating relevance of documents in information retrieval sys...Algorithm for calculating relevance of documents in information retrieval sys...
Algorithm for calculating relevance of documents in information retrieval sys...
 
[IJET V2I3P7] Authors: Muthe Sandhya, Shitole Sarika, Sinha Anukriti, Aghav S...
[IJET V2I3P7] Authors: Muthe Sandhya, Shitole Sarika, Sinha Anukriti, Aghav S...[IJET V2I3P7] Authors: Muthe Sandhya, Shitole Sarika, Sinha Anukriti, Aghav S...
[IJET V2I3P7] Authors: Muthe Sandhya, Shitole Sarika, Sinha Anukriti, Aghav S...
 
Ijetcas14 409
Ijetcas14 409Ijetcas14 409
Ijetcas14 409
 
Extraction and Retrieval of Web based Content in Web Engineering
Extraction and Retrieval of Web based Content in Web EngineeringExtraction and Retrieval of Web based Content in Web Engineering
Extraction and Retrieval of Web based Content in Web Engineering
 
Text mining
Text miningText mining
Text mining
 
A Review on the Cross and Multilingual Information Retrieval
A Review on the Cross and Multilingual Information RetrievalA Review on the Cross and Multilingual Information Retrieval
A Review on the Cross and Multilingual Information Retrieval
 
Ontology Based Approach for Semantic Information Retrieval System
Ontology Based Approach for Semantic Information Retrieval SystemOntology Based Approach for Semantic Information Retrieval System
Ontology Based Approach for Semantic Information Retrieval System
 
DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...
DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...
DOMAIN KEYWORD EXTRACTION TECHNIQUE: A NEW WEIGHTING METHOD BASED ON FREQUENC...
 
50120140503012
5012014050301250120140503012
50120140503012
 

Más de cscpconf

ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR cscpconf
 
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATIONcscpconf
 
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...cscpconf
 
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIESPROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIEScscpconf
 
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICA SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICcscpconf
 
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS cscpconf
 
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS cscpconf
 
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICTWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICcscpconf
 
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINDETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINcscpconf
 
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...cscpconf
 
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMIMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMcscpconf
 
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...cscpconf
 
AUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWAUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWcscpconf
 
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKCLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKcscpconf
 
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...cscpconf
 
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAPROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAcscpconf
 
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHCHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHcscpconf
 
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...cscpconf
 
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGESOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGEcscpconf
 
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTGENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTcscpconf
 

Más de cscpconf (20)

ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
 
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
 
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
 
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIESPROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
 
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICA SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
 
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
 
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
 
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICTWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
 
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINDETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
 
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
 
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMIMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
 
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
 
AUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWAUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEW
 
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKCLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
 
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
 
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAPROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
 
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHCHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
 
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
 
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGESOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
 
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTGENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
 

Último

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 

Último (20)

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 

A LANGUAGE INDEPENDENT APPROACH TO DEVELOP URDUIR SYSTEM

  • 1. Jan Zizka (Eds) : CCSIT, SIPP, AISC, PDCTA - 2013 pp. 397–406, 2013. © CS & IT-CSCP 2013 DOI : 10.5121/csit.2013.3645 A LANGUAGE INDEPENDENT APPROACH TO DEVELOP URDUIR SYSTEM Mohd. Shahid Husain, Iram Siraj Integral University, Lucknow {siddiquisahil,sirajiram25}@gmail.com ABSTRACT This is the era of Information Technology. Today the most important thing is how one gets the right information at right time. More and more data repositories are now being made available online. Information retrieval systems or search engines are used to access electronic information available on the internet. These information retrieval systems depend on the available tools and techniques for efficient retrieval of information content in response to the user query needs. During last few years, a wide range of information in Indian regional languages like Hindi, Urdu, Bengali, Oriya, Tamil and Telugu has been made available on web in the form of e-data. But the access to these data repositories is very low because the efficient search engines/retrieval systems supporting these languages are very limited. We have developed a language independent system to facilitate efficient retrieval of information available in Urdu language which can be used for other languages as well. The system gives precision of 0.63 and the recall of the system is 0.8. KEYWORDS Information Retrieval, Urdu IR, Stemming 1. INTRODUCTION The rapid growth of electronic data has attracted the attention in the research and industry communities for efficient methods for indexing, analysis and retrieval of information from these large number of data repositories having wide range of data for a vast domain of applications. In this era of Information technology, more and more data is now being made available on online data repositories. Almost every information one need is now available on internet. English and European Languages basically dominated the web since its inception. However, now the web is getting multi-lingual. Especially, during last few years, a wide range of information in Indian regional languages like Hindi, Urdu, Bengali, Oriya, Tamil and Telugu has been made available on web in the form of e-data. But the access to these data repositories is very low because the efficient search engines/retrieval systems supporting these languages are very limited. Hence automatic information processing and retrieval is become an urgent requirement. Moreover, since India is a country having a wide range of regional languages, in the Indian context, the IR approach should be such that it can handle multilingual document collections.
  • 2. 398 Computer Science & Information Technology (CS & IT) A number of information retrieval systems are available to support English and some other European languages. Work involving development of IR systems for Indian languages is only of recent interests. Development of such systems is constraint by the lack of the availability of linguistic resources and tools in these languages. The reported works in this direction for Indian languages were focused on Hindi, Tamil, Bengali, Marathi and Oriya. But there is no reported work is done for Urdu language. There is no sufficient amount of resources available to retrieve information effectively available on internet in Indian Languages. So there is a need of some efficient tools and techniques to represent, express, store and retrieve the information available in different languages. The present work focuses on development of an efficient Information Retrieval system for Urdu Language. 2. INFORMATION RETRIEVAL Information Retrieval is the sub domain of text mining and natural language processing. This is the science in which the software system retrieves the relevant documents or the information in response to the user query need. The Information Retrieval system match the given user quires with the data corpus available and rank the documents on the basis of the relevance with the user need. Then the IR system returns the top ranked documents containing relevant information to the user query. IR systems may be monolingual, bi-lingual or multilingual. The main objective of this thesis work is the development of the mono-lingual information retrieval system for Urdu language. To retrieve the relevant information on the basis of user query • The IR system breaks the query statement and the data corpus in a standard format. • The query is then matched with the documents presented in the corpus and ranked on the basis of the relevance with the query. • Top ranked documents are then retrieved. There are various approaches for converting the query statement and the corpus data in a standard format like stemming, morphological analysis, Stop word removal, indexing etc. Similarly there are various techniques or methods for query matching like cosine similarity, Euclidean distance etc. The efficiency of any Information Retrieval system depends on the term weighting schemes, strategies used for indexing the documents and the retrieval model used to develop the IR system. 2.1 Stemmer Stemming is the backbone process of any IR system. Stemmers are used for getting base or root form (i.e. stems) from inflected (or sometimes derived) words. Unlike morphological analyzer, where the root words have some lexical meaning, it’s not necessary with the case of a stemmer.
  • 3. Computer Science & Information Technology (CS & IT) 399 A stemmer is used to remove the inflected part of the words to get their root form. Stemming is used to reduce the overhead of indexing and to improve the performance of an IR system. More specifically, stemmer increases recall of the search engine, whereas Precision decreases. However sometimes precision may increases depending upon the information need of the users. Stemming is the basic process of any query system, because a user who needs some information on plays may also be interested in documents that contain the word play (without the s). 2.2 Term Frequency This isa local parameter which indicates the frequency or the count of a term within a document. This parameter gives the relevance of a document with a user query term on the basis of how many times that term occurs in that particular document. Mathematically it can be given as: tfij=nij Where nij is the frequency or the number of occurrence of term ti in the document dj. 2.3 Document Frequency This is a global parameter and attempts to include distribution of term across the documents. This parameter gives the importance of the term across the document corpus. The number of the documents in the corpus containing the considered term t is called the document frequency. To normalize, it is divided by the total number of the documents in the corpus. Mathematically it can be given as: dfi=ni/n Where niis the number of documents that contains termtiand the total number of the documents in the corpus is n. idf is the inverse of this document frequency. 2.4 The third factor which may affect the weighting function is the length of the document. Hence the term weighting function can be represented by a triplet ABC here A- tf component B- idf component C- Length normalizing component The factor Term frequency within a document i.e. A may have following options:
  • 4. 400 Computer Science & Information Technology (CS & IT) Table 1: different options for considering term frequency N tf = tfij (Raw term frequency) B tf = 0 or 1 (binary weight) a (Augmented term frequency) l tf = ln(tfij) + 1.0 Logarithmic term frequency The options for the factor inverse document frequency i.e. B is: Table 2: different options for considering inverse document frequency N Wt=tf No conversion i.e. idf is not taken T Wt=tf*idf Idf is taken into account The options for the factor document length i.e. C is: Table 3: different options for considering document length N Wij=wt No conversion C Wij=wt/ sqrt(sum of (wts squared)) Normalized weight 2.5 Indexing To represent the documents in the corpus and the user query statement indexing is done. That is the process of transforming document text and given query statement to some representation of it is known as indexing. There are different index structures which can be used for indexing. The most commonly used data structure by IR system is inverted index. Indexing techniques concerned with the selection of good document descriptors, such as keywords or terms, to describe information content of the documents. A good descriptor is one that helps in describing the content of the document and in discriminating the document from other documents in the collection. The most widely used method is to represent the query and the document as a set of tokens i.e. index terms or keywords. For indexing a document, there are different indexing strategies as given below :       += j ij Dinmax tf tf 0.50.5tf
  • 5. Computer Science & Information Technology (CS & IT) 401 2.5.1 Character Indexing: in this scheme the tokens used for representing the documents are the characters present in the document. 2.5.2 Word Indexing: this approach uses words in the document to represent it. 2.5.3 N-gram indexing: this method breaks the words into n-grams, these n-grams are used to index the documents. 2.5.4 Compound Word Indexing: in this method bi-words or tri-words are used for indexing. 2.6 Information Retrieval models An IR model defines the following aspects of retrieval procedure of a search engine: How the documents and user’s queries are represented a. How system retrieves relevant documents according to users’ queries & b. How retrieved documents are ranked. Any typical IR model comprises of the following: a. A model for documents b. A model for queries and c. Matching function which compares queries to documents. The IR models can be categorized as: 2.6.1 Classical models of IR: this is the simplest IR model. It is based on the well recognized and easy to understood knowledge of mathematics. Classical models are easy to implement and are very efficient. The three classical information retrieval models are: -Boolean -Vector and -Probabilistic models 2.6.2 Non-Classical models of IR: Non-classical information retrieval models are based on principles like information logic model, situation theory model and interaction model. They are not based on concepts like similarity, probability, Boolean operations etc. on which classical retrieval models are based on. 2.6.3 Alternative models of IR:Alternative models are advanced classical IR models. These models make use of specific techniques from other fields like Cluster model, fuzzy model and latent semantic indexing (LSI) models. 2.6.4 Boolean Retrieval model: This is the simplest retrieval model which retrieves the information on the basis of the query given in Boolean expression. Boolean queries are queries that uses And, OR and Not Boolean operations to join the query terms.
  • 6. 402 Computer Science & Information Technology (CS & IT) The one drawback of Boolean information retrieval model is that it requires Boolean query instead of free text. The second drawback is that this model cannot rank the documents on the basis of relevance with the user query. It just gives the document if it contains the query word, regardless the term count in the document or the actual importance of that query word in the document. 2.6.5 Vector Space model: This model represents documents and queries as vectors of features representing terms. Features are assigned some numerical value that is usually some function of frequency of terms. In this model, each document d is viewed as a vector of tf×idf values, one component for each term. So we have a vector space where a. Terms are axes b. documents live in this space Ranking algorithm compute similarity between document and query vectors to yield a retrieval score to each document. The Postulate is: Documents related to the same information are close together in the vector space. 2.6.6 Probabilistic retrieval model: In this model, initialy some set of documents is retrieved by using vectorial model or boolean model. The user inspects these documents looking for the relevant ones and gives his feed back. IR system uses this feedback information to refine the search criteria. This process is repeated, untill user gets the desired information in response to his needs. 2.7 Similarity measures To retrieve the most relevant documents with the user information need, the IR system matches the documents available in the corpus with the given user query. To perform this process different similarity measures are used. For example Euclidean distance, cosine similarity. 2.7.1 Cosine Similarity: We regard the query as short document. The documents present in the corpus and the query are represented by the vectors in the vector space with features as axes. The IR system rank the documents by the closeness of document vectors to the query vectors. IR system then retrieve the top ranked documents to the user. Fig. 1: A VSM model representing 3 documents and a query
  • 7. Computer Science & Information Technology (CS & IT) 403 The above diagram shows a vector space model where axes ti and tj are the terms used for indexing. 2.8 Metrics for IR Evaluation The aim of any Information Retrieval system is to search document in responce to a user query relavant to his information need. The performance of IR systems is evaluated on the basis of how relavent documents it retrieve. Relevance depends upon a specific user’s judgment. It is subjective in nature. The true relevance of the retrieved document can be judged by the user only, on the basis of his information need. For same query statement, the desired information need may differ from user to user. Traditionally the evaluation of IR systems has been done on a set of queries and test document collections. For each test query a set of ranked relavant documents is created manually then the system result is cross checked by it. There are many retrieval models/ algorithms/ systems. Different performance metrics are used to assess how effeciently an IR system retrieve the documents in responce to a users information need. Different Criteria's for evaluation of an IR system are: a. Coverage of the collection b. Time lag c. Presentation format d. User effort e. Precision f. Recall Effectiveness is the performance measure of any IR system which describes, how much the IR system satisfy a user’s information need by retrieving relevant documents. Aspects of effectiveness include: a. Whether the retrieved documents are pertinent to the information need of the user. b. Whether the retrieved documents are ranked according to the relevance with the user query. c. Whether the IR system returns a reasonable number of relevant documents present in the corpus to the user etc. 3. OUR APPROACH In this work, to develop an Information Retrieval system for Urdu language, the following methods and evaluation parameters are used. 3.1 Stemmer:For Developing Stemmer we have used an unsupervised approach [1] which gives accuracy of 84.2.
  • 8. 404 Computer Science & Information Technology (CS & IT) 3.2 Term Weighting scheme: For term weighting we have used the tf*idf 3.3 Indexing Scheme: in this work the query statement and the documents are represented using the word indexing strategy. 3.4 Retrieval Model: To implement our IR system we have used the vector space model. 3.5 Encoding Scheme: As the system focuses on Urdu language, to access the data UTF8 character encoding is used. 3.6 Similarity Measure: for getting documents which are more closely related to the query i.e.to measure the similarity between different documents in the corpus and the query statement, the cosine similarity measure is used. 3.7 Ranking of the document: for ranking of the retrieved documents in order to their relevance with the query, cosine similarity values are used. The document having higher cosine value (min angular distance) with the query will be more similar i.e. contains the query terms more frequently and hence these documents will be considered more relevant to the user query. 4. EXPERIMENT The data set used in this thesis for the training and testing of the developed Urdu IR system is taken from Emilie corpus. In this corpus documents are in xml format. The data set taken from EMILLE corpus a tagged data set consist of documents having information related to health issues, road safety issues, education issues, legal social issues, social issues, housing issues etc. The testing data set consist of documents from various domains such as: Table 4: dataset specification used for Urdu IR Domain Number of Documents Number of words Health 33 223412 Education 8 115264 Housing 8 120327 Legal 8 108055 Social issues 12 146083 Homeopathy 32 527360 Drama 13 135680 Myths 10 202880 Story and Novel 21 300160 Media 15 224000 Science 47 704000 History 33 502400 Politics 21 728320
  • 9. Computer Science & Information Technology (CS & IT) 405 Psychology 27 555520 Religion 34 556800 Sociology 21 398080 Miscellaneous 48 985374 A Query set consist of 200 queries is prepared manually for training and testing of the IR system. 5. RESULTS AND DISCUSSIONS For testing purpose of the developed Information Retrieval system, a test collection of 350 documents have been used. A set of 200 queries was constructed on these 350 documents. This query set is used to evaluate the developed Urdu IR. Table 5: results of the developed Urdu IR system testing Number of documents Number of queries Precision Recall Min (avg.) Max (avg.) Min (avg.) Max (avg.) 350 200 0.13 0.63 0.5 0.8 As shown in the above table, the system has value of 0.13 as the minimum average precision and maximum average precision value of the system is 0.63. Similarly the minimum average recall value for the system is 0.5 and maximum average recall value was found out to be 0.8. 6. CONCLUSION AND FUTURE WORK In this paper we have discussed various indexing schemes and IR models. We have used tf*idf scheme for indexing and to implement the IR system VSM (Vector Space Model) is used. The experimental result shows that the average recall of the developed IR system is 0.8 with 0.3 precision. IR is one of the hottest research fields. One can do a lot new research to provide efficient IR system which can satisfy the user’s information needs. A lot of research is needed to develop language independent approaches to support IR systems for multilingual data collections. REFERENCES [1] MohdShahid Husain et. al. “A language Independent Approach to develop Urdu stemmer”. Proceedings of the second International Conference on Advances in Computing and Information Technology. 2012. [2] Rizvi, J et. al. “Modeling case marking system of Urdu-Hindi languages by using semantic information”. Proceedings of the IEEE International Conference on Natural Language Processing and Knowledge Engineering (IEEE NLP-KE '05). 2005. [3] Butt, M. King, T. “Non-Nominative Subjects in Urdu: A Computational Analysis”. Proceedings of the International Symposium on Non-nominative Subjects, Tokyo, December, pp. 525-548, 2001. [4] Chen, A. Gey, F. “Building and Arabic Stemmer for Information Retrieval”. Proceedings of the Text Retrieval Conference, 47, 2002.
  • 10. 406 Computer Science & Information Technology (CS & IT) [5] R. Wicentowski. "Multilingual Noise-Robust Supervised Morphological Analysis using the Word Frame Model." In Proceedings of Seventh Meeting of the ACL Special Interest Group on Computational Phonology (SIGPHON), pp. 70-77, 2004. [6] Rizvi, Hussain M. “Analysis, Design and Implementation of Urdu Morphological Analyzer”. SCONEST, 1-7, 2005. [7] Krovetz, R. “View Morphology as an Inference Process”. In the Proceedings of 5th International Conference on Research and Development in Information Retrieval, 1993. [8] Thabet, N. “Stemming the Qur’an”. In the Proceedings of the Workshop on Computational Approaches to Arabic Script-based Languages, 2004. [9] Paik, Pauri. “A Simple Stemmer for Inflectional Languages”. FIRE 2008. [10] Sharifloo, A.A., Shamsfard M. “A Bottom up Approach to Persian Stemming”. IJCNLP, 2008 [11] Kumar, A. and Siddiqui, T. “An Unsupervised Hindi Stemmer with Heuristics Improvements”. In Proceedings of the Second Workshop on Analytics for Noisy Unstructured Text Data, 2008. [12] Kumar, M. S. and Murthy, K. N. “Corpus Based Statistical Approach for Stemming Telugu”. Creation of Lexical Resources for Indian Language Computing and Processing (LRIL), C-DAC, Mumbai, India, 2007. [13] Qurat-ul-AinAkram, AsmaNaseer, SarmadHussain. “Assas-Band, an Affix-Exception-List Based Urdu Stemmer”. Proceedings of ACL-IJCNLP 2009. [14] http://en.wikipedia.org/wiki/Urdu [15] http://www.bbc.co.uk/languages/other/guide/urdu/steps.shtml [16] http://www.andaman.org/BOOK/reprints/weber/rep-weber.htm [17] Natural Language processing and Information Retrieval by TanveerSiddiqui, U S Tiwary. [18] Information retrieval: data structure and algorithms by William B. Frakes, Ricardo Baeza-Yates. [19] http://www.crulp.org/software/ling_resources.htm