-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1035 lines (929 loc) · 46.8 KB
/
index.html
File metadata and controls
1035 lines (929 loc) · 46.8 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
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 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.0">
<title>EGFxSet</title>
<link rel="icon" type="image/x-icon" href="/assets/LogoF.png">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.5.5/css/simple-line-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<nav class="navbar navbar-expand-lg bg-light transparent sticky-top">
<div class="container-fluid">
<img src="assets/LogoF.png" class="imgLogo"></img><a class="navbar-brand" href="#">EGFxSet</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#download">Download</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">
Team
</a>
</li>
</ul>
</div>
</div>
</nav>
</head>
<body>
<section class="container">
<div id="carousel" class="carousel slide carousel-fade" data-bs-ride="carousel">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#carousel" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#carousel" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#carousel" data-bs-slide-to="2"></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="2000">
<img src="assets/AmericanStratocaster.jpg" alt="Los Angeles" class="d-block w-100" width="100%">
<div class="carousel-caption d-none d-md-block">
<h5>Real electric guitar sounds!</h5>
<p>All possible notes of carefully recorded standard tuning electric guitar</p>
</div>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="assets/Orange.jpg" alt="Chicago" class="d-block w-100" width="100%">
<div class="carousel-caption d-none d-md-block">
<h5>Real analog gear!</h5>
<p>Recordings processed through popular and commonly used guitar gear</p>
</div>
</div>
<div class="carousel-item" data-bs-interval="2000">
<img src="assets/DL4.jpg" alt="New York" class="d-block w-100" width="100%">
<div class="carousel-caption d-none d-md-block">
<h5>A variety of effects!</h5>
<p>Up to 12 different effects were captured. Distortions, Modulations, Delays, and Reverbs</p>
</div>
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#carousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carousel" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
<p class="featuredText" onclick="ismir()">-- Presented on ISMIR 2022! --</p>
<hr class="section-break-1" />
<section id="about" class="about js-scroll fade-in">
<h1>About</h1>
<section class="paragraph js-scroll fade-in-bottom">
<p class="text-justify"> 8970 five-second length audio recordings of real electric guitar sounds <br><br>
All notes of a standard tuning electric guitar processed through 12 different effects</p>
</section>
<section class="details-about js-scroll fade-in">
<h5>WHAT?</h5>
</br>
<p>
EGFxSet contains recordings of all clean tones in a Stratocaster guitar, with augmentations by
processing the audios through
twelve electric guitar effects. Similar datasets apply effects using software, EGFxSet in contrast
uses <b>real guitar
effects hardware</b>, making it relevant to develop MIR tools
with applications on real music. Annotations include all
guitar and effect parameters controlled during our dataset
recording. EGFxSet contains 8970 unique, annotated guitar tones, and is published with full
open-access rights.
</p>
</br> </br> </br>
<h5>HOW?</h5>
</br>
<p>
All possible notes of an standard tuning electric guitar were recorded using the instrument
input of an Audient iD14 audio interface. Using the interface output, the recordings of each sound
effect were processed for recording
using the line input of the same interface. Both, the previously recorded clean guitar sounds
and
the processed recordings were normalized.
</br></br>
All the sounds of the dataset were annotated by a professional guitarist. Each file’s annotations
are:
</br></br>
<list class="details-about-list js-scroll fade-in-bottom">
<ul>
<li>
<b>String-Fret tuple:</b> digits indicating the string number (1 through 6) and fret
number (0
for open
strings, and 1 through 22 for fret position).
</li></br>
<li>
<b>Note:</b> the guitar had standard tuning, so the note played can be inferred with
string-fret tuple.
</li></br>
<li>
<b>Pickup configuration:</b> one of the five possible pickup configurations: bridge,
bridge-middle, middle,
middle-neck, or neck.
</li></br>
<li>
<b>Effect:</b> this is the name of the effect used (i.e. blues driver, chorus, or plate
reverb).
</li></br>
<li>
<b>Model:</b> this is the commercial name and version of the ef120 fect hardware used.
</li></br>
<li>
<b>Effect type:</b> a categorical name for the effect type, abstracting away the
effect’s
specific
name and
brand.
</li></br>
<li>
<b>Knob names:</b> each effect we used has controllable parameters with names given by
the
original
manufacturer.
</li></br>
<li>
<b>Knob type:</b> we use language descriptors from our functional categorization of effect
controls
to
categorize each effect’s controllable parameters.
</li></br>
<li>
<b>Setting:</b> a value (between 0.0 and 1.0, or bpm for rate effects, or name of selected category) indicating the setting captured.
</li>
</p>
</br></br></br>
</ul>
<h5>WHY?</h5>
</br>
<p>
Existing datasets use software emulations of analog gear to apply effects on clean
guitar recordings, and few include effect parameter annotations. As a result, there is a need for
datasets featuring
recordings of clean electric guitar tones, augmented using <b>real effects hardware</b>, and
including annotations of effects and guitar settings.
</br></br>
<section id="enphasis">EGFxSet addresses this need!</section>
</p>
</br></br></br>
</section>
<section class="details-sets">
<table class="table table-responsive table-bordered table-hover table-sm" class="set-table">
<thead class="index-back">
<tr>
<th class="text-center" scope="col"></th>
<th class="text-center" scope="col">GuitarSet</th>
<th class="text-center" scope="col">EGDB</th>
<th class="text-center" scope="col">IDMT-SMT-Audio-Effects</th>
<th class="text-center" scope="col">GUITAR-FX-DIST</th>
<th class="text-center" scope="col">EGFX</th>
</tr>
</thead>
<tbody class="text-center">
<tr>
<th scope="row">
Content type
</th>
<td>
performance
</td>
<td>
performance
</td>
<td>
mono- and poly-phonic
</td>
<td>
mono- and poly-phonic
</td>
<td class="bg-warning">
monophonic
</td>
</tr>
<tr>
<th scope="row">
No. guitars
</th>
<td>
1
</td>
<td>
1
</td>
<td>
2
</td>
<td>
2
</td>
<td class="bg-warning">
1
</td>
</tr>
<tr>
<th scope="row">
No. performers
</th>
<td>
6
</td>
<td>
1
</td>
<td>
1
</td>
<td>
1
</td>
<td class="bg-warning">
1
</td>
</tr>
<tr>
<th scope="row">
No. effects
</th>
<td>
0
</td>
<td>
5
</td>
<td>
11
</td>
<td>
13
</td>
<td class="bg-warning">
12
</td>
</tr>
<tr>
<th scope="row">
No. guitar pickup settings
</th>
<td>
1
</td>
<td>
1
</td>
<td>
2
</td>
<td>
2
</td>
<td class="bg-warning">
<b>5</b>
</td>
</tr>
<tr>
<th scope="row">
Effects with real hardware
</th>
<td>
-
</td>
<td>
False
</td>
<td>
False
</td>
<td>
False
</td>
<td class="bg-warning">
<b>TRUE</b>
</td>
</tr>
<tr>
<th scope="row">
Annotated effect settings
</th>
<td>
performance
</td>
<td>
performance
</td>
<td>
mono and polyphonic
</td>
<td>
mono and polyphonic
</td>
<td class="bg-warning">
monophonic
</td>
</tr>
<tr>
<th scope="row">
Duration (clean)
</th>
<td>
3 h
</td>
<td>
2 h
</td>
<td>
35 min
</td>
<td>
34 min
</td>
<td class="bg-warning">
57 min
</td>
</tr>
<tr>
<th scope="row">
Duration (effects)
</th>
<td>
-
</td>
<td>
10 h
</td>
<td>
18 h 33 min
</td>
<td>
111 h 6 min
</td>
<td class="bg-warning">
11 h 30 min
</td>
</tr>
<tr>
<th scope="row">
Duration (total)
</th>
<td>
3 h
</td>
<td>
12 h
</td>
<td>
19 h 8 min
</td>
<td>
111 h 40 min
</td>
<td class="bg-warning">
12 h 27 min
</td>
</tr>
</tbody>
</table>
<p class="footnote-about">Overview of existing datasets featuring (electric) guitar recordings and
augmentations with audio
effects. Each
row contrasts their characteristics with EGFxSet. Note that EGFxSet is the only one using real
effects hardware.</p>
</section>
<section class="details-sets-mobile">
<table class="table table-responsive table-bordered table-hover table-sm" class="set-table">
<thead class="index-back">
<tr>
<th class="text-center" scope="col"></th>
<th class="text-center" scope="col">EGFX</th>
</tr>
</thead>
<tbody class="text-center">
<tr>
<th scope="row">
Content type
</th>
<td class="bg-warning">
monophonic
</td>
</tr>
<tr>
<th scope="row">
No. guitars
</th>
<td class="bg-warning">
1
</td>
</tr>
<tr>
<th scope="row">
No. performers
</th>
<td class="bg-warning">
1
</td>
</tr>
<tr>
<th scope="row">
No. effects
</th>
<td class="bg-warning">
12
</td>
</tr>
<tr>
<th scope="row">
No. guitar pickup settings
</th>
<td class="bg-warning">
<b>5</b>
</td>
</tr>
<tr>
<th scope="row">
Effects with real hardware
</th>
<td class="bg-warning">
<b>TRUE</b>
</td>
</tr>
<tr>
<th scope="row">
Annotated effect settings
</th>
</td>
<td class="bg-warning">
monophonic
</td>
</tr>
<tr>
<th scope="row">
Duration (clean)
</th>
<td class="bg-warning">
57 min
</td>
</tr>
<tr>
<th scope="row">
Duration (effects)
</th>
<td class="bg-warning">
11 h 30 min
</td>
</tr>
<tr>
<th scope="row">
Duration (total)
</th>
<td class="bg-warning">
12 h 27 min
</td>
</tr>
</tbody>
</table>
<p class="footnote-about-mobile">Overview of the characteristics of EGFxSet.</p>
</section>
</section>
</br></br></br>
<hr class="section-break-1" />
<section id="features" class="features js-scroll fade-in">
<h1>Features</h1>
<div class="row ">
<div class="col-6">
<img src="assets/Fender-F.jpg" class="img-fluid rounded js-scroll slide-left" alt="American Strat"
height="25%" id="fbx">
<section class="paragraph-feature mx-auto">
<p class="text-justify js-scroll fade-in-bottom">All 138 possibles notes with each of the 5
pickups of an American Fender Stratocaster plucked by a 2.0 mm thick pick</p>
</section>
</div>
<div class="col-6">
<img src="assets/Anotations-F.jpg" class="img-fluid rounded js-scroll slide-right"
alt="Orange Crush 60" height="25%" id="fbx">
<section class="paragraph-feature mx-auto">
<p class="text-justify js-scroll fade-in-bottom">Carefull annotations of each note, string and
fret position, and the effect parameters applied</p>
</section>
</div>
</div>
<div class="row" id="effectsimg">
<div class="col-3 ">
<img src="assets/Distortions-F.png" class="img-fluid rounded js-scroll slide-left"
alt="American Strat" height="25%" id="fdx">
</div>
<div class="col-3 ">
<img src="assets/Modulations-F.png" class="img-fluid rounded js-scroll slide-left"
alt="Orange Crush 60" height="25%" id="fdx">
</div>
<div class="col-3">
<img src="assets/Delays-F.png" class="img-fluid rounded js-scroll slide-right " alt="American Strat"
height="25%" id="fdx">
</div>
<div class="col-3">
<img src="assets/Reverb-F.png" class="img-fluid rounded js-scroll slide-right" alt="Orange Crush 60"
height="25%" id="fdx">
</div>
</div>
<div class="row" id="effectsimgmobile">
<div class="col-6 ">
<img src="assets/Distortions-F.png" class="img-fluid rounded js-scroll slide-left"
alt="American Strat" height="25%" id="fdx">
</div>
<div class="col-6 ">
<img src="assets/Modulations-F.png" class="img-fluid rounded js-scroll slide-left"
alt="Orange Crush 60" height="25%" id="fdx">
</div>
<div class="col-6">
<img src="assets/Delays-F.png" class="img-fluid rounded js-scroll slide-right " alt="American Strat"
height="25%" id="fdx">
</div>
<div class="col-6">
<img src="assets/Reverb-F.png" class="img-fluid rounded js-scroll slide-right" alt="Orange Crush 60"
height="25%" id="fdx">
</div>
</div>
<section class="paragraph-features mx-auto">
<p class="text-justify js-scroll fade-in-bottom">
Analog gear effects with and without digital
components</br>
12 popular effects are divided into four categories: Gain, Modulation, Delay, and
Reverb</br>
3 different effects per category</br>
</p>
</section>
<section class="details-features js-scroll fade-in">
<h5>GAIN</h5>
</br>
<p>
<b>TubeScreamerMini:</b> A compact version of the iconic TS-808 Saturation effect from Ibanez. The
pedal used was made in Japan in 2019.
</br></br>
<b>BD-2:</b> A widely used overdrive pedal from Boss Company. The version used is a 2018 model made
in Taiwan and has the same schematic as their first Blues Driver pedal released in 1995.
</br></br>
<b>RAT2:</b> A Proco’s very popular distortion pedal, the one used was a later 2010 model made in
China by Neutrik.
</br></br></br>
</p>
<h5>MODULATION</h5>
</br>
<p>
<b>CE-3:</b> A Chorus Pedal made in Japan in 1987 by Boss. It includes, at its time, a
stereo configuration, but we only used the mono one.
</br></br>
<b>Phase45:</b> A MXR phaser pedal made from 1977 to 1981, its a simplified one knob version of
their well known phaser pedal Phase90, the one used was build in U.S.A. in 1980.
</br></br>
<b>E-Lady:</b> A Mooer clone of the Electric Mistress, an iconic flanger pedal from 1975 made by
Electro-Harmonix. The pedal used was made in China in 2022.
</br></br></br>
</p>
<h5>DELAY</h5>
</br>
<p>
<b>DL4:</b> A delay stomp box unique in its kind when introduced into the market in 1999. This
digital emulator of 16 different type of delays remained unmodified for nearly 23 years. Of the 16
possible delays we used three, Tape Echo, Sweep Echo and Digital Delay. The pedal used is a Line
6 2007 model made in China.
</br></br></br>
</p>
<h5>REVERB</h5>
</br>
<p>
<b>CR6OC:</b> We used a digital reverb emulations of an Orange Crush Pro 60 12-inch speaker combo
amplifier. The amplifier used is a 2014 model made in China and it integrates Plate, Hall and Spring
reverberations.
</br></br></br>
</p>
<table class="table table-responsive table-bordered table-hover table-sm fx-table">
<thead>
<tr>
<th class="text-center" scope="col">Effects</th>
<th class="text-center" scope="col">Settings</th>
</tr>
</thead>
<tbody class="text-center">
<tr onclick="sonido()" id="BD-2" class="bg-dist">
<td>
<p></p><b>Blues Driver</b>
<p>(Boss BD-2)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/BluesDriver.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="TS" class="bg-dist">
<td>
<p></p><b>Tube Screamer</b>
<p>(Ibanez TS Mini)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/MiniTubeScreamer.png"></div>
</td>
</td>
</tr>
<tr onclick="sonido()" id="RAT" class="bg-dist">
<td>
<p></p><b>Distortion</b>
<p>(Pro Co Rat2)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/Rat.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="CH-3" class="bg-mod">
<td>
<p></p><b>Chorus</b>
<p>(Boss CE-3)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/Chorus.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="FL" class="bg-mod">
<td>
<p></p><b>Flanger</b>
<p>(Mooer E-Lady)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/Flanger.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="PH" class="bg-mod">
<td>
<p></p><b>Phaser</b>
<p>(MXR Phase45)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/Phaser.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="TE" class="bg-del">
<td>
<p></p><b>Tape Echo</b>
<p>(Line6 DL-4)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/TapeEcho.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="DD" class="bg-del">
<td>
<p></p><b>Digital Delay</b>
<p>(Line6 DL-4)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/DigitalDelay.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="SE" class="bg-del">
<td>
<p></p><b>Sweep Echo</b>
<p>(Line6 DL-4)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/SweepEcho.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="PR" class="bg-rv">
<td>
<p></p><b>Plate Reverb</b>
<p>(Orange CR-60 Combo Amp)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/PlateReverb.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="HR" class="bg-rv">
<td>
<p></p><b>Hall Reverb</b>
<p>(Orange CR-60 Combo Amp)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/HallReverb.png"></div>
</td>
</tr>
<tr onclick="sonido()" id="SR" class="bg-rv">
<td>
<p></p><b>Spring Reverb</b>
<p>(Orange CR-60 Combo Amp)</p>
</td>
<td>
<div class="holder"><img src="/assets/knobs/SpringReverb.png"></div>
</td>
</tr>
</tbody>
</table>
<p class="footnote-features">The table illustrates the guitar effect hardware settings used when
recording
EGFxSet. Feel free to click in each cell to hear a sample of the sound of each effect!</p>
</section>
</br></br></br>
</section>
<hr class="section-break-1" />
<section id="download" class="download js-scroll fade-in">
<h1>Download</h1>
<section class="paragraph-download mx-auto">
<p class="text-justify js-scroll fade-in-bottom"> The current release of the dataset can be downloaded
via its zenodo repositorie or used via its mirdata loader. The dataset structure and
steps needed to use its files are carefully specified in the links below.</p>
</section>
<section class="images-downloads">
<a href="https://zenodo.org/record/7044411#.YzRx2XbMKUl" target="_blank">
<img src="assets/zenodo.png" class="img-fluid rounded-circle mx-auto d-block js-scroll fade-in"
alt="Link to Zenodo">
<p>
<figcaption>EGFxSet Zenodo repositorie</figcaption>
</p>
</a>
<a href="https://mirdata.readthedocs.io/en/stable/source/mirdata.html#module-mirdata.datasets.egfxset"
target="_blank">
<img src="assets/mirdata.png" class="img-fluid mx-auto d-block js-scroll fade-in" id="mirimage"
alt="Link to Mirdata">
<p>
<figcaption>EGFxSet Mirdata loader</figcaption>
</p>
</a>
</section>
<section class="details-downloads">
<!-- <h5>WHAT COMES NEXT?</h5>
</br>
<p>
<ol>
<li>
More guitars will be included this year, a Fender Telecaster and a Gibson Les Paul type.
</li>
</br>
<li>
Amplifiers will be part of the list, including tube amplifiers and very small combos too.
</li>
</br>
<li>
This site will include a section dedicated to a compendium of experiments using the dataset.
</li>
</ol>
</p> -->
</section>
</section>
<hr class="section-break-1" />
<section id="team" class="team js-scroll fade-in">
<h1>Team</h1>
<div class="py-5 team3">
<div class="container">
<div class="row justify-content-center mb-4">
<div class="col text-center">
<!-- <h3 class="mb-3">Experienced & Professional Team</h3> -->
<h5 class="title js-scroll fade-in-bottom">A multidisciplinary team with a strong music
foundation composed of researchers from two different universities</h5>
</div>
</div>
<div class="row">
<!-- column -->
<div class="col-lg-4 mb-4 js-scroll slide-left">
<!-- Row -->
<div class="row">
<div class="col-md-12">
<div class="containermI" onclick=mailIran()>
<img src="assets/IranRoman.jpg" alt="wrapkit" class="img-fluid" />
<div class="overlaymI">
<a onclick=mialIran() class="iconmI">
<i class="icon-paper-plane"></i>
</a>
</div>
</a>
</div>
</div>
<div class="col-md-12">
<div class="pt-2">
<h5 class="mt-4 font-weight-medium mb-0">Irán Roman</h5>
<h6 class="subtitle">Postdoctoral Researcher of New York University (NYU)</h6>
<!-- <p>You can relay on our amazing features list and also our customer services
will be great experience.</p> -->
<ul class="list-inline">
<li class="list-inline-item"><a href="https://github.com/iranroman"
target="_blank" class="text-decoration-none d-block px-1"><i
class="icon-social-github"></i></a></li>
<!-- <li class="list-inline-item"><a href="#"
class="text-decoration-none d-block px-1"><i
class="icon-social-reddit"></i></a></li> -->
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/iran-roman/"
class="text-decoration-none d-block px-1"><i
class="icon-social-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<!-- Row -->
</div>
<!-- column -->
<!-- column -->
<div class="col-lg-4 mb-4">
<!-- Row -->
<div class="row js-scroll fade-in-bottom">
<div class="col-md-12">
<div class="containermH" onclick=mailHeg()>
<img src="assets/HegelPedroza.jpg" alt="wrapkit" class="img-fluid" />
<div class="overlaymH">
<a onclick=mailHeg() class="iconmH">
<i class="icon-paper-plane"></i>
</a>
</div>
</a>
</div>
</div>
<div class="col-md-12">
<div class="pt-2">
<h5 class="mt-4 font-weight-medium mb-0">Hegel Pedroza</h5>
<h6 class="subtitle">M.A. Student of National Autonomous University of Mexico
(UNAM)</h6>
<!-- <p>You can relay on our amazing features list and also our customer services
will be great experience.</p> -->
<ul class="list-inline">
<li class="list-inline-item"><a href="https://github.com/hegelespaul"
target="_blank" class="text-decoration-none d-block px-1"><i
class="icon-social-github"></i></a></li>
<!-- <li class="list-inline-item"><a href="#"
class="text-decoration-none d-block px-1"><i
class="icon-social-reddit"></i></a></li> -->
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/hegel-emmanuel-pedroza-villalobos-87412764/"
class="text-decoration-none d-block px-1"><i
class="icon-social-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<!-- Row -->
</div>
<!-- column -->
<!-- column -->
<div class="col-lg-4 mb-4">
<!-- Row -->
<div class="row js-scroll slide-right">
<div class="col-md-12 pro-pic">
<div class="containermG" onclick=mailGer()>
<img src="assets/GerardoMeza.jpg" alt="wrapkit" class="img-fluid" />
<div class="overlaymG">
<a onclick=mailGer() class="iconmG">
<i class="icon-paper-plane"></i>
</a>
</div>
</a>
</div>
</div>
<div class="col-md-12">
<div class="pt-2">
<h5 class="mt-4 font-weight-medium mb-0">Gerardo Meza</h5>
<h6 class="subtitle">M.A. Student of National Autonomous University of Mexico
(UNAM)</h6>
<!-- <p>You can relay on our amazing features list and also our customer services
will be great experience.</p> -->
<ul class="list-inline">
<li class="list-inline-item"><a href="https://github.com/mezaga"