SlideShare a Scribd company logo
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
60
A JOURNEY FROM COGNITIVE METRICS TO COGNITIVE
COMPUTERS
Dr. Leena Jain1
, Mr. Satinderjit Singh2
1
Associate Professor & Head -MCA, Global Institute of Mgt. &. Emerging Technologies,
Amritsar (India)
2
Ph. D. Research Scholar, Punjab Technical University Jalandhar (India), Associate
Professor, Dept of Computer Applications, GGNIMT Ludhiana.
ABSTRACT
Software cognitive metrics is new field in software engineering with far reaching
potential. The paper profiles the trajectory of software cognitive metrics for last decade and
also enlists some of the concerns and issue related with them. The emergence of Cognitive
informatics (CI) – interplay of computer science, information science, cognitive science, and
intelligence science - with the intent to investigate mechanisms and processes of the brain and
engineering applications arises out is discussed. The key idea of Cognitive computer is also
discussed along with some of path breaking works done or being done under CI. In-fact
Software cognitive metrics looks like just one of many application area of CI.
Keywords: Abstract intelligence, Cognitive computer, Cognitive informatics, Denotational
mathematics, Software cognitive metrics
I. INTRODUCTION
Software’s are inherently complex in nature. From the last few decades it has been the
endeavor of the software industry to find a good measure of the software complexity.
However there are many aspects of software complexity. Fenton distinguishes three kinds of
complexities: computational, psychological and representational [1]. Wang classifies
complexity as computational, symbolic, structural and functional [2]. Yingxu Wang and
Jingqiu Shao proposed a new measure - cognitive functional size (CFS) - of software
complexity based on the cognitive weights [3].
INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN
ENGINEERING AND TECHNOLOGY (IJARET)
ISSN 0976 - 6480 (Print)
ISSN 0976 - 6499 (Online)
Volume 4, Issue 4, May – June 2013, pp. 60-66
© IAEME: www.iaeme.com/ijaret.asp
Journal Impact Factor (2013): 5.8376 (Calculated by GISI)
www.jifactor.com
IJARET
© I A E M E
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
61
Earlier measures of software’s complexity typically depended on program size like
counting the number of lines of codes, then some improvement was made by taking into
consideration data flow and module interfaces such as the Halstead’s software metrics and
measure of cyclomatic complexity developed by McCabe became very popular [4], [5], [6].
All these and many other proposed metrics did not capture all aspects of complexity.
The cognitive complexity, as proposed by Wang and Shao provided a new approach
to explain and measure the functional complexity of software as well as the effort in software
design and comprehension [3]. This new approach perceives software functional complexity
as a measure of cognitive complexity for human creative artifacts, which considers the effect
of both internal structures of software and the I/O data objects under processing [3].
This paper studies the development of Software Cognitive metrics in last decade or
so, after they were first proposed by Wang and Shao in the year 2003. In section II a brief
history of development of cognitive metrics in software is profiled. In section III we basically
identify and discuss some of the challenges and issues concerning the next level of
acceptance of cognitive metrics. The doubts and concerns mentioned in section III could not
be properly tackled merely by application of current body of knowledge in computer science.
For this we have to take refuge in emerging trans-disciplinary study of Cognitive Informatics
(CI), which will be introduced in section IV. In-fact we will see that Software cognitive
metrics is just one of many application area of CI. In section V we conclude by pointing out
the exciting new possibilities which are coming out as result of current work being done in
CI. This includes not only the current problem of Software Cognitive metrics and
comprehension, but areas like bridging the gap between Artificial Intelligence (AI) and
Natural Intelligence (NI), Natural Language computing, intelligent search engines, and
computational intelligence. This also includes the exciting possibility to develop a Cognitive
computer- Computer that behaves like human mind with all the features of learning,
reasoning etc.
II. SOFTWARE COGNITIVE METRICS
In the year 2003 Yingxu Wang [3] introduced the concept of cognitive functional
complexity of softwares. In this metrics the BCS basic control structures are assigned
cognitive weights. BCS are the set of fundamental and essential flow control mechanisms that
are used for building logical architecture of software.
TABLE 1
Cognitive Weights of different BCS
BCS Cognitive Weight
Sequence 1
Branch If–Then-Else 2
Case 3
Iterations 3
Function Call 2
Recursion 3
Parallel 4
Interrupt 4
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
62
In this metrics the total cognitive weight of a component is measured by either adding
the weights of a BCS if they are in series or they are multiplied if they are embedded in
another BCS. The total cognitive weight of a software component, Wc, is defined as the sum
of cognitive weights of its q linear blocks composed in individual BCS’s. Since each block
may consist of m layers of nesting BCS’s, and each layer with n linear BCS’s, the total
cognitive weight, Wc, can be calculated by equation (1).
∑ ∏∑= = =






