emacs.d/clones/lisp/www.cliki.net/CL-EARLEY-PARSER.html
2022-10-07 15:47:14 +02:00

100 lines
No EOL
4.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CLiki: CL-EARLEY-PARSER</title>
<link rel="alternate" type="application/atom+xml" title="ATOM feed of edits to current article"
href="https://www.cliki.net/site/feed/article.atom?title=CL-EARLEY-PARSER">
<link rel="stylesheet" href="static/css/style.css">
<link rel="stylesheet" href="static/css/colorize.css">
</head>
<body>
<span class="hidden">CLiki - CL-EARLEY-PARSER</span>
<div id="content"><div id="content-area"><div id="article-title">CL-EARLEY-PARSER</div><div id="article">The Earley parser depends on a grammar description (currently in Backus-Naur form) and a lexicon (currently in a plist like form). Based on these, the EARLEY-PARSE function performs a syntax analysis on a sentence (parses it). The result is a listing of parse charts, that can easily be converted to a list of syntax-trees in s-expression form.<p>It is available on <a href="https://github.com/oyvinht/cl-earley-parser">Github</a>.<p>Here is how to use it:<p><pre>
CL-USER&gt; (require :asdf)
:ASDF
(&quot;ASDF&quot;)
CL-USER&gt; (asdf:oos &#039;asdf:load-op &#039;cl-earley-parser)
NIL
CL-USER&gt; (use-package :earley-parser)
T
CL-USER&gt; (earley-parse &quot;Book that flight&quot;
(load-bnf-grammar &quot;./examples/grammar.txt&quot;)
(load-lexicon &quot;./examples/lexicon.txt&quot;))
#CHART-LISTING:
0. #CHART:
#{G -&gt; . S [0,0]}
#{S -&gt; . NP VP [0,0]}
#{S -&gt; . VP [0,0]}
#{S -&gt; . Aux NP VP [0,0]}
#{NP -&gt; . det nominal [0,0]}
#{NP -&gt; . proper-noun [0,0]}
#{VP -&gt; . verb [0,0]}
#{VP -&gt; . verb NP [0,0]}
1. #CHART:
#{verb -&gt; Book . [0,1]}
#{VP -&gt; verb . [0,1]}
#{VP -&gt; verb . NP [0,1]}
#{S -&gt; VP . [0,1]}
#{NP -&gt; . det nominal [1,1]}
#{NP -&gt; . proper-noun [1,1]}
#{G -&gt; S . [0,1]}
2. #CHART:
#{det -&gt; that . [1,2]}
#{NP -&gt; det . nominal [1,2]}
#{nominal -&gt; . noun [2,2]}
#{nominal -&gt; . noun nominal [2,2]}
3. #CHART:
#{noun -&gt; flight . [2,3]}
#{nominal -&gt; noun . [2,3]}
#{nominal -&gt; noun . nominal [2,3]}
#{NP -&gt; det nominal . [1,3]}
#{nominal -&gt; . noun [3,3]}
#{nominal -&gt; . noun nominal [3,3]}
#{VP -&gt; verb NP . [0,3]}
#{S -&gt; VP . [0,3]}
#{G -&gt; S . [0,3]}
CL-USER&gt; (chart-listing-&gt;trees *)
((&quot;S&quot; (&quot;VP&quot; (&quot;verb&quot; &quot;Book&quot;) (&quot;NP&quot; (&quot;det&quot; &quot;that&quot;) (&quot;nominal&quot; (&quot;noun&quot; &quot;flight&quot;))))))
CL-USER&gt;
</pre><p><hr>
<a href="Natural&#32;Language&#32;Processing.html" class="category">Natural Language Processing</a></div></div>
<div id="footer" class="buttonbar"><ul><li><a href="CL-EARLEY-PARSER.html">Current version</a></li>
<li><a href="https://www.cliki.net/site/history?article=CL-EARLEY-PARSER">History</a></li>
<li><a href="https://www.cliki.net/site/backlinks?article=CL-EARLEY-PARSER">Backlinks</a></li><li><a href="https://www.cliki.net/site/edit-article?title=CL-EARLEY-PARSER&amp;from-revision=3689153339">Edit</a></li><li><a href="https://www.cliki.net/site/edit-article?create=t">Create</a></li></ul></div>
</div>
<div id="header-buttons" class="buttonbar">
<ul>
<li><a href="https://www.cliki.net/">Home</a></li>
<li><a href="https://www.cliki.net/site/recent-changes">Recent Changes</a></li>
<li><a href="CLiki.html">About</a></li>
<li><a href="Text&#32;Formatting.html">Text Formatting</a></li>
<li><a href="https://www.cliki.net/site/tools">Tools</a></li>
</ul>
<div id="search">
<form action="https://www.cliki.net/site/search">
<label for="search_query" class="hidden">Search CLiki</label>
<input type="text" name="query" id="search_query" value="" />
<input type="submit" value="search" />
</form>
</div>
</div>
<div id="pageheader">
<div id="header">
<span id="logo">CLiki</span>
<span id="slogan">the common lisp wiki</span>
<div id="login"><form method="post" action="https://www.cliki.net/site/login">
<label for="login_name" class="hidden">Account name</label>
<input type="text" name="name" id="login_name" class="login_input" />
<label for= "login_password" class="hidden">Password</label>
<input type="password" name="password" id="login_password" class="login_input" />
<input type="submit" name="login" value="login" id="login_submit" /><br />
<div id="register"><a href="https://www.cliki.net/site/register">register</a></div>
<input type="submit" name="reset-pw" value="reset password" id="reset_pw" />
</form>
</div>
</div>
</div>
</body></html>