-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
996 lines (878 loc) · 52.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>JPL MEMEX</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body id="page-top" class="index" style="font-family: verdana">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="index.html#page-top">MEMEX</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="index.html#page-top"></a>
</li>
<li>
<a class="page-scroll" href="index.html#about">About</a>
</li>
<li>
<a class="page-scroll" href="index.html#how-it-works">How It Works</a>
</li>
<li>
<a class="page-scroll" href="index.html#it-helps">How It Helps</a>
</li>
<li>
<a class="page-scroll" href="index.html#news">News</a>
</li>
<li>
<a class="page-scroll" href="index.html#publications">Publications</a>
</li>
<li>
<a class="page-scroll" href="index.html#team">Team</a>
</li>
<li>
<a class="page-scroll" href="index.html#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-heading">We search <span class="dark-side">THE dark side</span> of web</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">WHAT IS MEMEX?</h2>
<hr/>
</div>
</div>
<div class="row">
<strong><p class="text-center about-memex-content col-md-offset-1 col-md-10">Today's web searches use a centralized, one-size-fits-all approach that searches the Internet with the same set of tools for all queries. While that model has been wildly successful commercially, it does not work well for many government use cases. To help overcome these challenges, DARPA launched the Memex program in September 2014.</strong> </p>
<div class="col-md-6">
<p class="text-justify about-memex-content" style="margin-top:50px">
Memex seeks to develop software that advances online search capabilities far beyond the current state of the art. The goal is to invent better methods for interacting with and sharing information, so users can quickly and thoroughly organize and search subsets of information relevant to their individual interests.
Creation of a new domain-specific indexing and search paradigm will provide mechanisms for improved content discovery, information extraction, information retrieval, user collaboration and extension of
</p>
</div>
<div class="col-md-6">
<p class="text-justify about-memex-content" style="margin-top:50px">
current search capabilities to the deep web,the dark web, and nontraditional (e.g. multimedia) content.
DARPA is funding 17 teams to collaboratively develop software to solve this challenge. NASA JPL, Kitware, and Continnum are working in collaboration to develop and improve the Memex search technology. Currently, the team is using the software to address complex search problems including human trafficking, court documents, and research papers.
</p>
</div>
</div>
</div>
</section>
<section id="how-it-works">
<div class="row text-center">
<div class="row">
<h2 class="section-heading">WHAT TO LOOK FOR IN MEMEX</h2>
</div>
<div class="info-div visible-md visible-lg visible-xl">
<img src="img/infographic.png" class="img-responsive"></img>
</div>
</div>
<div class="container-fluid visible-sm visible-xs">
<div class="col-md-12">
<p class="tool-content col-md-offset-4 col-md-7"><strong>Memex Explorer</strong> is a pluggable framework for domain specific crawls, search, and unified interface for Memex Tools. It includes the capability to add links to other web-based apps.</p>
</div>
<div class="col-md-12">
<p class="tool-content col-md-offset-4 col-md-7"><strong>ImageCat</strong> analyses images and extracts their EXIF metadata and any text contained in the image via OCR. It can handle tens of millions of images.</p>
</div>
<div class="col-md-12">
<p class="tool-content col-md-offset-6 col-md-5"><strong>LegisGATE</strong> is an application for running General Architecture Text Engineering over legislative resources.</p>
</div>
<div class="col-md-12">
<p class="tool-content col-md-offset-5 col-md-6"><strong>FacetSpace</strong> allows the investigation of large data sets based on the extraction and manipulation of relevant facets.</p>
</div>
<div class="col-md-12">
<p class="tool-content col-md-offset-5 col-md-6"><strong>ImageSpace</strong> provides the ability to analyze and search through large numbers of images based on associated metadata and OCR text or by uploading an image.</p>
</div>
</div>
</section>
<!-- Services Section -->
<section id="it-helps">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">HOW IT HELPS</h2>
<hr/>
<strong><p class="text-center about-memex-content" style="margin-bottom:50px">These are the domains that we are actively working in with Memex.</strong></p>
</div>
</div>
<div class="row text-center" style="margin-bottom:50px">
<div class="col-md-offset-1 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-shield fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">GeoInformatics in Human Trafficking</h4>
<p class="text-muted">Collects data and information around victims of human trafficking with geospatial informatics capabilities</p>
</div>
<div class="col-md-offset-2 col-md-4 text-center">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Facial Recognition</h4>
<p class="text-muted">Manages photos of potential terrorists and finds other places they exist on the web</p>
</div>
</div>
<div class="row text-center">
<div class="col-md-offset-1 col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-file-text-o fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Material Research</h4>
<p class="text-muted">Collect and analyzes data from research papers to create shared knowledge around an issue or topic</p>
</div>
<div class="col-md-offset-2 col-md-4 text-center">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-gavel fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Court Citations</h4>
<p class="text-muted">Crawls the web for court documents to help identify human traffickers</p>
</div>
</div>
</div>
</section>
<!-- News Grid Section -->
<section id="news" class="bg-light-gray">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">IN THE NEWS</h2>
<hr/>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://www.eldiario.es/cultura/tecnologia/privacidad/NASA-involucra-buscador-Memex_0_485401791.html" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img11.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://www.eldiario.es/cultura/tecnologia/privacidad/NASA-involucra-buscador-Memex_0_485401791.html" target="_blank"><h4>La NASA se involucra en el buscador Memex</h4></a>
<p class="text-muted">Eldiario.es. February 2, 2016</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://bit.ly/1MgD9qD" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img8.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://bit.ly/1MgD9qD" target="_blank"><h4>Finding a Better Way to Search the Whole Internet. </h4></a>
<p class="text-muted">NBC Los Angeles Channel 4. July 8, 2015</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://goo.gl/au6CfL" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img7.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://goo.gl/au6CfL" target="_blank"><h4>DARPA is Creating a New Internet, Based Around Search. </h4></a>
<p class="text-muted">The Epoch Times. June 23, 2015. </p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://www.tovima.gr/science/article/?aid=712905" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img2.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://www.tovima.gr/science/article/?aid=712905" target="_blank"><h4>Memex: the lens of the Dark Web.</h4></a>
<p class="text-muted">Tovima (Greece) Science. June 14, 2015</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item clearfix">
<a href="http://goo.gl/jXai2l
" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img9.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://goo.gl/jXai2l
"><h4>NASA is indexing the Deep Web to show mankind what Google wont. </h4></a>
<p class="text-muted">ABC/Univision Fusion. June 10, 2015.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href=" http://spaceref.com/news/viewpr.html?pid=46065" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img5.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href=" http://spaceref.com/news/viewpr.html?pid=46065" target="_blank"><h4>Deep Web Search May Help Scientists.</h4></a>
<p class="text-muted">SpaceRef. June 10, 2015</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://openscienceworld.com/deep-web-search-may-help-scientists/" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img3.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://openscienceworld.com/deep-web-search-may-help-scientists/" target="_blank"><h4>Deep Web Search May Help Scientists</h4></a>
<p class="text-muted">Open Science World. May 28, 2015</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://www.theregister.co.uk/2015/05/27/jpl_joins_darpas_memex_project/" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img6.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://www.theregister.co.uk/2015/05/27/jpl_joins_darpas_memex_project/" target="_blank"><h4>JPL joins DARPA’s Memex project: Better search and indexing for space stuff.”</h4></a>
<p class="text-muted">The Register - UK. May 27, 2015.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://www.sciencedaily.com/releases/2015/05/150523100942.htm" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img10.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://www.sciencedaily.com/releases/2015/05/150523100942.htm" target="_blank"><h4>Deep Web Search May Help Scientists</h4></a>
<p class="text-muted">ScienceDaily. May 23, 2015</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="http://goo.gl/MjVuVo" target="_blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-external-link fa-3x"></i>
</div>
</div>
<img src="img/news/img1.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<a href="http://goo.gl/MjVuVo" target="_blank"><h4>NASA, DARPA collaborating on Deep Web search to analyze spacecraft data.</h4></a>
<p class="text-muted">Digi III. March 30, 2015</p>
</div>
</div>
</div>
</div>
</section>
<!-- Publications Section -->
<section id="publications">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">PUBLICATIONS</h2>
<hr/>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">ROACH: Online Apprentice Critic Focused Crawling via CSS Cues and Reinforcement</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the 14th International Workshop on
Mining and Learning with Graphs held in conjunction with the ACM Conference on Knowledge Discovery and Data Mining (KDD 2018) |
<a target="_blank" href="KDD-REC18.pdf"> Read this article </a> </p> <p class="col-md-12" style="margin-left:-15px;font-size:12px">
Authors: Asitang Mishra, Chris A. Mattmann, Paul M. Ramirez, and Wayne M. Burke</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Deep Mars: CNN Classification of Mars Imagery for the PDS Imaging Atlas</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">Thirtieth Annual Conference on Innovative Applications
of Artificial Intelligence (IAAI), New Orleans, LA, February 2-7, 2018 |
<a target="_blank" href="IAAI18.pdf"> Read this article </a> </p> <p class="col-md-12" style="margin-left:-15px;font-size:12px">
Authors: Kiri L. Wagstaff, You Lu, Alice Stanboli, Kevin Grimes, Thamme Gowda and Jordan Padams</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Always Lurking: Understanding and Mitigating Bias in Online Human Trafficking Detection</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of AAAI/ACM Conference
on AI, Ethics, and Society 2018 | <a target="_blank" href="AIES18.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Kyle Hundman, Thamme Gowda, Mayank Kejriwal, Benedikt Boecking</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Cyber Persona Identification via Indirect Feature Analysis</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the GTA3 2018: Workshop on Graph Techniques for Adversarial Activity Analytics held in conjunction with the 11th ACM International Conference on Web Search and Data Mining (WSDM 2018)
2018 | <a target="_blank" href="GTA2018.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Suzanne Stathatos, Asitang Mishra, Chris A. Mattmann</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Ensemble Sentiment Analysis to Identify Human Trafficking in Web Data</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the GTA3 2018: Workshop on Graph Techniques for Adversarial Activity Analytics held in conjunction with the 11th ACM International Conference on Web Search and Data Mining (WSDM 2018)
2018 | <a target="_blank" href="GTA2018-Sentiment.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Anastasia Menshikova, Chris A. Mattmann</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Measurement Context Extraction from Text: Discovering Opportunities and Gaps in Earth Science </h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the 23rd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Halifax, Nova Scotia, Canada, August
2017 | <a target="_blank" href="KDD17.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Kyle Hundman, Chris A. Mattmann</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Ensemble Maximum Entropy Classification and Linear Regression for Author Age Prediction</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the IEEE International Conference on Reuse and Integration. San Diego, CA, USA., August 4-6, 2017. | <a target="_blank" href="https://arxiv.org/pdf/1610.00852"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Joey Hong, Chris A. Mattmann, Paul M. Ramirez</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">An Approach for Automatic and Large Scale Image Forensics</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the Multimedia Forensics and Security Workshop colocated with the ACM International Conference on Multimedia Retrieval (ICMR), Bucharest, Romania, June 2017. | <a target="_blank" href="MFSEC17.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Thamme Gowda, Kyle Hundman, Chris A. Mattmann </p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Scalable Hadoop-Based Pooled Time Series of Big Video Data from the Deep Web.</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;"> In Proceedings of the ACM International Conference on Multimedia Retrieval (ICMR), Bucharest, Romania, June 6-9, 2017 | <a target="_blank" href="ICMR17-oss.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Chris A. Mattmann, Madhav Sharan</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Improving accuracy of Tesseract in extraction of serial numbers from images of Counterfeit Electronics</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;"> In Proceedings of the Grace Hopper Celebration India (GHCI) 2016 Conference, Bangalore, India, December 7-9, 2016 | <a target="_blank" href="GHCI16.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Z. Parekh, C. Mattmann and K. Singh</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Tattoo detection and localization using region-based deep learning</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;"> In Proceedings of the 23rd IEEE International Conference on Pattern Recognition (ICPR), Cancun, Mexico, 4-8 Dec. 2016. | <a target="_blank" href="http://vision.unipv.it/CV/materiale2016-17/5th%20%20Choice/0279.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: H. Zhaohui Sun, Jeff Buames, Paul Tunison, Matt Turek, and Anthony Hoogs</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Clustering Web Pages Based on Structure and Style Similarity</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;"> In Proceedings of the IEEE International Conference on Information Reuse and Integration, Pittsburgh, Pennsylvania, USA, July 28-30, 2016 | <a target="_blank" href="https://isi.edu/~tg/pubs/2016/2016-gowda-iri-clustering.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Thamme Gowda, Chris A. Mattmann</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading"> An Automatic Approach for Discovering and Geocoding Locations in Domain-Specific Web Data</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the IEEE International Conference on Information Reuse and Integration, Pittsburgh, Pennsylvania, USA, July 28-30, 2016 | <a target="_blank" href="IRI16-Gazetteer.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Chris A. Mattmann, Madhav Sharan</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Multimedia Metadata-based Forensics in Human Trafficking Web Data</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;"> In Proceedings of the Workshop on Search and Exploration of X-Rated Information (SEXI) - 9th ACM International Conference on Web Search and Data Mining, San Francisco, California, USA. February 22-25, 2016 | <a target="_blank" href="http://media1.sexi2016.org/2016/02/sexi16proceedings.pdf#page=10"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Chris A. Mattmann, Grace Hui Yang, Harshavardhan Manjunatha, Thamme Gowda N, Andrew Jie Zhou, Jiyun Luo, Lewis John McGibbney</p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">Creating a Mars Target Encyclopedia by Extracting Information from the Planetary Science Literature</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;">In Proceedings of the AAAI Workshop on Knowledge Extraction from Text, Phoenix, AZ, February 12-13, 2016 | <a target="_blank" href="https://www.cs.utah.edu/~riloff/pdfs/wagstaff-KTEwksp.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Kiri L. Wagstaff, Ellen Riloff, Nina L. Lanza, Chris A. Mattmann, Paul M. Ramirez </p>
</div>
</div>
</br>
<div class="row">
<div class="col-md-offset-1 col-md-10 bg-light-gray">
<h5 class="service-heading">TREC Dynamic Domain: Polar Science</h5>
<p class="text-muted" style="margin-top:-15px;font-size:10px;"> In Proceedings of the Text Retrieval Conference (TREC), National Institute of Standards and Technology, Gaithersburg, Maryland USA, November 17-20, 2015.| <a target="_blank" href="http://trec.nist.gov/pubs/trec24/papers/JPL_USC-DD.pdf"> Read this article </a> </p>
<p class="col-md-12" style="margin-left:-15px;font-size:12px">Authors: Annie Bryant Burgess, Chris A.Mattmann, Giuseppe Totaro, Lewis John McGibbney, Paul M. Ramirez</p>
</div>
</div>
</br>
</div>
</section>
<!-- Team Section -->
<section id="team">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">THE TEAM</h2>
<hr/>
<div class="row">
<strong><p class="text-center about-memex-content col-md-offset-1 col-md-10">NASA JPL and Kitware are working in collaboration to develop and improve the Memex search technology. Currently, the team is using the software to address complex search problems including human trafficking, court documents, and research papers.</strong></p>
</div>
</div>
</div>
<div class="row" style="margin-top:70px">
<div class="col-md-offset-1 col-md-2 text-center">
<img src="img/jpl-logo.png" alt="JPL logo" style="width:60%">
</div>
<div class="col-md-8">
<p class="large text-muted">The Data Science Team at JPL coordinates research, development and operations of data intensive and data-driven science systems, methodologies and technologies across
JPL Engineering, Science and Programs.</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/chris-mattmann.jpg" class="img-responsive grayscale" alt="">
<h4>DR. CHRIS MATTMANN</h4>
<p class="text-muted">Principal Investigator</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/paul_r.jpg" class="img-responsive grayscale" alt="">
<h4>PAUL RAMIREZ</h4>
<p class="text-muted">Co-Investigator</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/wayne_burke.jpg" class="img-responsive grayscale" alt="">
<h4>WAYNE BURKE</h4>
<p class="text-muted">Data Scientist</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/lewis_mc.jpg" class="img-responsive grayscale" alt="">
<h4>DR. LEWIS MCGIBBNEY</h4>
<p class="text-muted">Engineering Applications Software Engineer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/asitang_mishra.gif" class="img-responsive grayscale" alt="">
<h4>ASITANG MISHRA</h4>
<p class="text-muted">Software Engineer</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/sujen_shah.jpg" class="img-responsive grayscale" alt="">
<h4>SUJEN SHAH</h4>
<p class="text-muted">Software Engineer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/kyle_hundman.jpg" class="img-responsive grayscale" alt="">
<h4>KYLE HUNDMAN</h4>
<p class="text-muted">Data Scientist</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/lauren_wong.png" class="img-responsive grayscale" alt="">
<h4>LAUREN WONG</h4>
<p class="text-muted">UX Designer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/rob_tapella.jpg" class="img-responsive grayscale" alt="">
<h4>ROB TAPELLA</h4>
<p class="text-muted">UX Designer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/karanjeet_singh.png" class="img-responsive grayscale" alt="">
<h4>KARANJEET SINGH</h4>
<p class="text-muted">Data Scientist Intern (USC)</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/Harshavardhan_Manjunatha.jpg" class="img-responsive grayscale" alt="">
<h4>HARSHAVARDHAN MANJUNATHA</h4>
<p class="text-muted">Data Scientist Intern (USC)</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/Madhav_Sharan.png" class="img-responsive grayscale" alt="">
<h4>MADHAV SHARAN</h4>
<p class="text-muted">Data Scientist Intern (USC)</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/Thamme_Gowda.png" class="img-responsive grayscale" alt="">
<h4>THAMME GOWDA N.</h4>
<p class="text-muted">Data Scientist Intern (USC)</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2 text-center">
<a href="http://www.kitware.com/">
<img src="img/kitware-logo.png" alt="Kitware logo" style="width:80%">
</a>
</div>
<div class="col-md-8">
<p class="large text-muted">Kitware, Inc. is a technology company that specializes in the research and development of open-source software in the fields of computer vision, medical imaging, visualization, 3D data publishing and technical software development.</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/jeffrey_baumes.jpg" class="img-responsive grayscale" alt="">
<h4>DR. JEFFREY BAUMES</h4>
<p class="text-muted">Site Principal Investigator</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/matt_turek.png" class="img-responsive grayscale" alt="">
<h4>DR. MATTHEW TUREK</h4>
<p class="text-muted">Assistant Director of Computer Vision</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/paul_tunison.png" class="img-responsive grayscale" alt="">
<h4>PAUL TUNISON</h4>
<p class="text-muted">Computer Vision R&D Engineer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/aashish_chaudhary.png" class="img-responsive grayscale" alt="">
<h4>AASHISH CHAUDHARY</h4>
<p class="text-muted">Technical Lead</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/harry_sun.png" class="img-responsive grayscale" alt="">
<h4>DR. ZHAOHUI SUN</h4>
<p class="text-muted">Computer Vision R&D Engineer</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/dan_lamanna.png" class="img-responsive grayscale" alt="">
<h4>DAN LAMANNA</h4>
<p class="text-muted">Scientific Computing R&D Engineer</p>
</div>
</div>
</div>
</div>
</section>
<!-- Former Team Section -->
<section id="team">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">FORMER TEAM MEMBERS</h2>
<hr/>
</div>
</div>
<div class="row" style="margin-top:70px">
<div class="col-md-offset-1 col-md-2 text-center">
<img src="img/jpl-logo.png" alt="JPL logo" style="width:60%">
</div>
<div class="col-md-8">
<p class="large text-muted">The Data Science Team at JPL coordinates research, development and operations of data intensive and data-driven science systems, methodologies and technologies across
JPL Engineering, Science and Programs.</p>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/brian_wilson.jpg" class="img-responsive grayscale" alt="">
<h4>BRIAN WILSON</h4>
<p class="text-muted">Principal Engineer, Architect</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/mike_joyce.jpg" class="img-responsive grayscale" alt="">
<h4>MICHAEL JOYCE</h4>
<p class="text-muted">Scientific Applications Software Engineer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/kim_whitehall.jpg" class="img-responsive grayscale" alt="">
<h4>DR. KIM WHITEHALL</h4>
<p class="text-muted">Scientific Application Software Engineer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/maziyar_boustani.jpg" class="img-responsive grayscale" alt="">
<h4>MAZIYAR BOUSTANI</h4>
<p class="text-muted">Scientific Applications Software Engineer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/nipurn_doshi.jpg" class="img-responsive grayscale" alt="">
<h4>NIPURN DOSHI</h4>
<p class="text-muted">UX Design Intern (Indiana University)</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/shivika_thapar.jpg" class="img-responsive grayscale" alt="">
<h4>SHIVIKA THAPAR</h4>
<p class="text-muted">UX Design Intern (Indiana Univeristy)</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2 text-center col-md-2">
<a href="http://continuum.io/">
<img src="img/continuum-logo.png" class="img-responsive img-centered grayscale" alt="Continuum logo" style="width:100%">
</a>
</div>
<div class="col-md-8">
<p class="large text-muted">Continuum helps people discover, analyze, and collaborate by connecting their curiosity and experience with any data.
</p>
</div>
</div>
<br/>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/katrina_riehl.jpg" class="img-responsive grayscale" alt="">
<h4>DR. KATRINA RIEHL</h4>
<p class="text-muted">Co- Principal Investigator</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/brittain_hard.png" class="img-responsive grayscale" alt="">
<h4>BRITTAIN HARD</h4>
<p class="text-muted">Software Developer</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/michael_sarahan.jpg" class="img-responsive grayscale" alt="">
<h4>DR. MICHAEL SARAHAN</h4>
<p class="text-muted">Data Scientist</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/reed_youngblood.jpg" class="img-responsive grayscale" alt="">
<h4>REED YOUNGBLOOD</h4>
<p class="text-muted">Data Scientist</p>
</div>
</div>
<div class="col-md-2">
<div class="team-member">
<img src="img/team/fde_freitas.png" class="img-responsive grayscale" alt="">
<h4>DR. GUILHERME DE FREITAS</h4>
<p class="text-muted">Data Scientist</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-offset-1 col-md-2">
<div class="team-member">
<img src="img/team/aron_ahmadia.jpg" class="img-responsive grayscale" alt="">
<h4>DR. ARON AHMADIA</h4>
<p class="text-muted">Computational Scientist</p>
</div>
</div>
</div>
</div>
</section>
<section id="collaborators" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">COLLABORATORS</h2>
<hr/>
</div>
<div class="collaborators row justify-content-md-center">
<div class="col-md-2 collaborators">
<a target="_blank" href="http://dig.isi.edu">
<img src="img/dig.png" class="img-responsive" alt="">
</a>
</div>
<div class="col-md-2 collaborators">
<a target="_blank" href="http://www.giantoak.com/">
<img src="img/giantoak.png" class="img-responsive" style="width:100%;" alt="">
</a>
</div>
<div class="col-md-2 text-center collaborators">
<a target="_blank" href="http://irds.usc.edu/">
<img src="img/IRDS-logo.png" class="img-responsive" style="width:100%;" alt="" >
</a>
</div>
<div class="col-md-3 text-center collaborators">
<a target="_blank" href="https://www.ll.mit.edu//mission/cybersec/HLT/HLT.html">
<img src="img/LL_Logo_white_png.png" class="img-responsive" style="width:100%;" alt="" >
</a>
</div>
<div class="col-md-2 text-center collaborators">
<a target="_blank" href="https://www.tacc.utexas.edu/systems/wrangler">
<img src="img/TACC-logo.png" class="img-responsive" style="width:75%;" alt="" >
</a>
</div>
</div>
</div>
</section>
<section id="contact" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">CONTACT US</h2>
</div>
<div class="col-lg-12 text-center">
<h4 class="section-heading"><a href="mailto:memex-general@jpl.nasa.gov" >memex-general@jpl.nasa.gov</a></h4>
</div>
</div>
</div>
<!-- Clients Aside -->
<aside class="clients" style="background:rgba(255,255,255,0.4);">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-2 col-sm-6">
<a href="http://www.darpa.mil/">
<img src="img/darpa-logo.png" class="img-responsive img-centered grayscale" alt="" style="width:70%">
</a>
</div>
<div class="col-md-2 col-sm-6">
<a href="http://www.jpl.nasa.gov/">
<img src="img/jpl-logo.png" class="img-responsive img-centered grayscale" alt="" style="margin-top:40%; width:70%">
</a>
</div>
<div class="col-md-2 col-sm-6">
<a href="http://www.kitware.com/">
<img src="img/kitware-logo.png" class="img-responsive img-centered grayscale" alt="">
</a>
</div>
<div class="col-md-2 col-sm-6">
<a href="index.html#">
<img src="img/nasa-logo.png" class="img-responsive img-centered grayscale" alt="" style="width:70%">
</a>
</div>
</div>
</div>
</aside>
</section>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/agency.js"></script>
</body>
</html>