|
2 | 2 |
|
3 | 3 | [](https://pypi.org/project/PyDelphin/)
|
4 | 4 | 
|
5 |
| -[](https://github.com/delph-in/pydelphin/actions?query=workflow%3A%22tests%22) |
| 5 | +[](https://github.com/delph-in/pydelphin/actions/workflows/checks.yml) |
6 | 6 | [](https://pydelphin.readthedocs.io/en/latest/?badge=latest)
|
| 7 | + |
7 | 8 |
|
8 | 9 | [DELPH-IN](http://delph-in.net) is an international consortium of
|
9 | 10 | researchers committed to producing precise, high-quality language
|
10 | 11 | processing tools and resources, primarily in the
|
11 | 12 | [HPSG](http://hpsg.stanford.edu/) syntactic and
|
12 |
| -[MRS](http://moin.delph-in.net/RmrsTop) semantic frameworks, and |
13 |
| -PyDelphin is a suite of Python libraries for processing data and |
14 |
| -interacting with tools in the DELPH-IN ecosystem. PyDelphin's goal is |
15 |
| -to lower the barriers to making use of DELPH-IN resources to help |
16 |
| -users quickly build applications or perform experiments, and it has |
17 |
| -been successfully used for research into machine translation (e.g., |
18 |
| -[Goodman, 2018]), sentence chunking ([Muszyńska, 2016]), neural |
19 |
| -semantic parsing ([Buys & Blunsom, 2017]), natural language |
20 |
| -generation ([Hajdik et al., 2019]), and more. |
| 13 | +[MRS](https://github.com/delph-in/docs/wiki/RmrsTop) semantic |
| 14 | +frameworks, and PyDelphin is a suite of Python libraries for |
| 15 | +processing data and interacting with tools in the DELPH-IN |
| 16 | +ecosystem. PyDelphin's goal is to lower the barriers to making use of |
| 17 | +DELPH-IN resources to help users quickly build applications or perform |
| 18 | +experiments, and it has been successfully used for research into |
| 19 | +machine translation (e.g., [Goodman, 2018]), sentence chunking |
| 20 | +([Muszyńska, 2016]), neural semantic parsing ([Buys & Blunsom, 2017]), |
| 21 | +natural language generation ([Hajdik et al., 2019]), and more. |
21 | 22 |
|
22 | 23 | [Goodman, 2018]: https://goodmami.org/static/goodman-dissertation.pdf
|
23 | 24 | [Muszyńska, 2016]: https://www.aclweb.org/anthology/P16-3014
|
@@ -55,38 +56,38 @@ an issue][issues].
|
55 | 56 | PyDelphin contains the following modules:
|
56 | 57 |
|
57 | 58 | Semantic Representations:
|
58 |
| -- [`delphin.mrs`]: [Minimal Recursion Semantics](http://moin.delph-in.net/MrsRfc) |
59 |
| -- [`delphin.eds`]: [Elementary Dependency Structures](http://moin.delph-in.net/EdsTop) |
60 |
| -- [`delphin.dmrs`]: [Dependency Minimal Recursion Semantics](http://moin.delph-in.net/RmrsDmrs) |
| 59 | +- [`delphin.mrs`]: [Minimal Recursion Semantics](https://github.com/delph-in/docs/wiki/MrsRfc) |
| 60 | +- [`delphin.eds`]: [Elementary Dependency Structures](https://github.com/delph-in/docs/wiki/EdsTop) |
| 61 | +- [`delphin.dmrs`]: [Dependency Minimal Recursion Semantics](https://github.com/delph-in/docs/wiki/RmrsDmrs) |
61 | 62 |
|
62 | 63 | Semantic Components and Interfaces:
|
63 |
| -- [`delphin.semi`]: [Semantic Interface](http://moin.delph-in.net/SemiRfc) |
64 |
| -- [`delphin.vpm`]: [Variable Property Mapping](http://moin.delph-in.net/RmrsVpm) |
| 64 | +- [`delphin.semi`]: [Semantic Interface](https://github.com/delph-in/docs/wiki/SemiRfc) |
| 65 | +- [`delphin.vpm`]: [Variable Property Mapping](https://github.com/delph-in/docs/wiki/RmrsVpm) |
65 | 66 | - [`delphin.variable`]: MRS variables
|
66 |
| -- [`delphin.predicate`]: [Semantic Predicates](http://moin.delph-in.net/PredicateRfc) |
| 67 | +- [`delphin.predicate`]: [Semantic Predicates](https://github.com/delph-in/docs/wiki/PredicateRfc) |
67 | 68 | - [`delphin.scope`]: Underspecified scope
|
68 | 69 | - [`delphin.sembase`]: Basic semantic structures
|
69 | 70 | - [`delphin.codecs`]: A wide variety of serialization codecs for MRS, EDS, and DMRS
|
70 | 71 |
|
71 | 72 | Grammar and Parse Inspection:
|
72 |
| -- [`delphin.derivation`]: [Derivation trees](http://moin.delph-in.net/ItsdbDerivations) |
73 |
| -- [`delphin.tdl`]: [Type-Description Language](http://moin.delph-in.net/TdlRfc) |
| 73 | +- [`delphin.derivation`]: [Derivation trees](https://github.com/delph-in/docs/wiki/ItsdbDerivations) |
| 74 | +- [`delphin.tdl`]: [Type-Description Language](https://github.com/delph-in/docs/wiki/TdlRfc) |
74 | 75 | - [`delphin.tfs`]: Feature structures and type hierarchies
|
75 | 76 |
|
76 | 77 | Tokenization:
|
77 |
| -- [`delphin.repp`]: [Regular-Expression PreProcessor](http://moin.delph-in.net/ReppTop) |
78 |
| -- [`delphin.tokens`]: [YY Token lattices](http://moin.delph-in.net/PetInput#YY_Input_Mode) |
| 78 | +- [`delphin.repp`]: [Regular-Expression PreProcessor](https://github.com/delph-in/docs/wiki/ReppTop) |
| 79 | +- [`delphin.tokens`]: [YY Token lattices](https://github.com/delph-in/docs/wiki/PetInput#yy-input-mode) |
79 | 80 | - [`delphin.lnk`]: Lnk surface alignments
|
80 | 81 |
|
81 | 82 | Corpus Management and Processing:
|
82 |
| -- [`delphin.itsdb`]: [\[incr tsdb()\]](http://moin.delph-in.net/ItsdbTop) profiles |
| 83 | +- [`delphin.itsdb`]: [\[incr tsdb()\]](https://github.com/delph-in/docs/wiki/ItsdbTop) profiles |
83 | 84 | - [`delphin.tsdb`]: Low-level interface to test suite databases
|
84 |
| -- [`delphin.tsql`]: [TSQL](http://moin.delph-in.net/TsqlRfc) test suite queries |
| 85 | +- [`delphin.tsql`]: [TSQL](https://github.com/delph-in/docs/wiki/TsqlRfc) test suite queries |
85 | 86 |
|
86 | 87 | Interfaces with External Processors:
|
87 | 88 | - [`delphin.interface`]: Structures for interacting with external processors
|
88 | 89 | - [`delphin.ace`]: Python wrapper for common tasks using [ACE](http://sweaglesw.org/linguistics/ace/)
|
89 |
| -- [`delphin.web`]: Client for the [web API](http://moin.delph-in.net/ErgApi) |
| 90 | +- [`delphin.web`]: Client for the [web API](https://github.com/delph-in/docs/wiki/ErgApi) |
90 | 91 |
|
91 | 92 | Core Components and Command Line Interface:
|
92 | 93 | - [`delphin.commands`]: Functional interface to common tasks
|
@@ -128,7 +129,7 @@ Core Components and Command Line Interface:
|
128 | 129 | ### Getting Help
|
129 | 130 |
|
130 | 131 | Please use the [issue tracker][issues] for bug reports, feature
|
131 |
| -requests, and PyDelphin-specific questions. For more general questions |
| 132 | +requests, and documentation requests. For more general questions |
132 | 133 | and support, try one of the following channels maintained by the
|
133 | 134 | DELPH-IN community:
|
134 | 135 |
|
@@ -162,20 +163,20 @@ requests. Also thanks to the users of PyDelphin!
|
162 | 163 | ### Related Software
|
163 | 164 |
|
164 | 165 | * Parser/Generators (chronological order)
|
165 |
| - - LKB: http://moin.delph-in.net/LkbTop (also: http://moin.delph-in.net/LkbFos) |
166 |
| - - PET: http://moin.delph-in.net/PetTop |
| 166 | + - LKB: https://github.com/delph-in/docs/wiki/LkbTop (also: https://github.com/delph-in/docs/wiki/LkbFos) |
| 167 | + - PET: https://github.com/delph-in/docs/wiki/PetTop |
167 | 168 | - ACE: http://sweaglesw.org/linguistics/ace/
|
168 |
| - - agree: http://moin.delph-in.net/AgreeTop |
| 169 | + - agree: https://github.com/delph-in/docs/wiki/AgreeTop |
169 | 170 | * Grammar profiling, testing, and analysis
|
170 | 171 | - \[incr tsdb()\]: http://www.delph-in.net/itsdb/
|
171 | 172 | - gDelta: https://github.com/ned2/gdelta
|
172 | 173 | - Typediff: https://github.com/ned2/typediff
|
173 | 174 | * Software libraries and repositories
|
174 |
| - - LOGON: http://moin.delph-in.net/LogonTop |
| 175 | + - LOGON: https://github.com/delph-in/docs/wiki/LogonTop |
175 | 176 | - pydmrs: https://github.com/delph-in/pydmrs
|
176 | 177 | * Also see (may have overlap with the above):
|
177 |
| - - http://moin.delph-in.net/ToolsTop |
178 |
| - - http://moin.delph-in.net/DelphinApplications |
| 178 | + - https://github.com/delph-in/docs/wiki/ToolsTop |
| 179 | + - https://github.com/delph-in/docs/wiki/DelphinApplications |
179 | 180 |
|
180 | 181 | ### Spelling
|
181 | 182 |
|
|
0 commit comments