| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
| <head>
|
| <title>MaltParser - a data-driven dependency parser</title>
|
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| <meta name="robots" content="index,follow" />
|
| <meta name="revisit-after" content="7 days" />
|
| <meta name="keywords" content="MaltParser, parsing, dependency, parser, parse, Nivre, treebank" />
|
| <meta name="description" content="MaltParser is a system for data-driven dependency parsing." />
|
| <link rel="stylesheet" type="text/css" href="style.css" media="screen" />
|
| <link rel="stylesheet" type="text/css" href="print.css" media="print" />
|
| <link rel="canonical" href="http://www.maltparser.org/" />
|
| <script type="text/javascript">
|
| var _gaq = _gaq || [];
|
| _gaq.push(['_setAccount', 'UA-22905106-2']);
|
| _gaq.push(['_trackPageview']);
|
| (function() {
|
| var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
| ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
| var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
| })();
|
| </script>
|
| </head>
|
| <body>
|
| <h1>MaltParser</h1>
|
| <div id="navtop">Modified: February 18 2018</div>
|
| <div id="leftcol"> |
| <div id="navcol"> |
| <ul><li class="none"><a href="/" accesskey="1">Home</a></li></ul> |
| <h5>Get MaltParser</h5> |
| <ul> |
| <li class="none"><a href="download.html">Download</a></li> |
| <li class="none"><a href="changes.html" accesskey="2">Changes</a></li> |
| <li class="none"><a href="license.html" accesskey="8">License</a></li> |
| </ul> |
| <h5>Documentation</h5> |
| <ul> |
| <li class="none"><a href="intro.html">Introduction</a></li> |
| <li class="none"><a href="install.html">Installing MaltParser</a></li> |
| <li class="none"><a href="userguide.html" accesskey="6">User guide</a></li> |
| <li class="none"><a href="options.html">Options (short version)</a></li> |
| <li class="none"><a href="optiondesc.html">Options (long version)</a></li> |
| <li class="none"><a href="api/index.html">JavaDoc</a></li> |
| </ul> |
| <h5>Resources</h5> |
| <ul> |
| <li class="none"><a href="mco/mco.html">Pre-trained models</a></li> |
| <li class="none"><a href="publications.html">Publications</a></li> |
| <li class="none"><a href="conll.html">CoNLL Shared Task</a></li> |
| <li class="none"><a href="malteval.html">MaltEval</a></li> |
| </ul> |
| <h5>Contact</h5> |
| <ul><li class="none"><a href="contact.html" accesskey="7">Contact</a></li></ul> |
| </div> |
| </div> |
|
|
| <div id="bodycol">
|
| <div class="section">
|
| <p>MaltParser is a system for data-driven dependency parsing, which can be
|
| used to induce a parsing model from treebank data and to parse new data using an induced model. MaltParser is developed by
|
| <a href="http://hall.maltparser.org" target="_blank" onclick="_gaq.push(['_trackEvent', 'Person', 'OutLink', 'Johan Hall']);">Johan Hall</a>, Jens Nilsson and
|
| <a href="http://stp.lingfil.uu.se/~nivre/" target="_blank" onclick="_gaq.push(['_trackEvent', 'Person', 'OutLink', 'Joakim Nivre']);">Joakim Nivre</a> at Växjö University and Uppsala University, Sweden.</p>
|
|
|
| <p>The latest version <strong>1.9.2</strong> of MaltParser is available from the
|
| MaltParser <a href="download.html">download page</a>.</p>
|
| <p><strong>NB:</strong> Since version 1.7 the jar-file has been changed to <strong>maltparser-1.9.2.jar</strong> and is also available via
|
| the official <a href="http://search.maven.org/#search|ga|1|maltparser" onclick="_gaq.push(['_trackEvent', 'Maven', 'OutLink', 'Maven repository']);">Maven repository</a>.</p>
|
| <pre>
|
| <dependency>
|
| <groupId>org.maltparser</groupId>
|
| <artifactId>maltparser</artifactId>
|
| <version>1.9.2</version>
|
| </dependency>
|
| </pre>
|
|
|
| <p><strong>NB:</strong> Parsers developed using MaltParser have achieved state-of-the-art accuracy for a number of languages. However, please
|
| note that MaltParser is a complex system with many parameters that need to be optimized. Simply using
|
| the system "out of the box" with default settings is likely to result in sub-optimal
|
| performance and should <strong>not</strong> be used as a reference in comparative parser evaluations
|
| (unless it is explicitly stated that it is a non-optimized version of the system). Please
|
| read "<a href="http://maltparser.org/guides/opt/quick-opt.pdf" onclick="_gaq.push(['_trackEvent', 'PDF', 'Open', 'MaltParser Optimization']);">A Quick Guide to MaltParser Optimization</a>" to get hints and
|
| tips to how you can optimize MaltParser. For many languages and data sets, information about optimized settings can be found in
|
| the literature or on the web. Please make the effort to use this information in order to avoid misleading comparisons.
|
| You can also try <a href="http://nil.fdi.ucm.es/maltoptimizer/" onclick="_gaq.push(['_trackEvent', 'MaltOptimizer', 'OutLink', 'MaltOptimizer']);">MaltOptimizer</a>, a new tool for automatic MaltParser optimization.</p>
|
|
|
| <p id="footer">Copyright © Johan Hall, Jens Nilsson and Joakim Nivre</p>
|
| </div>
|
| </div>
|
| </body>
|
| </html>
|
|
|