pkgsrc/textproc/link-grammar/PLIST

450 lines
17 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.6 2016/09/12 14:06:08 mef Exp $
2011-10-08 09:29:46 +02:00
bin/link-parser
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
include/link-grammar/dict-api.h
include/link-grammar/dict-structures.h
include/link-grammar/link-features.h
include/link-grammar/link-includes.h
lib/liblink-grammar.la
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
lib/libminisat.la
lib/pkgconfig/link-grammar.pc
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/amy/4.0.affix
share/link-grammar/amy/4.0.constituent-knowledge
share/link-grammar/amy/4.0.dict
share/link-grammar/amy/4.0.knowledge
share/link-grammar/amy/4.0.regex
share/link-grammar/any/4.0.affix
share/link-grammar/any/4.0.constituent-knowledge
share/link-grammar/any/4.0.dict
share/link-grammar/any/4.0.knowledge
share/link-grammar/any/4.0.regex
share/link-grammar/ar/4.0.affix
share/link-grammar/ar/4.0.constituent-knowledge
share/link-grammar/ar/4.0.dict
share/link-grammar/ar/4.0.knowledge
share/link-grammar/ar/4.0.regex
share/link-grammar/ar/words/words.IV
share/link-grammar/ar/words/words.IV_0
share/link-grammar/ar/words/words.IV_intr
share/link-grammar/ar/words/words.IV_yu
share/link-grammar/ar/words/words.N0
share/link-grammar/ar/words/words.NAt
share/link-grammar/ar/words/words.N_slash_ap
share/link-grammar/ar/words/words.Nall
share/link-grammar/ar/words/words.Nap
share/link-grammar/ar/words/words.NapAt
share/link-grammar/ar/words/words.Napdu
share/link-grammar/ar/words/words.Ndip
share/link-grammar/ar/words/words.Ndu
share/link-grammar/ar/words/words.NduAt
share/link-grammar/ar/words/words.Nprop
share/link-grammar/ar/words/words.PV
share/link-grammar/ar/words/words.PV_0
share/link-grammar/ar/words/words.PV_Atn
share/link-grammar/ar/words/words.PV_C
share/link-grammar/ar/words/words.PV_V
share/link-grammar/ar/words/words.PV_intr
share/link-grammar/ar/words/words.adj
share/link-grammar/ar/words/words.adv
share/link-grammar/ar/words/words.n
share/link-grammar/ar/words/words.noun
share/link-grammar/ar/words/words.noun_prop
share/link-grammar/ar/words/words.numbers
share/link-grammar/ar/words/words.prep
share/link-grammar/ar/words/words.years
2011-10-08 09:29:46 +02:00
share/link-grammar/de/4.0.affix
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/de/4.0.constituent-knowledge
2011-10-08 09:29:46 +02:00
share/link-grammar/de/4.0.dict
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/de/4.0.knowledge
share/link-grammar/de/4.0.regex
share/link-grammar/en/4.0.affix
share/link-grammar/en/4.0.constituent-knowledge
share/link-grammar/en/4.0.dict
share/link-grammar/en/4.0.dict.m4
share/link-grammar/en/4.0.knowledge
share/link-grammar/en/4.0.regex
share/link-grammar/en/words/currency
share/link-grammar/en/words/currency.p
share/link-grammar/en/words/entities.given-bisex.sing
share/link-grammar/en/words/entities.given-female.sing
share/link-grammar/en/words/entities.given-male.sing
share/link-grammar/en/words/entities.goddesses
share/link-grammar/en/words/entities.gods
share/link-grammar/en/words/entities.locations.sing
share/link-grammar/en/words/entities.national.sing
share/link-grammar/en/words/entities.organizations.sing
share/link-grammar/en/words/entities.us-states.sing
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/en/words/measures.1
share/link-grammar/en/words/measures.2
share/link-grammar/en/words/units.1
share/link-grammar/en/words/units.1.dot
share/link-grammar/en/words/units.3
share/link-grammar/en/words/units.4
share/link-grammar/en/words/units.4.dot
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/en/words/units.5
share/link-grammar/en/words/units.6
share/link-grammar/en/words/words-medical.adv.1
share/link-grammar/en/words/words-medical.prep.1
share/link-grammar/en/words/words-medical.v.4.1
share/link-grammar/en/words/words-medical.v.4.2
share/link-grammar/en/words/words-medical.v.4.3
share/link-grammar/en/words/words-medical.v.4.4
share/link-grammar/en/words/words-medical.v.4.5
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/en/words/words.adj.1-const
share/link-grammar/en/words/words.adj.1-vowel
share/link-grammar/en/words/words.adj.2
share/link-grammar/en/words/words.adj.3
share/link-grammar/en/words/words.adv.1
share/link-grammar/en/words/words.adv.2
share/link-grammar/en/words/words.adv.3
share/link-grammar/en/words/words.adv.4
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/en/words/words.n.1-const
share/link-grammar/en/words/words.n.1-vowel
share/link-grammar/en/words/words.n.1.gerund
share/link-grammar/en/words/words.n.2.s
share/link-grammar/en/words/words.n.2.x
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/en/words/words.n.3-const
share/link-grammar/en/words/words.n.3-vowel
share/link-grammar/en/words/words.n.3.y
share/link-grammar/en/words/words.n.t
share/link-grammar/en/words/words.v.1.1
share/link-grammar/en/words/words.v.1.2
share/link-grammar/en/words/words.v.1.3
share/link-grammar/en/words/words.v.1.4
share/link-grammar/en/words/words.v.1.p
share/link-grammar/en/words/words.v.10.1
share/link-grammar/en/words/words.v.10.2
share/link-grammar/en/words/words.v.10.3
share/link-grammar/en/words/words.v.10.4
share/link-grammar/en/words/words.v.2.1
share/link-grammar/en/words/words.v.2.2
share/link-grammar/en/words/words.v.2.3
share/link-grammar/en/words/words.v.2.4
share/link-grammar/en/words/words.v.2.5
share/link-grammar/en/words/words.v.4.1
share/link-grammar/en/words/words.v.4.2
share/link-grammar/en/words/words.v.4.3
share/link-grammar/en/words/words.v.4.4
share/link-grammar/en/words/words.v.4.5
share/link-grammar/en/words/words.v.5.1
share/link-grammar/en/words/words.v.5.2
share/link-grammar/en/words/words.v.5.3
share/link-grammar/en/words/words.v.5.4
share/link-grammar/en/words/words.v.6.1
share/link-grammar/en/words/words.v.6.2
share/link-grammar/en/words/words.v.6.3
share/link-grammar/en/words/words.v.6.4
share/link-grammar/en/words/words.v.6.5
share/link-grammar/en/words/words.v.8.1
share/link-grammar/en/words/words.v.8.2
share/link-grammar/en/words/words.v.8.3
share/link-grammar/en/words/words.v.8.4
share/link-grammar/en/words/words.v.8.5
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/fa/4.0.affix
share/link-grammar/fa/4.0.constituent-knowledge
share/link-grammar/fa/4.0.dict
share/link-grammar/fa/4.0.knowledge
share/link-grammar/fa/4.0.regex
share/link-grammar/fa/words/words.adj
share/link-grammar/fa/words/words.adj.compound
share/link-grammar/fa/words/words.adv
share/link-grammar/fa/words/words.n
share/link-grammar/fa/words/words.n.compound
share/link-grammar/fa/words/words.numbers
share/link-grammar/fa/words/words.pp
share/link-grammar/fa/words/words.pp.compound
share/link-grammar/fa/words/words.proper
share/link-grammar/fa/words/words.v
share/link-grammar/fa/words/words.v.compound
share/link-grammar/fa/words/words.v.compound.sub
share/link-grammar/fa/words/words.v.intransitive
share/link-grammar/fa/words/words.v.m.infinitive
share/link-grammar/fa/words/words.v.sub
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/he/4.0.affix
share/link-grammar/he/4.0.constituent-knowledge
share/link-grammar/he/4.0.dict
share/link-grammar/he/4.0.knowledge
share/link-grammar/he/4.0.regex
share/link-grammar/id/4.0.affix
share/link-grammar/id/4.0.constituent-knowledge
share/link-grammar/id/4.0.dict
share/link-grammar/id/4.0.knowledge
share/link-grammar/id/4.0.regex
share/link-grammar/kz/4.0.affix
share/link-grammar/kz/4.0.constituent-knowledge
share/link-grammar/kz/4.0.dict
share/link-grammar/kz/4.0.knowledge
share/link-grammar/kz/4.0.regex
share/link-grammar/lt/4.0.affix
share/link-grammar/lt/4.0.constituent-knowledge
share/link-grammar/lt/4.0.dict
share/link-grammar/lt/4.0.knowledge
Update to 5.2.5: [ANNOUNCE] Link Grammar version 5.2.0 is now available. This is a major release of the parser, with many important changes in it. The internals of the parser have been re-organized, resulting in a speedup of 2x to 4x for typical English texts. Multiple multi- threading bugs were fixed, and there is now a simple multi-threading unit test. A memory leak was fixed, and a memory over-consumption bug was fixed. These changes were enabled by the final removal of the "fat link" code from the parser. Parser internals work continues apace: it is expected that a version 5.3.0 will follow shortly, featuring a completely re-designed tokenizer. This redesign should enable simpler and better morphology support. The ChangeLog notes other fixes as well: Version 5.2.0 (27 December 2014) * y'all, ain't, gonna, y'gotta: Beverly Hillbillies basilect. * Permanent removal of the fat-link code. * Remove deprecated constituent tree code. * Windows: add terminal screen resizing support. * Windows: a build fix. * reign, rule, run, leave, come: can take predicative adjective. * Rework costs for many verb-derived adjectives. * Handle (predicative) adjectival modifiers for assorted perfect verbs. * Fixes for various color names. * Fixes for various affirmative answers. * Add 100 missing verbs. * Add preliminary lxc-docker (docker.io) support. * Remove MSVC6 support. * Fix memleak introduced in version 5.1.0 * Speedup of 1.7x to 4x (depending on text) from linkage processing redesign. * Fix multi-threading safety bug. * Fix link-and-domain printing alignment (to handle utf8 char widths). * Windows: fixes for MSVC12 support. * Fix memory consumption bug (EMPTY_WORD) introduced in version 4.7.10. * Get rid of xrealloc, which clashes with libbfd symbol xrealloc. * Add multi-threaded parsing unit test. ================================================================= Link Grammar version 5.1.2 is now available. Download from: http://www.abisource.com/downloads/link-grammar/5.1.2/link-grammar-5.1.2.tar.gz The most serious fix in this release is a build-break fix for Apple OSX Mavericks. Other fixes, from the ChangeLog: * Fix greeting: "How do you do?" * Fix indirect object in 'what' questions: 'To what do you owe your success?' * Fix assorted questions with verb "to be". * Compile fixes for Apple OSX version "Mavericks" ================================================================= [ANNOUNCE] link-grammar version 5.1.0 This version includes a number of important changes. One of these is that the connectors can now be given a direction (head and tail indicators), so that link-grammar dependencies can now be true, hierarchical dependency arrows. This is of marginal importance for English, where dependency directions are implicit, but is vital for free-word-order languages, where bi-directional links are not enough. Another important change is that costs can now be arbitrary floating point numbers. This is particularly useful for providing fine-grained parse ranking. The LG cost system assigns a "cost" to every connector, and the sum-total of costs for a sentence determines the parse ranking. Since costs are additive, they behave as entropies (log P -- the logarithm of a probability: probabilities are multiplicative, logarithms are additive). Under the covers, there's been some major work on the tokenization (splitting sentences into words) and morphology (splitting words into morphemes) code. This work is ongoing, and should eventually result in much better support for non-English languages. Other notable changes include an updated Russian dictionary, and an assortment of changes to the English dictionary. An intriguing step towards phonology: LG can now distinguish between the use of the determiners "a" and "an" preceding nouns that start with consonants or vowels. Whether fancier phonology support is possible is a curious question. The full changelog is below: * Updated Russian dictionaries from Sergei Protasov. * Added morphology-based unknown-word handling for Russian, from Sergei. * Fix up fat-linkage code, which was recently broken... * API cleanup: many command-line options never belonged in the API. * New emoticon support was clobbering certain dictionary words. * Fix: "Go to spot X", "It happens at time T." * Add a dozen missing verbs. * Minor work on greetings. * Add mechanism for denoting fractional costs in the file-backed dict. * Fix: broken handling of gerunds (due to bad verb-wall connectors) * Major redesign of morpheme splitting mechanism (from AmirP) * Minor extensions to support numeric formulas, e.g. 1 + 1 = 2. * Remove fat linkage support from the SAT solver. * Enable build of SAT solver by default. * Fix multiple bugs with unit stripping. * Add bounds-checking to the C API. * Fix the old disjunct-printing implementation. * Add support for easy-to-use link direction indicator. * Add random morphology generator tool. * Partial support for phonetic use of "a" vs. "an" for English. * Rework how coordination between conjunctions works: "either... or ...", etc. * Major redesign of tokenization mechanism (from AmirP) ================================================================= Version 5.0.0 of the Link Grammar Parser is now available. (Yes, its April 1st. No, this is not a joke. Maybe I'll think of something snarky next year.) We are proud to announce a major new release of the Link Grammar Parser! It contains many important changes and new additions. One of the most significant changes is that the license has been changed from the BSD license to the LGPL. This was done to enable considerably more flexibility in accepting contributions to the project: it seems that few are particularly interested in contributing to a BSD-licensed project. This change has enabled folding in some new work: o Arabic and Persion dictionaries! These were previously maintained as separate add-ons. Including them as part of the distribution should make it easier for interested users. o A new 'bindings' directory, containing code for Java, Python, Common Lisp, OCaML and AutoIt programming languages. The Python bindings are an updated version of the older pylinkgrammar-0.2.13 bindings. A SWIG interface file should make it easy to create other language bindigns as well. o Improved morphology support. This will be invisible to most users, but it lays the groundwork for add Hebrew support to the parser. o Expanded Lithuanian support. This remains a simplistic prototype, but it now performs a more sophisticated morphological analysis. o Experimental Turkish and Hebrew dictionaries. o A demo of the JSON parser server: it shows how to run the server, which will accept accept raw sentences on a socket, and returns the parsed forms. o Some slightly incompatible changes to the API: it was time for some housekeeping. o Misc minor updates to the English Language dictionaries. o Preliminary work for SQL-backed dynamic dictionaries. This should enable certain types of automated language learning. The full changelog is shown below. CHANGELOG: Version 5.0.0 (1 April 2014) * License upgrade to LGPLv2.1 * Arabic dictionaries, from Jon Dehdari * Persian dictionaries, from Jon Dehdari * Support for Hebrew tokenization, from Amir P. * Fix wild-card matching for user-supplied word lookup. * Prototype Turkish dictionary from Can Bruce. * Re-arrange programming language bindings directory. * Adopt the orphaned/unsupported pylinkgrammar Python bindings. * Deprecate the obsolete CNode interface. * Provide low-level perl bindings. * Adopt the orphaned/unsupported OCaML bindings. * Support affirmative replies: "Who did it?" "John's evil twin." * Expanded Lithuanian dictionary. * Minor disjunct printing fixes. * Fix: "Mary is too XXX to talk to." * Prototype Hebrew dictionary from Amir P. * Change !suffixes flag to !morphology. * Introduce a bi-directional connector, for free-word-order languages. * Introduce a symmetric-AND operator, for free-word-order languages. * Add demo shell script for running the JSON parse server. * Bugfix: Java server failing when input sentence has commas in it! * New !test and !debug commands for selective debugging support. * Print post-processing rejection message, when !bad is enabled. * Remove some deprecated functions for C API. * Remove all deprecated functions from Java API. * Initial support for an SQL-backed dynamic dictionary. ================================================================= Version 4.8.5 of the Link Grammar Parser is now available. This is the third release in about a week; each prompted by a build-break in the previous version. Sorry! There's been assorted (minor) new work, and this has been enough to cause trouble for various people. Some notable changes in the last 6 weeks: * Improved Russian (UTF-8) support for MSWindows users. * Build files for MSVC12 * Several Java binding fixes * English dictionary: add a verb-wall connector for present participles. A full list of changes is given below. If none of these seem to affect you, there is no particular need to upgrade. CHANGELOG: Version 4.8.5 (5 January 2014) * Update memory usage accounting; fix accounting bugs. * Fix Java garbage collection bug. * Fix numerous compiler warnings in the SAT-solver code. * Fix build-break involving multiple declaration of 'Boolean'. Version 4.8.4 (30 December 2013) * Fix build break for Mac OSX. Version 4.8.3 (30 December 2013) * Create new msvc12 build files, restore old msvc9 files. * Revert location of the Windows mbrtowc declaration. * Add verb-wall connector for present participles. * Fix build-time include file directory paths. * Provide the 'any' language to enumerate all possible linkages. * Fix recognition of U+00A0, c2 a0, NO-BREAK SPACE as whitespace. * Improve parse-time performance of exceptionally long sentences. * Fix crash on certain sentences containing equals sign. Version 4.8.2 (25 November 2013) * More MSWindows UTF-8/multi-byte fixes (for Russian). * Add missing JSONUtils file. Version 4.8.1 (21 November 2013) * Ongoing work on viterbi. * Updated MSVC9 project files from Jand Hashemi (Lucky--) * Fix important bug in Java services: return top parses, not random ones. * Java: for the link-diagram string, do not limit to 80 char term width. * Windows: UTF-8 fixes so that Russian works in most MSWindows locales. ================================================================= Version 4.8.0 of the Link Grammar Parser is now available. This is the start of a new version series, containing an important change to the English language dictionary. Three new link types are introduced WV, CV and IV. These are used to connect the left-wall to the primary verb of the sentence (WV), to connect the ruling clause to the primary verb of a dependent clause (CV), and a similar link for certain infinitive verbs (IV). The goal of these links is to make it easier to locate verbs, and thus to provide a more direct mapping from the link-grammar formalism to a dependency parse (as dependency parses always put the verb at the root of a sentence). These are not the first links that explicitly indicate root verbs: several other link types already play this role: The AF, CP, Eq, COq and B links already play this role. The new WV, CV and IV links round out this capability and do so in a very general form. See http://www.abisource.com/projects/link-grammar/dict/section-WV.html for details. With this release, we expect that all (non-auxiliary) verbs in a sentence will be linked either to the wall, or to a controlling parent. We also expect there to be some additional fixes and tightening-up to occur in future releases, especially in regards to comparative sentences. This release also includes a variety of fixes to the Java API/server. In addition, some ancient, deprecated C code was removed. CHANGELOG: Version 4.8.0 (24 October 2013) * Fix "he answered yes" * Support bulleted, numbered lists. * New link types from Lian Ruiting, for identifying the head-verb. * Java: fix bug when totaling WordNet word-sense score. * Java: add info to README about using the JSON parse server. * Java: remove many deprecated functions. * C API: remove some deprecated functions. * Java: fix silent failure when library is not found. * Java: Add support for fetching the ASCII-art diagram string. * Java: Fix insane language selection initialization. * Fix: "The pig runs SLOWER than the cat." * Fix: conjoined superlatives: "... the longest and the farthest." * Fix: "inside" can be used with conjunction: "near or inside..." * Fix: conjoined question modifiers: "exactly when and precisely where..." * Fix: issue 59: crash/corruption when dictionary opened twice. * Fix: assorted exclamations! ================================================================= ================================================================= ================================================================= Version 4.7.12 of the Link Grammar Parser is now available. The biggest change in this version is a sharply updated Russian dictionary, which fixes a large number of bugs generated during during the initial release. Thanks to Sergey Protasov who did almost all this work! The other notable change is that the fat-link code is no longer build by default. It will be permanently removed in some future version, "real soon now". A miscellany of other minor changes are listed below. The link-grammar homepage: http://www.abiword.org/projects/link-grammar/ Download: http://www.abiword.org/downloads/link-grammar/4.7.12/link-grammar-4.7.12.tar.gz WHAT IS LINK GRAMMAR? The Link Grammar Parser is a syntactic parser of English (and other languages as well), based on link grammar, an original theory of English syntax. Given a sentence, the system assigns to it a syntactic structure, which consists of a set of labelled links connecting pairs of words. The parser also produces a "constituent" (Penn tree-bank style phrase tree) representation of a sentence (showing noun phrases, verb phrases, etc.). The RelEx extension provides dependency-parse output. CHANGELOG: Version 4.7.12 (25 May 2013) * Large fixes to the Russian dictionaries. * Windows: Explicitly fail if cygwin version is too old. * Tweak the lt dict to work again with the modern parser. * Make the fat linkages code be compile-time configurable. * Disable fat linkages by default; mark as deprecated. * Fix SAT-solver build; recent changes had broken it. * Export read-dict.h as a public API. * Ongoing development of the Viterbi prototype. * Windows: some UTF8/widechar refactoring. * Java bindings: add method to set the language. * CMake: add version checking to the CMakefile * Fix: failed handling of capitalized first word for Russian. * Fix: stemming failures in many cases (for Russian dictionaries) * Add flag to suppress stem-suffix printing. * Windows: Fixes to MSVC6 build files. * Fix: hash-table bug affecting Russian dictionaries
2015-08-26 14:23:01 +02:00
share/link-grammar/lt/4.0.regex
share/link-grammar/ru/4.0.affix
share/link-grammar/ru/4.0.constituent-knowledge
share/link-grammar/ru/4.0.dict
share/link-grammar/ru/4.0.knowledge
share/link-grammar/ru/4.0.regex
share/link-grammar/ru/morph-ends.dict
share/link-grammar/ru/morph.dict
share/link-grammar/ru/stem.dict
share/link-grammar/ru/suffix.dict
share/link-grammar/ru/words/suff-list
share/link-grammar/ru/words/words.1
share/link-grammar/ru/words/words.10
share/link-grammar/ru/words/words.100
share/link-grammar/ru/words/words.101
share/link-grammar/ru/words/words.102
share/link-grammar/ru/words/words.103
share/link-grammar/ru/words/words.104
share/link-grammar/ru/words/words.105
share/link-grammar/ru/words/words.106
share/link-grammar/ru/words/words.107
share/link-grammar/ru/words/words.108
share/link-grammar/ru/words/words.109
share/link-grammar/ru/words/words.11
share/link-grammar/ru/words/words.110
share/link-grammar/ru/words/words.111
share/link-grammar/ru/words/words.112
share/link-grammar/ru/words/words.113
share/link-grammar/ru/words/words.114
share/link-grammar/ru/words/words.115
share/link-grammar/ru/words/words.116
share/link-grammar/ru/words/words.117
share/link-grammar/ru/words/words.118
share/link-grammar/ru/words/words.119
share/link-grammar/ru/words/words.12
share/link-grammar/ru/words/words.120
share/link-grammar/ru/words/words.121
share/link-grammar/ru/words/words.122
share/link-grammar/ru/words/words.123
share/link-grammar/ru/words/words.124
share/link-grammar/ru/words/words.125
share/link-grammar/ru/words/words.126
share/link-grammar/ru/words/words.127
share/link-grammar/ru/words/words.128
share/link-grammar/ru/words/words.129
share/link-grammar/ru/words/words.13
share/link-grammar/ru/words/words.130
share/link-grammar/ru/words/words.131
share/link-grammar/ru/words/words.132
share/link-grammar/ru/words/words.133
share/link-grammar/ru/words/words.134
share/link-grammar/ru/words/words.135
share/link-grammar/ru/words/words.136
share/link-grammar/ru/words/words.137
share/link-grammar/ru/words/words.138
share/link-grammar/ru/words/words.139
share/link-grammar/ru/words/words.14
share/link-grammar/ru/words/words.140
share/link-grammar/ru/words/words.141
share/link-grammar/ru/words/words.142
share/link-grammar/ru/words/words.143
share/link-grammar/ru/words/words.144
share/link-grammar/ru/words/words.145
share/link-grammar/ru/words/words.146
share/link-grammar/ru/words/words.147
share/link-grammar/ru/words/words.148
share/link-grammar/ru/words/words.149
share/link-grammar/ru/words/words.15
share/link-grammar/ru/words/words.150
share/link-grammar/ru/words/words.151
share/link-grammar/ru/words/words.152
share/link-grammar/ru/words/words.153
share/link-grammar/ru/words/words.154
share/link-grammar/ru/words/words.155
share/link-grammar/ru/words/words.156
share/link-grammar/ru/words/words.157
share/link-grammar/ru/words/words.158
share/link-grammar/ru/words/words.159
share/link-grammar/ru/words/words.16
share/link-grammar/ru/words/words.160
share/link-grammar/ru/words/words.161
share/link-grammar/ru/words/words.162
share/link-grammar/ru/words/words.163
share/link-grammar/ru/words/words.164
share/link-grammar/ru/words/words.165
share/link-grammar/ru/words/words.166
share/link-grammar/ru/words/words.167
share/link-grammar/ru/words/words.168
share/link-grammar/ru/words/words.169
share/link-grammar/ru/words/words.17
share/link-grammar/ru/words/words.170
share/link-grammar/ru/words/words.171
share/link-grammar/ru/words/words.172
share/link-grammar/ru/words/words.173
share/link-grammar/ru/words/words.174
share/link-grammar/ru/words/words.175
share/link-grammar/ru/words/words.176
share/link-grammar/ru/words/words.177
share/link-grammar/ru/words/words.178
share/link-grammar/ru/words/words.179
share/link-grammar/ru/words/words.18
share/link-grammar/ru/words/words.180
share/link-grammar/ru/words/words.181
share/link-grammar/ru/words/words.182
share/link-grammar/ru/words/words.183
share/link-grammar/ru/words/words.184
share/link-grammar/ru/words/words.185
share/link-grammar/ru/words/words.186
share/link-grammar/ru/words/words.187
share/link-grammar/ru/words/words.188
share/link-grammar/ru/words/words.189
share/link-grammar/ru/words/words.19
share/link-grammar/ru/words/words.190
share/link-grammar/ru/words/words.191
share/link-grammar/ru/words/words.192
share/link-grammar/ru/words/words.193
share/link-grammar/ru/words/words.194
share/link-grammar/ru/words/words.195
share/link-grammar/ru/words/words.196
share/link-grammar/ru/words/words.197
share/link-grammar/ru/words/words.198
share/link-grammar/ru/words/words.199
share/link-grammar/ru/words/words.2
share/link-grammar/ru/words/words.20
share/link-grammar/ru/words/words.200
share/link-grammar/ru/words/words.201
share/link-grammar/ru/words/words.202
share/link-grammar/ru/words/words.203
share/link-grammar/ru/words/words.204
share/link-grammar/ru/words/words.205
share/link-grammar/ru/words/words.206
share/link-grammar/ru/words/words.207
share/link-grammar/ru/words/words.208
share/link-grammar/ru/words/words.209
share/link-grammar/ru/words/words.21
share/link-grammar/ru/words/words.210
share/link-grammar/ru/words/words.211
share/link-grammar/ru/words/words.212
share/link-grammar/ru/words/words.213
share/link-grammar/ru/words/words.214
share/link-grammar/ru/words/words.215
share/link-grammar/ru/words/words.216
share/link-grammar/ru/words/words.217
share/link-grammar/ru/words/words.218
share/link-grammar/ru/words/words.219
share/link-grammar/ru/words/words.22
share/link-grammar/ru/words/words.220
share/link-grammar/ru/words/words.221
share/link-grammar/ru/words/words.222
share/link-grammar/ru/words/words.223
share/link-grammar/ru/words/words.224
share/link-grammar/ru/words/words.225
share/link-grammar/ru/words/words.226
share/link-grammar/ru/words/words.227
share/link-grammar/ru/words/words.228
share/link-grammar/ru/words/words.229
share/link-grammar/ru/words/words.23
share/link-grammar/ru/words/words.230
share/link-grammar/ru/words/words.231
share/link-grammar/ru/words/words.232
share/link-grammar/ru/words/words.233
share/link-grammar/ru/words/words.234
share/link-grammar/ru/words/words.235
share/link-grammar/ru/words/words.236
share/link-grammar/ru/words/words.237
share/link-grammar/ru/words/words.238
share/link-grammar/ru/words/words.239
share/link-grammar/ru/words/words.24
share/link-grammar/ru/words/words.240
share/link-grammar/ru/words/words.241
share/link-grammar/ru/words/words.242
share/link-grammar/ru/words/words.243
share/link-grammar/ru/words/words.244
share/link-grammar/ru/words/words.245
share/link-grammar/ru/words/words.246
share/link-grammar/ru/words/words.247
share/link-grammar/ru/words/words.248
share/link-grammar/ru/words/words.25
share/link-grammar/ru/words/words.26
share/link-grammar/ru/words/words.27
share/link-grammar/ru/words/words.28
share/link-grammar/ru/words/words.29
share/link-grammar/ru/words/words.3
share/link-grammar/ru/words/words.30
share/link-grammar/ru/words/words.31
share/link-grammar/ru/words/words.32
share/link-grammar/ru/words/words.33
share/link-grammar/ru/words/words.34
share/link-grammar/ru/words/words.35
share/link-grammar/ru/words/words.36
share/link-grammar/ru/words/words.37
share/link-grammar/ru/words/words.38
share/link-grammar/ru/words/words.39
share/link-grammar/ru/words/words.4
share/link-grammar/ru/words/words.40
share/link-grammar/ru/words/words.41
share/link-grammar/ru/words/words.42
share/link-grammar/ru/words/words.43
share/link-grammar/ru/words/words.44
share/link-grammar/ru/words/words.45
share/link-grammar/ru/words/words.46
share/link-grammar/ru/words/words.47
share/link-grammar/ru/words/words.48
share/link-grammar/ru/words/words.49
share/link-grammar/ru/words/words.5
share/link-grammar/ru/words/words.50
share/link-grammar/ru/words/words.51
share/link-grammar/ru/words/words.52
share/link-grammar/ru/words/words.53
share/link-grammar/ru/words/words.54
share/link-grammar/ru/words/words.55
share/link-grammar/ru/words/words.56
share/link-grammar/ru/words/words.57
share/link-grammar/ru/words/words.58
share/link-grammar/ru/words/words.59
share/link-grammar/ru/words/words.6
share/link-grammar/ru/words/words.60
share/link-grammar/ru/words/words.61
share/link-grammar/ru/words/words.62
share/link-grammar/ru/words/words.63
share/link-grammar/ru/words/words.64
share/link-grammar/ru/words/words.65
share/link-grammar/ru/words/words.66
share/link-grammar/ru/words/words.67
share/link-grammar/ru/words/words.68
share/link-grammar/ru/words/words.69
share/link-grammar/ru/words/words.7
share/link-grammar/ru/words/words.70
share/link-grammar/ru/words/words.71
share/link-grammar/ru/words/words.72
share/link-grammar/ru/words/words.73
share/link-grammar/ru/words/words.74
share/link-grammar/ru/words/words.75
share/link-grammar/ru/words/words.76
share/link-grammar/ru/words/words.77
share/link-grammar/ru/words/words.78
share/link-grammar/ru/words/words.79
share/link-grammar/ru/words/words.8
share/link-grammar/ru/words/words.80
share/link-grammar/ru/words/words.81
share/link-grammar/ru/words/words.82
share/link-grammar/ru/words/words.83
share/link-grammar/ru/words/words.84
share/link-grammar/ru/words/words.85
share/link-grammar/ru/words/words.86
share/link-grammar/ru/words/words.87
share/link-grammar/ru/words/words.88
share/link-grammar/ru/words/words.89
share/link-grammar/ru/words/words.9
share/link-grammar/ru/words/words.90
share/link-grammar/ru/words/words.91
share/link-grammar/ru/words/words.92
share/link-grammar/ru/words/words.93
share/link-grammar/ru/words/words.94
share/link-grammar/ru/words/words.95
share/link-grammar/ru/words/words.96
share/link-grammar/ru/words/words.97
share/link-grammar/ru/words/words.98
share/link-grammar/ru/words/words.99
share/link-grammar/tr/4.0.affix
share/link-grammar/tr/4.0.constituent-knowledge
share/link-grammar/tr/4.0.dict
share/link-grammar/tr/4.0.knowledge
share/link-grammar/tr/4.0.regex
share/link-grammar/vn/4.0.affix
share/link-grammar/vn/4.0.constituent-knowledge
share/link-grammar/vn/4.0.dict
share/link-grammar/vn/4.0.knowledge
share/link-grammar/vn/4.0.regex