-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
454 lines (429 loc) · 17.1 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>PyPLN - Distributed Natural Language Processing, with Python</title>
<link rel="stylesheet" href="stylesheets/foundation.min.css">
<link rel="stylesheet" href="stylesheets/app.css">
<link rel="stylesheet" href="stylesheets/custom.css">
<script src="javascripts/modernizr.foundation.js"></script>
<!-- IE Fix for HTML5 Tags -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34350875-1']);
_gaq.push(['_setDomainName', 'pypln.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body style="background-color: #EEE">
<div class="top-bar" style="background-color: #FFF; height: 100px">
<div class="row">
<div class="seven columns">
<a title="PyPLN's logo"
href="http://www.pypln.org/"><img src="images/pypln_logo.png"
alt="PyPLN's logo" style="padding: 10px; height: 100px" /></a>
</div>
<div class="five columns">
<div class="row" style="margin-top: 30px">
<div class="three columns" align="center">
<a title="NAMD account on GitHub"
href="https://github.com/NAMD"><img
src="images/github_button.png" width="30"
alt="NAMD account on GitHub" /></a>
</div>
<div class="three columns" align="center">
<a title="PyPLN mail list"
href="http://groups.google.com/group/pypln"><img
src="images/email_button.png" width="30"
alt="PyPLN mail list" /></a>
</div>
<div class="three columns" align="center">
<a title="#pypln IRC channel on FreeNode"
href="http://webchat.freenode.net/?channels=pypln"><img
src="images/irc_button.png" width="30"
alt="#pypln IRC channel on FreeNode" /></a>
</div>
<div class="three columns" align="center">
<a title="PyPLN Twitter account"
href="https://twitter.com/pypln"><img
src="images/twitter_button.png" width="30"
alt="PyPLN Twitter account" /></a>
</div>
</div>
</div>
</div>
</div>
<header id="header">
<div class="row">
<div class="twelve columns">
<div id="featured">
<div class="slide">
<!-- image from:
https://en.wikipedia.org/wiki/File:Network_Community_Structure.svg
-->
<img src="images/distributed.png" alt="slide image">
<h1>Distributed by definition</h1>
<p>
Designed from the ground up to distribute analytical NLP tasks,
it takes maximal advantage from available hardware.
</p>
</div>
<div class="slide">
<img src="images/metadata.png" alt="slide image">
<h1>File-type and language detection</h1>
<p>
You can create language-sensitive analyses for a wide range of
supported languages, focusing on corner cases for each of them.
</p>
</div>
<div class="slide">
<img src="images/full-text-search.png" alt="slide image">
<h1>Embedded full-text search</h1>
<p>
With an integrated full-text search engine (with a rich query
language) you can search through all your corpora and documents.
</p>
</div>
<div class="slide">
<img src="images/visualizations.png" alt="slide image">
<h1>Rich visualizations of text analysis</h1>
<p>
Explore documents and corpora visualy on your browser, with
snappy dynamic visualizations which can be exported easily.
</p>
</div>
</div>
</div>
</div>
</header>
<div class="row">
<div class="eight columns">
<h3>What PyPLN is</h3>
<div class="row">
<div class="twelve columns">
<p>
<a href="http://www.pypln.org/">PyPLN</a> is a <b>platform for
processing and extracting useful information from text</b>. It was
conceived to <b>run in the cloud</b>, <b>scale quickly</b> and
<b>be easy to use</b>. It integrates many text mining and natural
language processing tools, which can be acessed via an easy-to-use
Web interface, where you can manage documents, corpora and interact
with its analysis/visualizations.
</p>
<p>
As its main feature, you can visualize analysis like part-of-speech
tags, word frequency statistics and other useful information.
It also offers a full-text search on your corpora
so you can easily find information and then visualize its analysis.
</p>
<p>
<a href="http://www.pypln.org/">PyPLN</a> is developed by a
research group called <a href="https://github.com/NAMD">Núcleo de
Análise e Modelagem de Dados (aka NAMD)</a> located on <a
href="http://emap.fgv.br/">Applied Mathematics School</a> at
<a href="http://www.fgv.br/">Fundação Getúlio Vargas</a> (in Rio
de Janeiro, Brazil).
</p>
<p>
For more information, please check the
<a href="http://pypln.org/docs"/>project documentation</a>.
</p>
</div>
</div>
<h3>Technology</h3>
<div class="row">
<div class="four columns">
<div class="panel">
<a href="http://www.python.org/"><img src="images/python_logo.png"
alt="Python logo" /></a>
</div>
</div>
<div class="four columns">
<div class="panel">
<a href="https://www.djangoproject.com/"><img
src="images/django_logo.png" alt="Django logo" /></a>
</div>
</div>
<div class="four columns">
<div class="panel">
<a href="https://bitbucket.org/mchaput/whoosh/wiki/Home"><img src="images/whoosh_logo.png"
alt="Whoosh logo" /></a>
</div>
</div>
<div class="four columns">
<div class="panel">
<a href="http://www.mongodb.org/"><img
src="images/mongodb_logo.png" alt="MongoDB logo" /></a>
</div>
</div>
<div class="four columns">
<div class="panel">
<a href="http://www.zeromq.org/"><img src="images/zeromq_logo.png"
alt="ZeroMQ logo" /></a>
</div>
</div>
<div class="four columns">
<div class="panel">
<a href="http://www.nltk.org/"><img src="images/nltk_logo.png"
alt="NLTK logo" /></a>
</div>
</div>
</div>
<h3>Developers</h3>
<div class="row">
<div class="six columns">
<div class="panel">
<div class="row">
<div class="twelve columns" style="padding-left: 10px">
<h4 style="margin: 0 !important">Álvaro Justen</h4>
</div>
</div>
<div class="row">
<div class="four columns" style="padding: 10px">
<img src="images/alvaro_justen.jpg"
alt="Álvaro Justen" />
</div>
<div class="eight columns" style="padding: 0px">
<br />
<ul style="list-style-type: none; margin: 0px">
<li>
<span class="label">GitHub</span>
<a href="https://github.com/turicas">turicas</a>
</li>
<li>
<span class="label">Twitter</span>
<a href="https://twitter.com/turicas">@turicas</a>
</li>
<li>
<span class="label">Site</span>
<a href="http://www.turicas.info/">turicas.info</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="six columns">
<div class="panel">
<div class="row">
<div class="twelve columns" style="padding-left: 10px">
<h4 style="margin: 0 !important">Flávio Amieiro</h4>
</div>
</div>
<div class="row">
<div class="four columns" style="padding: 10px">
<img src="images/flavio_amieiro.jpg"
alt="Flávio Amieiro" />
</div>
<div class="eight columns" style="padding: 0px">
<br />
<ul style="list-style-type: none; margin: 0px">
<li>
<span class="label">GitHub</span>
<a href="https://github.com/flavioamieiro">flavioamieiro</a>
</li>
<li>
<span class="label">Twitter</span>
<a href="https://twitter.com/flavioamieiro">@flavioamieiro</a>
</li>
<li>
<span class="label">Site</span>
<a href="http://www.flavioamieiro.com">flavioamieiro.com</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="six columns">
<div class="panel">
<div class="row">
<div class="twelve columns" style="padding-left: 10px">
<h4 style="margin: 0 !important">Flávio Coelho</h4>
</div>
</div>
<div class="row">
<div class="four columns" style="padding: 10px">
<img src="images/flavio_coelho.jpg"
alt="Flávio Coelho" />
</div>
<div class="eight columns" style="padding: 0px">
<br />
<ul style="list-style-type: none; margin: 0px">
<li>
<span class="label">GitHub</span>
<a href="https://github.com/fccoelho">fccoelho</a>
</li>
<li>
<span class="label">Twitter</span>
<a href="https://twitter.com/fccoelho">@fccoelho</a>
</li>
<li>
<span class="label">Site</span>
<a href="http://fccoelho.github.com">fccoelho.github.com</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="six columns">
<div class="panel">
<div class="row">
<div class="twelve columns" style="padding-left: 10px">
<h4 style="margin: 0 !important">Renato Souza</h4>
</div>
</div>
<div class="row">
<div class="four columns" style="padding: 10px">
<img src="images/renato_souza.jpg"
alt="Renato Souza" />
</div>
<div class="eight columns" style="padding: 0px">
<br />
<ul style="list-style-type: none; margin: 0px">
<li>
<span class="label">GitHub</span>
<a href="https://github.com/rsouza">rsouza</a>
</li>
<li>
<span class="label">Twitter</span>
<a href="https://twitter.com/rrsouza">@rrsouza</a>
</li>
<li>
<span class="label">Site</span>
<a
href="http://emap.fgv.br/people/renato.souza.html">EMAp/Renato
Souza</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="four columns">
<h4>Try our Demo</h4>
<p>
Do you want to try <a href="http://www.pypln.org/">PyPLN</a> without
needing to install it? Register a username and start using
it free (<a href="https://en.wikipedia.org/wiki/Gratis_versus_libre">as in free beer</a>)
right now:
</p>
<p align="center">
<a href="http://fgv.pypln.org/" class="button">fgv.pypln.org</a>
</p>
<p>
Note that this is just a demo installation and sometimes we need to
migrate or delete data for testing new features (the project is in
active development). So, do not rely on this demo to store your
documents and create analysis on top of it (we advise
you to install a instance in your own infrastructure).
</p>
<h4>Interact with the Community</h4>
<p>
One of the most valuable characteristics in free/libre software
projects is the collaboration that comes from the community. Join our
discussions, suggest new features and stay in touch through:
<ul class="disc">
<li> <a href="http://twitter.com/pypln">@pypln on Twitter</a> </li>
<li> <a href="http://groups.google.com/group/pypln">pypln mail list on Google Groups</a> </li>
<li> <a href="http://webchat.freenode.net/?channels=pypln">#pypln @
irc.freenode.net</a> </li>
</ul>
<h4>Get the Code</h4>
<p>
<a href="http://www.pypln.org/">PyPLN</a> is free
(<a href="https://en.wikipedia.org/wiki/Free_software">as in free speech</a>)
software. You can download, submit bug reports and contribute
through <a href="http://github.com">GitHub</a>. Feel free to
<a href="https://help.github.com/articles/using-pull-requests">fork our
repositories and submit pull requests</a>:
<ul class="disc">
<li> <a href="http://github.com/NAMD/pypln.web">pypln.web</a> </li>
<li> <a href="http://github.com/NAMD/pypln.backend">pypln.backend</a> </li>
<li> <a href="http://github.com/NAMD/pypln-deploy">pypln-deploy</a> </li>
</ul>
</p>
<p>
If you have skills on programming, linguistics or design and want to
help this project, please see our
<a
href="https://github.com/namd/pypln.backend/blob/develop/CONTRIBUTING.rst
">contributing guidelines</a>.
</p>
<h4>Sponsor</h4>
<p>
Our work is sponsored by
<a href="http://www.fgv.br/">Fundação Getúlio Vargas</a> (a brazilian
think-tank university) and its
<a href="http://emap.fgv.br/">Applied Mathematics School</a>.
<br />
<div align="center">
<a href="http://www.fgv.br/"><img src="images/fgv_logo.png"
alt="FGV logo" /></a>
</div>
</p>
</div>
</div>
<div id="copyright" style="background-color: white; padding: 20px">
<div class="row">
<div class="six columns">
<h5>Team</h5>
<p>
We have a multidisciplinary team focused on creating the best
free/libre platform for natural language processing: there are
engineers, computer programmers, mathematicians and linguists working
together in this project.
</p>
</div>
<div class="six columns">
<h5>Are you using it?</h5>
<p>
If you are using PyPLN in your institution please, tell us more
about your experience!
<a href="http://groups.google.com/group/pypln">Join our mail
list</a>, share your story and give us feedback so we can keep
improving.
</p>
</div>
</div>
<hr />
<div class="row" align="center">
Copyright © 2012
<a href="https://github.com/NAMD">Núcleo de Análise e Modelagem de Dados</a> /
<a href="http://emap.fgv.br/">Escola de Matemática Aplicada</a> -
<a href="http://www.fgv.br/">Fundação Getúlio Vargas</a>
</div>
</div>
<script src="javascripts/jquery.js"></script>
<script src="javascripts/foundation.min.js"></script>
<script src="javascripts/app.js"></script>
<script>
$(window).load(function(){
var featuredOptions = {
pauseOnHover: true,
startClockOnMouseOut: true,
startClockOnMouseOutAfter: 100,
advanceSpeed: 5000,
animationSpeed: 1000
};
$("#featured").orbit(featuredOptions);
});
</script>
</body>
</html>