=
q
j
m
k
n
i
c ikjWcW
1 1 1
),,(( (1)
In this metrics the different BCS are assigned the weights as shown in table 1. These
weights are based on the human effort in comprehending these BCS
The cognitive functional size (CFS) of a basic software component that only consists
of one method, fS , is defined as a product of the sum of inputs and outputs ( oiN / ), and the
total cognitive weight, i.e.:
Coif WNS */= = (No + Ni){ ∑ ∏∑= = =





q
j
m
k
n
i
ikjWc
1 1 1
),,(( } (2)
However [7] have shown that the current existing calculation method of cognitive
metrics can generate different results that are algebraically equivalence.They highlighted the
combinatorial meanings of this calculation method- as shown by Wang [3] and it shows
significant flaw in the measure. Wang’s measure does not take into consideration the data
flow complexity of a component which is not embedded in one another.
TABLE 2
Example of data flow among BCS
for(j=2; j<i; j++)
{ if (i%j= =0)
break;
}
If (i = = j)
printf("t%d",i);
Just to take an example in table 2, Wang’s measure considers the ‘for’ and the ‘if’
structures independently. But the two structures cannot be considered independently, as data
flows from one structure to the other, and in doing so it carries with it some complexity. This
is true because we cannot understand the ‘if’ structure independently without considering the
preceding ‘for’ structure. However in the year 2009, Wang [2] suggested new weights for
various BCS as mentioned in Table 3 below:
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
63
TABLE 3
Modified Cognitive Weights of different BCS
S.No.
BCS
Description
cognitive
weight
(wi)
1 Sequence 1
2 Branch 3
3 Switch 4
4 For-loop 7
5 Repeat-loop 7
6 While-loop 8
7
Function
call 7
8 Recursion 11
9 Parallel 15
10 Interrupt 22
Although the weights for BCS were changed by Wang, but the method of calculating
overall cognitive complexity of the software remains more or less same. Thus the objection
of [7] still remains. Apart from this there are still some troubling questions about Cognitive
Metrics.
III. ISSUES RELATED WITH COGNITIVE METRICS
The objection of [7], apart, there are some other key concerns regarding Software cognitive
Metrics. Some of the concerns and doubts are as follow:
1) How authentic the weights of BCS are? Can it be statistically verified?
2) Is everybody’s mind work in same way and there is no variation? How does one set of
weights fits all population?
3) What about the variation within the population? To a different population- differing in
age, sex, nationality, computing skills etc. - do these weights hold?
4) Can it be possible – as in case of medicine and social science- to identify various
segments of the population which does not concur with above weights of BCS but have
their own weights?
These and many more questions and doubts of the same category are extremely valid and
important. I am sure in the years to come more and more research in the area of cognitive
metrics will be carried out to fill these concerns or research Gap area.
IV. THE EMERGENCE OF COGNITIVE INFORMATICS
All the concerns and doubts raised in section III are perfectly valid but software
engineering or computer science is not fully equipped to deal with these and other related
issues. The points raised in previous section can only be tackled if we have a proper
understanding of working of human brain; its information processing mechanisms and
about the phenomena of Natural Intelligence (NI). Since the working of human brain was
more or less unknown so there was little scope of advancement in applications (like
Cognitive software metrics) which tries to mimics the working of Human Brain.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
64
It was in this backdrop that term Cognitive Informatics (CI) was coined by Wang and
others. It is a separate field of enquiry involving multiple disciplines like computer science,
information science, cognitive science, and intelligence science with the intent to investigate
the phenomena of natural intelligence and the internal information processing mechanisms
and processes of the brain and its engineering applications in cognitive computing. CI was
recognized as separate and important field of enquiry by the scientific community. Even
otherwise CI itself has accumulated a solid body of Knowledge and field is pregnant with
many exciting possibilities. These includes development of highly intelligent systems such
as cognitive knowledge search engines, world-wide wisdom (WWW+), autonomous learning
machines, and cognitive robots.
One key application of CI is idea of Cognitive computer. Actually this is more of an
inspiration and motivation for the researcher working in the field of Cognitive informatics
rather than just being a mere possible application of CI. By Cognitive Computer we mean an
intelligent computer which has a capacity of human brain; that it can perceive, learn and
reason and is basically a knowledge processor rather than a data processor which a
conventional computer is. The current problem of Software cognitive metrics will be just a
small little application in Cognitive computer and some of the concerns raised in section III
should probably be tackle-able in it as well. Also the distant dream of computer linguists of
Computing with Natural Language (CNL) should now seem possible through Cognitive
computers [8].
V. THE PILLARS OF COGNITIVE RESEARCH
The previous section introduces the Field of Cognitive Informatics (CI). CI borrows
the work done in so many diverse fields, seals it under one roof and enriches these works by
developing a common theoretical frame work and supporting mathematics for developing the
common understanding of Human Brain and subsequent computing application coming out
of it. In this context some of path breaking works done or being done under CI can be
basically classified in following categories.
A. Theoretical framework of CI
Since its advent a decade ago, CI has developed a phenomenal body of work in
building up theory of how human Brain works. This includes Information-Matter-Energy
(IME) model, the Layered Reference Model of the Brain (LRMB) , the Object-Attribute-
Relation (OAR) model of information/knowledge representation in the brain [9], [10].
Particularly the development of Layered Reference Model of the Brain (LRMB) is of
extreme importance and is really a milestone. It identifies 43 cognitive processes in 7 layers.
All human efforts or activities are supposed to be permutation and combination of these 43
cognitive functions. Why LRMB is an important development? Because with the
identification of basic cognitive processes, it has become possible, first time human history,
to have computer representation of basic human features of consciousness, emotion,
intelligence etc. And it is generally believed that the study on integration of consciousness,
emotion and intelligence is a good stepping stone to cognitive computing.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
65
B. Common concepts for all types of Intelligence
Even after the 57 years of formal research in Artificial Intelligence (AI), till date we
have still not produced a machine which can pass the Turing test [11]. It has become more
and more clear that modern computing – impressive as it may be- is nowhere near human
intelligence level. As noted by Zadeh, human are remarkable in two ways at least. First of all
they have a remarkable ability to take decision in environment of uncertainty, imprecision,
and incomplete information [11]. And the ability to perform task without any measurement
and computation is also something which is different from computers. Clearly natural
intelligence (NI) can not be replaced by Artificial Intelligence (AI), until the very process of
internal information processing of brain is known properly.
In this context the development of novel theory of Abstract intelligence (αI) is quite a
remarkable achievement in its own right [12]. It is an attempt to bring both form of
intelligence –Artificial and Natural- under one common umbrella and then fits it to neural,
cognitive, functional and logical form. The paradigms of Abstract intelligence are natural,
artificial, machine-able, and computational intelligence. The study of Abstract intelligence
(αI) aims at revealing the basic mechanisms of different forms of intelligence.
C. Development of Supporting Mathematics for CI
The development of any scientific field normally goes hand in hand with
mathematical representation of concepts underlying its theory. One of the endeavor of CI
since its inception is to develop parallel mathematical structure able to depict complex
concepts and idea inherent in its theory. And it is more imperative for field like CI, which is
multi disciplinary in nature. The absence of proper Mathematical support would lead us to
days when CI was not conceived. Different fields were working in their own smaller
domain areas- perusing their small goals- but their collective effect were missing. Large
category of DMs have been created and developed in CI such as real-time process algebra
(RTPA) [13], concept algebra, system algebra [14], granular algebra, and visual semantic
algebra (VSA).
VI. CONCLUSION
The formal interest in Cognitive informatics started in the year 2002, when IEEE
recognized it as a separate field and lends its name and recognition to International
Conference on Cognitive Informatics (ICCI). Since then the interest in the field has grown
tremendously. Yingxu Wang has played a key role in the development of CI. He is the
founder and steering committee chair of the annual IEEE International Conference on
Cognitive Informatics and Cognitive Computing (ICCI*CC). It was coincidence that one of
the first problems he dealt in 2002-03 was to look towards software in terms of cognitive
complexity and introduced the concept of BCS along with their weights. Or perhaps it was
just not the coincidence. Whatever might be the case; but it is amazing that something which
started with measuring the effort to comprehend the software cognitively has expanded itself
to become one of the most exciting, emerging and trans-disciplinary field in applied science.
The paper reflects this journey.
International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN
0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME
66
REFERENCES
[1] N.Fenton,(1994),”Software Measurement: a Necessary Scientific Basis”, IEEE Trans.
Software Eng., Vol. 20, No. 3, pp. 199-206.
[2] Y. Wang,(2009) “On the Cognitive Complexity of Software and its Quantification and
Formal measurement.” International Journal of Software Science and Computational
Intelligence, Vol. 1, No. 2, , pp. 31-53.
[3] Y. Wang. and J. Shao (2003), "Measurement of the Cognitive Functional Complexity of
Software", Proceedings of the 2nd IEEE International Conference on Cognitive Informatics,
2003, pp. 67-74
[4] A.J. Albrecht and J. E. Gaffney (1983),“Software Function, Source Lines of code, and
Development Effort Prediction: A Software Science Validation”, IEEE Transactions on
Software Engineering, Vol.9, No.6, , pp. 639-648.
[5] M. H. Halstead,(1996) , “Elements of Software Science” (Operating and programming
systems series), Elsevier Science Inc. New York, Edition 1977, pp. 68-96.
[6] T. H. McCabe, (1976) “A Complexity Measure”, IEEE Trans. Software Eng. SE – Vol.2,
No. 6, pp. 308-320.
[7] B. Auprasert, and Y. Limpiyakorn,(2008) , “Underlying Cognitive Complexity Measure
Computation with Combinatorial Rules”, Proceedings of world academy of science,
engineering and technology Vol. 35, 2008, pp 432-437.
[8] L.A. Zadeh, (1999), “From Computing with Numbers to Computing with Words – from
Manipulation of Measurements to manipulation of Perception”, IEEE Trans. on Circuits and
Systems I, 45(1), 1999, pp. 105-119.
[9] Y. Wang, S. Patel, and D. Patel (2006) , “A Layered Reference Model of the Brain
(LRMB)”, IEEE Trans. on Systems, Man, and Cybernetics (C), 36(2), , pp. 124-133.
[10] Y. Wang(2007), “The OAR Model of Neural Informatics for Internal Knowledge
Representation in the Brain“, International Journal of Cognitive Informatics and Natural
Intelligence, 1(3), 2007 pp., 64-75.
[11] L.A. Zadeh, (2008a), “Toward Human Level Machine Intelligence - Is It Achievable? The
Need for a Paradigm Shift”, Computational Intelligence Magazine, IEEE , 3(3), 2008, pp. 11
– 22.
[12] Y. Wang(2008b), “On Contemporary Denotational Mathematics for Computational
Intelligence”, Transactions of Computational Science, 2, Springer, pp. 6-29.
[13] Y. Wang(2008c) ,” RTPA: A Denotational Mathematics for Manipulating Intelligent and
Computational Behaviors”, International Journal of Cognitive Informatics and Natural
Intelligence, 2(2), 2008 , pp. 44-62.
[14] Y. Wang, L.A. Zadeh, and Y. Yao (2009b), “On the System Algebra Foundations for
Granular Computing” , International Journal of Software Science and Computational
Intelligence, (1), 2009, pp. 1-17.
[15] J.Emi Retna, Greeshma Varghese, Merlin Soosaiya and Sumy Joseph, “A Study on Quality
Parameters of Software and the Metrics for Evaluation”, International journal of Computer
Engineering & Technology (IJCET), Volume 1, Issue 1, 2010, pp. 235 - 249, ISSN Print:
0976 – 6367, ISSN Online: 0976 – 6375.
[16] Mohammed Sirajuddin, Dr D. Rajya Lakshmi, Dr Syed Abdul Sattar and Nafisur Rahman,
“Fuzzy Logic — The Fascinating Logic Behind Artificial Computational Intelligence”
International Journal of Advanced Research in Engineering & Technology (IJARET),
Volume 4, Issue 3, 2013, pp. 280 - 285, ISSN Print: 0976-6480, ISSN Online: 0976-6499.

