This repository has been archived by the owner on Oct 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1157 lines (1094 loc) · 63.3 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
997
998
999
1000
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>hessian.AI</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="manifest" href="site.webmanifest"> -->
<!-- Place favicon.ico in the root directory -->
<!-- CSS here -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/themify-icons.css">
<link rel="stylesheet" href="css/nice-select.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/gijgo.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/slicknav.css">
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="stylesheet" href="css/responsive.css"> -->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- header-start -->
<header>
<div class="header-area ">
<div id="sticky-header" class="main-header-area">
<div class="container-fluid p-0">
<div class="row align-items-center no-gutters">
<div class="col-xl-2 col-lg-2">
<div class="logo-img">
<a href="index.html"><img src="img/logo.png" alt="Hessian.ai logo"
title="Hessian.ai"></a>
</div>
</div>
<div class="col-xl-8 col-lg-8 ">
<div class="main-menu d-none d-lg-block text-center">
<nav>
<ul id="navigation">
<li><a href="#mission">MISSION</a></li>
<li><a href="#vision">VISION</a></li>
<li><a href="#ecosystem">ECOSYSTEM</a></li>
<li><a href="#impact">AI EXPERTISE</a></li>
<li><a href="#team">MEMBERS</a></li>
<li class="d-block d-lg-none"><a
href="mailto:[email protected]">Contact</a></li>
<!-- <li><a href="#">pages <i class="ti-angle-down"></i></a>
<ul class="submenu">
<li><a href="portfolio_details.html">Portfolio details</a></li>
<li><a href="about.html">about</a></li>
<li><a href="elements.html">elements</a></li>
</ul>
</li> -->
</ul>
</nav>
</div>
</div>
<div class="col-lg-2 d-none d-lg-block">
<div class="log_chat_area d-flex ">
<a href="mailto:[email protected]" data-scroll-nav="0"
class="say_hi">Contact</a>
</div>
</div>
<div class="col-12">
<div class="mobile_menu d-block d-lg-none"></div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- header-end -->
<!-- slider_area_start -->
<div class="slider_area">
<div class="single_slider d-flex align-items-center slider_bg_1">
<div class="container">
<div class="row align-items-center justify-content-start">
<div class="col-lg-10 col-md-10">
<div class="slider_text">
<h3 class="wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".1s">
The Hessian Center for<br />
<div style="color: #7A46EB">Artificial Intelligence</div>
</h3>
<p class="wow fadeInLeft" data-wow-duration="1s" data-wow-delay=".3s">
Driving research excellence, education, practice and leadership in AI
to foster economic growth and improve the human condition.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- slider_area_end -->
<!-- service_area -->
<a id="mission"></a>
<div class="service_area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="section_title text-center mb-70">
<h3 style="font-size: 40px" class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".1s">
Mission</h3>
<p class="wow fadeInUp" data-wow-duration="1.2s" data-wow-delay=".2s">
Understanding the interplay of AI algorithms, AI systems, and synergies between artificial
and natural
intelligence provides the foundation for AI transformation.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-3 col-md-3">
<div class="single_service text-center wow fadeInLeft" data-wow-duration="1.2s"
data-wow-delay=".4s">
<div class="icon">
<img src="img/svg_icon/3.svg" alt="">
</div>
<h3>Algorithms</h3>
<p>for learning, reasoning, seeing, acting, etc.</p>
</div>
</div>
<div class="col-xl-3 col-md-3">
<div class="single_service text-center wow fadeInUp" data-wow-duration="1s" data-wow-delay=".3s">
<div class="icon">
<img src="img/svg_icon/2.svg" alt="">
</div>
<h3>AI Systems</h3>
<p> of interacting algorithms & new hardware. </p>
</div>
</div>
<div class="col-xl-3 col-md-3">
<div class="single_service text-center wow fadeInRight" data-wow-duration="1.2s"
data-wow-delay=".4s">
<div class="icon">
<img width="56px" src="img/svg_icon/maschine.svg" alt="">
</div>
<h3>Synergy</h3>
<p>of artificial and natural intelligence.</p>
</div>
</div>
<div class="col-xl-3 col-md-3">
<div class="single_service text-center wow fadeInRight" data-wow-duration="1.2s"
data-wow-delay=".4s">
<div class="icon">
<img width="56px" src="img/svg_icon/026-knowledge.svg" alt="">
</div>
<h3>Transformation</h3>
<p>of sciences, society, and industry via AI.</p>
</div>
</div>
</div>
</div>
</div>
<!--/ service_area -->
<a id="vision"></a>
<div class="about_area">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section_title">
<h3 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".4s">Research Vision</h3>
</div>
</div>
</div>
<div class="about_info">
<div class="row mb-5">
<div class="col-lg-5">
<div class="section_title">
<span style="font-size: 26px; font-weight: bold;" class="wow fadeInUp"
data-wow-duration="1s" data-wow-delay=".4s">The Third Wave of AI </span>
</div>
</div>
<div class="col-lg-7">
<p class="last_text wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">
Most of AI in use today falls under the categories of the first two
waves of AI research. First wave AIs follow clear rules, written by people, aiming to cover
every eventuality. Second wave AIs are the kind that use statistical learning to arrive at
an answer for a certain type of problem—think of image recognition systems. We
envisions a future in which machines are more than just tools that execute human-programmed
rules or generalize from human-curated data sets. Rather, the machines we envision will
function more as colleagues than as tools.
<br /><br />AI systems of this third wave of
AI can acquire human-like communication and
reasoning capabilities, with the ability to recognize new situations and to adapt to them.
For example, a third wave AI might note that a speed limit of 120 km/h does not make
sense when entering a small village.
</p>
</div>
</div>
<div class="row mb-5">
<div class="col-lg-5">
<div class="section_title">
<span style="font-size: 26px; font-weight: bold;" class="wow fadeInUp"
data-wow-duration="1s" data-wow-delay=".4s">Rethinking Computer<br /> Science through AI
</span>
</div>
</div>
<div class="col-lg-7">
<p class="last_text wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">To realize the
third wave of AI, we
push Systems AI — the systemic view on AI that captures, understands and utilizes the
interaction of
individual AI algorithms as building blocks for a complete, complex AI system in a
mathematical and computationally sound way. This requires to rethink computer science
through AI, from hardware, over database systems, to programming and software engineering.
<br /><br />This is combined with our active work on
human learning and reasoning. These two programs are inseparable: bringing machine-learning
algorithms closer
to the capacities of human learning should lead to more powerful AI systems as well as more
powerful theoretical
paradigms for understanding human cognition.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- portfolio_image_area -->
<a id="ecosystem"></a>
<div class="portfolio_image_area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="section_title text-center">
<h3 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".3s"> Strong Ecosystem </h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="single_Portfolio wow fadeInUp" data-wow-duration="1s" data-wow-delay=".5s">
<div class="single_service wow fadeInLeft d-flex align-items-center" data-wow-duration="1.2s"
data-wow-delay=".8s">
<img src="img/svg_icon/chart-network.svg" role="presentation"
style="margin-right: 1rem; width: 36px;" />
<p style="font-size: 24px; color: #5B28BB; font-weight: 600; margin-bottom: 0">Top Science
</p>
</div>
<div class="single_service wow fadeInLeft d-flex align-items-center" data-wow-duration="1.2s"
data-wow-delay=".8s">
<img src="img/svg_icon/brain.svg" role="presentation"
style="margin-right: 1rem;width: 36px;" />
<p style="font-size: 24px; color: #5B28BB; font-weight: 600; margin-bottom: 0">AI Startups
</p>
</div>
<div class="single_service wow fadeInLeft d-flex align-items-center" data-wow-duration="1.2s"
data-wow-delay=".8s">
<img src="img/svg_icon/industry.svg" role="presentation"
style="margin-right: 1rem;width: 36px;" />
<p style="font-size: 24px; color:#5B28BB; font-weight: 600; margin-bottom: 0">Industry Labs
</p>
</div>
<div class="single_service wow fadeInLeft d-flex align-items-center" data-wow-duration="1.2s"
data-wow-delay=".8s">
<img src="img/svg_icon/drafting-compass.svg" role="presentation"
style="margin-right: 1rem;width: 36px;" />
<p style="font-size: 24px; color: #5B28BB; font-weight: 600; margin-bottom: 0">Top
Infrastructure </p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 right-container">
<div class="single_service wow fadeInUp d-flex justify-content-center align-items-center"
data-wow-duration="1s" data-wow-delay=".6s">
<p class="impact-count">3</p>
<p class="impact-name">Hessian<br /> Ministries</p>
</div>
<div class="single_service wow fadeInUp d-flex justify-content-center align-items-center"
data-wow-duration="1s" data-wow-delay=".6s">
<p class="impact-count">13</p>
<p class="impact-name">Hessian<br /> Universities</p>
</div>
<div class="single_service wow fadeInUp d-flex justify-content-center align-items-center"
data-wow-duration="1s" data-wow-delay=".6s">
<p class="impact-count">22</p>
<p class="impact-name">Founding<br /> Members</p>
</div>
<div class="single_service wow fadeInUp d-flex justify-content-center align-items-center"
data-wow-duration="1s" data-wow-delay=".6s">
<p class="impact-count">20</p>
<p class="impact-name">New AI<br /> Professorships</p>
</div>
<div class="single_service wow fadeInUp d-flex justify-content-center align-items-center"
data-wow-duration="1s" data-wow-delay=".6s">
<p class="impact-count">38<span style="font-size: 20px;">M</span></p>
<p class="impact-name">Euro Investment</p>
</div>
<div class="single_service wow fadeInUp d-flex justify-content-center align-items-center"
data-wow-duration="1s" data-wow-delay=".6s">
<p class="impact-count">10+</p>
<p class="impact-name">Deep Learning High<br /> Performance Machines</p>
</div>
</div>
</div>
</div>
</div>
<!--/ service_area -->
<a id="impact"></a>
<div class="portfolio_image_area impact mb-50">
<div class="container" style="background-image: url('img/impact-bg.png');">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="section_title text-center mb-50 mt-30">
<h3 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".3s" style="color: #A999F8;">
Excellent and broad ai Expertise</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="single_Portfolio wow fadeInUp" data-wow-duration="1s" data-wow-delay=".5s">
<div class="single_service wow fadeInLeft d-flex align-items-center" data-wow-duration="1.2s"
data-wow-delay=".8s">
<p style="font-size: 18px; line-height: 2; color: #ffffff;; font-weight: normal;">
Machine Learning
<br />
(Probabilistic) Deep Learning<br />
Statistical Relational AI<br />
Computer Vision<br />
Natural Language Processing<br />
Robotics<br />
Models of Higher Cognition<br />
Psychology of Information Processing<br />
Database Systems<br />
Software Engineering<br />
Distributed Systems<br />
Hardware<br />
Bioinformatics<br />
Semantic Web<br />
Sustainability<br />
Medicine<br />
Finance
</p>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 right-container">
<div class="impact-types">
<img class="impact-logo mb-3" src="img/svg_icon/balance-scale.svg" />
<p class="impact-count">620+ Publications</p>
<p class="impact-name">Artificial Intelligence<br />Publications from our team.</p>
</div>
<div class="impact-types">
<img class="impact-logo mb-3" src="img/svg_icon/sitemap.svg" />
<p class="impact-count">170.000+ Citations</p>
<p class="impact-name">A growing number of citations<br /> in other publications.</p>
</div>
<div class="impact-types">
<img class="impact-logo mb-3" src="img/svg_icon/brackets-curly.svg" />
<p class="impact-count">AI Conferences</p>
<p class="impact-name">Program Chair at ACL, CVPR,<br />UAI, CoRL, ECML PKDD<br />among others.
</p>
</div>
<div class="impact-types">
<img class="impact-logo mb-3" src="img/svg_icon/briefcase.svg" />
<p class="impact-count">Fellows</p>
<p class="impact-name">EurAI, IEEE, ELLIS,<br />among others.</p>
</div>
</div>
</div>
</div>
</div>
<!-- team_member_start -->
<a id="team"></a>
<div class="team_area faculties">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="section_title text-center mb-50">
<h3 class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".3s">Faculty Members</h3>
<p class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".6s">22 founding faculty members
and 20 new AI professorships.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/miraMezini.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.stg.tu-darmstadt.de/staff/mira_mezini/"> <i
class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/m_mezini"> <i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Mira Mezini</h3>
<p>Founding Research Co-Director</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/kristianKersting.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://ml-research.github.io/people/kkersting/index.html"> <i
class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/kerstingAIML"> <i class="fa fa-twitter"></i>
</a></li>
<li><a href="https://www.linkedin.com/in/kerstingaiml/"> <i
class="fa fa-linkedin"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Kristian Kersting</h3>
<p>Founding Research Co-Director</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/janPeters.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.ias.informatik.tu-darmstadt.de/Team/JanPeters"> <i
class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/Jan_R_Peters"> <i class="fa fa-twitter"></i>
</a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Jan Peters</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/IrynaGurevych.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.informatik.tu-darmstadt.de/ukp/ukp_home/staff_ukp/prof_dr_iryna_gurevych/index.en.jsp">
<i class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/UKPLab"> <i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Iryna Gurevych</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/stefanRoth.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.visinf.tu-darmstadt.de/visinf/team_members/sroth/sroth_1.en.jsp">
<i class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/stefanroth"> <i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Stefan Roth</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/carstenBinnig.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.informatik.tu-darmstadt.de/datamanagement//datamanagement/dm_people/dm_people_detailseite_18624.en.jsp">
<i class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/cbinnig"> <i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Carsten Binnig</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/constantinRothkopf.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.pip.tu-darmstadt.de/ag_pip/members_pip/publications.de.jsp">
<i class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/ConstantinRoth1"> <i class="fa fa-twitter"></i>
</a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Constantin Rothkopf</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/oskarVonStryk.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.sim.informatik.tu-darmstadt.de/pers/mitarbeiter/stryk/">
<i class="fa fa-home"></i> </a></li>
<li><a href=" https://www.linkedin.com/in/oskar-von-stryk/"> <i
class="fa fa-linkedin"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Oskar von Stryk</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/andreasKoch.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.esa.informatik.tu-darmstadt.de/team/ahk"> <i
class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Andreas Koch</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/peterBuxmann.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.peterbuxmann.de/"> <i class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/peter_buxmann"> <i class="fa fa-twitter"></i>
</a></li>
<li><a href="https://www.linkedin.com/in/peter-buxmann-7096339/"> <i
class="fa fa-linkedin"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Peter Buxmann</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/visvanathanRamesh.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="http://www.ccc.cs.uni-frankfurt.de/people/"> <i
class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Visvanathan Ramesh</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/oliverHinz.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.wiim.uni-frankfurt.de/en/team/prof-dr-oliver-hinz/"> <i
class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Oliver Hinz</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/andreasHackethal.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.wiwi.uni-frankfurt.de/de/abteilungen/finance/lehrstuhl/prof-dr-andreas-hackethal/team/prof-dr-hackethal.html">
<i class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Andreas Hackethal</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/berndFreisleben.png" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.uni-marburg.de/fb12/arbeitsgruppen/verteilte_systeme/mitarbeiter/webfreisleb">
<i class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Bernd Freisleben</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/thomasNauss.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.uni-marburg.de/de/fb19/disciplines/physisch/umweltinformatik">
<i class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/tnauss"> <i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Thomas Nauss</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/alexanderGoesmann.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.uni-giessen.de/fbz/fb08/Inst/bioinformatik/people/current_members/alexandergoesmann">
<i class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Alexander Goesmann</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/gerdStumme.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.kde.cs.uni-kassel.de/stumme"> <i
class="fa fa-home"></i> </a></li>
<li><a href="https://twitter.com/gerdstumm"> <i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Gerd Stumme</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/michaelGuckert.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://www.thm.de/mnd/michael-guckert"> <i class="fa fa-home"></i>
</a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Michael Guckert</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/alexanderGepperth.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.hs-fulda.de/angewandte-informatik/ueber-uns/professuren/details/person/prof-dr-alexander-gepperth-1238/contactBox">
<i class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Alexander Gepperth</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".4s">
<div class="team_thumb col-lg-4">
<img src="img/team/ulrichSchwanecke.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="http://cvmr.info/"> <i class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Ulrich Schwanecke</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".6s">
<div class="team_thumb col-lg-4">
<img src="img/team/martinKappes.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a
href="https://www.frankfurt-university.de/de/hochschule/fachbereich-2-informatik-und-ingenieurwissenschaften/kontakt/professorinnen-und-professoren-im-fachbereich-2/martin-kappes/">
<i class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Martin Kappes</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single_team align-items-center row wow fadeInUp" data-wow-duration="1s"
data-wow-delay=".2s">
<div class="team_thumb col-lg-4">
<img src="img/team/bernhardHumm.jpg" alt="">
<div class="team_hover">
<div class="hover_inner text-center">
<ul>
<li><a href="https://fbi.h-da.de/personen/bernhard-humm/"> <i
class="fa fa-home"></i> </a></li>
</ul>
</div>
</div>
</div>
<div class="team_title col-lg-6">
<h3>Bernhard Humm</h3>
<p>Founding Faculty</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/ team_member_end -->
<!-- testimonial_area -->
<a id="testimonial"></a>
<div class="testimonial_area ">
<div class="container">
<div class="row">
<div class="col-xl-12">
<div class="testmonial_active owl-carousel">
<div class="single_carousel">
<div class="single_testmonial">
<img src="img/testmonial/banner.png" style="width: 100%;" />
<div class="quote">
<img src="img/testmonial/quote.svg" alt="">
</div>
<p>Artificial intelligence enables computers to learn new skills that will allow us to
find better solutions to the challenges we face, be it in the field of medicine,
tackling environmental issues or overcoming social problems. It will open up huge
scientific and economic potential and thus comes with great responsibility. In order
to exploit the opportunities for science, business and people in Hesse, we are
relying on the particular strengths of the universities in Hesse: The Technical
University of Darmstadt is strong in basic research and is closely followed by other
universities that are conducting specialist research into AI, while we can also call
on outstanding practical research at the University of Applied Sciences. The concept
was jointly developed by 13 universities and more than 40 partners from the fields
of research and business already want to cooperate with the centre today. Thanks to
its unique characteristics, the centre will – as confirmed by the independent
evaluation commission – become highly visible internationally, acting as a beacon in
this field that will reach far beyond the boundaries of our state.</p>
</div>
<div class="testmonial_author">
<h3>Angela Dorn</h3>
<span>Hessian Minister for Higher Education, Research and the Arts</span>
<br><br><span>August 31st, 2020</span>
</div>
</div>
<div class="single_carousel">
<div class="single_testmonial">
<img src="img/testmonial/banner.png" style="width: 100%;" />
<div class="quote">
<img src="img/testmonial/quote.svg" alt="">
</div>
<p>There is great potential in the business structures in Hesse for the application of
artificial intelligence. More companies already use AI in Hesse today than in other
federal states. Five percent of the companies in Hesse were already using AI in
2018. We want to build on this and expand the use of AI. A key focus of the AI
Centre will be on transferring knowledge between science and business, i.e. between
research and application. As a result, we want to enable more business start-ups.
Artificial intelligence sounds abstract and complicated yet we are encountering it
more and more in everyday life, whether it is facial recognition on smartphones or
parking assistants in cars. In turn, companies will increasingly use AI as a motor
for generating added value digitally. And this is what we want to strengthen and
promote in Hesse.</p>
</div>
<div class="testmonial_author">
<h3>Tarek Al-Wazir</h3>
<span>Hessian Minister of Economics, Energy, Transport and Housing</span>
<br><br><span>August 31st, 2020</span>
</div>
</div>
<div class="single_carousel">
<div class="single_testmonial">
<img src="img/testmonial/banner.png" style="width: 100%;" />
<div class="quote">
<img src="img/testmonial/quote.svg" alt="">
</div>
<p>We want to decisively shape the development of artificial intelligence here in Hesse
and at the same time place a particular focus on ethical issues. The use of AI
should be for the benefit of people and based on clear, ethical principles. The
development and application of AI in the future must be based on a free, democratic,
responsible, transparent and non-discriminatory approach. Therefore, the possible
applications should also always be carefully considered when carrying out research
into AI. Interdisciplinarity is a core element and AI applications can thus only be
successfully developed by combining the methods and insights of 3 or more different
disciplines. The centre will therefore cooperate closely with the Centre for
Responsible Digitalisation, which will make the Centre for Responsible
Digitalisation a really key component of the success of AI in Hesse. It works at the
interface between business, science and society in order to unlock the potential of
AI for Hesse.</p>
</div>
<div class="testmonial_author">
<h3>Kristina Sinemus</h3>
<span>Hessian Minister for Digital Strategy and Development</span>
<br><br><span>August 31st, 2020</span>
</div>
</div>
<div class="single_carousel">
<div class="single_testmonial">
<img src="img/testmonial/banner.png" style="width: 100%;" />