forked from ericwhyne/darpa_open_catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEFT-software.json
1025 lines (1025 loc) · 29.2 KB
/
DEFT-software.json
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"DARPA Program":"DEFT",
"Program Teams":[
"University of Washington"
],
"Software":"ReVerb Relation Extractor",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Automatically identifies and extracts binary relationships from English sentences. Relations are lexical, i.e. they consist of a predicate (verb phrase) and its two noun phrase arguments. (Java/Scala)",
"Internal Code Repo":"",
"License":[
"ALv2",
"CPL",
"In House"
],
"Languages":[
"Java",
"Scala"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"University of Washington"
],
"Software":"OLLIE Relation Extractor",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Extracts relations among sentences. Relations are lexical, i.e. the consist of a predicate and arguments as in 1.1 and also include lexical information about attribution and the enabling condition. (Java/Scala)",
"Internal Code Repo":"",
"License":[
"ALv2",
"MIT",
"BSDv2",
"http://www.maltparser.org/license.html",
"In house"
],
"Languages":[
"Java",
"Scala"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"University of Massachusetts"
],
"Software":"Universal Schema Relation Extraction",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Extracts relations between entities in a large document collection. Relations are drawn from an ontology (e.g. attendedSchool). (Scala)",
"Internal Code Repo":"",
"License":[
"ASL"
],
"Languages":[
"Scala"
],
"Categories":[
"NLP"
],
"New Date":"20140518",
"Update Date":"20140519"
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"University of Massachusetts"
],
"Software":"Coreference within a Document",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies coreferences (group of equivalent items) within a document. Coreference is currently performed only for selected Entity types. (Scala)",
"Internal Code Repo":"",
"License":[
"ASL"
],
"Languages":[
"Scala"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"University of Massachusetts"
],
"Software":"Cross Document Coreference with Resolution to Knowledge Base(KB)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies coreferences (group of equivalent items) within a document and resolves the coreferences with a KB. Coreference is currently performed for People and Organizations. (Scala)",
"Internal Code Repo":"",
"License":[
"ASL"
],
"Languages":[
"Scala"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"University of Texas - Austin"
],
"Software":"Bayesian Logic Programs for Textual Inference",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Infers new relations based on given set of relations and documents. Relations are drawn from an ontology (e.g. attendedSchool). (Java)",
"Internal Code Repo":"",
"License":[
"MIT"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"QCCUNY"
],
"Software":"Labeled N-Ary Relations between Typed Text Spans",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Extracts (binary) relations from the document. Relations are drawn from an ontology (e.g. attendedSchool). (Java)",
"Internal Code Repo":"",
"License":[
"GPL",
"LGPL",
"BSD",
"ASL",
"MIT",
"CPL",
"SUN"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"QCCUNY"
],
"Software":"Speech Segmentation (Prosodic Analysis for Anomaly Analysis)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Assigns segmentation at the level of sentences, prosodic phrases or discourse units as an ordered list of start time-end time pairs. (Java)",
"Internal Code Repo":"",
"License":[
"GPLv3"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"QCCUNY"
],
"Software":"Anomaly Analysis (Prosodic Analysis for Anomaly Analysis)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Annotates speech segment with confidence values denoting how uncertain the speaker is or how novel the information contained in the unit is.",
"Internal Code Repo":"",
"License":[
"ASL"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Columbia University"
],
"Software":"Modality-CB Tagger",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Tags the modality of predicates (verbs) into one of six classes (ability, effort, intention, success, want, belief) and for those of the speaker/author of the text toward each proposition in the text. (Java)",
"Internal Code Repo":"",
"License":[
"InHouse",
"ASL",
"CPL",
"EPL",
"LGPL",
"GPL",
"BSD",
"MIT"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Columbia University"
],
"Software":"Sarcasm Detection",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Judges whether a sentence is sarcastic or not. (Java)",
"Internal Code Repo":"",
"License":[
"Modified BSD license (LIBSVM)"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Columbia University"
],
"Software":"Interaction: Acoustic Analysis",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Generates a list of acoustic/prosodic characteristics from the input. (Java/C++)",
"Internal Code Repo":"",
"License":[
"GPL"
],
"Languages":[
"Java",
"C++"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Columbia University"
],
"Software":"Opinion",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Tags phrases in sentences for subjectivity and polarity. (Java)",
"Internal Code Repo":"",
"License":[
"GPL",
"ASL",
"BSD",
"In house"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Columbia University"
],
"Software":"Social Event Extraction",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Labels interaction events and their participants. There are at least two types: Interaction and Cognition. (Java/C++)",
"Internal Code Repo":"",
"License":[
"ALv2",
"In house"
],
"Languages":[
"Java",
"C++"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Oregon State University"
],
"Software":"Cross Document Co-reference of Relations and Entities",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Extracts relations, entities, and co-reference information across a set of documents. Relations are drawn from an ontology (e.g. attendedSchool). The initial focus will be on people and organizations. (Java)",
"Internal Code Repo":"",
"License":[
"GPL"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"CMUCS"
],
"Software":"CMUCS-coref-hovy-mitamura",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Performs coreference of events (verbs and nominalizations). Coreference is typed (i.e. identity, part-of, member-of). Limited set of epistemic values attached to each event. (Java)",
"Internal Code Repo":"",
"License":[
"CMUCS"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"CMUCS"
],
"Software":"Novelty Detection",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Assigns either a label or a numerical score of novelty in the input stream.",
"Internal Code Repo":"",
"License":[
"CMUCS"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"CMUCS"
],
"Software":"KB Web, Knowledge Resolver/Event Ontology Creation.htm, Event Ontology Creation",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Generates an ontology of possible events. Event is a list of entities, each associated with statistical distribution over associated verbs and subject/object positions relative to verb. Events also include a description of pairwise relationships between entities (e.g., coreferent or other). Per communication with the PI, this algorithm will be delayed.",
"Internal Code Repo":"",
"License":[
"CMUCS"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"CMUCS"
],
"Software":"KB Web, Knowledge Resolver/Knowledge Resolver.htm, Knowledge Resolver",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Processes a document and a set of hypotheses to generate the most coherent subset of hypotheses to explain the document. (Java)",
"Internal Code Repo":"",
"License":[
"CMUCS"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"CMUML"
],
"Software":"KB Web, Knowledge Resolver/Knowledge Base Web Service.htm, Knowledge Base(KB) Web Service",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Retrieves semantic information about entities, slots, and their values. Also enables inference over the KB to determine confidence, justification, metadata, and relevant text for a given entity-slot pair. (Java)",
"Internal Code Repo":"",
"License":[
"MIT"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Johns Hopkins University"
],
"Software":"PPDB (Paraphrase Database)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Generates a ranked list of potential paraphrases for the input. (Java)",
"Internal Code Repo":"",
"License":[
"BSD"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Johns Hopkins University"
],
"Software":"DAPPER (Domain Adapted Paraphraser)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Generates a database of domain-specific paraphrases using the input data.",
"Internal Code Repo":"",
"License":[
"BSD"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Johns Hopkins University"
],
"Software":"NattyLo - Recognizing Textual Entailment (RTE) System",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies entailment relations (entails, contradicts, unrelated, etc.) between pairs of passages.",
"Internal Code Repo":"",
"License":[
"BSD"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Recognizing Textual Entailment",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies entailment relations (entails, contradicts, unrelated, etc.) between pairs of passages or structured hypothesis and passage. (Java)",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Extended Semantic Role Labeling",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Exctracts n-ary relations within the document. Relation set is closer semantic/linguistic relations (e.g. BENEFICIARY, Arg-0).",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Discourse (Within Document complements Coreference)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Recognizes relations between events, where events are ESRL predicate/argument structures. Relations include CAUSE/ENABLE, PART-OF. (Java)",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Wikifier",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies a coherent set of concepts of interest in a given document, based on entities/concepts in a reference collection(Wikipedia, for now). Links entities in a document to Wikipedia URLs. (Java)",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"POS Tagger",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Assigns part of speech tags to words in the input document.",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Chunker",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Divides the input documents into shallow parse chunks.",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"20140519",
"Update Date":"20140520"
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Named Entity Recognizer",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies named entities in the input document.",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Coreference (within document)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies coreferences in a document for both entities and verbs. (Java)",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"UIUC"
],
"Software":"Profiler",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies entity mentions in a collection of documents, and generates relevant relational statistics. The relations statisics are in terms of predicate argument structure. (Java)",
"Internal Code Repo":"",
"License":[
"LLVM"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Cornell University"
],
"Software":"Attitude Extraction",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies the attitude (positive/negative) of an entity toward other entities within a sentence. (Java, Perl)",
"Internal Code Repo":"",
"License":[
"GPL",
"Cornell/UNT/Pitt open-source license"
],
"Languages":[
"Java",
"Perl"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Cornell University"
],
"Software":"Textual Similarity",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Assigns scores between [0,1] indicating the similarity in meaning between two sentences. (Java, Perl)",
"Internal Code Repo":"",
"License":[
"GPL",
"BSD",
"Cornell/UNT/Pitt open-source license"
],
"Languages":[
"Java",
"Perl"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Lexical Entailment Resource - get Relation",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies entailment relation (entails, contradicts, etc.) between a given pair of phrases.",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Stanford's Coreference (Within Document)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies entity and verb coreferences within the input document. (Java)",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Semantic Textual Similarity",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Calculates the semantic similarity between a pair of input text.",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Stanford's Labeled N-Ary Relations between Typed Text Spans (v1- Relation Extraction for KBP-Slot Filling)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Extracts binary relations from a document. Relations are pulled from an ontology (e.g. attended school). (Java)",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Stanford's Coreference (Cross document with resolution to KB)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies entity coreferences across documents, and updates the KB with new found entities. System was designed for people and organizations.",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
""
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Stanford's Mention Detection (Within Document)",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies and labels entity mentions within a document. (Java)",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"Stanford University"
],
"Software":"Stanford Named Entity Recognizer",
"Internal Link":"",
"External Link":"http://nlp.stanford.edu/software/CRF-NER.shtml",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Identifies named entites in text. Can be used with various models. As packaged by default with Stanford CoreNLP, 12 classes are recognized: DATE, TIME, DURATION, SET, NUMBER, ORDINAL, PERSON, LOCATION, ORGANIZATION, MONEY, PERCENT, MISC. (Java)",
"Internal Code Repo":"",
"License":[
"GPLv2"
],
"Languages":[
"Java"
],
"Categories":[
"NLP"
],
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"DEFT",
"Program Teams":[
"BBN"
],
"Software":"ADEPT v1.6",
"Internal Link":"",
"External Link":"",
"Public Code Repo":"deft-software-requests@bbn.com",
"Description":"Interfaces and integration framework for DEFT HLT algorithms and components. (Java)",
"Internal Code Repo":"",
"License":[
"UGPR"
],
"Languages":[
"Java"
],
"Categories":[
"Interface",
"API"
],
"New Date":"",
"Update Date":""
},