More Related Content

What's hot

PCA and DCT Based Approach for Face Recognition
PCA and DCT Based Approach for Face RecognitionPCA and DCT Based Approach for Face Recognition
PCA and DCT Based Approach for Face Recognition
ijtsrd
 
Proposed-curricula-MCSEwithSyllabus_24_...
Proposed-curricula-MCSEwithSyllabus_24_...Proposed-curricula-MCSEwithSyllabus_24_...
Proposed-curricula-MCSEwithSyllabus_24_...
butest
 
Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...
eSAT Publishing House
 
Kurniawan2016
Kurniawan2016Kurniawan2016
Kurniawan2016
budh polast
 
Automation tool for evaluation of the quality of nlp based
Automation tool for evaluation of the quality of nlp basedAutomation tool for evaluation of the quality of nlp based
Automation tool for evaluation of the quality of nlp based
IAEME Publication
 
Image investigation using higher moment statistics and edge detection for rec...
Image investigation using higher moment statistics and edge detection for rec...Image investigation using higher moment statistics and edge detection for rec...
Image investigation using higher moment statistics and edge detection for rec...
journalBEEI
 
Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...
Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...
Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...
AM Publications
 
Application of Neural Network for Cell Formation in Group Technology
Application of Neural Network for Cell Formation in Group  TechnologyApplication of Neural Network for Cell Formation in Group  Technology
Application of Neural Network for Cell Formation in Group Technology
IJMER
 
INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...
INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...
INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...
ijfls
 
Comparison of Text Classifiers on News Articles
Comparison of Text Classifiers on News ArticlesComparison of Text Classifiers on News Articles
Comparison of Text Classifiers on News Articles
IRJET Journal
 
Knowledge extraction from numerical data an abc
Knowledge extraction from numerical data an abcKnowledge extraction from numerical data an abc
Knowledge extraction from numerical data an abc
IAEME Publication
 
Pattern recognition using context dependent memory model (cdmm) in multimodal...
Pattern recognition using context dependent memory model (cdmm) in multimodal...Pattern recognition using context dependent memory model (cdmm) in multimodal...
Pattern recognition using context dependent memory model (cdmm) in multimodal...
ijfcstjournal
 
FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...
FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...
FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...
ijscai
 
IRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data ScienceIRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET Journal
 
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITIONNEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
ijsc
 
Knowledge Acquisition Based on Repertory Grid Analysis System
Knowledge Acquisition Based on Repertory Grid Analysis SystemKnowledge Acquisition Based on Repertory Grid Analysis System
Knowledge Acquisition Based on Repertory Grid Analysis System
ijtsrd
 

What's hot (16)

PCA and DCT Based Approach for Face Recognition
PCA and DCT Based Approach for Face RecognitionPCA and DCT Based Approach for Face Recognition
PCA and DCT Based Approach for Face Recognition
 
Proposed-curricula-MCSEwithSyllabus_24_...
Proposed-curricula-MCSEwithSyllabus_24_...Proposed-curricula-MCSEwithSyllabus_24_...
Proposed-curricula-MCSEwithSyllabus_24_...
 
Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...Sparse representation based classification of mr images of brain for alzheime...
Sparse representation based classification of mr images of brain for alzheime...
 
Kurniawan2016
Kurniawan2016Kurniawan2016
Kurniawan2016
 
Automation tool for evaluation of the quality of nlp based
Automation tool for evaluation of the quality of nlp basedAutomation tool for evaluation of the quality of nlp based
Automation tool for evaluation of the quality of nlp based
 
