-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
737 lines (684 loc) · 43.2 KB
/
Copy pathindex.html
File metadata and controls
737 lines (684 loc) · 43.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hyperquest</title>
<link href="https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:ital,wght@0,400;0,600;1,400&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-SgOJa3DmI69IUzQ2PVdRZhwQ+dy64/BUtbMJw1MZ8t5HZApcHrRKUc4W0kG879m7" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/variables.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- -- nav start -- -->
<nav class="navbar navbar-expand-lg sticky-top">
<div class="container-fluid px-3 px-xxl-5">
<a class="navbar-brand" href="#header">
<img src="assets/img/logos/logo_hyperquest_small_nav.svg" alt="Logo" width="auto" height="auto" class="d-inline-block align-text-top">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div>
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="#header">about</a></li>
<li class="nav-item"><a class="nav-link" href="#project">project</a></li>
<li class="nav-item"><a class="nav-link" href="#hypergraph-examples">examples</a></li>
<li class="nav-item"><a class="nav-link" href="#team">team</a></li>
<li class="nav-item"><a class="nav-link" href="#partners">partners</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- -- nav end -- -->
<!-- -- header start -- -->
<header id="header">
<div class="container mt-5">
<div class="row mb-5">
<div class="col-12 col-lg-4 col-xxl-5 offset-lg-1 text-end text-md-end">
<h1 class="border-bottom scroll-animate">hyperquest</h1>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-6 col-lg-4 col-xxl-5">
<p>HYPERQUEST aims at creating a tool for knowledge extraction from text documents via iterative contextual learning, for use by medium-sized and large companies where these needs are recurrent (automatic document analysis and editing, information retrieval from internal databases, etc.). It aims at overcoming technological barriers by creating intuitive interfaces to help users co-construct complex knowledge extraction and transformation tasks simply and with very few examples, at a level of specificity and rigor that current tools do not allow.</p>
</div>
<div class="col-12 col-md-6 col-lg-4 col-xxl-5">
<p>HQ is based on our innovation, semantic hyper-graphs, which recursively link an arbitrary number of concepts to better capture the expressiveness of natural language, beyond the rigidity of traditional knowledge graphs, and allow powerful flexibility in defining linguistic patterns for massive information extraction — at the confluence of symbolic and connectionist (machine/deep learning) Artificial Intelligence.</p>
<!-- <a href="#project" class="btn-small text-big mt-4" role="button">
<span class="icon icon-more" aria-hidden="true"></span>
read more
</a> -->
</div>
</div>
</div>
<div class="container-fluid mt-5 mb-5">
<img class="pulse hexagon-bg-image" src="assets/img/visuals_illustrations/header-pic.svg" alt="Header pic">
</div>
</header>
<!-- -- header end -- -->
<!-- ================================================== -->
<!-- == PROJECT ORIGIN (from hyperquest-project.html) == -->
<!-- ================================================== -->
<main class="background-logo-middle">
<section id="project" class="mt-5">
<div class="container">
<div class="row mb-5">
<div class="col-10 col-lg-4 offset-lg-0 text-end text-md-end">
<h1 class="border-bottom scroll-animate">project origin</h1>
</div>
</div>
</div>
</section>
<!-- -- context section start -- -->
<section id="context" class="mt-5 mb-5">
<div class="container">
<div class="row mb-5">
<div class="col-10 col-lg-5 offset-lg-0 text-end text-md-end">
<h3 class="border-bottom scroll-animate">context and challenges</h3>
</div>
</div>
<div class="row justify-content-center">
<!-- context box 1 -->
<div class="col-12 col-md-6 col-lg-4 mb-4 text-center">
<div>
<div class="min-height">
<img class="me-2" src="assets/img/visuals_illustrations/undraw/undraw_collaborative-writing_ir40.svg" width="250" alt="illustration Information management">
</div>
<div class="mt-4">
<h5>Information management</h5>
<p>spreadsheets, relational databases</p>
</div>
</div>
</div>
<!-- context box 2 -->
<div class="col-12 col-md-6 col-lg-4 mb-4 text-center">
<div>
<div class="min-height">
<img class="me-2" src="assets/img/visuals_illustrations/undraw/undraw_text-files_tqjw.svg" width="250" alt="illustration Information extraction">
</div>
<div class="mt-4">
<h5>Information extraction</h5>
<p>turning text into structured data</p>
</div>
</div>
</div>
<!-- context box 3 -->
<div class="col-12 col-md-6 col-lg-4 mb-4 text-center">
<div>
<div class="min-height">
<img class="me-2" src="assets/img/visuals_illustrations/undraw/undraw_ai-agent_pdkp.svg" width="250" alt="illustration Desire for automation">
</div>
<div class="mt-4">
<h5>Desire for automation</h5>
<p>AI boom raised organizational awareness</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- -- context section end -- -->
<!-- -- besoin section start -- -->
<section id="besoin">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-12 col-lg-5">
<img src="assets/img/visuals_illustrations/pic-hand-chip.svg" class="img-fluid" alt="images chip and robo-hand">
</div>
<div class="col-12 col-md-12 col-lg-5">
<div class="col-12 col-lg-12 offset-lg-0 text-end text-md-end">
<h2 class="border-bottom scroll-animate">outstanding needs</h2>
</div>
<ul class="mt-5">
<li class="text-big">Lack of internal AI expertise</li>
<span class="text-medium">Difficulty in evaluating or negotiating services</span>
</ul>
<ul>
<li class="text-big">Solutions not tailored to specific needs</li>
<span>Uncertain cost-benefit analysis</span>
</ul>
<ul>
<li class="text-big">Lack of trust in LLMs</li>
<span>Hallucinations, opacity</span>
</ul>
</div>
</div>
</div>
</section>
<!-- -- besoin section end -- -->
<!-- -- interface-shapes section start -- -->
<section id="interface" class="mt-5">
<div class="bg-hex-group-right">
<div class="bg-hex-group-middle img-fluid">
<div class="container">
<div class="row">
<div class="col-10 col-lg-8 offset-lg-0 text-end text-md-end mt-5 mb-5">
<h3 class="border-bottom scroll-animate">interface between two canonical approaches</h3>
</div>
</div>
<div class="row justify-content-evenly">
<!-- hexagon-shape top-down - left -->
<div class="col-12 col-lg-5 hexagon-shape bg-img-td justify-content-center mb-5">
<div class="top-down-box mb-2">
<h4>
<img src="assets/img/icons/top-down_blue-big.svg" alt="Top-down Symbol">
Top-down
</h4>
<p class="mb-2">symbolic rules</p>
<p class="text-medium">explicit specification of target regularities</p>
</div>
<div class="d-flex justify-content-center text-center gap-4 mt-2">
<div>
<img src="assets/img/icons/plus_size_s_blue.svg" alt="Plus Icon" width="24" height="24">
<ul class="text-start mt-2">
<li>High precision</li>
<li>Low recall</li>
<li>Explainable</li>
</ul>
</div>
<div>
<img src="assets/img/icons/minus_size_s_blue.svg" alt="Minus Icon" width="24" height="24">
<ul class="text-start mt-2">
<li>Rigid</li>
<li>Requires few <br> examples</li>
</ul>
</div>
</div>
</div>
<!-- hexagon-shape top-down - left - end -->
<!-- hexagon-shape bottom-up - right -->
<div class="col-12 col-lg-5 hexagon-shape bg-img-bu justify-content-center mb-150">
<div class="top-down-box mb-3">
<h4>
<img src="assets/img/icons//bottom-up_blue-big.svg" alt="Bottom-up Symbol">
Bottom-up
</h4>
<p class="mb-2">deep learning, LLMs</p>
<p class="text-medium">implicitly captures regularities with numerous annotated examples</p>
</div>
<div class="d-flex justify-content-center text-center gap-4 mt-2">
<div>
<img src="assets/img/icons/plus_size_s_blue.svg" alt="Plus Icon" width="24" height="24">
<ul class="text-start mt-2">
<li>High recall</li>
<li>Enhanced handling <br>of context</li>
</ul>
</div>
<div>
<img src="assets/img/icons/minus_size_s_blue.svg" alt="Minus Icon" width="24" height="24">
<ul class="text-start mt-2">
<li>Black box</li>
<li>Costly training</li>
<li>Limited ability to <br>explore data</li>
</ul>
</div>
</div>
</div>
<!-- hexagon-shape bottom-up - right - end -->
</div>
<!-- hexagon-shape hyperquest -->
<div class="row justify-content-center moved-up mb-5">
<div class="col-6 col-lg-5 hexagon-shape-big bg-img-td align-items-center">
<img class="logo-small mt-5" src="assets/img/logos/logo_hyperquest_small_nav.svg" width="50" alt="">
<h4 class="mb-0">hyperquest</h4>
<p class="mb-3">best of both worlds</p>
<div class="hexagon-shape-hyperquest">
<div class="hex-box-left-top text-center">
<img src="assets/img/icons/bottom-up_blue.svg" alt="background image - hexagone bottom up">
<p class="text-medium mt-2">HyperQuest <br>reveals <span class="fw-bold">key patterns</span></p>
</div>
<div class="hex-box-middle-top text-center">
<img src="assets/img/icons/bottom-up_blue.svg" alt="icon - bottom up">
<p class="text-medium mt-2">Allows domain experts without AI <span class="fw-bold">expertise to select the most relevant cases</span></p>
</div>
<div class="hex-box-right-top text-center">
<img src="assets/img/icons/bottom-up_blue.svg" alt="icon bottom up">
<img src="assets/img/icons/top-down_blue.svg" alt="icon top down">
<p class="text-medium mt-1">Suggests/co-constructs targeted information <span class="fw-bold">extraction rules with few examples</span></p>
</div>
<div class="hex-box-right-bottom text-center">
<img src="assets/img/icons/bottom-up_blue.svg" alt="icon bottom up">
<p class="text-medium mt-2">Expands assisted extraction through <span class="fw-bold">neuro-symbolic patterns</span></p>
</div>
<div class="arrow-big-left-to-top text-left">
<p class="text-medium">successive refinement of sub-corpora and increasingly relevant patterns</p>
</div>
<div class="arrow-small-right-left"></div>
<div class="arrow-small-right-right"></div>
<div class="arrow-small-right-down"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- interface-shapes section end -->
<!-- -- solution section start -- -->
<section id="solution">
<div class="row justify-content-center">
<div class="col-8 offset-sm-0 col-md-6 col-lg-5 text-end mb-5">
<h2 class="border-bottom scroll-animate">proposed solution</h2>
<h5 class="text-center mt-4">application ready to be used by non-specialists</h5>
</div>
</div>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-12 col-lg-4 interface-column">
<div class="interface-solution-card mt-200">
<h4>
<img src="assets/img/icons/cluster_cachemere_small.svg" class="img-fluid" alt="icon Semantic Hypergraphs">
Semantic Hypergraphs
</h4>
<p>generalize semantic graphs, great flexibility in defining regularities to extract</p>
</div>
<div class="interface-solution-card">
<h4>
<img src="assets/img/icons/app_cachemere_small.svg" alt="icon App">
Ergonomic / No-code App
</h4>
<p>democratizes interactive extraction of relevant structured information</p>
</div>
</div>
<div class="col-12 col-lg-6">
<img class="moved-left img-fluid rounded-4" src="assets/img/visuals_illustrations/example-application202604.png" alt="App Screenshot">
</div>
</div>
</div>
</section>
<!-- -- solution section end -- -->
<!-- ================================================== -->
<!-- == SEMANTIC HYPERGRAPH EXAMPLES == -->
<!-- ================================================== -->
<section id="hypergraph-examples" class="mt-5">
<div class="container">
<div class="row mb-5">
<div class="col-12 col-lg-7 offset-lg-0 text-end text-md-end">
<h2 class="border-bottom scroll-animate">semantic hypergraph examples</h2>
</div>
</div>
<div class="row justify-content-center mb-5">
<div class="col-12 col-md-10 col-lg-8">
<p>Semantic Hypergraphs extend classical knowledge graphs by allowing edges to connect arbitrarily many nodes — and even other edges. This recursive structure captures the full expressiveness of natural language, including nested relations, qualifications, and epistemic context.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-10">
<!-- ─── Example 1 (always visible) ─── -->
<div class="hg-example">
<h3 class="hg-example-title">Piano</h3>
<div class="hg-example-body">
<div class="hg-graph-panel"><div class="gn">Piano</div></div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/piano-brick.svg" width="20%" alt="">
</div>
</div>
</div>
<!-- ─── Example 2 (always visible) ─── -->
<div class="hg-example">
<h3 class="hg-example-title">Black piano</h3>
<div class="hg-example-body">
<div class="hg-graph-panel">
<div class="g-subbox">
<div class="ge">
<span class="ge-label">black</span>
<div class="ge-line"><div class="ge-shaft"></div><div class="ge-arrow"></div></div>
</div>
<div class="gn">piano</div>
</div>
</div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/black-piano-brick.svg" width="30%" alt="">
</div>
</div>
</div>
<!-- ─── Toggle button ─── -->
<button class="hg-toggle-btn" id="hg-toggle" aria-expanded="false">
<span class="hg-toggle-icon">+</span>
<span class="hg-toggle-label">6 more examples</span>
</button>
<!-- ─── Hidden examples (3–7) ─── -->
<div class="hg-more-examples" id="hg-more">
<!-- Example 3 -->
<div class="hg-example" style="padding-top:40px;">
<h3 class="hg-example-title">Maria's piano.</h3>
<div class="hg-example-body">
<div class="hg-graph-panel">
<div class="gn">Maria</div>
<div class="ge">
<span class="ge-label">'s</span>
<div class="ge-line"><div class="ge-shaft"></div><div class="ge-arrow"></div></div>
</div>
<div class="gn">piano</div>
</div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/mariaspiano-brick.svg" width="30%" alt="">
</div>
</div>
</div>
<!-- Example 4 -->
<div class="hg-example">
<h3 class="hg-example-title">Maria's black piano.</h3>
<div class="hg-example-body">
<div class="hg-graph-panel" style="flex-wrap:wrap;">
<div class="gn">Maria</div>
<div class="ge">
<span class="ge-label">'s</span>
<div class="ge-line"><div class="ge-shaft"></div><div class="ge-arrow"></div></div>
</div>
<div class="g-subbox" style="background:rgba(210,228,240,0.55)">
<div class="ge">
<span class="ge-label">black</span>
<div class="ge-line"><div class="ge-shaft short"></div><div class="ge-arrow"></div></div>
</div>
<div class="gn">piano</div>
</div>
</div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/marias-black-piano-brick.svg" width="60%" alt="">
</div>
</div>
</div>
<!-- Example 6 (was 5) -->
<div class="hg-example">
<h3 class="hg-example-title">Pedro says that Maria plays piano after school.</h3>
<div class="hg-example-body">
<div class="hg-graph-panel" style="align-items:flex-start; padding:28px 20px;">
<div style="display:flex;align-items:center;gap:0;">
<div style="background:rgba(240,200,170,0.35);border-radius:8px;padding:14px 16px;">
<div style="display:flex;align-items:flex-start;gap:0;">
<div class="gn">Maria</div>
<div class="ge">
<span class="ge-label">plays</span>
<div class="ge-line"><div class="ge-shaft short"></div><div class="ge-arrow"></div></div>
</div>
<div style="display:flex;flex-direction:column;align-items:center;">
<div class="gn">piano</div>
</div>
</div>
</div>
</div>
</div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/maria-plays-piano.svg" width="30%" alt="">
</div>
</div>
</div>
<!-- Example 5 -->
<div class="hg-example">
<h3 class="hg-example-title">Pedro says that Maria plays piano after school.</h3>
<div class="hg-example-body">
<div class="hg-graph-panel" style="align-items:flex-start; padding:28px 20px;">
<div style="display:flex;align-items:center;gap:0;">
<div style="background:rgba(240,200,170,0.35);border-radius:8px;padding:14px 16px;">
<div style="display:flex;align-items:flex-start;gap:0;">
<div class="gn">Maria</div>
<div class="ge">
<span class="ge-label">plays</span>
<div class="ge-line"><div class="ge-shaft short"></div><div class="ge-arrow"></div></div>
</div>
<div style="display:flex;flex-direction:column;align-items:center;">
<div class="gn">piano</div>
<div class="ge-vert" style="margin-top:4px;">
<div class="ge-shaft-v"></div>
<div class="ge-arrow-v"></div>
<span class="ge-label" style="color:#08604f;font-size:0.8rem;margin-top:2px;">after</span>
</div>
<div class="gn" style="margin-top:4px;">school</div>
</div>
</div>
</div>
</div>
</div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/maria-plays-piano-after-school.svg" width="70%" alt="">
</div>
</div>
</div>
<!-- Example 6 -->
<div class="hg-example">
<h3 class="hg-example-title">Pedro says that Maria plays piano after school.</h3>
<div class="hg-example-body">
<div class="hg-graph-panel" style="align-items:flex-start; padding:28px 20px;">
<div style="display:flex;align-items:center;gap:0;">
<div class="gn">Pedro</div>
<div class="ge">
<span class="ge-label orange">says that</span>
<div class="ge-line"><div class="ge-shaft orange" style="width:46px;"></div><div class="ge-arrow orange"></div></div>
</div>
<div style="background:rgba(240,200,170,0.35);border-radius:8px;padding:14px 16px;">
<div style="display:flex;align-items:flex-start;gap:0;">
<div class="gn">Maria</div>
<div class="ge">
<span class="ge-label">plays</span>
<div class="ge-line"><div class="ge-shaft short"></div><div class="ge-arrow"></div></div>
</div>
<div style="display:flex;flex-direction:column;align-items:center;">
<div class="gn">piano</div>
<div class="ge-vert" style="margin-top:4px;">
<div class="ge-shaft-v"></div>
<div class="ge-arrow-v"></div>
<span class="ge-label" style="color:#08604f;font-size:0.8rem;margin-top:2px;">after</span>
</div>
<div class="gn" style="margin-top:4px;">school</div>
</div>
</div>
</div>
</div>
</div>
<div class="hg-notation-mono">
<img src="assets/img/visuals_illustrations/bricks-patterns/marias-piano-after-school-brick.svg" width="100%" alt="">
</div>
</div>
</div>
<!-- Example 7 -->
<div class="hg-example">
<h3 class="hg-example-title">Maria plays piano and Pedro watches movies.</h3>
<div class="hg-example-body">
<div class="hg-graph-panel" style="align-items:center; padding:28px 20px; gap: 16px;">
<div style="display:flex;align-items:center;gap:0;">
<div style="background:rgba(240,200,170,0.35);border-radius:8px;padding:14px 16px;">
<div style="display:flex;align-items:center;gap:0;">
<div class="gn">Maria</div>
<div class="ge">
<span class="ge-label">plays</span>
<div class="ge-line"><div class="ge-shaft short"></div><div class="ge-arrow"></div></div>
</div>
<div class="gn">piano</div>
</div>
</div>
</div>
<div class="ge" style="flex-direction:row;align-items:center;">
<div style="height:2px;width:24px;background:#1a1a2e;"></div>
<span class="ge-label" style="font-style:italic;color:#1a1a2e;margin:0 4px;">and</span>
<div style="height:2px;width:24px;background:#1a1a2e;"></div>
</div>
<div style="display:flex;align-items:center;gap:0;">
<div style="background:rgba(240,200,170,0.35);border-radius:8px;padding:14px 16px;">
<div style="display:flex;align-items:center;gap:0;">
<div class="gn">Pedro</div>
<div class="ge">
<span class="ge-label">watches</span>
<div class="ge-line"><div class="ge-shaft short"></div><div class="ge-arrow"></div></div>
</div>
<div class="gn">movies</div>
</div>
</div>
</div>
</div>
<div class="hg-notation-mono" style="font-style:italic;color:#555;font-size:0.9rem;display:flex;align-items:center;justify-content:center;">
<img src="assets/img/visuals_illustrations/bricks-patterns/maria-piano-predro-movies.svg" width="100%" alt="">
</div>
</div>
</div>
</div>
<!-- ─── end hidden examples ─── -->
</div>
</div>
</div>
</section>
<!-- -- hypergraph examples section end -- -->
<!-- -- team section start -- -->
<section id="team" class="mt-5 mb-5">
<div class="container">
<div class="row mb-5">
<div class="col-12 col-lg-3 offset-lg-0 text-end text-md-end">
<h3 class="border-bottom scroll-animate">team</h3>
</div>
</div>
<div class="row justify-content-center">
<!-- Team member 1 -->
<div class="col-12 col-md-12 col-lg-4 mb-4">
<div class="d-flex align-items-start">
<img class="me-2" src="assets/img/team/camille-roth.svg" alt="Camille Roth">
<div>
<h5>Camille Roth</h5>
<ul class="text-big">
<li>Research director</li>
<li>Formalization</li>
</ul>
</div>
</div>
</div>
<!-- Team member 2 -->
<div class="col-12 col-md-12 col-lg-4 mb-4">
<div class="d-flex align-items-start">
<img class="me-2" src="assets/img/team/telmo-menezes.svg" alt="Telmo Menezes">
<div>
<h5>Telmo Menezes</h5>
<ul class="text-big">
<li>Research</li>
<li>Technical architecture</li>
<li>Neuro-symbolic modeling</li>
</ul>
</div>
</div>
</div>
<!-- Team member 3 -->
<div class="col-12 col-md-12 col-lg-4 mb-4">
<div class="d-flex align-items-start">
<img class="me-2" src="assets/img/team/florian-schmitt.svg" alt="Florian Schmitt">
<div>
<h5>Florian Schmitt</h5>
<ul class="text-big">
<li>UX / UI Design</li>
<li>Ergonomic interface design</li>
<li>Front-end integration</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- -- team section end -- -->
<!-- -- Partner section start -- -->
<section id="partners" class="mt-5">
<div class="container">
<div class="row mb-5">
<div class="col-10 col-md-12 col-lg-2 offset-lg-1 text-end text-md-end">
<h3 class="border-bottom scroll-animate">partners</h3>
</div>
</div>
<div class="row justify-content-center">
<div class="col-10 col-md-12">
<div class="d-flex justify-content-between align-items-center flex-wrap gap-3">
<img src="assets/img/logos/logo_cnrs.svg" alt="CNRS" class="CNRS-logo">
<img src="assets/img/logos/logo_cnrs_innovation.svg" alt="CNRS Innovation" class="CNRS innovation-logo">
<img src="assets/img/logos/logo_cams.svg" alt="CAMS" class="CANS-logo">
<img src="assets/img/logos/logo_socsemics.svg" alt="SOCSEMICS" class="Socsemics-logo">
</div>
</div>
</div>
</div>
</section>
<!-- -- CTA section -- -->
<section id="CTA">
<div class="container-fluid">
<div class="row justify-content-center text-center">
<div class="col-8 scroll-animate">
<h4 class="mt-4 mb-4">do you want to know more?</h4>
<p>If you have any questions about the project or would like to get in touch with us, we would be pleased to hear from you.</p>
<a href="mailto:cams@ehess.fr" class="btn-small text-big mt-5" role="button">
<span class="icon icon-contact" aria-hidden="true"></span>
write us
</a>
</div>
</div>
</div>
</section>
<!-- -- partner section end -- -->
</main>
<footer class="mt-5">
<div class="container-fluid px-3 px-xxl-5">
<div class="row justify-content-between align-items-end">
<!-- left -->
<div class="col-12 col-md-3 col-lg-3 text-end mb-5">
<h3 class="border-bottom scroll-animate mb-5">hyperquest</h3>
<p>CAMS - UMR 8557 CNRS-EHESS</p>
<p>54 boulevard Raspail</p>
<p>75006 Paris</p>
<p>tél. (33-1) 49 54 20 42</p>
<p class="mb-4">(33-1) 49 54 25 53</p>
<a href="mailto:cams@ehess.fr">cams@ehess.fr</a>
<a href="https://cams.ehess.fr/">https://cams.ehess.fr/</a>
</div>
<!-- right, bottom -->
<div class="col-12 col-md-12 col-lg-4">
<div class="footer-right d-flex gap-4 justify-content-end text-end">
<a href="legalnotice.html">Credits & legal notice</a>
</div>
</div>
</div>
</div>
</footer>
<script>
/* ── Accordion toggle ── */
const toggleBtn = document.getElementById('hg-toggle');
const moreBox = document.getElementById('hg-more');
const toggleLabel = toggleBtn.querySelector('.hg-toggle-label');
toggleBtn.addEventListener('click', () => {
const open = moreBox.classList.toggle('open');
toggleBtn.classList.toggle('open', open);
toggleBtn.setAttribute('aria-expanded', open);
toggleLabel.textContent = open ? 'show less' : '6 more examples';
});
</script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.5/dist/js/bootstrap.bundle.min.js" integrity="sha384-k6d4wzSIapyDyv1kpU366/PK5hCdSbCRGRCMv+eplOQJWyd1fbcAu9OCUj5zNLiq" crossorigin="anonymous"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
// Scroll-animate observer
const targets = document.querySelectorAll('.scroll-animate');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate');
} else {
entry.target.classList.remove('animate');
}
});
}, { threshold: 0.2 });
targets.forEach(target => observer.observe(target));
// Highlight active nav link on scroll
const sections = document.querySelectorAll('section[id], header[id]');
const navLinks = document.querySelectorAll('.nav-link');
const navObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
navLinks.forEach(link => link.classList.remove('active'));
const active = document.querySelector(`.nav-link[href="#${entry.target.id}"]`);
if (active) active.classList.add('active');
}
});
}, { threshold: 0.35 });
sections.forEach(s => navObserver.observe(s));
});
</script>
</body>
</html>