forked from facebookresearch/audiocraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompts.json
6593 lines (6593 loc) · 198 KB
/
prompts.json
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
[
{
"original_class": "Acappella",
"prompt": "single person singing acappella",
"train": 122,
"total": 154,
"synthetic": 73,
"CODI-definition": "Acappella (performance by a singer or a singing group without instrumental accompaniment) chorus sound",
"minimum_length": 500
},
{
"original_class": "Accelerating_revving_vroom",
"prompt": "accelerating or revving a vehicle",
"train": 5792,
"total": 7219,
"synthetic": 3000,
"CODI-definition": "The sound when engine rotation speed rapidly increases ",
"minimum_length": 500
},
{
"original_class": "Accident",
"prompt": "a car accident",
"train": 7,
"total": 9,
"synthetic": 4,
"CODI-definition": "The environmental sound in accident situation",
"minimum_length": 500
},
{
"original_class": "Accordion",
"prompt": "playing an accordion",
"train": 231,
"total": 317,
"synthetic": 138,
"CODI-definition": "Accordion play sound",
"minimum_length": 500
},
{
"original_class": "Acoustic_guitar",
"prompt": "playing an acoustic guitar",
"train": 3979,
"total": 5606,
"synthetic": 2387,
"CODI-definition": "Acoustic guitar play sound",
"minimum_length": 500
},
{
"original_class": "Acoustic_instrument",
"prompt": "sounds of an acoustic instrument being played",
"train": 109,
"total": 127,
"synthetic": 65,
"CODI-definition": "Acoustic instrument play sound",
"minimum_length": 500
},
{
"original_class": "Acoustic_piano",
"prompt": "playing an acoustic piano",
"train": 3424,
"total": 4462,
"synthetic": 2054,
"CODI-definition": "Acoustic piano play sound",
"minimum_length": 500
},
{
"original_class": "Aerosol_spray",
"prompt": "the sound of an aerosol spray",
"train": 3,
"total": 5,
"synthetic": 1,
"CODI-definition": "The sound of spraying aerosol spray(gas spray)",
"minimum_length": 500
},
{
"original_class": "Aerosol_spray_shaking",
"prompt": "shaking an aerosol spray",
"train": 6,
"total": 15,
"synthetic": 3,
"CODI-definition": "Clink sound of balls inside of aerosol spray(gas spray) when it is shaking ",
"minimum_length": 500
},
{
"original_class": "Aerosol_spray_spraying",
"prompt": "spraying an aerosol spray",
"train": 59,
"total": 76,
"synthetic": 35,
"CODI-definition": "Aerosol spray(gas spray) spraying sound",
"minimum_length": 500
},
{
"original_class": "Agricultural_industry",
"prompt": "agricultural industry sounds",
"train": 1220,
"total": 1514,
"synthetic": 732,
"minimum_length": 500
},
{
"original_class": "Air_brake",
"prompt": "air releasing from a bus brake",
"train": 2262,
"total": 3146,
"synthetic": 1357,
"CODI-definition": "Air releasing sound from air brake which is speed reducer using compressed air on large vehicles such as buses and trucks",
"minimum_length": 500
},
{
"original_class": "Air_conditioning",
"prompt": "air conditioning",
"train": 182,
"total": 232,
"synthetic": 109,
"CODI-definition": "Air conditioning operation and button sound",
"minimum_length": 500
},
{
"original_class": "Air_fryer",
"prompt": "quiet air fryer blow",
"train": 130,
"total": 170,
"synthetic": 78,
"CODI-definition": "Air fryer operation and button sound",
"minimum_length": 500
},
{
"original_class": "Air_horn_truck_horn",
"prompt": "sound of an truck air horn",
"train": 1628,
"total": 2050,
"synthetic": 976,
"CODI-definition": "Truck horn sound",
"minimum_length": 0
},
{
"original_class": "Air_purifier",
"prompt": "air purifier",
"train": 127,
"total": 159,
"synthetic": 76,
"CODI-definition": "Air purifier operation and button sound",
"minimum_length": 500
},
{
"original_class": "Air_purifier_alarm",
"prompt": "alarm sound from an air purifier",
"train": 27,
"total": 34,
"synthetic": 16,
"CODI-definition": "Air purifier operation alarm melody (power on/off, mode conversion sound, etc.)",
"minimum_length": 500
},
{
"original_class": "Aircraft_airplane",
"prompt": "airplane sounds",
"train": 1472,
"total": 1850,
"synthetic": 883,
"minimum_length": 500
},
{
"original_class": "Aircraft_engine",
"prompt": "sound of an aircraft engine",
"train": 651,
"total": 804,
"synthetic": 390,
"CODI-definition": "Airplane engine sound",
"minimum_length": 500
},
{
"original_class": "Airgun",
"prompt": "air compressor",
"train": 37,
"total": 42,
"synthetic": 22,
"CODI-definition": "Air compressor/sound of compressed air of air sound",
"minimum_length": 500
},
{
"original_class": "Airgun_compressor",
"prompt": "compressor for airgun",
"train": 1449,
"total": 1831,
"synthetic": 869,
"minimum_length": 0
},
{
"original_class": "Airgun_rifle",
"prompt": "airgun rifle",
"train": 896,
"total": 1125,
"synthetic": 537,
"minimum_length": 0
},
{
"original_class": "Airgun_seismic",
"prompt": "sound of an seismic checking airgun",
"train": 220,
"total": 275,
"synthetic": 132,
"CODI-definition": "The sound of airgun for seismic checking purpose",
"minimum_length": 0
},
{
"original_class": "Airport",
"prompt": "environmental sounds from an airport",
"train": 18,
"total": 25,
"synthetic": 10,
"CODI-definition": "The environmental sound at the airport",
"minimum_length": 500
},
{
"original_class": "Alarm",
"prompt": "alarm",
"train": 2473,
"total": 3203,
"synthetic": 1483,
"CODI-definition": "Alarm related sounds",
"minimum_length": 0
},
{
"original_class": "Alarm_clock",
"prompt": "sound of an alarm clock",
"train": 767,
"total": 959,
"synthetic": 460,
"CODI-definition": "Alarm clock ringing sound",
"minimum_length": 0
},
{
"original_class": "Ambience",
"prompt": "ambience sounds",
"train": 566,
"total": 698,
"synthetic": 339,
"CODI-definition": "The sound from specific atmospheres",
"minimum_length": 500
},
{
"original_class": "Ambulance_siren",
"prompt": "ambulance siren",
"train": 2341,
"total": 3085,
"synthetic": 1404,
"CODI-definition": "Ambulance siren sound",
"minimum_length": 0
},
{
"original_class": "Amphibian",
"prompt": "amphibian frog or toad",
"train": 391,
"total": 548,
"synthetic": 234,
"CODI-definition": "Amphibians (frogs, toads, etc.) related sounds",
"minimum_length": 0
},
{
"original_class": "Animal_bark",
"prompt": "barking of an animal",
"train": 21080,
"total": 26781,
"synthetic": 3000,
"CODI-definition": "The barking sound of animals",
"minimum_length": 0
},
{
"original_class": "Animal_eat",
"prompt": "an animal eating",
"train": 30,
"total": 38,
"synthetic": 18,
"CODI-definition": "The eating sound of animals",
"minimum_length": 500
},
{
"original_class": "Announcement",
"prompt": "airport or station vocal announcement",
"train": 5099,
"total": 7024,
"synthetic": 3000,
"CODI-definition": "The official announcement sound (recorded)",
"minimum_length": 500
},
{
"original_class": "Anthropoid_ape",
"prompt": "gorilla or chimpanzee",
"train": 30,
"total": 44,
"synthetic": 18,
"CODI-definition": "The sound of apes (chimpanzees, gorillas, etc.)",
"minimum_length": 500
},
{
"original_class": "Applause",
"prompt": "people applauding",
"train": 4760,
"total": 6495,
"synthetic": 2856,
"CODI-definition": "Applause sound ",
"minimum_length": 500
},
{
"original_class": "Armoured_car",
"prompt": "driving an armoured car",
"train": 1415,
"total": 1785,
"synthetic": 849,
"CODI-definition": "Armoured vehicle driving sound",
"minimum_length": 500
},
{
"original_class": "Axe",
"prompt": "wielding an axe",
"train": 779,
"total": 979,
"synthetic": 467,
"CODI-definition": "Ax related sounds",
"minimum_length": 500
},
{
"original_class": "Axe_strike",
"prompt": "striking with an axe",
"train": 771,
"total": 1003,
"synthetic": 462,
"CODI-definition": "Ax striking sound",
"minimum_length": 500
},
{
"original_class": "Baby",
"prompt": "a baby",
"train": 3199,
"total": 4097,
"synthetic": 1919,
"CODI-definition": "Baby related sounds",
"minimum_length": 500
},
{
"original_class": "Baby_babbling",
"prompt": "a baby babbling",
"train": 2342,
"total": 2958,
"synthetic": 1405,
"CODI-definition": "The sound of baby babbling",
"minimum_length": 500
},
{
"original_class": "Baby_cry_infant_cry",
"prompt": "a baby crying",
"train": 10552,
"total": 13331,
"synthetic": 3000,
"CODI-definition": "Baby crying sound",
"minimum_length": 500
},
{
"original_class": "Baby_whining",
"prompt": "baby whining",
"train": 999,
"total": 1258,
"synthetic": 599,
"CODI-definition": "Baby whining sound",
"minimum_length": 500
},
{
"original_class": "Badminton",
"prompt": "playing badminton",
"train": 1200,
"total": 1480,
"synthetic": 720,
"CODI-definition": "Badminton sound",
"minimum_length": 0
},
{
"original_class": "Ball",
"prompt": "a ball",
"train": 7858,
"total": 9905,
"synthetic": 3000,
"CODI-definition": "Ball related sounds",
"minimum_length": 0
},
{
"original_class": "Ball_bounce",
"prompt": "a ball bouncing (in basketball or volleyball)",
"train": 1454,
"total": 1844,
"synthetic": 872,
"CODI-definition": "The sound of bouncing ball (volleyball balls, basketball, etc.) on the surface",
"minimum_length": 500
},
{
"original_class": "Ball_hit",
"prompt": "hitting a baseball or golf ball",
"train": 6218,
"total": 7765,
"synthetic": 3000,
"CODI-definition": "The sound of hitting balls (baseball, golf balls, etc.) with bars or bats",
"minimum_length": 0
},
{
"original_class": "Ball_kick",
"prompt": "kicking a soccer ball",
"train": 876,
"total": 1078,
"synthetic": 525,
"CODI-definition": "The sound of kicking balls (soccer balls, foot balls, etc.)",
"minimum_length": 0
},
{
"original_class": "Balloon",
"prompt": "blowing or rubbing a balloon",
"train": 44,
"total": 87,
"synthetic": 26,
"CODI-definition": "The sound of balloons (e.g. when blowing or rubbing balloons)",
"minimum_length": 500
},
{
"original_class": "Baseball",
"prompt": "baseball game",
"train": 471,
"total": 606,
"synthetic": 282,
"CODI-definition": "The sound of a baseball game",
"minimum_length": 500
},
{
"original_class": "Basketball",
"prompt": "a basketball game",
"train": 2284,
"total": 2800,
"synthetic": 1370,
"CODI-definition": "The sound of basketball game",
"minimum_length": 500
},
{
"original_class": "Basketball_bounce",
"prompt": "a basketball bouncing",
"train": 5059,
"total": 6566,
"synthetic": 3000,
"CODI-definition": "Basketball bouncing sound on the surface",
"minimum_length": 500
},
{
"original_class": "Bass_drum",
"prompt": "playing a bass drum",
"train": 1431,
"total": 2118,
"synthetic": 858,
"CODI-definition": "Bass drum play sound",
"minimum_length": 500
},
{
"original_class": "Bass_guitar",
"prompt": "playing a bass guitar",
"train": 2187,
"total": 2725,
"synthetic": 1312,
"CODI-definition": "Bass guitar play sound",
"minimum_length": 500
},
{
"original_class": "Bassoon",
"prompt": "playing a bassoon",
"train": 15,
"total": 17,
"synthetic": 9,
"CODI-definition": "Bassoon play sound",
"minimum_length": 500
},
{
"original_class": "Bathroom",
"prompt": "sounds in a bathroom or toilet",
"train": 1983,
"total": 2458,
"synthetic": 1189,
"CODI-definition": "The environmental sound from the bathroom or toilet",
"minimum_length": 500
},
{
"original_class": "Bathtub_(filling_or_washing)",
"prompt": "filling or washing a bathtub",
"train": 1235,
"total": 1563,
"synthetic": 741,
"CODI-definition": "The sound of filling a bathtub or washing in a bathtub",
"minimum_length": 500
},
{
"original_class": "Battle_cry",
"prompt": "a crowd shouting a battle cry",
"train": 602,
"total": 726,
"synthetic": 361,
"CODI-definition": "The sound of crowd(unspecified individuals) chanting or shouting out at the same time",
"minimum_length": 500
},
{
"original_class": "Bear_growl",
"prompt": "a bear growling",
"train": 11,
"total": 17,
"synthetic": 6,
"CODI-definition": "Bear roaring sound",
"minimum_length": 500
},
{
"original_class": "Bearded_seal",
"prompt": "bearded seal",
"train": 871,
"total": 1090,
"synthetic": 522,
"CODI-definition": "The sound of bearded seal ",
"minimum_length": 500
},
{
"original_class": "Beatboxing",
"prompt": "beatboxing",
"train": 257,
"total": 336,
"synthetic": 154,
"CODI-definition": "The sound of beatboxing",
"minimum_length": 500
},
{
"original_class": "Bee_and_wasp_and_etc",
"prompt": "a bee, wasp, or other similar insect",
"train": 42,
"total": 81,
"synthetic": 25,
"CODI-definition": "The sound of bees and wasps ",
"minimum_length": 500
},
{
"original_class": "Bee_buzz",
"prompt": "a buzzing bee",
"train": 53,
"total": 70,
"synthetic": 31,
"CODI-definition": "The sound of bee buzzing flying sound",
"minimum_length": 500
},
{
"original_class": "Beep",
"prompt": "a beeping sound",
"train": 30660,
"total": 38602,
"synthetic": 3000,
"CODI-definition": "The sound of electronic beeping ",
"minimum_length": 0
},
{
"original_class": "Bell",
"prompt": "a ringing bell or melody bell",
"train": 15434,
"total": 19553,
"synthetic": 3000,
"CODI-definition": "The sound of bells or melody bell sound ",
"minimum_length": 500
},
{
"original_class": "Belly_laugh",
"prompt": "laughing heartily",
"train": 1071,
"total": 1398,
"synthetic": 642,
"CODI-definition": "The sound of big laughing, belly laughing",
"minimum_length": 500
},
{
"original_class": "Bicycle",
"prompt": "riding a bicycle",
"train": 288,
"total": 369,
"synthetic": 172,
"CODI-definition": "Bicycle riding sound (gear, wheel turning, etc.)",
"minimum_length": 0
},
{
"original_class": "Bicycle_bell",
"prompt": "a bicycle bell ringing",
"train": 1707,
"total": 2287,
"synthetic": 1024,
"CODI-definition": "Bicycle ringtones",
"minimum_length": 0
},
{
"original_class": "Big_dog_bark",
"prompt": "a loud bark from a big dog",
"train": 604,
"total": 732,
"synthetic": 362,
"CODI-definition": "Large dogs barking sound",
"minimum_length": 0
},
{
"original_class": "Billards_pocketball",
"prompt": "a pocket ball in a billiards game",
"train": 400,
"total": 503,
"synthetic": 240,
"CODI-definition": "Billiards or pocket balls playing sound",
"minimum_length": 0
},
{
"original_class": "Bird",
"prompt": "the sound of a bird",
"train": 80439,
"total": 100468,
"synthetic": 3000,
"CODI-definition": "Bird related sounds",
"minimum_length": 0
},
{
"original_class": "Bird_flight_flapping_wings",
"prompt": "bird flapping its wings",
"train": 723,
"total": 880,
"synthetic": 433,
"CODI-definition": "The sound when bird is flying and flapping wings ",
"minimum_length": 0
},
{
"original_class": "Bird_vocalization_and_bird_call_and_bird_song",
"prompt": "bird vocalizing, calling or singing",
"train": 248,
"total": 413,
"synthetic": 148,
"CODI-definition": "Bird singing sound like melody",
"minimum_length": 0
},
{
"original_class": "Bison_buffalo_cows_etc",
"prompt": "bison, buffalo or cows",
"train": 133,
"total": 163,
"synthetic": 79,
"CODI-definition": "The sound of cow (bison, buffalo, etc.)",
"minimum_length": 500
},
{
"original_class": "Bleat",
"prompt": "sheep and goats bleating or making a bleat sound",
"train": 61,
"total": 70,
"synthetic": 36,
"CODI-definition": "The sound of sheep and goats crying",
"minimum_length": 500
},
{
"original_class": "Blowing",
"prompt": "blowing air",
"train": 443,
"total": 536,
"synthetic": 265,
"CODI-definition": "The sound of blowing air",
"minimum_length": 0
},
{
"original_class": "Blowing_bubbles",
"prompt": "blowing bubbles or something blowing bubbles (aquarium)",
"train": 2197,
"total": 2690,
"synthetic": 1318,
"CODI-definition": "The sound of making bubbles by blowing air into the liquid (e.g. blowing the water in a cup, fish tank oxygen provider, bubble sound of spa, etc.)",
"minimum_length": 0
},
{
"original_class": "Boat",
"prompt": "boat",
"train": 3,
"total": 3,
"synthetic": 1,
"CODI-definition": "The sound of boats",
"minimum_length": 500
},
{
"original_class": "Boat_and_water_vehicle",
"prompt": "boat moving on water",
"train": 211,
"total": 284,
"synthetic": 126,
"CODI-definition": "The sound of water transportation",
"minimum_length": 500
},
{
"original_class": "Body_fall",
"prompt": "falling from a high place",
"train": 464,
"total": 604,
"synthetic": 278,
"CODI-definition": "The sound when falls down from a high place",
"minimum_length": 0
},
{
"original_class": "Booing",
"prompt": "crowd booing",
"train": 95,
"total": 136,
"synthetic": 57,
"CODI-definition": "The sound of booing",
"minimum_length": 500
},
{
"original_class": "Boom",
"prompt": "loud explosion sound",
"train": 178,
"total": 255,
"synthetic": 106,
"CODI-definition": "Loud and hollow sound by impact like boom",
"minimum_length": 500
},
{
"original_class": "Bottle_open",
"prompt": "opening a bottle",
"train": 35,
"total": 62,
"synthetic": 21,
"CODI-definition": "Bottle opening sound",
"minimum_length": 0
},
{
"original_class": "Bounce",
"prompt": "an object bouncing",
"train": 171,
"total": 207,
"synthetic": 102,
"CODI-definition": "The sound of the bouncing object",
"minimum_length": 0
},
{
"original_class": "Box_tape",
"prompt": "removing tape from a box",
"train": 241,
"total": 353,
"synthetic": 144,
"CODI-definition": "The sound of removing packing tape on a box or tearing off packing tape from a tape roll ",
"minimum_length": 0
},
{
"original_class": "Brass_instrument",
"prompt": "playing a brass instrument",
"train": 832,
"total": 1073,
"synthetic": 499,
"CODI-definition": "Brass instrument play sound",
"minimum_length": 0
},
{
"original_class": "Break",
"prompt": "something breaking",
"train": 343,
"total": 394,
"synthetic": 205,
"CODI-definition": "The sound of breaking",
"minimum_length": 0
},
{
"original_class": "Breathing",
"prompt": "breathing",
"train": 8436,
"total": 10861,
"synthetic": 3000,
"CODI-definition": "Inhale and exhale sound of breathing",
"minimum_length": 0
},
{
"original_class": "Brooms",
"prompt": "brushing with a broom",
"train": 42,
"total": 97,
"synthetic": 25,
"CODI-definition": "The sound of brushing a broom",
"minimum_length": 0
},
{
"original_class": "Bullhorn_speech",
"prompt": "speaking through a bullhorn megaphone",
"train": 3038,
"total": 3520,
"synthetic": 1822,
"CODI-definition": "Speaking sound from a bullhorn(megaphone)",
"minimum_length": 0
},
{
"original_class": "Burping_or_eructation",
"prompt": "burping",
"train": 1934,
"total": 2576,
"synthetic": 1160,
"CODI-definition": "Burping sound",
"minimum_length": 0
},
{
"original_class": "Bus",
"prompt": "a bus",
"train": 1187,
"total": 1461,
"synthetic": 712,
"CODI-definition": "Bus related sounds",
"minimum_length": 500
},
{
"original_class": "Bus_announcement_sound",
"prompt": "announcement sound on a bus",
"train": 5564,
"total": 6932,
"synthetic": 3000,
"CODI-definition": "The official announcement sound (recorded) in a bus or bus stop (e.g. stop/station info) ",
"minimum_length": 500
},
{
"original_class": "Bus_arrival",
"prompt": "a bus arriving",
"train": 1745,
"total": 2217,
"synthetic": 1047,
"CODI-definition": "Bus arrival sound ",
"minimum_length": 500
},
{
"original_class": "Bus_departure",
"prompt": "a bus departing",
"train": 745,
"total": 938,
"synthetic": 447,
"CODI-definition": "Bus departure sound",
"minimum_length": 500
},
{
"original_class": "Bus_door_close",
"prompt": "closing of a bus door",
"train": 1773,
"total": 2218,
"synthetic": 1063,
"CODI-definition": "Bus door closing sound",
"minimum_length": 500
},
{
"original_class": "Bus_door_open",
"prompt": "opening of a bus door",
"train": 1822,
"total": 2278,
"synthetic": 1093,
"CODI-definition": "Bus door opening sound",
"minimum_length": 500
},
{
"original_class": "Bus_interior",
"prompt": "environment sounds inside of a bus",
"train": 2144,
"total": 2685,
"synthetic": 1286,
"CODI-definition": "The environmental sound inside a bus",
"minimum_length": 500
},
{
"original_class": "Busking_music",
"prompt": "street performer playing music in the street",
"train": 96,
"total": 121,
"synthetic": 57,
"minimum_length": 500
},
{
"original_class": "Button_beep",
"prompt": "a beep sound from a button",
"train": 3017,
"total": 3890,
"synthetic": 1810,
"CODI-definition": "Electronic beeping sound when button pressed",
"minimum_length": 500
},
{
"original_class": "Button_click",
"prompt": "clicking of a button",
"train": 1472,
"total": 1874,
"synthetic": 883,
"CODI-definition": "Clicking (physical sound) sound from button pressed",
"minimum_length": 500
},
{
"original_class": "Buzz",
"prompt": "sound of buzzing",
"train": 1479,
"total": 1970,
"synthetic": 887,
"CODI-definition": "Buzzing sound",
"minimum_length": 500
},
{
"original_class": "Buzzer",
"prompt": "buzzing a buzzer",
"train": 163,
"total": 216,
"synthetic": 97,
"CODI-definition": "Buzzer sound",
"minimum_length": 0
},
{
"original_class": "Cafe",
"prompt": "ambient sounds at a cafe",
"train": 1757,
"total": 2156,
"synthetic": 1054,
"CODI-definition": "The environmental sound at the cafe",
"minimum_length": 500
},
{
"original_class": "Camera",
"prompt": "Camera shutter sound",
"train": 484,
"total": 626,
"synthetic": 290,
"CODI-definition": "Camera shutter sound",
"minimum_length": 0
},
{
"original_class": "Can",
"prompt": "sound of a can aluminum or metal",
"train": 1894,
"total": 2370,
"synthetic": 1136,
"CODI-definition": "Can(Aluminium or metal) related sounds",
"minimum_length": 0
},
{
"original_class": "Can_crush",
"prompt": "crushing a can",
"train": 386,
"total": 520,
"synthetic": 231,
"CODI-definition": "Can(Aluminium or metal) crushing sound",
"minimum_length": 0
},
{
"original_class": "Can_open",
"prompt": "opening a can",
"train": 82,
"total": 107,
"synthetic": 49,
"CODI-definition": "Can(Aluminium or metal) opening sound",
"minimum_length": 0
},
{
"original_class": "Cannon",
"prompt": "sound of a cannon",
"train": 3453,
"total": 4314,
"synthetic": 2071,
"CODI-definition": "Cannon related sounds",
"minimum_length": 0
},
{
"original_class": "Cannon_explosion",
"prompt": "sound of a cannon explosion",
"train": 2606,
"total": 3276,
"synthetic": 1563,
"CODI-definition": "The sound of cannon explosion",
"minimum_length": 0
},
{
"original_class": "Cannon_flying",
"prompt": "sound of a flying cannon",
"train": 340,
"total": 419,
"synthetic": 204,
"CODI-definition": "The sound of flying cannon",
"minimum_length": 0
},
{
"original_class": "Car_alarm",
"prompt": "a car alarm",
"train": 513,
"total": 656,
"synthetic": 307,
"CODI-definition": "Car alarming sound",
"minimum_length": 0
},
{
"original_class": "Car_alarm_horn",
"prompt": "a car alarm with horn sounding",
"train": 659,
"total": 2847,
"synthetic": 395,
"CODI-definition": "Car security alarming sounds like horn",
"minimum_length": 0
},
{
"original_class": "Car_alarm_siren",
"prompt": "a car alarm with siren sounding",
"train": 47,
"total": 50,