Image investigation using higher moment statistics and edge detection for rec...
Image investigation using higher moment statistics and edge detection for rec...Image investigation using higher moment statistics and edge detection for rec...
Image investigation using higher moment statistics and edge detection for rec...
 
Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...
Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...
Privacy Preserving of Data Mining Based on Enumeration and Concatenation of A...
 
Application of Neural Network for Cell Formation in Group Technology
Application of Neural Network for Cell Formation in Group  TechnologyApplication of Neural Network for Cell Formation in Group  Technology
Application of Neural Network for Cell Formation in Group Technology
 
INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...
INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...
INTERVAL TYPE-2 INTUITIONISTIC FUZZY LOGIC SYSTEM FOR TIME SERIES AND IDENTIF...
 
Comparison of Text Classifiers on News Articles
Comparison of Text Classifiers on News ArticlesComparison of Text Classifiers on News Articles
Comparison of Text Classifiers on News Articles
 
Knowledge extraction from numerical data an abc
Knowledge extraction from numerical data an abcKnowledge extraction from numerical data an abc
Knowledge extraction from numerical data an abc
 
Pattern recognition using context dependent memory model (cdmm) in multimodal...
Pattern recognition using context dependent memory model (cdmm) in multimodal...Pattern recognition using context dependent memory model (cdmm) in multimodal...
Pattern recognition using context dependent memory model (cdmm) in multimodal...
 
FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...
FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...
FORECASTING MACROECONOMICAL INDICES WITH MACHINE LEARNING: IMPARTIAL ANALYSIS...
 
IRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data ScienceIRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data Science
 
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITIONNEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
NEURAL NETWORK BASED SUPERVISED SELF ORGANIZING MAPS FOR FACE RECOGNITION
 
Knowledge Acquisition Based on Repertory Grid Analysis System
Knowledge Acquisition Based on Repertory Grid Analysis SystemKnowledge Acquisition Based on Repertory Grid Analysis System
Knowledge Acquisition Based on Repertory Grid Analysis System
 

Viewers also liked

Semana 12
Semana 12Semana 12
Semana 12
Nahomy Alvarez
 
Marco Simeon (Rai), Riconoscimento Speciale al 37° Galà Niaf
Marco Simeon (Rai), Riconoscimento Speciale al 37° Galà NiafMarco Simeon (Rai), Riconoscimento Speciale al 37° Galà Niaf
Marco Simeon (Rai), Riconoscimento Speciale al 37° Galà Niaf
PhiNet Social Media Communication
 
RCM Logic Explanation
RCM Logic ExplanationRCM Logic Explanation
RCM Logic Explanation
Konstantin Zyryanov, CMRP
 
Eryn R. McNew Resume
Eryn R. McNew ResumeEryn R. McNew Resume
Eryn R. McNew Resume
Eryn McNew
 
PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...
PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...
PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...
IAEME Publication
 
Bonificación compensatoria de la subida de la factura del agua
Bonificación compensatoria de la subida de la factura del aguaBonificación compensatoria de la subida de la factura del agua
Bonificación compensatoria de la subida de la factura del agua
Ayuntamiento de Málaga
 
Taller de bulling
Taller de bullingTaller de bulling
Taller de bulling
trabajosocial2004
 
Revisa tu BMW
Revisa tu BMWRevisa tu BMW
Revisa tu BMW
Sara Rausell
 
260215 мкд партнер система соревнований
260215 мкд партнер система соревнований260215 мкд партнер система соревнований
260215 мкд партнер система соревнований
МКД Партнер
 
WWW.BOOOM.COM
WWW.BOOOM.COMWWW.BOOOM.COM
WWW.BOOOM.COM
BOOOM
 
ВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ В СООТВЕТСТВЕИИ С USALI
ВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ  В СООТВЕТСТВЕИИ С USALIВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ  В СООТВЕТСТВЕИИ С USALI
ВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ В СООТВЕТСТВЕИИ С USALI
МКД Партнер
 
Внедрение управленческого учета и бюджетирования в соответствии с USALI
Внедрение управленческого учета и бюджетирования в соответствии с USALIВнедрение управленческого учета и бюджетирования в соответствии с USALI
Внедрение управленческого учета и бюджетирования в соответствии с USALI
МКД Партнер
 
Research paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCC
Research paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCCResearch paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCC
Research paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCC
Jaazim Salahudeen
 
PROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUD
PROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUDPROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUD
PROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUD
IAEME Publication
 
Experimental investigation on behavior of bamboo reinforced concrete member
Experimental investigation on behavior of bamboo reinforced concrete memberExperimental investigation on behavior of bamboo reinforced concrete member
Experimental investigation on behavior of bamboo reinforced concrete member
eSAT Journals
 
Mobile Recruiting. Ist es wirklich nötig?
Mobile Recruiting. Ist es wirklich nötig?Mobile Recruiting. Ist es wirklich nötig?
Mobile Recruiting. Ist es wirklich nötig?
Manuel P. Nappo
 
Подход к совершенствованию системы мотивации
Подход к совершенствованию системы мотивацииПодход к совершенствованию системы мотивации
Подход к совершенствованию системы мотивации
МКД Партнер
 
Digital Leadership in a Disrupted World
Digital Leadership in a Disrupted WorldDigital Leadership in a Disrupted World
Digital Leadership in a Disrupted World
Manuel P. Nappo
 

Viewers also liked (19)

Semana 12
Semana 12Semana 12
Semana 12
 
Marco Simeon (Rai), Riconoscimento Speciale al 37° Galà Niaf
Marco Simeon (Rai), Riconoscimento Speciale al 37° Galà NiafMarco Simeon (Rai), Riconoscimento Speciale al 37° Galà Niaf
Marco Simeon (Rai), Riconoscimento Speciale al 37° Galà Niaf
 
RCM Logic Explanation
RCM Logic ExplanationRCM Logic Explanation
RCM Logic Explanation
 
Eryn R. McNew Resume
Eryn R. McNew ResumeEryn R. McNew Resume
Eryn R. McNew Resume
 
PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...
PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...
PROPOSED SYSTEM FOR MID-AIR HOLOGRAPHY PROJECTION USING CONVERSION OF 2D TO 3...
 
Bonificación compensatoria de la subida de la factura del agua
Bonificación compensatoria de la subida de la factura del aguaBonificación compensatoria de la subida de la factura del agua
Bonificación compensatoria de la subida de la factura del agua
 
Taller de bulling
Taller de bullingTaller de bulling
Taller de bulling
 
Revisa tu BMW
Revisa tu BMWRevisa tu BMW
Revisa tu BMW
 
260215 мкд партнер система соревнований
260215 мкд партнер система соревнований260215 мкд партнер система соревнований
260215 мкд партнер система соревнований
 
WWW.BOOOM.COM
WWW.BOOOM.COMWWW.BOOOM.COM
WWW.BOOOM.COM
 
