SlideShare a Scribd company logo
1 of 11
Download to read offline
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 37
A Computational Model Of Yoruba Morphology Lexical
Analyzer
Aladesote Isaiah iomjovic@yahoo.com
Department of Computer Science
Rufus Giwa Polytechnic,
P.M.B 1019
Owo, Ondo State, Nigeria.
Olaseni Olatunde E talktopastor@yahoo.com
Department of Computer Science
Rufus Giwa Polytechnic,
P.M.B 1019,
Owo, Ondo State, Nigeria.
Adetunmbi A O
Department of Computer Science
Federal University of Technology,
Akure, Ondo State.
Akinbohun Folake
Department of Computer Science
Rufus Giwa Polytechnic,
P.M.B 1019
Owo, Ondo State,Nigeria.
Abstract
Morphological analyzers are essential parts of many natural-language processing system such as
machine translation systems; they may be efficiently implemented as finite state transducers. This
paper models a Yoruba lexical analyzer using a rule based approach to computational morphology.
This analysis relies solely on one source of information: a dictionary of the valid Yoruba language
words.
Keywords: Morphology, Yoruba, Transducer
1. INTRODUCTION
Natural Language Processing (NLP) is a field of Computer Science and linguistics concerned with the
interactions between computers and human (natural) languages. Natural language generation
systems convert information from computer databases into readable human language. Natural
language understanding systems convert samples of human language into more formal
representations such as parse trees or first order logic that are easier for computer programs to
manipulate. Many problems within NLP apply to both generation and understanding; for example, a
computer must be able to model morphology (the structure of words) in order to understand an
English sentence, and a model of morphology is also needed for producing a grammatically correct
English sentence.
NLP has significant overlap with the field of computational linguistics, and is often considered a sub-
field of artificial intelligence. The term natural language is used to distinguish human languages (such
as Spanish, Swahili or Swedish) from formal or computer languages (such as C++, Java or LISP).
Although NLP may encompass both text and speech, work on speech processing has evolved into a
separate field.
A language is a system for encoding information. In its most common use, the term refers to so-called
"natural languages" the forms of communication considered peculiar to humankind. In linguistics the
term is extended to refer to the human cognitive facility of creating and using language. Essential to
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 38
both meanings is the systematic creation and usage of systems of symbols, each referring to
linguistic concepts with semantic or logical or otherwise expressive meanings.
Morphology, as a branch of linguistics which is concerned with the study of how words are formed,
has had a chequered history. Although everybody knows the importance of words in human
language, a separate branch of linguistics which is devoted to the study of the internal stucture of
words did not emerge until the early part of the nineteenth century (cf. Katamba 1993:3)
The Yoruba language belongs to the West Benue-Congo of the Niger-Congo phylum of African
languages (Williamson and Blench 2000: 31). Apart from Nigeria with about 30 million Yoruba
speakers. Yoruba is still spoken in Togo, Republic of Benin, Ghana, Sudan, Sierra-Leone and Cote
D’Ivoire. Outside Africa, a great number of speakers of the language are in Brazil, Cuba, including
Trinidad and Tobago. Yoruba is regarded as one of the major languages of Nigeria. The effective
speakers of the language in the country are about 35% of the country’s total population. According to
the International African Institute (1980: 60), the Yoruba language “is used by the media i.e. the
Press, Radio and Television. It is also used as a language of formal instruction and a curriculum
subject in the primary school. In the secondary school and post-secondary level (including
University); it is a curriculum subject. It has a standard orthography” the Yoruba language occupies a
privileged place within the entire range of African studies. A relatively literate exists on the language
both in the European languages and in the Yoruba language itself.
MOTIVATION OF THE PAPER
Languages with large number of speakers like Yoruba can nonetheless be in danger. Brenzinger
(1998: 93) had earlier noted this when he said “even Yoruba, with 20 over million speakers, has been
called ‘deprived’ because of the way it has come to be dominated by English in higher education”.
The section 53 of the 1999 constitution of the Federal Republic of Nigeria recognizes English as the
official language. Moreover, the suppressive effects of English over the Yoruba language and other
Nigerian languages are too overwhelming and suicidal.
The Global Information Capitalism has already sanctioned the versality and dynamism of English as
the only thriving language. And, since English has captured the Nigerian nation, implementing any
educational policies on mother tongue like that of UNESCO, will continue to be an exercise in futility.
This will lead to endangerment, then to moribund and finally to total extinction. Until this happens to
Yoruba and other indigenous African languages, the suppressive tasks before the English language
and her few allies, would be not completed. The task is still going on because as of today, a good
percentage of the products of the Nigerian educational system are, according to Bamgbose (1973: 7),
“neither competent in the use of English nor in that of their mother tongue”.
Global Information Technology should not necessarily be an avenue towards a total annihilation of
the Yoruba language. Instead, the IT and the Internet should give Yoruba language a public profile. It
is therefore no doubt that Yoruba language can be available to Information Technology (IT).
OBJECTIVE OF THE STUDY
The aim of this paper is to develop morphology Lexical Analyzer for Yoruba language using
computational model finite automata, which is one of the essential parts of natural language
processing systems.
METHODOLOGY
There are two approaches to Computational morphology: rule-based and data-based approaches.
The former involves the use of grammatical rules to construct computational morphology while the
latter uses statistical information to develop computational morphology. Rule-based approach is
adopted in constucting a morphological lexical analyzer. One of the most efficient approaches to
morphological lexical analysis and generation uses Finte - State Tranducers (FST) (Mohri 1997a;
Oncina et al 1993). FST is composed by a finite set of states and a set of transitions between pairs of
states.
DISCUSSION
A. Analysis of the Proposed System
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 39
The system functions by taking input (sentence, in form of text) in Yoruba language from the user,
removes punctuation marks like comma, semi colon, colon and blank space(s), brakes the input into
individual words with corresponding part of speech (in form of text).
Yoruba is an SVO (Subject Object Verb) language. The following tree diagrams explain the
techniques for implementing the proposed system. These diagrams illustrate the structure of the
tokens of the source language (Yoruba sentence). Classification of languages on the basis of the
basic order of the verb, the subject and the object in a sentence into several types: SVO, VSO.
Sentence
Verb Subject Object
Noun Pronoun Preposition Noun
FIGURE 1: Examples are Riri nimo ri, Gbigba ni mo gba ile.
Sentence
Subject Verb Object
Noun Pronoun interjection Adjective Adverb
FIGURE 2:Examples are Mo jeun lana, Oh! O na Ade
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 40
B Model of The New System
Report
User Interface A
Database
Dictionary
Use Interface B Lexical Analyzer Engine
User Interface A: This is a fundamental part that serves as an entrance that users can visit. Here,
the word in Yoruba Language with their corresponding part of speech is entered via the Yoruba
keyboard on the module named “entrypart”. The entrypart links to partsubmit which is the engine that
makes entrypart works.
Database dictionary: This is named “eyaede” which is a necessity for storing Yoruba words.
There is a link between the user interface and the dictionary, at the click of store button, the word
(oro) will be stored in the dictionary.
User Interface B: This is the interface where the sentence (gbolohun) to be analyzed is entered
on the module named “analyzer”.
Lexical Analyzer Engine: This takes input (gbolohun) through the interface B, reads through
the input characters, it stops whenever it encounters a space, which signifies the end of a word (oro),
eliminates the space and also the Analyzer checks through the dictionary (Eyaede) to determine the
part of speech of such word (oro). If such word is not found in the dictionary, it can be re-entered in
the user interface A, otherwise, the word will be eliminated automatically. It repeats this process for all
the words (oro) in that sentence (gbolohun) until it encounters full stop (ami idaduro) which indicates
the end of the sentence (gbolohun).
C Specifications of Hardware and Software
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 41
The proposed system can functions its operation as expected if hardware and software are
included.
Hardware Specifications
(i) Pentium IV or higher motherboard
(ii) Minimum of 100MHz clock speed processor
(iii) 512 RAM
(iv) 2 or 3 GB of Hard disk.
(v) Colour Monitor
(vi) Mouse
(vii) Keyboard
(viii) Printers
Software Specifications: Windows Operating System, MYSQL, PHP, Macromedia Flash,
Macromedia fireworks and Microsoft Access.
D The Systems Interface
To launch the application for the Yoruba alphabets, follow the steps below
go to the start menu, click on run
a. type in the box http://localhost/yoruba/homepage.php
FIGURE : D1
b. click on analyzer scheme center
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 42
FIGURE : D2
To launch the application for the translation of Yoruba language dictionary, follow the steps below:
a. Type in your word, sentence or Yoruba word (gbolohun) in the text box
b. Click the ’Eya-ede’ button
c. The translation is then displayed.
d. The following window appears.
FIGURE : D3
To launch the Yoruba Dictionary Corner.
a. From Homepage,: press Ikojopo Oro
b. Type the word into the text box.
c. Select the part of speech for the word
d. Click Store.
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 43
FIGURE : D4 The following windows appear if the word is exiting or already saved
FIGURE 1: D5
The following page appears if not existing or already saved.
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 44
FIGURE : D6
CONCLUSION
In conclusion, lexical analysis of a language can be done in three ways: by the use of
Lexical-analyzer generator such as Lex compiler, by writing a conventional-programming language
and by writing a lexical analyzer using assembly language.
The computational model of Yoruba language lexical analyzer was implemented and tested
using a conventional programming language, which is a promising technique. The result obtained
shows that the method adopted is satisfactory. This would be of great importance to researchers who
are working on Yoruba Grammar.
REFERENCES
[1] A dictionary of the Yoruba Language (2008), University Press Plc.
[2] Adesuyan, A. “Agbeyawo Sintaasi EdeYoruba”, Lekoba Publisher, Ibadan. 2003
[3] Albert, S. (et al) “A Morphological Analyzer for Machine Translation based on Finite
State Transducer”, CICYT-FEDER
[4] Awobuluyi, O. 1978. Essentials of Yoruba Grammar. Ibadan: Oxford University Press.
[5] Bamgbose, A. “Linguistic in a Developing Country; University of Ibadan. Inuagural
Lecture, Ibadan” University of Ibadan Press, 1973.
[6] Bamgboye, A .1966. A Grammar of Yoruba. Ibadan: Cambridge University Press. Bamboye, A.
1967. A Short Yoruba Grammar. Ibadan: Heinemann Educational Books.
[7] Bamgboye, A. 1990. Fonoloji ati Girama Yoruba. Ibadan: University Press Limited.
[8] Brenziger, M. “Contribution on Endangered Language” latiku 1-5. New Hampshire 1998.
[9] Bottler C.S (1990). Language and Computation. In N.E Collinge (ed): An Encyclopedia of
Language. Routledge. London.
[10] Bynon, T. 1977. Historical Linguistics. Cambridge: Cambridge University Press.
[11] Chomsky, N. 1965. Aspects of the Theory of Syntax. Cambridge: MIT Press.
[12] De Gaye, J. A. and W. S. Beecroft. 1922. Yoruba Grammar. London: Routledge and Kegan
Paul.
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 45
[13] Hornby “Oxford Advanced Learner’s dictionary of current English”, Oxford
University Press, 6
th
edition. (2000)
[14] Hyman L.M. (2000). How to Become a Kwa Verb. Symposium on areal Typology of west African
Languages. Leipzig, 1-18
[15] Hacken P. Word Formation in Computational Linguistics. Proc. of TAN; Nancy.
[16] International African Institute “Provisional Survey of Major Languages in the
Independence States of Saharan Africa, P. Baker(ed.).” UNESCO: International
African Institute.1980.
[17] Jan. D. (1998), : “Finite State Automata “ [Online] Available at http://www.pg.p1/~jandac/fsa.html
Kirsten M. (1991). The Linguistic Encyclopedia (Kirsten Eds. London:Routledge).
[18] Oluseye, A. (2003), “ Yoruba: A Grammar Sketch” [Online} Available at
www.igbimoedeyoruba.org
[19] Owolabi, Kola. 1976. “Noun-Noun construction in Yoruba: A Syntactic and Semantic Analysis”,
PhD Dissertation, University of Ibadan, Nigeria.
[20] Ozo – Mekuri Ndimele “A first course on Morphology & Syntax” Linguistc
& Communication Studies, University of Port Harcourt, Nigeria. 1999
[21] Williamson, K. and Blench, R. “Niger-Congo in Heine. African Languages: An
Introduction, B. and D. Nurse (eds.). Cambridge: Cambridge University Press. 2000.
PROGRAMMING CODES
Analyzer.php
<?
echo "<head><center><font color=red><u><h2>Yoruba Lexical
Analyzer</font></u></h2></head><form action='eyaitumoede.php' method='post'>
<br><br><br><table border=1><tr><td><h1>Gbolohun:</td><td><h1><textarea name=gbolohun
cols=30 rows=15></textarea></td></tr><tr><td><input type = submit name=submit value = Eya-
ede></td></tr></table></form>";
?>
Dbsubmitpart.php
<?
$dbhost = "localhost";
$dbname = "eyaede";
$dbuser = "root";
$dbpass = "aladesote";
$dbtab = "ede";
$link = mysql_connect($dbhost, $dbuser, $dbpass) or die ("Could not connect to $dbname on
$dbhost with $dbuser@".$_SERVER[REMOTE_ADDR]);
//echo "Connected successfully to $dbname on $dbhost with
$dbuser@".$_SERVER[REMOTE_ADDR]."<br>n";
mysql_select_db ($dbname) or die ("Could not select database named : $dbname" . mysql_error());
//echo "$dbtab";
?>
Storagepart.php
<?
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 46
include "dbsubmitpart.php";
$query = "SELECT * FROM $dbtab";
$result = mysql_query ($query) or die ("Query failed for table : $dbtab . " . mysql_error());
echo"<table border=1><tr><td>Yoruba</td><td>Part of Speech</td></tr>";
while($row=mysql_fetch_array($result))
{
echo "<tr><td>$row[0]</td>";
echo "<td>$row[1]</td></tr>";
}
echo"</table>";
?>
Entrypart.php
<?
echo"<form action='partsubmit.php' method='post'><table border=1><tr><td>Yoruba</td><td><input
type=text name=yoruba></td></tr><tr><td><select name=part><option value =
verb>Verb</option><option value =noun>Noun</option>
<option value = pronoun>Pronoun</option>
<option value = verb>Verb</option>
<option value = conjuction>Conjuction</option>
<option value = interjection>Interjection</option>
<option value = adverb>Adverb</option>
<option value = preposition>Preposition</option>
<option value = adjective>Adjective</option>
</select></td><td><input type=submit name=submit value=Store>
</tr></table></form>";
?>
Eyaitumoede.php
<?
include "dbsubmitpart.php";
include "analyzer.php";
if( $submit == "Eya-ede")
{
$a[]=array();
$sentence=$gbolohun;
if($gbolohun == "" )
{
echo "Ko eyi ti o fe lati tunmo";
}
else if($gbolohun != "")
{
$a=split(" ",$sentence);
//echo $a[0].','.$a[1].','.$a[2].','.$a[3].','.$a[4];
//echo count($a);
echo"<body bgcolor=pink><br><br><h2><u>The result of the
analyzer:<table border=1><tr><td bgcolor=light><font
color=white><h3>Oro ni Yoruba</td><td bgcolor=light><font color=white><h3>Eya-ede</td></tr>";
for($i=0;$i<=count($a);$i++)
{
$query[$i] = "SELECT eya FROM $dbtab where yoruba = '$a[$i]'";
$result[$i] = mysql_query ($query[$i]) or die ("Query failed for
table : $dbtab . " . mysql_error());
Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake
International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 47
while ($row = mysql_fetch_array($result[$i]))
{
$r= $row["eya"];
echo "<tr><td bgcolor=yellow><font color=blue><h3>$a[$i]</td><td
bgcolor=yellow><font color=green><h4>$r</td></tr>";
}
}
echo"</table>";
}
}
?>
Homepage.php
<html>
<head><h1><br><br><center><font color=green>Welcome to<br><font color=purple size=6> Lexical
Analyzer Center</font></h1></head><br><br>
<center><font size=4 color=blue><a href="analyzer.php"> Analyzer Scheme Center</a><br>
<a href="entrypart.php">Ikojopo Oro</a>
</html>
Partsubmit.Php
<?
//echo "$part,$english,$yoruba";//
if ($submit == "Store")
{
include "dbsubmitpart.php";
//$query= "SELECT yoruba FROM $dbtab where yoruba = '$yoruba'";
$query= "SELECT * FROM $dbtab where yoruba='$yoruba'";
$result= mysql_query ($query) or die ("Query failed for
table : $dbtab . " . mysql_error());
while($row=mysql_fetch_array($result))
{
//echo "$row[0]<br>";
$temp=$row[0];
}
if( $temp == $yoruba)
{echo "<br>Already stored<br><a href='entrypart.php'>Back</a>";}
else
{
$query = "INSERT INTO $dbtab values ('$yoruba','$part')";
$result = mysql_query ($query) or die ("Query failed for table : $dbtab . " . mysql_error());
echo "Submitted !!! <a href='entrypart.php'>Back </a>";
}
//}
}
else
{echo "Not submitted";}
?>

More Related Content

What's hot

CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...ijnlc
 
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...kevig
 
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGEADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGEkevig
 
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGEADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGEijnlc
 
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
 
Hidden markov model based part of speech tagger for sinhala language
Hidden markov model based part of speech tagger for sinhala languageHidden markov model based part of speech tagger for sinhala language
Hidden markov model based part of speech tagger for sinhala languageijnlc
 
Summer Research Project (Anusaaraka) Report
Summer Research Project (Anusaaraka) ReportSummer Research Project (Anusaaraka) Report
Summer Research Project (Anusaaraka) ReportAnwar Jameel
 
Performance Evaluation on the Web Search Engine to the Tetum Language
Performance Evaluation on the Web Search Engine to the Tetum LanguagePerformance Evaluation on the Web Search Engine to the Tetum Language
Performance Evaluation on the Web Search Engine to the Tetum LanguageAristidis Jesus
 
IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...
IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...
IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...ijnlc
 
INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...
INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...
INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...kevig
 
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...Syeful Islam
 
Optical character recognition for Ge'ez characters
Optical character recognition for Ge'ez charactersOptical character recognition for Ge'ez characters
Optical character recognition for Ge'ez charactershadmac
 
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...Syeful Islam
 
EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...
EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...
EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...kevig
 

What's hot (19)

CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
 
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
CONSTRUCTION OF ENGLISH-BODO PARALLEL TEXT CORPUS FOR STATISTICAL MACHINE TRA...
 
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGEADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
 
Corpus Linguistics
Corpus LinguisticsCorpus Linguistics
Corpus Linguistics
 
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGEADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
ADVANCEMENTS ON NLP APPLICATIONS FOR MANIPURI LANGUAGE
 
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
 
Hidden markov model based part of speech tagger for sinhala language
Hidden markov model based part of speech tagger for sinhala languageHidden markov model based part of speech tagger for sinhala language
Hidden markov model based part of speech tagger for sinhala language
 
Summer Research Project (Anusaaraka) Report
Summer Research Project (Anusaaraka) ReportSummer Research Project (Anusaaraka) Report
Summer Research Project (Anusaaraka) Report
 
L1 nlp intro
L1 nlp introL1 nlp intro
L1 nlp intro
 
Performance Evaluation on the Web Search Engine to the Tetum Language
Performance Evaluation on the Web Search Engine to the Tetum LanguagePerformance Evaluation on the Web Search Engine to the Tetum Language
Performance Evaluation on the Web Search Engine to the Tetum Language
 
IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...
IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...
IMPLEMENTATION OF NLIZATION FRAMEWORK FOR VERBS, PRONOUNS AND DETERMINERS WIT...
 
551 466-472
551 466-472551 466-472
551 466-472
 
10
1010
10
 
INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...
INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...
INTEGRATION OF PHONOTACTIC FEATURES FOR LANGUAGE IDENTIFICATION ON CODE-SWITC...
 
K010416167
K010416167K010416167
K010416167
 
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
 
Optical character recognition for Ge'ez characters
Optical character recognition for Ge'ez charactersOptical character recognition for Ge'ez characters
Optical character recognition for Ge'ez characters
 
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
A New Approach: Automatically Identify Naming Word from Bengali Sentence for ...
 
EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...
EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...
EXTRACTING LINGUISTIC SPEECH PATTERNS OF JAPANESE FICTIONAL CHARACTERS USING ...
 

Viewers also liked

Sistemas Operativos
Sistemas OperativosSistemas Operativos
Sistemas Operativosjguerrero20
 
Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...
Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...
Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...Waqas Tariq
 
Evaluation question.pptx
Evaluation question.pptxEvaluation question.pptx
Evaluation question.pptxNiyi Adeaga
 
Computational Pool-Testing with Retesting Strategy
Computational Pool-Testing with Retesting StrategyComputational Pool-Testing with Retesting Strategy
Computational Pool-Testing with Retesting StrategyWaqas Tariq
 
1 s2.0-073510979390202 c-main
1 s2.0-073510979390202 c-main1 s2.0-073510979390202 c-main
1 s2.0-073510979390202 c-maindrrajeevsharma7
 
TEKS ANEKDOT CHRISTINA X - IIS 1
TEKS ANEKDOT  CHRISTINA X - IIS 1 TEKS ANEKDOT  CHRISTINA X - IIS 1
TEKS ANEKDOT CHRISTINA X - IIS 1 christinasiburian
 
Marketing plan 2 may02
Marketing plan 2 may02Marketing plan 2 may02
Marketing plan 2 may02azezav
 
Indian Banking Industry: Challenges and Opportunities
Indian Banking Industry: Challenges and OpportunitiesIndian Banking Industry: Challenges and Opportunities
Indian Banking Industry: Challenges and OpportunitiesWaqas Tariq
 
Tu Clase, República Dominicana
Tu Clase, República DominicanaTu Clase, República Dominicana
Tu Clase, República Dominicanaeducarepdom
 

Viewers also liked (10)

Sistemas Operativos
Sistemas OperativosSistemas Operativos
Sistemas Operativos
 
Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...
Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...
Performance Evaluation of Neural Classifiers Through Confusion Matrices To Di...
 
Evaluation question.pptx
Evaluation question.pptxEvaluation question.pptx
Evaluation question.pptx
 
Corporate Essentials
Corporate EssentialsCorporate Essentials
Corporate Essentials
 
Computational Pool-Testing with Retesting Strategy
Computational Pool-Testing with Retesting StrategyComputational Pool-Testing with Retesting Strategy
Computational Pool-Testing with Retesting Strategy
 
1 s2.0-073510979390202 c-main
1 s2.0-073510979390202 c-main1 s2.0-073510979390202 c-main
1 s2.0-073510979390202 c-main
 
TEKS ANEKDOT CHRISTINA X - IIS 1
TEKS ANEKDOT  CHRISTINA X - IIS 1 TEKS ANEKDOT  CHRISTINA X - IIS 1
TEKS ANEKDOT CHRISTINA X - IIS 1
 
Marketing plan 2 may02
Marketing plan 2 may02Marketing plan 2 may02
Marketing plan 2 may02
 
Indian Banking Industry: Challenges and Opportunities
Indian Banking Industry: Challenges and OpportunitiesIndian Banking Industry: Challenges and Opportunities
Indian Banking Industry: Challenges and Opportunities
 
Tu Clase, República Dominicana
Tu Clase, República DominicanaTu Clase, República Dominicana
Tu Clase, República Dominicana
 

Similar to Modeling a Yoruba Morphology Lexical Analyzer

Design Analysis Rules to Identify Proper Noun from Bengali Sentence for Univ...
Design Analysis Rules to Identify Proper Noun  from Bengali Sentence for Univ...Design Analysis Rules to Identify Proper Noun  from Bengali Sentence for Univ...
Design Analysis Rules to Identify Proper Noun from Bengali Sentence for Univ...Syeful Islam
 
The Ekegusii Determiner Phrase Analysis in the Minimalist Program
The Ekegusii Determiner Phrase Analysis in the Minimalist ProgramThe Ekegusii Determiner Phrase Analysis in the Minimalist Program
The Ekegusii Determiner Phrase Analysis in the Minimalist ProgramBasweti Nobert
 
Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...
Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...
Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...Waqas Tariq
 
Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...
Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...
Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...kevig
 
Verbal ‘intraference’ in educated nigerian english (ene)
Verbal ‘intraference’ in educated nigerian english (ene)Verbal ‘intraference’ in educated nigerian english (ene)
Verbal ‘intraference’ in educated nigerian english (ene)Alexander Decker
 
Analysis and Representation of Igbo Text Document for a Text-Based System
Analysis and Representation of Igbo Text Document for a Text-Based SystemAnalysis and Representation of Igbo Text Document for a Text-Based System
Analysis and Representation of Igbo Text Document for a Text-Based SystemIIRindia
 
DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...
DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...
DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...kevig
 
Guia Didactica Uno
Guia Didactica UnoGuia Didactica Uno
Guia Didactica UnoUNEFM
 
Natural Language Processing: State of The Art, Current Trends and Challenges
Natural Language Processing: State of The Art, Current Trends and ChallengesNatural Language Processing: State of The Art, Current Trends and Challenges
Natural Language Processing: State of The Art, Current Trends and Challengesantonellarose
 
Syracuse UniversitySURFACEThe School of Information Studie.docx
Syracuse UniversitySURFACEThe School of Information Studie.docxSyracuse UniversitySURFACEThe School of Information Studie.docx
Syracuse UniversitySURFACEThe School of Information Studie.docxdeanmtaylor1545
 
B047006011
B047006011B047006011
B047006011inventy
 
B047006011
B047006011B047006011
B047006011inventy
 
Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...
Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...
Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...Premier Publishers
 
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...Syeful Islam
 
Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...
Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...
Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...Premier Publishers
 
Natural language wikipedia
Natural language   wikipediaNatural language   wikipedia
Natural language wikipediaTên Họ Và
 
Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...
Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...
Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...Premier Publishers
 
History of applied linguistic
History of applied linguisticHistory of applied linguistic
History of applied linguisticethan Lim
 

Similar to Modeling a Yoruba Morphology Lexical Analyzer (20)

Design Analysis Rules to Identify Proper Noun from Bengali Sentence for Univ...
Design Analysis Rules to Identify Proper Noun  from Bengali Sentence for Univ...Design Analysis Rules to Identify Proper Noun  from Bengali Sentence for Univ...
Design Analysis Rules to Identify Proper Noun from Bengali Sentence for Univ...
 
The Ekegusii Determiner Phrase Analysis in the Minimalist Program
The Ekegusii Determiner Phrase Analysis in the Minimalist ProgramThe Ekegusii Determiner Phrase Analysis in the Minimalist Program
The Ekegusii Determiner Phrase Analysis in the Minimalist Program
 
Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...
Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...
Dictionary Entries for Bangla Consonant Ended Roots in Universal Networking L...
 
Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...
Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...
Design and Development of Morphological Analyzer for Tigrigna Verbs using Hyb...
 
Verbal ‘intraference’ in educated nigerian english (ene)
Verbal ‘intraference’ in educated nigerian english (ene)Verbal ‘intraference’ in educated nigerian english (ene)
Verbal ‘intraference’ in educated nigerian english (ene)
 
Analysis and Representation of Igbo Text Document for a Text-Based System
Analysis and Representation of Igbo Text Document for a Text-Based SystemAnalysis and Representation of Igbo Text Document for a Text-Based System
Analysis and Representation of Igbo Text Document for a Text-Based System
 
DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...
DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...
DESIGN AND DEVELOPMENT OF MORPHOLOGICAL ANALYZER FOR TIGRIGNA VERBS USING HYB...
 
Guia Didactica Uno
Guia Didactica UnoGuia Didactica Uno
Guia Didactica Uno
 
Language
LanguageLanguage
Language
 
Natural Language Processing: State of The Art, Current Trends and Challenges
Natural Language Processing: State of The Art, Current Trends and ChallengesNatural Language Processing: State of The Art, Current Trends and Challenges
Natural Language Processing: State of The Art, Current Trends and Challenges
 
Syracuse UniversitySURFACEThe School of Information Studie.docx
Syracuse UniversitySURFACEThe School of Information Studie.docxSyracuse UniversitySURFACEThe School of Information Studie.docx
Syracuse UniversitySURFACEThe School of Information Studie.docx
 
B047006011
B047006011B047006011
B047006011
 
B047006011
B047006011B047006011
B047006011
 
Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...
Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...
Domestication of the English Language in Nigeria: An Examination of Morpho-Sy...
 
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
A New Approach: Automatically Identify Proper Noun from Bengali Sentence for ...
 
Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...
Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...
Teaching Urhobo as a Second Language through Poetry to Pupils in the Immediat...
 
Natural language wikipedia
Natural language   wikipediaNatural language   wikipedia
Natural language wikipedia
 
Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...
Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...
Some French expressions as used in Urhobo: a case study of the terms ‘AVOIR …...
 
Phonetics
PhoneticsPhonetics
Phonetics
 
History of applied linguistic
History of applied linguisticHistory of applied linguistic
History of applied linguistic
 

More from Waqas Tariq

The Use of Java Swing’s Components to Develop a Widget
The Use of Java Swing’s Components to Develop a WidgetThe Use of Java Swing’s Components to Develop a Widget
The Use of Java Swing’s Components to Develop a WidgetWaqas Tariq
 
3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D ImageWaqas Tariq
 
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Waqas Tariq
 
A Proposed Web Accessibility Framework for the Arab Disabled
A Proposed Web Accessibility Framework for the Arab DisabledA Proposed Web Accessibility Framework for the Arab Disabled
A Proposed Web Accessibility Framework for the Arab DisabledWaqas Tariq
 
Real Time Blinking Detection Based on Gabor Filter
Real Time Blinking Detection Based on Gabor FilterReal Time Blinking Detection Based on Gabor Filter
Real Time Blinking Detection Based on Gabor FilterWaqas Tariq
 
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...Waqas Tariq
 
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...Waqas Tariq
 
Collaborative Learning of Organisational Knolwedge
Collaborative Learning of Organisational KnolwedgeCollaborative Learning of Organisational Knolwedge
Collaborative Learning of Organisational KnolwedgeWaqas Tariq
 
A PNML extension for the HCI design
A PNML extension for the HCI designA PNML extension for the HCI design
A PNML extension for the HCI designWaqas Tariq
 
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardDevelopment of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardWaqas Tariq
 
An overview on Advanced Research Works on Brain-Computer Interface
An overview on Advanced Research Works on Brain-Computer InterfaceAn overview on Advanced Research Works on Brain-Computer Interface
An overview on Advanced Research Works on Brain-Computer InterfaceWaqas Tariq
 
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...Waqas Tariq
 
Principles of Good Screen Design in Websites
Principles of Good Screen Design in WebsitesPrinciples of Good Screen Design in Websites
Principles of Good Screen Design in WebsitesWaqas Tariq
 
Progress of Virtual Teams in Albania
Progress of Virtual Teams in AlbaniaProgress of Virtual Teams in Albania
Progress of Virtual Teams in AlbaniaWaqas Tariq
 
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...Waqas Tariq
 
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...Waqas Tariq
 
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...Waqas Tariq
 
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text EditorDynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text EditorWaqas Tariq
 
An Improved Approach for Word Ambiguity Removal
An Improved Approach for Word Ambiguity RemovalAn Improved Approach for Word Ambiguity Removal
An Improved Approach for Word Ambiguity RemovalWaqas Tariq
 
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...Waqas Tariq
 

More from Waqas Tariq (20)

The Use of Java Swing’s Components to Develop a Widget
The Use of Java Swing’s Components to Develop a WidgetThe Use of Java Swing’s Components to Develop a Widget
The Use of Java Swing’s Components to Develop a Widget
 
3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image3D Human Hand Posture Reconstruction Using a Single 2D Image
3D Human Hand Posture Reconstruction Using a Single 2D Image
 
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
Camera as Mouse and Keyboard for Handicap Person with Troubleshooting Ability...
 
A Proposed Web Accessibility Framework for the Arab Disabled
A Proposed Web Accessibility Framework for the Arab DisabledA Proposed Web Accessibility Framework for the Arab Disabled
A Proposed Web Accessibility Framework for the Arab Disabled
 
Real Time Blinking Detection Based on Gabor Filter
Real Time Blinking Detection Based on Gabor FilterReal Time Blinking Detection Based on Gabor Filter
Real Time Blinking Detection Based on Gabor Filter
 
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
Computer Input with Human Eyes-Only Using Two Purkinje Images Which Works in ...
 
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
Toward a More Robust Usability concept with Perceived Enjoyment in the contex...
 
Collaborative Learning of Organisational Knolwedge
Collaborative Learning of Organisational KnolwedgeCollaborative Learning of Organisational Knolwedge
Collaborative Learning of Organisational Knolwedge
 
A PNML extension for the HCI design
A PNML extension for the HCI designA PNML extension for the HCI design
A PNML extension for the HCI design
 
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardDevelopment of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
 
An overview on Advanced Research Works on Brain-Computer Interface
An overview on Advanced Research Works on Brain-Computer InterfaceAn overview on Advanced Research Works on Brain-Computer Interface
An overview on Advanced Research Works on Brain-Computer Interface
 
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
Exploring the Relationship Between Mobile Phone and Senior Citizens: A Malays...
 
Principles of Good Screen Design in Websites
Principles of Good Screen Design in WebsitesPrinciples of Good Screen Design in Websites
Principles of Good Screen Design in Websites
 
Progress of Virtual Teams in Albania
Progress of Virtual Teams in AlbaniaProgress of Virtual Teams in Albania
Progress of Virtual Teams in Albania
 
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
Cognitive Approach Towards the Maintenance of Web-Sites Through Quality Evalu...
 
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
USEFul: A Framework to Mainstream Web Site Usability through Automated Evalua...
 
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
Robot Arm Utilized Having Meal Support System Based on Computer Input by Huma...
 
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text EditorDynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
Dynamic Construction of Telugu Speech Corpus for Voice Enabled Text Editor
 
An Improved Approach for Word Ambiguity Removal
An Improved Approach for Word Ambiguity RemovalAn Improved Approach for Word Ambiguity Removal
An Improved Approach for Word Ambiguity Removal
 
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...Parameters Optimization for Improving ASR Performance in Adverse Real World N...
Parameters Optimization for Improving ASR Performance in Adverse Real World N...
 

Recently uploaded

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
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
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
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
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
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
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
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
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
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
 
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
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 

Recently uploaded (20)

Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
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
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
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
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
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
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........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
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
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
 
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
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 

Modeling a Yoruba Morphology Lexical Analyzer

  • 1. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 37 A Computational Model Of Yoruba Morphology Lexical Analyzer Aladesote Isaiah iomjovic@yahoo.com Department of Computer Science Rufus Giwa Polytechnic, P.M.B 1019 Owo, Ondo State, Nigeria. Olaseni Olatunde E talktopastor@yahoo.com Department of Computer Science Rufus Giwa Polytechnic, P.M.B 1019, Owo, Ondo State, Nigeria. Adetunmbi A O Department of Computer Science Federal University of Technology, Akure, Ondo State. Akinbohun Folake Department of Computer Science Rufus Giwa Polytechnic, P.M.B 1019 Owo, Ondo State,Nigeria. Abstract Morphological analyzers are essential parts of many natural-language processing system such as machine translation systems; they may be efficiently implemented as finite state transducers. This paper models a Yoruba lexical analyzer using a rule based approach to computational morphology. This analysis relies solely on one source of information: a dictionary of the valid Yoruba language words. Keywords: Morphology, Yoruba, Transducer 1. INTRODUCTION Natural Language Processing (NLP) is a field of Computer Science and linguistics concerned with the interactions between computers and human (natural) languages. Natural language generation systems convert information from computer databases into readable human language. Natural language understanding systems convert samples of human language into more formal representations such as parse trees or first order logic that are easier for computer programs to manipulate. Many problems within NLP apply to both generation and understanding; for example, a computer must be able to model morphology (the structure of words) in order to understand an English sentence, and a model of morphology is also needed for producing a grammatically correct English sentence. NLP has significant overlap with the field of computational linguistics, and is often considered a sub- field of artificial intelligence. The term natural language is used to distinguish human languages (such as Spanish, Swahili or Swedish) from formal or computer languages (such as C++, Java or LISP). Although NLP may encompass both text and speech, work on speech processing has evolved into a separate field. A language is a system for encoding information. In its most common use, the term refers to so-called "natural languages" the forms of communication considered peculiar to humankind. In linguistics the term is extended to refer to the human cognitive facility of creating and using language. Essential to
  • 2. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 38 both meanings is the systematic creation and usage of systems of symbols, each referring to linguistic concepts with semantic or logical or otherwise expressive meanings. Morphology, as a branch of linguistics which is concerned with the study of how words are formed, has had a chequered history. Although everybody knows the importance of words in human language, a separate branch of linguistics which is devoted to the study of the internal stucture of words did not emerge until the early part of the nineteenth century (cf. Katamba 1993:3) The Yoruba language belongs to the West Benue-Congo of the Niger-Congo phylum of African languages (Williamson and Blench 2000: 31). Apart from Nigeria with about 30 million Yoruba speakers. Yoruba is still spoken in Togo, Republic of Benin, Ghana, Sudan, Sierra-Leone and Cote D’Ivoire. Outside Africa, a great number of speakers of the language are in Brazil, Cuba, including Trinidad and Tobago. Yoruba is regarded as one of the major languages of Nigeria. The effective speakers of the language in the country are about 35% of the country’s total population. According to the International African Institute (1980: 60), the Yoruba language “is used by the media i.e. the Press, Radio and Television. It is also used as a language of formal instruction and a curriculum subject in the primary school. In the secondary school and post-secondary level (including University); it is a curriculum subject. It has a standard orthography” the Yoruba language occupies a privileged place within the entire range of African studies. A relatively literate exists on the language both in the European languages and in the Yoruba language itself. MOTIVATION OF THE PAPER Languages with large number of speakers like Yoruba can nonetheless be in danger. Brenzinger (1998: 93) had earlier noted this when he said “even Yoruba, with 20 over million speakers, has been called ‘deprived’ because of the way it has come to be dominated by English in higher education”. The section 53 of the 1999 constitution of the Federal Republic of Nigeria recognizes English as the official language. Moreover, the suppressive effects of English over the Yoruba language and other Nigerian languages are too overwhelming and suicidal. The Global Information Capitalism has already sanctioned the versality and dynamism of English as the only thriving language. And, since English has captured the Nigerian nation, implementing any educational policies on mother tongue like that of UNESCO, will continue to be an exercise in futility. This will lead to endangerment, then to moribund and finally to total extinction. Until this happens to Yoruba and other indigenous African languages, the suppressive tasks before the English language and her few allies, would be not completed. The task is still going on because as of today, a good percentage of the products of the Nigerian educational system are, according to Bamgbose (1973: 7), “neither competent in the use of English nor in that of their mother tongue”. Global Information Technology should not necessarily be an avenue towards a total annihilation of the Yoruba language. Instead, the IT and the Internet should give Yoruba language a public profile. It is therefore no doubt that Yoruba language can be available to Information Technology (IT). OBJECTIVE OF THE STUDY The aim of this paper is to develop morphology Lexical Analyzer for Yoruba language using computational model finite automata, which is one of the essential parts of natural language processing systems. METHODOLOGY There are two approaches to Computational morphology: rule-based and data-based approaches. The former involves the use of grammatical rules to construct computational morphology while the latter uses statistical information to develop computational morphology. Rule-based approach is adopted in constucting a morphological lexical analyzer. One of the most efficient approaches to morphological lexical analysis and generation uses Finte - State Tranducers (FST) (Mohri 1997a; Oncina et al 1993). FST is composed by a finite set of states and a set of transitions between pairs of states. DISCUSSION A. Analysis of the Proposed System
  • 3. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 39 The system functions by taking input (sentence, in form of text) in Yoruba language from the user, removes punctuation marks like comma, semi colon, colon and blank space(s), brakes the input into individual words with corresponding part of speech (in form of text). Yoruba is an SVO (Subject Object Verb) language. The following tree diagrams explain the techniques for implementing the proposed system. These diagrams illustrate the structure of the tokens of the source language (Yoruba sentence). Classification of languages on the basis of the basic order of the verb, the subject and the object in a sentence into several types: SVO, VSO. Sentence Verb Subject Object Noun Pronoun Preposition Noun FIGURE 1: Examples are Riri nimo ri, Gbigba ni mo gba ile. Sentence Subject Verb Object Noun Pronoun interjection Adjective Adverb FIGURE 2:Examples are Mo jeun lana, Oh! O na Ade
  • 4. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 40 B Model of The New System Report User Interface A Database Dictionary Use Interface B Lexical Analyzer Engine User Interface A: This is a fundamental part that serves as an entrance that users can visit. Here, the word in Yoruba Language with their corresponding part of speech is entered via the Yoruba keyboard on the module named “entrypart”. The entrypart links to partsubmit which is the engine that makes entrypart works. Database dictionary: This is named “eyaede” which is a necessity for storing Yoruba words. There is a link between the user interface and the dictionary, at the click of store button, the word (oro) will be stored in the dictionary. User Interface B: This is the interface where the sentence (gbolohun) to be analyzed is entered on the module named “analyzer”. Lexical Analyzer Engine: This takes input (gbolohun) through the interface B, reads through the input characters, it stops whenever it encounters a space, which signifies the end of a word (oro), eliminates the space and also the Analyzer checks through the dictionary (Eyaede) to determine the part of speech of such word (oro). If such word is not found in the dictionary, it can be re-entered in the user interface A, otherwise, the word will be eliminated automatically. It repeats this process for all the words (oro) in that sentence (gbolohun) until it encounters full stop (ami idaduro) which indicates the end of the sentence (gbolohun). C Specifications of Hardware and Software
  • 5. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 41 The proposed system can functions its operation as expected if hardware and software are included. Hardware Specifications (i) Pentium IV or higher motherboard (ii) Minimum of 100MHz clock speed processor (iii) 512 RAM (iv) 2 or 3 GB of Hard disk. (v) Colour Monitor (vi) Mouse (vii) Keyboard (viii) Printers Software Specifications: Windows Operating System, MYSQL, PHP, Macromedia Flash, Macromedia fireworks and Microsoft Access. D The Systems Interface To launch the application for the Yoruba alphabets, follow the steps below go to the start menu, click on run a. type in the box http://localhost/yoruba/homepage.php FIGURE : D1 b. click on analyzer scheme center
  • 6. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 42 FIGURE : D2 To launch the application for the translation of Yoruba language dictionary, follow the steps below: a. Type in your word, sentence or Yoruba word (gbolohun) in the text box b. Click the ’Eya-ede’ button c. The translation is then displayed. d. The following window appears. FIGURE : D3 To launch the Yoruba Dictionary Corner. a. From Homepage,: press Ikojopo Oro b. Type the word into the text box. c. Select the part of speech for the word d. Click Store.
  • 7. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 43 FIGURE : D4 The following windows appear if the word is exiting or already saved FIGURE 1: D5 The following page appears if not existing or already saved.
  • 8. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 44 FIGURE : D6 CONCLUSION In conclusion, lexical analysis of a language can be done in three ways: by the use of Lexical-analyzer generator such as Lex compiler, by writing a conventional-programming language and by writing a lexical analyzer using assembly language. The computational model of Yoruba language lexical analyzer was implemented and tested using a conventional programming language, which is a promising technique. The result obtained shows that the method adopted is satisfactory. This would be of great importance to researchers who are working on Yoruba Grammar. REFERENCES [1] A dictionary of the Yoruba Language (2008), University Press Plc. [2] Adesuyan, A. “Agbeyawo Sintaasi EdeYoruba”, Lekoba Publisher, Ibadan. 2003 [3] Albert, S. (et al) “A Morphological Analyzer for Machine Translation based on Finite State Transducer”, CICYT-FEDER [4] Awobuluyi, O. 1978. Essentials of Yoruba Grammar. Ibadan: Oxford University Press. [5] Bamgbose, A. “Linguistic in a Developing Country; University of Ibadan. Inuagural Lecture, Ibadan” University of Ibadan Press, 1973. [6] Bamgboye, A .1966. A Grammar of Yoruba. Ibadan: Cambridge University Press. Bamboye, A. 1967. A Short Yoruba Grammar. Ibadan: Heinemann Educational Books. [7] Bamgboye, A. 1990. Fonoloji ati Girama Yoruba. Ibadan: University Press Limited. [8] Brenziger, M. “Contribution on Endangered Language” latiku 1-5. New Hampshire 1998. [9] Bottler C.S (1990). Language and Computation. In N.E Collinge (ed): An Encyclopedia of Language. Routledge. London. [10] Bynon, T. 1977. Historical Linguistics. Cambridge: Cambridge University Press. [11] Chomsky, N. 1965. Aspects of the Theory of Syntax. Cambridge: MIT Press. [12] De Gaye, J. A. and W. S. Beecroft. 1922. Yoruba Grammar. London: Routledge and Kegan Paul.
  • 9. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 45 [13] Hornby “Oxford Advanced Learner’s dictionary of current English”, Oxford University Press, 6 th edition. (2000) [14] Hyman L.M. (2000). How to Become a Kwa Verb. Symposium on areal Typology of west African Languages. Leipzig, 1-18 [15] Hacken P. Word Formation in Computational Linguistics. Proc. of TAN; Nancy. [16] International African Institute “Provisional Survey of Major Languages in the Independence States of Saharan Africa, P. Baker(ed.).” UNESCO: International African Institute.1980. [17] Jan. D. (1998), : “Finite State Automata “ [Online] Available at http://www.pg.p1/~jandac/fsa.html Kirsten M. (1991). The Linguistic Encyclopedia (Kirsten Eds. London:Routledge). [18] Oluseye, A. (2003), “ Yoruba: A Grammar Sketch” [Online} Available at www.igbimoedeyoruba.org [19] Owolabi, Kola. 1976. “Noun-Noun construction in Yoruba: A Syntactic and Semantic Analysis”, PhD Dissertation, University of Ibadan, Nigeria. [20] Ozo – Mekuri Ndimele “A first course on Morphology & Syntax” Linguistc & Communication Studies, University of Port Harcourt, Nigeria. 1999 [21] Williamson, K. and Blench, R. “Niger-Congo in Heine. African Languages: An Introduction, B. and D. Nurse (eds.). Cambridge: Cambridge University Press. 2000. PROGRAMMING CODES Analyzer.php <? echo "<head><center><font color=red><u><h2>Yoruba Lexical Analyzer</font></u></h2></head><form action='eyaitumoede.php' method='post'> <br><br><br><table border=1><tr><td><h1>Gbolohun:</td><td><h1><textarea name=gbolohun cols=30 rows=15></textarea></td></tr><tr><td><input type = submit name=submit value = Eya- ede></td></tr></table></form>"; ?> Dbsubmitpart.php <? $dbhost = "localhost"; $dbname = "eyaede"; $dbuser = "root"; $dbpass = "aladesote"; $dbtab = "ede"; $link = mysql_connect($dbhost, $dbuser, $dbpass) or die ("Could not connect to $dbname on $dbhost with $dbuser@".$_SERVER[REMOTE_ADDR]); //echo "Connected successfully to $dbname on $dbhost with $dbuser@".$_SERVER[REMOTE_ADDR]."<br>n"; mysql_select_db ($dbname) or die ("Could not select database named : $dbname" . mysql_error()); //echo "$dbtab"; ?> Storagepart.php <?
  • 10. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 46 include "dbsubmitpart.php"; $query = "SELECT * FROM $dbtab"; $result = mysql_query ($query) or die ("Query failed for table : $dbtab . " . mysql_error()); echo"<table border=1><tr><td>Yoruba</td><td>Part of Speech</td></tr>"; while($row=mysql_fetch_array($result)) { echo "<tr><td>$row[0]</td>"; echo "<td>$row[1]</td></tr>"; } echo"</table>"; ?> Entrypart.php <? echo"<form action='partsubmit.php' method='post'><table border=1><tr><td>Yoruba</td><td><input type=text name=yoruba></td></tr><tr><td><select name=part><option value = verb>Verb</option><option value =noun>Noun</option> <option value = pronoun>Pronoun</option> <option value = verb>Verb</option> <option value = conjuction>Conjuction</option> <option value = interjection>Interjection</option> <option value = adverb>Adverb</option> <option value = preposition>Preposition</option> <option value = adjective>Adjective</option> </select></td><td><input type=submit name=submit value=Store> </tr></table></form>"; ?> Eyaitumoede.php <? include "dbsubmitpart.php"; include "analyzer.php"; if( $submit == "Eya-ede") { $a[]=array(); $sentence=$gbolohun; if($gbolohun == "" ) { echo "Ko eyi ti o fe lati tunmo"; } else if($gbolohun != "") { $a=split(" ",$sentence); //echo $a[0].','.$a[1].','.$a[2].','.$a[3].','.$a[4]; //echo count($a); echo"<body bgcolor=pink><br><br><h2><u>The result of the analyzer:<table border=1><tr><td bgcolor=light><font color=white><h3>Oro ni Yoruba</td><td bgcolor=light><font color=white><h3>Eya-ede</td></tr>"; for($i=0;$i<=count($a);$i++) { $query[$i] = "SELECT eya FROM $dbtab where yoruba = '$a[$i]'"; $result[$i] = mysql_query ($query[$i]) or die ("Query failed for table : $dbtab . " . mysql_error());
  • 11. Aladesote Isaiah, Olaseni O. E, Adetunmbi A. O & Akinbohun Folake International Journal of Computational Linguistics (IJCL), Volume (2) : Issue (2) : 2011 47 while ($row = mysql_fetch_array($result[$i])) { $r= $row["eya"]; echo "<tr><td bgcolor=yellow><font color=blue><h3>$a[$i]</td><td bgcolor=yellow><font color=green><h4>$r</td></tr>"; } } echo"</table>"; } } ?> Homepage.php <html> <head><h1><br><br><center><font color=green>Welcome to<br><font color=purple size=6> Lexical Analyzer Center</font></h1></head><br><br> <center><font size=4 color=blue><a href="analyzer.php"> Analyzer Scheme Center</a><br> <a href="entrypart.php">Ikojopo Oro</a> </html> Partsubmit.Php <? //echo "$part,$english,$yoruba";// if ($submit == "Store") { include "dbsubmitpart.php"; //$query= "SELECT yoruba FROM $dbtab where yoruba = '$yoruba'"; $query= "SELECT * FROM $dbtab where yoruba='$yoruba'"; $result= mysql_query ($query) or die ("Query failed for table : $dbtab . " . mysql_error()); while($row=mysql_fetch_array($result)) { //echo "$row[0]<br>"; $temp=$row[0]; } if( $temp == $yoruba) {echo "<br>Already stored<br><a href='entrypart.php'>Back</a>";} else { $query = "INSERT INTO $dbtab values ('$yoruba','$part')"; $result = mysql_query ($query) or die ("Query failed for table : $dbtab . " . mysql_error()); echo "Submitted !!! <a href='entrypart.php'>Back </a>"; } //} } else {echo "Not submitted";} ?>