-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (132 loc) · 5.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Excellent HLT</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="container-sm p-4">
<header class="mb-5">
<h1 class="text-center display-6">
Excellent Human Language Technology
</h1>
<p class="lead text-muted">
This page links to a few of the software projects started at
the <a href="http://hltcoe.jhu.edu/">Human Language Technology Center of Excellence</a>. Additional resources
can be found on
our <a href="https://github.com/hltcoe">GitHub page</a>.
</p>
</header>
<main>
<div class="card my-3">
<div class="card-body">
<h4 class="card-title">
Turkle
</h4>
<p class="card-text">
Turkle is a Django web application that provides a clone of
Amazon's Mechanical Turk service in your local environment,
allowing you to collect local expert annotations with the same
templates and data files you use for crowd annotation.
Meanwhile, our pip-installable ProtoTurk server can be used to
rapidly prototype new templates and data files.
</p>
<a class="card-link btn btn-primary" href="https://turkle.readthedocs.io/en/latest/README.html">
Getting Started
</a>
<a class="card-link btn btn-secondary" href="https://pypi.org/project/prototurk/">
ProtoTurk
</a>
</div>
</div>
<div class="card my-3">
<div class="card-body">
<h4 class="card-title">
Patapsco
</h4>
<p class="card-text">
Patapsco is a scalable Python framework for reproducible
cross-language information retrieval (CLIR) experiments.
</p>
<a class="card-link btn btn-primary" href="https://github.com/hltcoe/patapsco/">
Repository
</a>
<a class="card-link btn btn-primary" href="https://colab.research.google.com/github/hltcoe/patapsco/blob/master/samples/notebooks/demo-ecir.ipynb">
Colab Demo
</a>
</div>
<div class="card-footer text-muted">
Costello, Yang, Lawrie, & Mayfield.
<a href="https://doi.org/10.1007/978-3-030-99739-7_33">Patapsco: A Python Framework for Cross-Language Information Retrieval Experiments</a>.
In <i>Proceedings of the 44th European Conference on Information Retrieval (ECIR)</i>, 2022.
</div>
</div>
<div class="card my-3">
<div class="card-body">
<h4 class="card-title">
Concrete
</h4>
<p class="card-text">
Concrete is a cross-platform data serialization format and
communication protocol for language annotations. It replaces ad-hoc
TSV, XML, JSON, and other formats for storing document- and
sentence-level language annotations. We developed Concrete to record
and share annotations on structured human language data, including
both text and speech.
</p>
<a class="card-link btn btn-primary" href="http://hltcoe.github.io/concrete/">
Getting Started
</a>
<a class="card-link btn btn-secondary" href="http://concrete-python.readthedocs.io/">
Python
</a>
<a class="card-link btn btn-secondary" href="http://hltcoe.github.io/concrete-js/">
JavaScript
</a>
<a class="card-link btn btn-secondary" href="https://github.com/hltcoe/concrete-java/">
Java
</a>
</div>
</div>
<div class="card my-3">
<div class="card-body">
<h4 class="card-title">
Concretely Annotated Corpora
</h4>
<p class="card-text">
Under the heading <em>Concretely Annotated</em>, we
processed a variety of standard corpora with multiple
popular NLP tool-chains using the Concrete data schema.
</p>
<a class="card-link btn btn-primary"
href="https://archive.data.jhu.edu/dataset.xhtml?persistentId=doi:10.7281/T1/D06YVM">
Wikipedia
</a>
<a class="card-link btn btn-primary" href="https://catalog.ldc.upenn.edu/LDC2018T20">
English Gigaword
</a>
<a class="card-link btn btn-primary" href="https://catalog.ldc.upenn.edu/LDC2018T12">
The New York Times
</a>
</div>
<div class="card-footer text-muted">
Ferraro, Thomas, Gormley, Wolfe, Harman, & Van Durme.
<a href="http://www.akbc.ws/2014/submissions/akbc2014_submission_18.pdf">Concretely Annotated Corpora</a>.
In <i>4th Workshop on Automated Knowledge Base Construction (AKBC)</i>, 2014.
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</main>
<footer class="mt-5">
<div class="text-center text-muted">
© 2022 Human Language Technology Center of Excellence
</div>
</footer>
</div>
</body>
</html>