H31003
H31003H31003
H31003
 
ВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ В СООТВЕТСТВЕИИ С USALI
ВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ  В СООТВЕТСТВЕИИ С USALIВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ  В СООТВЕТСТВЕИИ С USALI
ВНЕДРЕНИЕ УПРАВЛЕНЧЕСКОГО УЧЕТА И БЮДЖЕТИРОВАНИЯ В СООТВЕТСТВЕИИ С USALI
 
Внедрение управленческого учета и бюджетирования в соответствии с USALI
Внедрение управленческого учета и бюджетирования в соответствии с USALIВнедрение управленческого учета и бюджетирования в соответствии с USALI
Внедрение управленческого учета и бюджетирования в соответствии с USALI
 
Research paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCC
Research paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCCResearch paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCC
Research paper - BAMBOO AS AN ALTERNATIVE TO STEEL IN RCC
 
PROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUD
PROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUDPROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUD
PROPOSED ONTOLOGY FRAMEWORK FOR DYNAMIC RESOURCE PROVISIONING ON PUBLIC CLOUD
 
Experimental investigation on behavior of bamboo reinforced concrete member
Experimental investigation on behavior of bamboo reinforced concrete memberExperimental investigation on behavior of bamboo reinforced concrete member
Experimental investigation on behavior of bamboo reinforced concrete member
 
Mobile Recruiting. Ist es wirklich nötig?
Mobile Recruiting. Ist es wirklich nötig?Mobile Recruiting. Ist es wirklich nötig?
Mobile Recruiting. Ist es wirklich nötig?
 
Подход к совершенствованию системы мотивации
Подход к совершенствованию системы мотивацииПодход к совершенствованию системы мотивации
Подход к совершенствованию системы мотивации
 
Digital Leadership in a Disrupted World
Digital Leadership in a Disrupted WorldDigital Leadership in a Disrupted World
Digital Leadership in a Disrupted World
 

Similar to A journey from cognitive metrics to cognitive comput

EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...
EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...
EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...
ijcsa
 
Computation of Neural Network using C# with Respect to Bioinformatics
Computation of Neural Network using C# with Respect to BioinformaticsComputation of Neural Network using C# with Respect to Bioinformatics
Computation of Neural Network using C# with Respect to Bioinformatics
Sarvesh Kumar
 
Computational of Bioinformatics
Computational of BioinformaticsComputational of Bioinformatics
Computational of Bioinformatics
ijtsrd
 
50120130406033
5012013040603350120130406033
50120130406033
IAEME Publication
 
Documentaries use for the design of learning activities
Documentaries use for the design of learning activitiesDocumentaries use for the design of learning activities
Documentaries use for the design of learning activities
IOSR Journals
 
AI and Project managers in project management
AI and Project managers in project managementAI and Project managers in project management
AI and Project managers in project management
qasastareekh
 
AN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMS
AN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMSAN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMS
AN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMS
csandit
 
An Expert Gamification System for Virtual and Cross-Cultural Software Teams
An Expert Gamification System for Virtual and Cross-Cultural Software TeamsAn Expert Gamification System for Virtual and Cross-Cultural Software Teams
An Expert Gamification System for Virtual and Cross-Cultural Software Teams
cscpconf
 
A machine learning model for predicting innovation effort of firms
A machine learning model for predicting innovation effort of  firmsA machine learning model for predicting innovation effort of  firms
A machine learning model for predicting innovation effort of firms
IJECEIAES
 
Application of Exponential Gamma Distribution in Modeling Queuing Data
Application of Exponential Gamma Distribution in Modeling Queuing DataApplication of Exponential Gamma Distribution in Modeling Queuing Data
Application of Exponential Gamma Distribution in Modeling Queuing Data
ijtsrd
 
A study of existing ontologies in the io t domain
A study of existing ontologies in the io t domainA study of existing ontologies in the io t domain
A study of existing ontologies in the io t domain
Sof Ouni
 
Next generation big data analytics state of the art
Next generation big data analytics state of the artNext generation big data analytics state of the art
Next generation big data analytics state of the art
Nazrul Islam
 
A scenario based approach for dealing with
A scenario based approach for dealing withA scenario based approach for dealing with
A scenario based approach for dealing with
ijcsa
 
Cyber Physical System
Cyber Physical SystemCyber Physical System
Cyber Physical System
GRD Journals
 
A Survey on different techniques used for age and gender classification
A Survey on different techniques used for age and gender classificationA Survey on different techniques used for age and gender classification
A Survey on different techniques used for age and gender classification
IRJET Journal
 
A N E XTENSION OF P ROTÉGÉ FOR AN AUTOMA TIC F UZZY - O NTOLOGY BUILDING U...
A N  E XTENSION OF  P ROTÉGÉ FOR AN AUTOMA TIC  F UZZY - O NTOLOGY BUILDING U...A N  E XTENSION OF  P ROTÉGÉ FOR AN AUTOMA TIC  F UZZY - O NTOLOGY BUILDING U...
A N E XTENSION OF P ROTÉGÉ FOR AN AUTOMA TIC F UZZY - O NTOLOGY BUILDING U...
ijcsit
 
A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...
A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...
A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...
ijaia
 
Name _____________________Bipedal AustralopithOBJECTIVES.docx
Name _____________________Bipedal AustralopithOBJECTIVES.docxName _____________________Bipedal AustralopithOBJECTIVES.docx
Name _____________________Bipedal AustralopithOBJECTIVES.docx
roushhsiu
 
Artificial intelligence in cyber physical systems
Artificial intelligence in cyber physical systemsArtificial intelligence in cyber physical systems
Artificial intelligence in cyber physical systems
Petar Radanliev
 
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGINTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
dannyijwest
 

Similar to A journey from cognitive metrics to cognitive comput (20)

EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...
EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...
EMPIRICAL APPLICATION OF SIMULATED ANNEALING USING OBJECT-ORIENTED METRICS TO...
 
Computation of Neural Network using C# with Respect to Bioinformatics
Computation of Neural Network using C# with Respect to BioinformaticsComputation of Neural Network using C# with Respect to Bioinformatics
Computation of Neural Network using C# with Respect to Bioinformatics
 
Computational of Bioinformatics
Computational of BioinformaticsComputational of Bioinformatics
Computational of Bioinformatics
 
50120130406033
5012013040603350120130406033
50120130406033
 
Documentaries use for the design of learning activities
Documentaries use for the design of learning activitiesDocumentaries use for the design of learning activities
Documentaries use for the design of learning activities
 
AI and Project managers in project management
AI and Project managers in project managementAI and Project managers in project management
AI and Project managers in project management
 
AN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMS
AN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMSAN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMS
AN EXPERT GAMIFICATION SYSTEM FOR VIRTUAL AND CROSS-CULTURAL SOFTWARE TEAMS
 
