-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
1254 lines (1253 loc) · 36.9 KB
/
gatsby-config.js
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
require("dotenv").config({
path: `.env`,
})
module.exports = {
pathPrefix: "/cvc-website",
siteMetadata: {
title: `Computational Visualization Center`,
peopleCards: [
{
name: "Chandrajit Bajaj",
image: "chandrajit.png",
position: "Director, Principle Investigator",
status: "current",
},
{
name: "Ryan Farell",
image: "ryan.png",
position: "Lead Research Scientist",
status: "current",
},
{
name: "Laura Lansing",
image: "laura.png",
position: "Research Administrator",
status: "current",
},
{
name: "Taemin Heo",
image: "taemin.png",
position: "Postdoctoral Researcher",
status: "alumni",
},
{
name: "Yi Wang",
image: "yi.png",
position: "PhD Candidate",
status: "current",
},
{
name: "Minh Nguyen",
image: "minh.png",
position: "PhD Candidate",
status: "alumni",
},
{
name: "Luke McLennan",
image: "luke.png",
position: "PhD Student",
status: "current",
},
{
name: "Aaron Dominick",
image: "aaron.png",
position: "PhD Student",
status: "current",
},
{
name: "Qing Zhu",
image: "qing.png",
position: "PhD Student",
status: "alumni",
},
{
name: "Shubham Bhardwaj",
image: "shubham.png",
position: "PhD Student",
status: "current",
},
{
name: "Omatharv Bharat Vaidya",
image: "omatharv.png",
position: "Graduate Student",
status: "current",
},
{
name: "Shruti Raghavan",
image: "shruti.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Jan-Christopher Cohrs",
image: "jan.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Rochan Avlur",
image: "rochan.png",
position: "Graduate Student",
status: "current",
},
{
name: "Ashwin Vinod",
image: "ashwin.png",
position: "Graduate Student",
status: "current",
},
{
name: "Jasleen Dhillon",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "George J Zhai",
image: "george.png",
position: "Graduate Student",
status: "current",
},
{
name: "Abhiram C Maddukuri",
image: "placeholder.png",
position: "Undergraduate Student",
status: "current",
},
{
name: "Aditya Sai",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Alexey Izmailov",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Arya Anantula",
image: "placeholder.png",
position: "Undergraduate Student",
status: "current",
},
{
name: "Harsha Honnappa",
image: "honnappa.png",
position: "Research Fellow from Purdue University",
status: "alumni",
},
{
name: "Jasper Lee",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Michael Zhang",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Nikitha Gollamudi",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Raghav Pant",
image: "placeholder.png",
position: "PhD Student",
status: "alumni",
},
{
name: "Shreyash Sinha",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Pronoma Banerjee",
image: "pronoma.png",
position: "Graduate Research Scholar - Interning from India",
status: "alumni",
},
{
name: "Jeffrey Mo",
image: "placeholder.png",
position: "Undergraduate Student",
status: "current",
},
{
name: "Ava Machado",
image: "ava.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Anubhav Goel",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Ruiqui Zuo",
image: "placeholder.png",
position: "Undergraduate Student",
status: "current",
},
{
name: "Conrad Li",
image: "conrad.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Kai Chang",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Mohamed Abouhawwash",
image: "placeholder.png",
position: "Research Fellow",
status: "alumni",
},
{
name: "Ahmed Abdelkader",
image: "ahmed.png",
position: "Postdoctoral Researcher",
status: "alumni",
},
{
name: "Xiaohan Zuo",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "William Porteous",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Trevor Nguyen",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Mahshid Alamdar",
image: "placeholder.png",
position: "PhD Student",
status: "alumni",
},
{
name: "Yunhao Yang",
image: "yunhao.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Teja Gorantla",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Soumil Chopra",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Zachary Endres",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Aaryan Sagar",
image: "placeholder.png",
position: "High School Student",
status: "alumni",
},
{
name: "Yuhan Zheng",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Ariaan Ghatate",
image: "placeholder.png",
position: "High School Student",
status: "alumni",
},
{
name: "Priyansh Kedia",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Amrutha Srinivasan",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Chase Tessmer",
image: "chase.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Nathan Clement",
image: "nathan.png",
position: "PhD Student",
status: "alumni",
},
{
name: "Thomas Ghorbanian",
image: "thomas.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Sumit Sinha",
image: "placeholder.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Sean Zanyk McLean",
image: "sean.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Yorick Sanders",
image: "yorick.png",
position: "Graduate Student",
status: "alumni",
},
{
name: "Benjamin Beal",
image: "ben.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Nikhil Ajjarapu",
image: "nikhil.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Edward Zhou",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Binglin Zhang",
image: "bingling.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Abrar Anwar",
image: "abrar.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Yash Totlani",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Arman Maesumi",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Sebastian Rutherford",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Harrison White",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Viraj Joshi",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Joshua Prupes",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Ian Shin",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Eshani Kaul",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Ryan Bethke",
image: "placeholder.png",
position: "Undergraduate Student",
status: "alumni",
},
{
name: "Tianming Wang",
image: "placeholder.png",
position: "Postdoctoral Researcher",
status: "alumni",
},
{
name: "Ahmed Abdelrazek",
image: "placeholder.png",
position: "Postdoctoral Researcher",
status: "alumni",
},
],
newsTiles: [
{
name: "Fall 2021 Seminar Series #1",
description: "Multivariate Gaussian Processes and Noisy Regression",
category: "seminars",
link: "/seminars/fall2021/seminar1",
date: "2021-09-03",
},
{
name: "Fall 2021 Seminar Series #2",
description:
"Probabilistic Inference for Fast Learning in Optimal Control",
category: "seminars",
link: "/seminars/fall2021/seminar2",
date: "2021-09-10",
},
{
name: "Fall 2021 Seminar Series #3",
description: "Camera Image Signal Processing (ISP)",
category: "seminars",
link: "/seminars/fall2021/seminar3",
date: "2021-09-27",
},
{
name: "Fall 2021 Seminar Series #4",
description:
"Maximum Pontryagin Principle, Optimal Control of Dynamic Systems / Reinforcement Learning",
category: "seminars",
link: "/seminars/fall2021/seminar4",
date: "2021-09-28",
},
{
name: "Fall 2021 Seminar Series #5",
description: "Kernel Methods for Multi-Output Vector",
category: "seminars",
link: "/seminars/fall2021/seminar5",
date: "2021-10-08",
},
{
name: "Fall 2021 Seminar Series #6",
description:
"Towards Efficient Rank-Ordered Search-and-Score of Digital Tumor Scans with Multi-Agent RL",
category: "seminars",
link: "/seminars/fall2021/seminar6",
date: "2021-10-08",
},
{
name: "An Honorary Bountiful Tree Planted for Prof. Bajaj",
category: "news",
link: "/tree",
date: "2021-06-23",
},
{
name: "CVC talked to Bill Gates",
category: "news",
link: "/bill-gates",
date: "2021-03-13",
},
{
name: "Journal paper accepted for publication in Mathematics for Computation, 2013",
category: "news",
link: "/quadratic",
date: "2021-03-25",
},
{
name: "Journal paper published in Nature, Feb, 2013",
category: "news",
link: "/ribosome",
date: "2013-03-25",
},
{
name: "Training F2Dock",
category: "seminars",
link: "/seminars/fall2011/f2dock",
date: "2011-11-08",
},
{
name: "A Reduced Flexibility Model for Macromolecules",
category: "seminars",
link: "/seminars/fall2011/macromolecules",
date: "2011-10-19",
},
{
name: "Understanding Shear in Proteins",
category: "seminars",
link: "/seminars/fall2011/shear",
date: "2011-10-11",
},
{
name: "Latest VolRover Sources",
category: "news",
link: "/latest-volrover",
date: "2011-10-09",
},
{
name: "Geometry in Compression Structures",
category: "seminars",
link: "/seminars/fall2011/geometry",
date: "2011-10-04",
},
{
name: "Multi-protein Docking for Viral Capsids",
category: "seminars",
link: "/seminars/fall2011/multi-protein-docking",
date: "2011-10-04",
},
{
name: "Ribosomal Protein Modeling for Trypanosoma Brucei from a 5.16A EM Density Map",
category: "seminars",
link: "/seminars/fall2011/ribosomal-protein",
date: "2011-09-27",
},
{
name: "Classification of Heterogeneous Particles in Cryo-EM Reconstructions",
category: "seminars",
link: "/seminars/fall2011/cryo-em",
date: "2011-09-20",
},
{
name: "Learning Parameters in F2Dock",
category: "seminars",
link: "/seminars/fall2011/learning-parameters",
date: "2011-09-13",
},
{
name: "Newer Binaries Posted",
category: "news",
link: "/newer-binaries",
date: "2011-09-08",
},
{
name: "Polyhedron Separation",
category: "seminars",
link: "/seminars/fall2011/polyhedron",
date: "2011-09-06",
},
{
name: "Parallelizing molecular energy and force calculations using cilk++ and CUDA",
category: "seminars",
link: "/seminars/fall2011/clik",
date: "2011-09-02",
},
{
name: "Code Review: TexMol and VolRover",
category: "seminars",
link: "/seminars/fall2011/code-review",
date: "2011-08-19",
},
{
name: "Flexible Fitting of Crystal Structures into Density Maps",
category: "seminars",
link: "/seminars/spring2011/flexible-fitting",
date: "2011-06-02",
},
{
name: "A Reduced Flexibility Model and Improved Scoring Scheme For Lead Optimization In Computational Drug Design",
category: "seminars",
link: "/seminars/spring2011/reduced-flexibility",
date: "2011-06-02",
},
{
name: "Sampling macromolecular recognition landscapes using Fast Fourier Transforms based approaches and their generalizations",
category: "seminars",
link: "/seminars/spring2011/fast-fourier-transforms",
date: "2011-05-10",
},
{
name: "Centroidal Voronoi Tessellation vs. Optimal Delaunay Triangulation",
category: "seminars",
link: "/seminars/spring2011/centrodial",
date: "2011-05-02",
},
{
name: "Stability of Dual Discretization Methods for PDEs",
category: "seminars",
link: "/seminars/spring2011/stability",
date: "2011-04-27",
},
{
name: "New Set of Binaries",
category: "news",
link: "/new-set-binaries",
date: "2011-04-23",
},
{
name: "Lead Optimization in Computational Drug Design: An Iterative Approach to Structural and Chemical Refinement",
category: "seminars",
link: "/seminars/spring2011/drug-design",
date: "2011-04-20",
},
{
name: "Multi protein docking",
category: "seminars",
link: "/seminars/spring2011/multi-protein-docking",
date: "2011-04-12",
},
{
name: "Flexible fitting of subunit assemblies into cryo-EM density maps",
category: "seminars",
link: "/seminars/spring2011/flexible-fitting",
date: "2011-04-06",
},
{
name: "Survey of GPU-accelerated Molecular Dynamics",
category: "seminars",
link: "/seminars/spring2011/dynamics",
date: "2011-03-29",
},
{
name: "Analysis-ready 3D reconstructions of complex objects from planar cross-sectional slices",
category: "seminars",
link: "/seminars/spring2011/reconstructions",
date: "2011-03-25",
},
{
name: "Convergence of Adaptive Finite Element Methods for Nonlinear Geometric PDE",
category: "seminars",
link: "/seminars/spring2011/convergence",
date: "2011-03-22",
},
{
name: "Molecular docking: current approaches and remaining challenges",
category: "seminars",
link: "/seminars/spring2011/molecular-docking",
date: "2011-03-09",
},
{
name: "Optimal (Co)homologous (Co)chains",
category: "seminars",
link: "/seminars/spring2011/optimal",
date: "2011-03-01",
},
{
name: "Statistical regularization method for electron tomography reconstruction",
category: "seminars",
link: "/seminars/spring2011/tomography",
date: "2011-02-22",
},
{
name: "Computational Anatomy – An approach to incorporate a priori shape information into 3D electron microscopy",
category: "seminars",
link: "/seminars/spring2011/computational-anatomty",
date: "2011-02-16",
},
{
name: "Simulation of Transmission Electron Microscope Images of Biological Specimens",
category: "seminars",
link: "/seminars/spring2011/simulation",
date: "2011-02-09",
},
{
name: "A Closer Look at the Poisson-Boltzmann Model",
category: "seminars",
link: "/seminars/spring2011/poisson-boltzmann",
date: "2011-02-01",
},
{
name: "Molecular Surfaces: Area, Volume, and Atomic Derivatives",
category: "seminars",
link: "/seminars/spring2011/molecular",
date: "2011-01-25",
},
{
name: "Conforming Vector Interpolation Functions for Polyhedral Meshes",
category: "seminars",
link: "/seminars/spring2011/interpolation",
date: "2011-01-18",
},
{
name: "CVC YouTube Channel Created",
category: "news",
link: "/youtube",
date: "2010-12-06",
},
{
name: "Capstone Project",
category: "news",
link: "/capstone",
date: "2010-12-06",
},
{
name: "Compressed Sensing",
category: "seminars",
link: "/seminars/spring2010/compressed-sensing",
date: "2010-11-22",
},
{
name: "Rational Curves from Rotation-Minimizing Frames",
category: "seminars",
link: "/seminars/spring2010/rotation-minimizing",
date: "2010-11-17",
},
{
name: "Dr. Chandrajit Bajaj and Andrew Gillette won the Best Paper Award",
category: "news",
link: "/best-paper",
date: "2010-09-02",
},
{
name: "International Collaboratory for Emerging Technologies Workshop",
category: "news",
link: "/workshop",
date: "2009-02-03",
},
{
name: "National Science Foundation Grant",
category: "news",
link: "/nsf-grant",
date: "2005-11-29",
},
{
name: "Best Student Poster cup from 13th International Meshing Roundtable",
category: "news",
link: "/best-poster",
date: "2004-10-01",
},
{
name: "Job Opportunity: Software Engineer (IT Network/Security Specialist)",
category: "news",
link: "/network-job",
date: "2024-04-19",
},
{
name: "Job Opportunity: Software Engineer",
category: "news",
link: "/swe-job",
date: "2024-04-19",
},
{
name: "Job Opportunity: Post-Doctoral Researcher",
category: "news",
link: "/postdoc-job",
date: "2024-04-19",
},
{
name: "Job Opportunity: Lead Research Scientist (AI Networking and Security)",
category: "news",
link: "/research-job",
date: "2024-04-19",
},
{
name: "UT Austin Aids Army in Test of Drone Defenses in Downtown Austin",
category: "news",
link: "https://news.utexas.edu/2021/12/21/ut-austin-aids-army-in-test-of-drone-defenses-in-downtown-austin/",
date: "2024-04-19",
},
{
name: "Computer Science Professor Trains AI Through Game Theory",
category: "news",
link: "https://dra.utexas.edu/trainingAI",
date: "2024-05-13",
},
],
projectTiles: [
{
name: "DEDRECON",
description:
"Advanced machine learning applied to real-life image visual perception under multi-modality fusion techniques",
img_name: "project_tiles/afc_logo",
link: "/projects/dedrecon",
tags: ["Computer Vision", "Scientific ML"],
date: "2020-09-01",
},
{
name: "Video Imputation",
description:
"On-the fly error-recovery in adaptive streaming, compression, and super resolution",
img_name: "project_tiles/video_imputation_crop",
link: "/projects/video-imputation",
tags: ["Computer Vision"],
date: "2021-11-01",
},
{
name: "MCE-VAE",
description:
"Invariance-based multi-clustering of latent space embeddings for equivariant learning",
img_name: "project_tiles/mce_vae",
link: "/projects/mce-vae",
tags: ["Scientific ML"],
date: "2021-11-15",
},
{
name: "Sample Complexity",
description:
"Theoretical conditions and algorithmic developments enabling sample-efficient reinforcement learning",
img_name: "project_tiles/sample_complexity_2",
link: "/projects/sample-complexity",
tags: ["Reinforcement Learning"],
date: "2021-09-28",
},
{
name: "Dynamic Belief Games",
description:
"Dynamic Belief Games focuses on developing dynamic next-generation learning agents that engage in planning, cross-training, and effective action choices in communications systems.",
img_name: "project_tiles/dbg",
link: "/projects/dynamic-belief-games",
tags: ["Reinforcement Learning"],
date: "2024-05-01",
},
{
name: "Optimal Control",
description:
"Optimal control problem solving by applying the Pontryagin maximum principle and then solving for a Hamiltonian dynamical system",
img_name: "project_tiles/optimal_control_2",
link: "/projects/optimal-control",
tags: ["Scientific ML", "Reinforcement Learning"],
date: "2020-11-11",
},
{
name: "Adversarial Cloaking",
description:
"Patch-based adversarial attack pipeline for training adversarial patches on 3D human meshes",
img_name: "project_tiles/adversarial_cloaking_crop",
link: "/projects/adversarial-cloaking",
tags: ["Computer Vision", "Scientific ML"],
date: "2020-09-01",
},
{
name: "Camera ISP",
description:
"Structured deep learning models that solves the heterogeneous image artifact filtering problem",
img_name: "project_tiles/isp_crop",
link: "/projects/camera-isp",
tags: ["Computer Vision"],
date: "2020-09-01",
},
{
name: "Dynamic Mode Decomposition",
description:
"Using compressive sensing and variational inference to side-step the traditional DMD analysis",
img_name: "project_tiles/dmd",
link: "/projects/dmd",
tags: ["Scientific ML"],
date: "2021-11-16",
},
{
name: "Angstrom",
description:
"Multi-resolution geometric data structures and computational mathematics algorithms",
img_name: "project_tiles/angstrom",
link: "/projects/angstrom",
tags: ["Scientific ML"],
date: "2020-09-01",
},
{
name: "Spectre",
description:
"Smart data structures and prediction optimization with provable guarantees for spectral and geometric processing",
img_name: "project_tiles/spectre_logo",
link: "/projects/spectre",
tags: ["Scientific ML"],
date: "2020-09-01",
},
{
name: "Generative Material Design",
description:
"Semi-supervised variational inference for generative materials design",
img_name: "project_tiles/generative_material_logo",
link: "/projects/generative-material-design",
tags: ["Scientific ML"],
date: "2020-09-01",
},
// {
// name: "Shape Optimization",
// description:
// "Inverse generative modeling for stealth and cloaking devices using meta-materials",
// img_name: "project_tiles/shape_logo",
// link: "/projects/shape-optimization",
// tags: ["Scientific ML", "Computer Vision"],
// date: "2020-09-01",
// },
{
name: "Rank-ordered Search-and-Score",
description:
"Multi-Agent Reinforcement Learning for sample efficient Rank-ordered Search-and-Score of giga-pixel images",
img_name: "project_tiles/search_n_score",
link: "/projects/search-n-score",
tags: ["Reinforcement Learning"],
date: "2020-09-01",
},
{
name: "Physics-informed Neural Networks",
description:
"Robust physics-informed neural networks for solving partial differential equations by capturing the physics induced constraints",
img_name: "project_tiles/robust_pinns",
link: "/projects/robust-pinns",
tags: ["Scientific ML"],
date: "2021-10-26",
},
{
name: "Theoretical Bound for OCF Algorithm",
description:
"This work aims to provide a more solid theoretical and mathematical understanding of optimal control flow (OCF) algorithm.",
img_name: "project_tiles/theoretical_bound",
link: "/projects/theoretical-bound",
tags: ["Reinforcement Learning"],
date: "2023-08-07",
},
{
name: "Real Time Processing of Hyperspectral Video",
description:
"This project showcases various aspects of processing hyperspectral video streams in real-time using advanced machine learning techniques.",
img_name: "project_tiles/intelligent_ml",
link: "https://cvc-lab.github.io/afc-website/",
tags: ["Computer Vision"],
date: "2023-12-01",
},
{
name: "Dueling Neural ODEs",
description:
"Dueling Neural ODEs seek to enforce stability in learning forward and adjoint dynamic.",
img_name: "project_tiles/dueling_neural_odes",
link: "/projects/neuralode",
tags: ["Scientific ML"],
date: "2023-11-21",
},
{
name: "Parkinsons's Disease Early Biomarker Discovery",
description:
"Quick and efficient extraction of patient specific SBR Ratios",
img_name: "project_tiles/parkinsons",
link: "https://cvc-lab.github.io/parkinsons-website/",
tags: ["Health AI/ML"],
date: "2024-04-06",
},
{
name: "OC Protein Side-Chain and Folding",
description:
"This work aims to solve the side-chain packing and protein-folding problem with a continuous RL framework.",
img_name: "project_tiles/protein_sidechain",
link: "/projects/protein-sidechain",
tags: ["Reinforcement Learning"],
date: "2024-09-12",
},
{
name: "Night-time Aerial Material Segmentation",
description:
"A low-cost solution for robust night-time material segmentation using hyperspectral data with RGB imagery.",
img_name: "project_tiles/aerial_material_segmentation",
link: "/projects/aerial-material-segmentation",
tags: ["Computer Vision"],
date: "2024-09-12",
},
],
softwareProjects: [
{
category: "Graphical User Tools",
items: [
{
name: "TexMol",
description: "Molecular visualization and computation",
},
{
name: "VolumeRover",
description: "Scalable Image Processing and Visualization Tool",
},
{
name: "VolRoverN",
description:
"Geometric and electrophysiological neuronal simulation and visualization package",
},
{
name: "LBIE",
description: "Level Set Boundary-Interior-Exterior Meshing Tool",