induction of regular languages
   HOME

TheInfoList



OR:

In
computational learning theory In computer science, computational learning theory (or just learning theory) is a subfield of artificial intelligence devoted to studying the design and analysis of machine learning algorithms. Overview Theoretical results in machine learning m ...
, induction of regular languages refers to the task of learning a formal description (e.g. grammar) of a
regular language In theoretical computer science and formal language theory, a regular language (also called a rational language) is a formal language that can be defined by a regular expression, in the strict sense in theoretical computer science (as opposed to ...
from a given set of example strings. Although E. Mark Gold has shown that not every regular language can be learned this way (see
language identification in the limit Language identification in the limit is a formal model for inductive inference of formal languages, mainly by computers (see machine learning and induction of regular languages). It was introduced by E. Mark Gold in a technical report and a journal ...
), approaches have been investigated for a variety of subclasses. They are sketched in this article. For learning of more general grammars, see
Grammar induction Grammar induction (or grammatical inference) is the process in machine learning of learning a formal grammar (usually as a collection of ''re-write rules'' or '' productions'' or alternatively as a finite state machine or automaton of some kind) fr ...
.


Example

A ''
regular language In theoretical computer science and formal language theory, a regular language (also called a rational language) is a formal language that can be defined by a regular expression, in the strict sense in theoretical computer science (as opposed to ...
'' is defined as a (finite or infinite) set of ''
strings String or strings may refer to: *String (structure), a long flexible structure made from threads twisted together, which is used to tie, bind, or hang other objects Arts, entertainment, and media Films * ''Strings'' (1991 film), a Canadian anim ...
'' that can be described by one of the mathematical formalisms called "
finite automaton A finite-state machine (FSM) or finite-state automaton (FSA, plural: ''automata''), finite automaton, or simply a state machine, is a mathematical model of computation. It is an abstract machine that can be in exactly one of a finite number o ...
", "
regular grammar In theoretical computer science and formal language theory, a regular grammar is a grammar that is ''right-regular'' or ''left-regular''. While their exact definition varies from textbook to textbook, they all require that * all production rules ...
", or "
regular expression A regular expression (shortened as regex or regexp; sometimes referred to as rational expression) is a sequence of characters that specifies a search pattern in text. Usually such patterns are used by string-searching algorithms for "find" or ...
", all of which have the same expressive power. Since the latter formalism leads to shortest notations, it shall be introduced and used here. Given a set Σ of symbols (a.k.a. alphabet), a
regular expression A regular expression (shortened as regex or regexp; sometimes referred to as rational expression) is a sequence of characters that specifies a search pattern in text. Usually such patterns are used by string-searching algorithms for "find" or ...
can be any of * ∅ (denoting the empty set of strings), * ε (denoting the singleton set containing just the empty string), * ''a'' (where ''a'' is any character in Σ; denoting the singleton set just containing the single-character string ''a''), * ''r''+''s'' (where ''r'' and ''s'' are, in turn, simpler regular expressions; denoting their set's union) * ''r''⋅''s'' (denoting the set of all possible concatenations of strings from ''r'' 's and ''s'' 's set), * ''r''+ (denoting the set of ''n''-fold repetitions of strings from ''r'' 's set, for any ''n''≥1), or * ''r''* (similarly denoting the set of ''n''-fold repetitions, but also including the empty string, seen as 0-fold repetition). For example, using Σ = , the regular expression (0+1+ε)⋅(0+1) denotes the set of all binary numbers with one or two digits (leading zero allowed), while 1⋅(0+1)*⋅0 denotes the (infinite) set of all even binary numbers (no leading zeroes). Given a set of strings (also called "positive examples"), the ''task of regular language induction'' is to come up with a regular expression that denotes a set containing all of them. As an example, given , a "natural" description could be the regular expression 1⋅0*, corresponding to the informal characterization "''a 1 followed by arbitrarily many (maybe even none) 0es''". However, (0+1)* and 1+(1⋅0)+(1⋅0⋅0) is another regular expression, denoting the largest (assuming Σ=) and the smallest set containing the given strings, and called the trivial ''overgeneralization'' and ''undergeneralization'', respectively. Some approaches work in an extended setting where also a set of "negative example" strings is given; then, a regular expression is to be found that generates all of the positive, but none of the negative examples.


Lattice of automata

Dupont et al. have shown that the set of all structurally complete finite automatai.e. finite automata without unnecessary states and transitions, with respect to the given input set of strings generating a given input set of example strings forms a
lattice Lattice may refer to: Arts and design * Latticework, an ornamental criss-crossed framework, an arrangement of crossing laths or other thin strips of material * Lattice (music), an organized grid model of pitch ratios * Lattice (pastry), an orna ...
, with the trivial undergeneralized and the trivial overgeneralized automaton as bottom and top element, respectively. Each member of this lattice can be obtained by factoring the undergeneralized automaton by an appropriate
equivalence relation In mathematics, an equivalence relation is a binary relation that is reflexive, symmetric and transitive. The equipollence relation between line segments in geometry is a common example of an equivalence relation. Each equivalence relation ...
. For the above example string set , the picture show at its bottom the undergeneralized automaton ''A''a,b,c,d in , consisting of states , , , and . On the state set , a total of 15 equivalence relations exist, forming a lattice. MappingThis mapping is not a
lattice homomorphism A lattice is an abstract structure studied in the mathematical subdisciplines of order theory and abstract algebra. It consists of a partially ordered set in which every pair of elements has a unique supremum (also called a least upper boun ...
, but only a monotonic mapping.
each equivalence ''E'' to the corresponding quotient automaton language ''L''(''A''a,b,c,d / ''E'') obtains the partially ordered set shown in the picture. Each node's language is denoted by a regular expression. The language may be recognized by quotient automata w.r.t. different equivalence relations, all of which are shown below the node. An arrow between two nodes indicates that the lower node's language is a proper subset of the higher node's. If both positive and negative example strings are given, Dupont et al. build the lattice from the positive examples, and then investigate the separation border between automata that generate some negative example and such that do not. Most interesting are those automata immediately below the border. In the picture, separation borders are shown for the negative example strings 11 (), 1001 (, 101 (), and 0 (). Coste and Nicolas present an own search method within the lattice, which they relate to Mitchell's
version space Version space learning is a Symbolic artificial intelligence, logical approach to machine learning, specifically binary classification. Version space learning algorithms search a predefined space of hypothesis, hypotheses, viewed as a set of Senten ...
paradigm. To find the separation border, they use a graph coloring algorithm on the state inequality relation induced by the negative examples. Later, they investigate several ordering relations on the set of all possible state fusions. Kudo and Shimbo use the representation by automaton factorizations to give a unique framework for the following approaches (sketched
below Below may refer to: *Earth *Ground (disambiguation) *Soil *Floor *Bottom (disambiguation) Bottom may refer to: Anatomy and sex * Bottom (BDSM), the partner in a BDSM who takes the passive, receiving, or obedient role, to that of the top or ...
): * k-reversible languages and the "tail clustering" follow-up approach, * Successor automata and the predecessor-successor method, and * pumping-based approaches (framework-integration challenged by Luzeaux, however). Each of these approaches is shown to correspond to a particular kind of equivalence relations used for factorization.


Approaches


''k''-reversible languages

Angluin considers so-called "''k''-reversible" regular automata, that is, deterministic automata in which each state can be reached from at most one state by following a transition chain of length ''k''. Formally, if Σ, ''Q'', and ''δ'' denote the input alphabet, the state set, and the transition function of an automaton ''A'', respectively, then ''A'' is called ''k''-reversible if : , where ''δ''* means the homomorphic extension of ''δ'' to arbitrary words. Angluin gives a cubic algorithm for learning of the smallest ''k''-reversible language from a given set of input words; for ''k''=0, the algorithm has even almost linear complexity. The required state uniqueness after ''k''+1 given symbols forces unifying automaton states, thus leading to a proper generalization different from the trivial undergeneralized automaton. This algorithm has been used to learn simple parts of English syntax; later, an incremental version has been provided. Another approach based on ''k''-reversible automata is the ''tail clustering method''.


Successor automata

From a given set of input strings, Vernadat and Richetin build a so-called ''successor automaton'', consisting of one state for each distinct character and a transition between each two adjacent characters' states. For example, the singleton input set leads to an automaton corresponding to the
regular expression A regular expression (shortened as regex or regexp; sometimes referred to as rational expression) is a sequence of characters that specifies a search pattern in text. Usually such patterns are used by string-searching algorithms for "find" or ...
(''a''+⋅''b''+)*. An extension of this approach is the ''predecessor-successor method'' which generalizes each character repetition immediately to a Kleene + and then includes for each character the set of its possible predecessors in its state. Successor automata can learn exactly the class of '' local languages''. Since each
regular language In theoretical computer science and formal language theory, a regular language (also called a rational language) is a formal language that can be defined by a regular expression, in the strict sense in theoretical computer science (as opposed to ...
is the homomorphic image of a local language, grammars from the former class can be learned by ''lifting'', if an appropriate (depending on the intended application)
homomorphism In algebra, a homomorphism is a structure-preserving map between two algebraic structures of the same type (such as two groups, two rings, or two vector spaces). The word ''homomorphism'' comes from the Ancient Greek language: () meaning "same" ...
is provided. In particular, there is such a homomorphism for the class of languages learnable by the predecessor-successor method. The learnability of local languages can be reduced to that of ''k''-reversible languages.


Early approaches

Chomsky and Miller (1957) used the
pumping lemma In the theory of formal languages, the pumping lemma may refer to: *Pumping lemma for regular languages, the fact that all sufficiently long strings in such a language have a substring that can be repeated arbitrarily many times, usually used to pro ...
: they guess a part ''v'' of an input string ''uvw'' and try to build a corresponding cycle into the automaton to be learned; using ''membership queries'' they ask, for appropriate ''k'', which of the strings ''uw'', ''uvvw'', ''uvvvw'', ..., ''uvkw'' also belongs to the language to be learned, thereby refining the structure of their automaton. In 1959, Solomonoff generalized this approach to
context-free languages In formal language theory, a context-free language (CFL) is a language generated by a context-free grammar (CFG). Context-free languages have many applications in programming languages, in particular, most arithmetic expressions are generated by ...
, which also obey a
pumping lemma In the theory of formal languages, the pumping lemma may refer to: *Pumping lemma for regular languages, the fact that all sufficiently long strings in such a language have a substring that can be repeated arbitrarily many times, usually used to pro ...
.


Cover automata

Câmpeanu et al. learn a finite automaton as a compact representation of a large finite language. Given such a language ''F'', they search a so-called ''cover automaton'' ''A'' such that its language ''L''(''A'') covers ''F'' in the following sense: , where is the length of the longest string in ''F'', and denotes the set of all strings not longer than . If such a cover automaton exists, ''F'' is uniquely determined by ''A'' and . For example, ''F'' = has and a cover automaton corresponding to the regular expression (''r''⋅''e'')*⋅''a''⋅''d''. For two strings ''x'' and ''y'', Câmpeanu et al. define ''x'' ~ ''y'' if ''xz''∈''F'' ⇔ ''yz''∈''F'' for all strings ''z'' of a length such that both ''xz'' and ''yz'' are not longer than . Based on this relation, whose lack of transitivityFor example, ''F'' = leads to ''aab'' ~ ''aabb'' (only ''z''=ε needs to be considered to check this) and ''aabb'' ~ ''baa'' (similarly), but not ''aab'' ~ ''baa'' (due to the case ''z''=''b''). According to Câmpeanu et al. (2001, Lemma 1, p.5), however ''x'' ~ ''y'' ∧ ''y'' ~ ''z'' → ''x'' ~ ''z'' holds for strings ''x'', ''y'', ''z'' with , ''x'', ≤ , ''y'', ≤ , ''z'', . causes considerable technical problems, they give an ''O''(''n''4)where ''n'' is the number of states of a DFA ''A''''F'' such that ''L''(''A''''F'') = ''F'' algorithm to construct from ''F'' a cover automaton ''A'' of minimal state count. Moreover, for union, intersection, and difference of two finite languages they provide corresponding operations on their cover automata. Păun et al. improve the time complexity to ''O''(''n''2).


Residual automata

For a set ''S'' of strings and a string ''u'', the ''
Brzozowski derivative In theoretical computer science, in particular in formal language theory, the Brzozowski derivative u^S of a set S of strings and a string u is the set of all strings obtainable from a string in S by cutting off the prefix u, as illustrated in th ...
'' ''u''−1''S'' is defined as the set of all rest-strings obtainable from a string in ''S'' by cutting off its prefix ''u'' (if possible), formally: , cf. picture. Denis et al. define a ''residual automaton'' to be a nondeterministic finite automaton ''A'' where each state ''q'' corresponds to a Brzozowski derivative of its accepted language ''L''(''A''), formally: , where ''L''(''A'',''q'') denotes the language accepted from ''q'' as start state. They show that each regular language is generated by a uniquely determined minimal residual automaton. Its states are -indecomposable Brzozowski derivatives, and it may be exponentially smaller than the minimal deterministic automaton. Moreover, they show that residual automata for regular languages cannot be learned in polynomial time, even assuming optimal sample inputs. They give a learning algorithm for residual automata and prove that it learns the automaton from its ''characteristic sample'' of positive and negative input strings.


Query Learning

Regular languages cannot be learned in polynomial time using only membership queries or using only equivalence queries. However, Angluin has shown that regular languages can be learned in polynomial time using membership queries and equivalence queries, and has provided a learning algorithm termed L* that does exactly that. The L* algorithm was later generalised to output an NFA ( non-deterministic finite automata) rather than a DFA (
deterministic finite automata In the theory of computation, a branch of theoretical computer science, a deterministic finite automaton (DFA)—also known as deterministic finite acceptor (DFA), deterministic finite-state machine (DFSM), or deterministic finite-state automa ...
), via an algorithm termed NL*. This result was further generalised, and an algorithm that outputs an AFA ( alternating finite automata) termed AL* was devised. It is noted that NFA can be exponentially more succinct than DFAs, and that AFAs can be exponentially more succinct than NFAs and doubly-exponentially more succinct than DFAs.


Reduced regular expressions

Brill defines a ''reduced regular expression'' to be any of * ''a'' (where a is any character in Σ; denoting the singleton set just containing the single-character string a), * ¬''a'' (denoting any other single character in Σ except ''a''), * • (denoting any single character in Σ) * ''a''*, (¬''a'')*, or •* (denoting arbitrarily many, possibly zero, repetitions of characters from the set of ''a'', ¬''a'', or •, respectively), or * ''r''⋅''s'' (where r and s are, in turn, simpler reduced regular expressions; denoting the set of all possible concatenations of strings from ''r'' 's and ''s'' 's set). Given an input set of strings, he builds step by step a
tree In botany, a tree is a perennial plant with an elongated stem, or trunk, usually supporting branches and leaves. In some usages, the definition of a tree may be narrower, including only woody plants with secondary growth, plants that are ...
with each branch labelled by a reduced regular expression accepting a prefix of some input strings, and each node labelled with the set of lengths of accepted prefixes. He aims at learning correction rules for English spelling errors,For example: Replace "''past''" by "''passed''" in the context "(¬''t''⋅''o'')*⋅''SINGULAR_NOUN''⋅''past''" rather than at theoretical considerations about learnability of language classes. Consequently, he uses
heuristics A heuristic (; ), or heuristic technique, is any approach to problem solving or self-discovery that employs a practical method that is not guaranteed to be optimal, perfect, or rational, but is nevertheless sufficient for reaching an immediate, ...
to prune the tree-buildup, leading to a considerable improvement in run time.


Applications

* Finding common patterns in DNA and RNA structure descriptions (
Bioinformatics Bioinformatics () is an interdisciplinary field that develops methods and software tools for understanding biological data, in particular when the data sets are large and complex. As an interdisciplinary field of science, bioinformatics combi ...
) * Modelling natural
language acquisition Language acquisition is the process by which humans acquire the capacity to perceive and comprehend language (in other words, gain the ability to be aware of language and to understand it), as well as to produce and use words and sentences to ...
by humans * Learning of structural descriptions from structured example documents, in particular
Document Type Definition A document type definition (DTD) is a set of ''markup declarations'' that define a ''document type'' for an SGML-family markup language ( GML, SGML, XML, HTML). A DTD defines the valid building blocks of an XML document. It defines the document ...
s (DTD) from
SGML The Standard Generalized Markup Language (SGML; ISO 8879:1986) is a standard for defining generalized markup languages for documents. ISO 8879 Annex A.1 states that generalized markup is "based on two postulates": * Declarative: Markup should des ...
documents * Learning the structure of music pieces * Obtaining compact representations of finite languages * Classifying and retrieving documents * Generating of context-dependent correction rules for English grammatical errors


Notes


References

{{Reflist Formal languages Computational learning theory