An Expert Gamification System for Virtual and Cross-Cultural Software Teams
An Expert Gamification System for Virtual and Cross-Cultural Software TeamsAn Expert Gamification System for Virtual and Cross-Cultural Software Teams
An Expert Gamification System for Virtual and Cross-Cultural Software Teams
 
A machine learning model for predicting innovation effort of firms
A machine learning model for predicting innovation effort of  firmsA machine learning model for predicting innovation effort of  firms
A machine learning model for predicting innovation effort of firms
 
Application of Exponential Gamma Distribution in Modeling Queuing Data
Application of Exponential Gamma Distribution in Modeling Queuing DataApplication of Exponential Gamma Distribution in Modeling Queuing Data
Application of Exponential Gamma Distribution in Modeling Queuing Data
 
A study of existing ontologies in the io t domain
A study of existing ontologies in the io t domainA study of existing ontologies in the io t domain
A study of existing ontologies in the io t domain
 
Next generation big data analytics state of the art
Next generation big data analytics state of the artNext generation big data analytics state of the art
Next generation big data analytics state of the art
 
A scenario based approach for dealing with
A scenario based approach for dealing withA scenario based approach for dealing with
A scenario based approach for dealing with
 
Cyber Physical System
Cyber Physical SystemCyber Physical System
Cyber Physical System
 
A Survey on different techniques used for age and gender classification
A Survey on different techniques used for age and gender classificationA Survey on different techniques used for age and gender classification
A Survey on different techniques used for age and gender classification
 
A N E XTENSION OF P ROTÉGÉ FOR AN AUTOMA TIC F UZZY - O NTOLOGY BUILDING U...
A N  E XTENSION OF  P ROTÉGÉ FOR AN AUTOMA TIC  F UZZY - O NTOLOGY BUILDING U...A N  E XTENSION OF  P ROTÉGÉ FOR AN AUTOMA TIC  F UZZY - O NTOLOGY BUILDING U...
A N E XTENSION OF P ROTÉGÉ FOR AN AUTOMA TIC F UZZY - O NTOLOGY BUILDING U...
 
A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...
A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...
A CASE STUDY OF INNOVATION OF AN INFORMATION COMMUNICATION SYSTEM AND UPGRADE...
 
Name _____________________Bipedal AustralopithOBJECTIVES.docx
Name _____________________Bipedal AustralopithOBJECTIVES.docxName _____________________Bipedal AustralopithOBJECTIVES.docx
Name _____________________Bipedal AustralopithOBJECTIVES.docx
 
Artificial intelligence in cyber physical systems
Artificial intelligence in cyber physical systemsArtificial intelligence in cyber physical systems
Artificial intelligence in cyber physical systems
 
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGINTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
 

More from IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
IAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
IAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
IAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
IAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
IAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
IAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
IAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
IAEME Publication
 

More from IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Recently uploaded

Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Wask
 
Project Management Semester Long Project - Acuity
Project Management Semester Long Project - AcuityProject Management Semester Long Project - Acuity
Project Management Semester Long Project - Acuity
jpupo2018
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
Federico Razzoli
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
David Brossard
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
名前 です男
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 

Recently uploaded (20)

Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Digital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying AheadDigital Marketing Trends in 2024 | Guide for Staying Ahead
Digital Marketing Trends in 2024 | Guide for Staying Ahead
 
Project Management Semester Long Project - Acuity
Project Management Semester Long Project - AcuityProject Management Semester Long Project - Acuity
Project Management Semester Long Project - Acuity
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Webinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data WarehouseWebinar: Designing a schema for a Data Warehouse
Webinar: Designing a schema for a Data Warehouse
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
OpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - AuthorizationOpenID AuthZEN Interop Read Out - Authorization
OpenID AuthZEN Interop Read Out - Authorization
 
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
みなさんこんにちはこれ何文字まで入るの?40文字以下不可とか本当に意味わからないけどこれ限界文字数書いてないからマジでやばい文字数いけるんじゃないの?えこ...
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 

A journey from cognitive metrics to cognitive comput

  • 1. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 60 A JOURNEY FROM COGNITIVE METRICS TO COGNITIVE COMPUTERS Dr. Leena Jain1 , Mr. Satinderjit Singh2 1 Associate Professor & Head -MCA, Global Institute of Mgt. &. Emerging Technologies, Amritsar (India) 2 Ph. D. Research Scholar, Punjab Technical University Jalandhar (India), Associate Professor, Dept of Computer Applications, GGNIMT Ludhiana. ABSTRACT Software cognitive metrics is new field in software engineering with far reaching potential. The paper profiles the trajectory of software cognitive metrics for last decade and also enlists some of the concerns and issue related with them. The emergence of Cognitive informatics (CI) – interplay of computer science, information science, cognitive science, and intelligence science - with the intent to investigate mechanisms and processes of the brain and engineering applications arises out is discussed. The key idea of Cognitive computer is also discussed along with some of path breaking works done or being done under CI. In-fact Software cognitive metrics looks like just one of many application area of CI. Keywords: Abstract intelligence, Cognitive computer, Cognitive informatics, Denotational mathematics, Software cognitive metrics I. INTRODUCTION Software’s are inherently complex in nature. From the last few decades it has been the endeavor of the software industry to find a good measure of the software complexity. However there are many aspects of software complexity. Fenton distinguishes three kinds of complexities: computational, psychological and representational [1]. Wang classifies complexity as computational, symbolic, structural and functional [2]. Yingxu Wang and Jingqiu Shao proposed a new measure - cognitive functional size (CFS) - of software complexity based on the cognitive weights [3]. INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND TECHNOLOGY (IJARET) ISSN 0976 - 6480 (Print) ISSN 0976 - 6499 (Online) Volume 4, Issue 4, May – June 2013, pp. 60-66 © IAEME: www.iaeme.com/ijaret.asp Journal Impact Factor (2013): 5.8376 (Calculated by GISI) www.jifactor.com IJARET © I A E M E
  • 2. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 61 Earlier measures of software’s complexity typically depended on program size like counting the number of lines of codes, then some improvement was made by taking into consideration data flow and module interfaces such as the Halstead’s software metrics and measure of cyclomatic complexity developed by McCabe became very popular [4], [5], [6]. All these and many other proposed metrics did not capture all aspects of complexity. The cognitive complexity, as proposed by Wang and Shao provided a new approach to explain and measure the functional complexity of software as well as the effort in software design and comprehension [3]. This new approach perceives software functional complexity as a measure of cognitive complexity for human creative artifacts, which considers the effect of both internal structures of software and the I/O data objects under processing [3]. This paper studies the development of Software Cognitive metrics in last decade or so, after they were first proposed by Wang and Shao in the year 2003. In section II a brief history of development of cognitive metrics in software is profiled. In section III we basically identify and discuss some of the challenges and issues concerning the next level of acceptance of cognitive metrics. The doubts and concerns mentioned in section III could not be properly tackled merely by application of current body of knowledge in computer science. For this we have to take refuge in emerging trans-disciplinary study of Cognitive Informatics (CI), which will be introduced in section IV. In-fact we will see that Software cognitive metrics is just one of many application area of CI. In section V we conclude by pointing out the exciting new possibilities which are coming out as result of current work being done in CI. This includes not only the current problem of Software Cognitive metrics and comprehension, but areas like bridging the gap between Artificial Intelligence (AI) and Natural Intelligence (NI), Natural Language computing, intelligent search engines, and computational intelligence. This also includes the exciting possibility to develop a Cognitive computer- Computer that behaves like human mind with all the features of learning, reasoning etc. II. SOFTWARE COGNITIVE METRICS In the year 2003 Yingxu Wang [3] introduced the concept of cognitive functional complexity of softwares. In this metrics the BCS basic control structures are assigned cognitive weights. BCS are the set of fundamental and essential flow control mechanisms that are used for building logical architecture of software. TABLE 1 Cognitive Weights of different BCS BCS Cognitive Weight Sequence 1 Branch If–Then-Else 2 Case 3 Iterations 3 Function Call 2 Recursion 3 Parallel 4 Interrupt 4
  • 3. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 62 In this metrics the total cognitive weight of a component is measured by either adding the weights of a BCS if they are in series or they are multiplied if they are embedded in another BCS. The total cognitive weight of a software component, Wc, is defined as the sum of cognitive weights of its q linear blocks composed in individual BCS’s. Since each block may consist of m layers of nesting BCS’s, and each layer with n linear BCS’s, the total cognitive weight, Wc, can be calculated by equation (1). ∑ ∏∑= = =       = q j m k n i c ikjWcW 1 1 1 ),,(( (1) In this metrics the different BCS are assigned the weights as shown in table 1. These weights are based on the human effort in comprehending these BCS The cognitive functional size (CFS) of a basic software component that only consists of one method, fS , is defined as a product of the sum of inputs and outputs ( oiN / ), and the total cognitive weight, i.e.: Coif WNS */= = (No + Ni){ ∑ ∏∑= = =      q j m k n i ikjWc 1 1 1 ),,(( } (2) However [7] have shown that the current existing calculation method of cognitive metrics can generate different results that are algebraically equivalence.They highlighted the combinatorial meanings of this calculation method- as shown by Wang [3] and it shows significant flaw in the measure. Wang’s measure does not take into consideration the data flow complexity of a component which is not embedded in one another. TABLE 2 Example of data flow among BCS for(j=2; j<i; j++) { if (i%j= =0) break; } If (i = = j) printf("t%d",i); Just to take an example in table 2, Wang’s measure considers the ‘for’ and the ‘if’ structures independently. But the two structures cannot be considered independently, as data flows from one structure to the other, and in doing so it carries with it some complexity. This is true because we cannot understand the ‘if’ structure independently without considering the preceding ‘for’ structure. However in the year 2009, Wang [2] suggested new weights for various BCS as mentioned in Table 3 below:
  • 4. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 63 TABLE 3 Modified Cognitive Weights of different BCS S.No. BCS Description cognitive weight (wi) 1 Sequence 1 2 Branch 3 3 Switch 4 4 For-loop 7 5 Repeat-loop 7 6 While-loop 8 7 Function call 7 8 Recursion 11 9 Parallel 15 10 Interrupt 22 Although the weights for BCS were changed by Wang, but the method of calculating overall cognitive complexity of the software remains more or less same. Thus the objection of [7] still remains. Apart from this there are still some troubling questions about Cognitive Metrics. III. ISSUES RELATED WITH COGNITIVE METRICS The objection of [7], apart, there are some other key concerns regarding Software cognitive Metrics. Some of the concerns and doubts are as follow: 1) How authentic the weights of BCS are? Can it be statistically verified? 2) Is everybody’s mind work in same way and there is no variation? How does one set of weights fits all population? 3) What about the variation within the population? To a different population- differing in age, sex, nationality, computing skills etc. - do these weights hold? 4) Can it be possible – as in case of medicine and social science- to identify various segments of the population which does not concur with above weights of BCS but have their own weights? These and many more questions and doubts of the same category are extremely valid and important. I am sure in the years to come more and more research in the area of cognitive metrics will be carried out to fill these concerns or research Gap area. IV. THE EMERGENCE OF COGNITIVE INFORMATICS All the concerns and doubts raised in section III are perfectly valid but software engineering or computer science is not fully equipped to deal with these and other related issues. The points raised in previous section can only be tackled if we have a proper understanding of working of human brain; its information processing mechanisms and about the phenomena of Natural Intelligence (NI). Since the working of human brain was more or less unknown so there was little scope of advancement in applications (like Cognitive software metrics) which tries to mimics the working of Human Brain.
  • 5. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 64 It was in this backdrop that term Cognitive Informatics (CI) was coined by Wang and others. It is a separate field of enquiry involving multiple disciplines like computer science, information science, cognitive science, and intelligence science with the intent to investigate the phenomena of natural intelligence and the internal information processing mechanisms and processes of the brain and its engineering applications in cognitive computing. CI was recognized as separate and important field of enquiry by the scientific community. Even otherwise CI itself has accumulated a solid body of Knowledge and field is pregnant with many exciting possibilities. These includes development of highly intelligent systems such as cognitive knowledge search engines, world-wide wisdom (WWW+), autonomous learning machines, and cognitive robots. One key application of CI is idea of Cognitive computer. Actually this is more of an inspiration and motivation for the researcher working in the field of Cognitive informatics rather than just being a mere possible application of CI. By Cognitive Computer we mean an intelligent computer which has a capacity of human brain; that it can perceive, learn and reason and is basically a knowledge processor rather than a data processor which a conventional computer is. The current problem of Software cognitive metrics will be just a small little application in Cognitive computer and some of the concerns raised in section III should probably be tackle-able in it as well. Also the distant dream of computer linguists of Computing with Natural Language (CNL) should now seem possible through Cognitive computers [8]. V. THE PILLARS OF COGNITIVE RESEARCH The previous section introduces the Field of Cognitive Informatics (CI). CI borrows the work done in so many diverse fields, seals it under one roof and enriches these works by developing a common theoretical frame work and supporting mathematics for developing the common understanding of Human Brain and subsequent computing application coming out of it. In this context some of path breaking works done or being done under CI can be basically classified in following categories. A. Theoretical framework of CI Since its advent a decade ago, CI has developed a phenomenal body of work in building up theory of how human Brain works. This includes Information-Matter-Energy (IME) model, the Layered Reference Model of the Brain (LRMB) , the Object-Attribute- Relation (OAR) model of information/knowledge representation in the brain [9], [10]. Particularly the development of Layered Reference Model of the Brain (LRMB) is of extreme importance and is really a milestone. It identifies 43 cognitive processes in 7 layers. All human efforts or activities are supposed to be permutation and combination of these 43 cognitive functions. Why LRMB is an important development? Because with the identification of basic cognitive processes, it has become possible, first time human history, to have computer representation of basic human features of consciousness, emotion, intelligence etc. And it is generally believed that the study on integration of consciousness, emotion and intelligence is a good stepping stone to cognitive computing.
  • 6. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 65 B. Common concepts for all types of Intelligence Even after the 57 years of formal research in Artificial Intelligence (AI), till date we have still not produced a machine which can pass the Turing test [11]. It has become more and more clear that modern computing – impressive as it may be- is nowhere near human intelligence level. As noted by Zadeh, human are remarkable in two ways at least. First of all they have a remarkable ability to take decision in environment of uncertainty, imprecision, and incomplete information [11]. And the ability to perform task without any measurement and computation is also something which is different from computers. Clearly natural intelligence (NI) can not be replaced by Artificial Intelligence (AI), until the very process of internal information processing of brain is known properly. In this context the development of novel theory of Abstract intelligence (αI) is quite a remarkable achievement in its own right [12]. It is an attempt to bring both form of intelligence –Artificial and Natural- under one common umbrella and then fits it to neural, cognitive, functional and logical form. The paradigms of Abstract intelligence are natural, artificial, machine-able, and computational intelligence. The study of Abstract intelligence (αI) aims at revealing the basic mechanisms of different forms of intelligence. C. Development of Supporting Mathematics for CI The development of any scientific field normally goes hand in hand with mathematical representation of concepts underlying its theory. One of the endeavor of CI since its inception is to develop parallel mathematical structure able to depict complex concepts and idea inherent in its theory. And it is more imperative for field like CI, which is multi disciplinary in nature. The absence of proper Mathematical support would lead us to days when CI was not conceived. Different fields were working in their own smaller domain areas- perusing their small goals- but their collective effect were missing. Large category of DMs have been created and developed in CI such as real-time process algebra (RTPA) [13], concept algebra, system algebra [14], granular algebra, and visual semantic algebra (VSA). VI. CONCLUSION The formal interest in Cognitive informatics started in the year 2002, when IEEE recognized it as a separate field and lends its name and recognition to International Conference on Cognitive Informatics (ICCI). Since then the interest in the field has grown tremendously. Yingxu Wang has played a key role in the development of CI. He is the founder and steering committee chair of the annual IEEE International Conference on Cognitive Informatics and Cognitive Computing (ICCI*CC). It was coincidence that one of the first problems he dealt in 2002-03 was to look towards software in terms of cognitive complexity and introduced the concept of BCS along with their weights. Or perhaps it was just not the coincidence. Whatever might be the case; but it is amazing that something which started with measuring the effort to comprehend the software cognitively has expanded itself to become one of the most exciting, emerging and trans-disciplinary field in applied science. The paper reflects this journey.
  • 7. International Journal of Advanced Research in Engineering and Technology (IJARET), ISSN 0976 – 6480(Print), ISSN 0976 – 6499(Online) Volume 4, Issue 4, May – June (2013), © IAEME 66 REFERENCES [1] N.Fenton,(1994),”Software Measurement: a Necessary Scientific Basis”, IEEE Trans. Software Eng., Vol. 20, No. 3, pp. 199-206. [2] Y. Wang,(2009) “On the Cognitive Complexity of Software and its Quantification and Formal measurement.” International Journal of Software Science and Computational Intelligence, Vol. 1, No. 2, , pp. 31-53. [3] Y. Wang. and J. Shao (2003), "Measurement of the Cognitive Functional Complexity of Software", Proceedings of the 2nd IEEE International Conference on Cognitive Informatics, 2003, pp. 67-74 [4] A.J. Albrecht and J. E. Gaffney (1983),“Software Function, Source Lines of code, and Development Effort Prediction: A Software Science Validation”, IEEE Transactions on Software Engineering, Vol.9, No.6, , pp. 639-648. [5] M. H. Halstead,(1996) , “Elements of Software Science” (Operating and programming systems series), Elsevier Science Inc. New York, Edition 1977, pp. 68-96. [6] T. H. McCabe, (1976) “A Complexity Measure”, IEEE Trans. Software Eng. SE – Vol.2, No. 6, pp. 308-320. [7] B. Auprasert, and Y. Limpiyakorn,(2008) , “Underlying Cognitive Complexity Measure Computation with Combinatorial Rules”, Proceedings of world academy of science, engineering and technology Vol. 35, 2008, pp 432-437. [8] L.A. Zadeh, (1999), “From Computing with Numbers to Computing with Words – from Manipulation of Measurements to manipulation of Perception”, IEEE Trans. on Circuits and Systems I, 45(1), 1999, pp. 105-119. [9] Y. Wang, S. Patel, and D. Patel (2006) , “A Layered Reference Model of the Brain (LRMB)”, IEEE Trans. on Systems, Man, and Cybernetics (C), 36(2), , pp. 124-133. [10] Y. Wang(2007), “The OAR Model of Neural Informatics for Internal Knowledge Representation in the Brain“, International Journal of Cognitive Informatics and Natural Intelligence, 1(3), 2007 pp., 64-75. [11] L.A. Zadeh, (2008a), “Toward Human Level Machine Intelligence - Is It Achievable? The Need for a Paradigm Shift”, Computational Intelligence Magazine, IEEE , 3(3), 2008, pp. 11 – 22. [12] Y. Wang(2008b), “On Contemporary Denotational Mathematics for Computational Intelligence”, Transactions of Computational Science, 2, Springer, pp. 6-29. [13] Y. Wang(2008c) ,” RTPA: A Denotational Mathematics for Manipulating Intelligent and Computational Behaviors”, International Journal of Cognitive Informatics and Natural Intelligence, 2(2), 2008 , pp. 44-62. [14] Y. Wang, L.A. Zadeh, and Y. Yao (2009b), “On the System Algebra Foundations for Granular Computing” , International Journal of Software Science and Computational Intelligence, (1), 2009, pp. 1-17. [15] J.Emi Retna, Greeshma Varghese, Merlin Soosaiya and Sumy Joseph, “A Study on Quality Parameters of Software and the Metrics for Evaluation”, International journal of Computer Engineering & Technology (IJCET), Volume 1, Issue 1, 2010, pp. 235 - 249, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. [16] Mohammed Sirajuddin, Dr D. Rajya Lakshmi, Dr Syed Abdul Sattar and Nafisur Rahman, “Fuzzy Logic — The Fascinating Logic Behind Artificial Computational Intelligence” International Journal of Advanced Research in Engineering & Technology (IJARET), Volume 4, Issue 3, 2013, pp. 280 - 285, ISSN Print: 0976-6480, ISSN Online: 0976-6499.