File size: 347,367 Bytes
1258b3a | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 | {"dataset": "NSynth", "location": "/audio/string_acoustic_057-064-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-042-025.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-062-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-088-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-040-127.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-068-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-084-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-057-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-043-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-023-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-066-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-060-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-060-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-095-075.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-079-100.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-032-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-053-025.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-106-050.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-055-127.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-053-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-018-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-049-050.wav", "captions": "acoustic fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-072-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-051-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-050-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-037-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-077-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-064-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-033-127.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-072-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-063-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-065-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-065-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-069-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-108-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-044-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-063-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-035-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-059-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-044-050.wav", "captions": "acoustic fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-022-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-093-075.wav", "captions": "synthetic fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-029-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-052-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-061-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-042-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-105-025.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-064-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-092-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-009-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-057-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-025-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-035-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-029-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-078-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-071-075.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-065-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-050-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-098-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-073-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-028-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-072-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-056-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-023-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-049-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-061-025.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-028-075.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-052-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-046-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-052-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-074-050.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-048-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-043-025.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-072-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-052-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-085-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-073-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-059-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-080-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-076-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-093-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-067-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-085-100.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-028-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-022-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-065-100.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-029-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-051-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-047-100.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-025-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-058-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-029-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-066-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-027-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-058-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-051-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-053-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-060-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-085-075.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-061-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-093-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-077-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-080-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-028-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-051-025.wav", "captions": "electronic dark long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-073-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-097-100.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-021-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-074-075.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-047-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-047-100.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-042-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-074-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-022-050.wav", "captions": "electronic percussive bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-107-050.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-052-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-021-100.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-046-100.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-069-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-107-050.wav", "captions": "acoustic bright fast_decay multiphonic percussive mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-107-127.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-048-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-030-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-052-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-037-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-062-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-040-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-042-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-082-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-067-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-036-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-107-025.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-101-050.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-027-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-061-050.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-040-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-045-100.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-078-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-055-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-069-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-027-100.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-102-050.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-052-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-029-075.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-064-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-075-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-067-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-052-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-034-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-086-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-095-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-060-075.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-045-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-062-075.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-089-100.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-056-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-105-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-054-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-025-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-048-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-079-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-024-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-058-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-077-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-058-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-057-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-082-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-068-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-068-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-036-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-026-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-078-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-099-050.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-092-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-084-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-050-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-091-100.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-043-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-025-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-102-075.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-089-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-058-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-066-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-089-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-069-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-071-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-027-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-048-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-032-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-099-050.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-035-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-052-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-061-075.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-033-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-106-100.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-060-050.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-079-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-052-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-060-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-104-127.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-057-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-042-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-073-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-103-050.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-076-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-036-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-079-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-086-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-073-075.wav", "captions": "synthetic dark fast_decay reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-062-025.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-035-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-093-127.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-042-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-055-025.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-057-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-078-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-092-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-072-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-036-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-031-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-034-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-054-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-022-025.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-028-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-088-100.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-039-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-062-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-032-075.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-065-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-049-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-044-100.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-091-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-065-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-096-075.wav", "captions": "acoustic nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-062-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-060-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-039-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-072-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-052-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-031-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-096-100.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-106-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-034-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-061-127.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-053-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-081-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-060-050.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-025-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-046-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-083-127.wav", "captions": "synthetic distortion fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-067-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-077-050.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-079-100.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-054-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-063-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-055-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-101-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-036-127.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-066-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-073-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-061-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-076-025.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-051-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-089-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-063-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-044-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-035-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-033-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-056-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-040-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-021-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-093-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-021-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-031-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-038-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-051-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-033-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-100-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-065-100.wav", "captions": "acoustic reverb mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-037-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-034-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-087-075.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-108-127.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-027-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-031-075.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-062-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-107-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-059-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-048-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-030-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-024-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-051-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-032-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-044-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-072-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-055-100.wav", "captions": "acoustic nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-076-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-057-127.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-065-100.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-053-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-051-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-064-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-079-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-062-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-058-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-036-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-081-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-057-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-068-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-041-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-045-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-099-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-082-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-081-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-101-127.wav", "captions": "synthetic bright distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-038-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-072-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-029-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-087-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-054-100.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-052-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-062-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-044-025.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-035-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-080-075.wav", "captions": "electronic bright fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-025-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-055-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-064-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-057-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-042-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-056-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-056-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-023-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-021-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-106-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-067-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-089-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-086-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-071-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-047-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-057-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-072-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-104-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-023-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-078-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-042-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-031-075.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-032-100.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-075-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-055-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-011-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-080-100.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-101-075.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-107-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-024-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-062-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-108-100.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-101-127.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-036-025.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-052-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-043-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-031-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-031-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-068-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-088-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-045-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-026-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-079-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-052-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-032-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-046-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-035-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-080-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-036-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-031-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-061-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-080-025.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-033-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-026-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-086-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-067-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-031-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-051-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-031-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-040-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-081-100.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-066-050.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-052-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-042-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-082-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-100-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-078-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-069-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-080-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-083-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-073-050.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-108-127.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-079-025.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-073-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-067-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-036-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-079-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-085-025.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-033-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-044-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-066-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-067-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-042-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-104-075.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-063-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-048-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-068-100.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-069-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-041-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-084-100.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-022-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-039-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-056-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-093-127.wav", "captions": "acoustic fast_decay tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-030-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-062-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-039-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-077-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-064-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-064-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-067-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-028-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-045-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-087-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-037-100.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-057-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-029-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-059-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-037-075.wav", "captions": "acoustic bright reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-102-100.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-094-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-054-127.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-026-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-063-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-072-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-069-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-056-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-071-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-067-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-076-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-070-050.wav", "captions": "acoustic fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-048-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-092-100.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-090-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-038-050.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-069-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-076-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-059-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-033-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-087-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-059-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-023-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-102-075.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-043-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-023-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-048-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-044-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-071-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-072-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-036-100.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-031-127.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-075-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-036-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-025-075.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-057-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-053-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-096-025.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-063-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-032-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-048-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-035-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-080-127.wav", "captions": "synthetic distortion fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-039-127.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-053-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-077-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-089-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-076-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-096-075.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-052-075.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-080-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-044-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-073-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-062-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-029-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-054-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-096-100.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-033-100.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-095-100.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-045-050.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-087-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-066-025.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-052-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-092-050.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-086-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-075-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-085-025.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-033-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-043-100.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-066-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-032-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-098-075.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-045-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-059-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-024-025.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-080-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-074-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-047-050.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-068-075.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-049-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-079-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-039-025.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-083-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-071-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-082-127.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-073-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-043-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-045-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-044-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-094-127.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-069-127.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-046-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-063-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-075-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-060-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-100-025.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-041-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-085-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-084-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-042-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-074-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-034-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-026-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-067-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-057-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-052-075.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-067-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-033-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-036-025.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-035-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-077-100.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-104-050.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-048-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-081-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-025-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-078-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-096-127.wav", "captions": "synthetic fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-067-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-088-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-070-100.wav", "captions": "acoustic long_release reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-060-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-089-025.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-087-127.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-061-127.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-090-075.wav", "captions": "synthetic long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-057-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-064-050.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-029-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-036-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-082-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-026-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-031-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-084-050.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-042-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-037-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-099-127.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-024-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-075-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-068-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-064-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-056-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-090-100.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-085-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-055-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-074-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-102-100.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-069-050.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-062-127.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-029-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-029-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-052-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-074-127.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-039-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-060-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-090-100.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-094-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-034-100.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-030-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-075-100.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-044-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-057-127.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-064-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-034-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-034-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-089-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-059-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-068-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-103-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-048-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-047-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-071-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-040-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-066-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-088-025.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-045-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-084-025.wav", "captions": "electronic bright distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-071-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-073-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-045-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-047-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-041-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-041-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-097-075.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-074-075.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-027-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-036-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-045-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-108-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-043-075.wav", "captions": "acoustic bright reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-108-100.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-032-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-070-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-087-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-047-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-044-100.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-030-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-040-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-057-100.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-039-127.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-045-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-062-127.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-052-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-065-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-105-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-082-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-084-025.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-099-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-025-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-056-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-032-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-086-100.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-085-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-058-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-038-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-033-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-084-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-090-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-076-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-053-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-042-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-039-025.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-028-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-021-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-019-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-055-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-027-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-092-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-106-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-039-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-060-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-052-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-075-075.wav", "captions": "synthetic dark fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-064-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-093-050.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-022-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-059-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-072-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-055-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-058-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-051-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-036-025.wav", "captions": "acoustic long_release reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-040-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-063-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-092-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-030-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-072-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-055-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-028-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-043-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-069-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-072-100.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-079-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-073-127.wav", "captions": "synthetic dark fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-037-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-031-127.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-039-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-084-127.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-099-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-098-075.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-042-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-023-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-037-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-058-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-055-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-026-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-047-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-048-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-054-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-068-050.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-065-075.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-023-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-059-100.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-055-050.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-083-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-035-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-089-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-073-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-052-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-044-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-108-050.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-083-100.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-047-050.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-056-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-089-100.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-098-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-053-050.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-040-127.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-069-127.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-037-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-091-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-064-127.wav", "captions": "acoustic fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-073-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-036-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-026-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-072-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-051-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-084-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-062-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-084-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-036-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-108-050.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-040-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-044-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-085-050.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-031-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-036-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-051-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-041-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-039-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-044-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-107-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-044-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-079-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-049-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-032-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-086-075.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-060-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-028-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-040-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-065-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-077-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-076-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-049-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-033-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-028-127.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-047-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-034-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-058-127.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-070-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-074-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-086-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-084-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-030-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-057-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-046-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-070-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-054-075.wav", "captions": "acoustic fast_decay tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-077-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-092-100.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-076-025.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-034-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-102-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-067-127.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-050-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-084-100.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-105-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-099-075.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-067-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-073-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-049-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-040-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-086-075.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-095-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-050-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-089-025.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-089-025.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-077-100.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-028-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-026-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-035-025.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-052-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-037-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-079-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-088-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-072-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-061-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-072-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-048-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-100-050.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-080-050.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-052-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-028-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-057-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-045-100.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-054-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-097-100.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env percussive reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-053-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-077-127.wav", "captions": "acoustic fast_decay reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-078-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-041-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-087-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-055-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-051-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-052-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-086-050.wav", "captions": "acoustic percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-068-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-063-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-038-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-040-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-091-100.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-032-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-064-075.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-061-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-067-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-043-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-071-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-056-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-101-025.wav", "captions": "acoustic bright fast_decay multiphonic percussive mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-049-025.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-072-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-026-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-052-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-087-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-042-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-028-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-105-127.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-069-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-104-075.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-074-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-087-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-101-075.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-056-025.wav", "captions": "electronic dark long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-101-075.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-083-100.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-060-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-065-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-051-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-045-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-083-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-074-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-091-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-060-025.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-075-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-033-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-091-075.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-069-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-090-025.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-067-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-049-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-042-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-060-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-061-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-058-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-106-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-085-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-050-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-076-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-084-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-072-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-034-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-087-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-063-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-035-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-032-075.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-071-127.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-079-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-077-100.wav", "captions": "acoustic fast_decay reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-049-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-107-050.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-085-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-042-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-044-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-060-127.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-094-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-070-075.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-053-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-081-050.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-036-075.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-043-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-086-050.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-072-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-059-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-062-025.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-029-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-033-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-033-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-067-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-028-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-084-075.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-050-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-080-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-073-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-098-100.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-096-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-074-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-100-100.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-074-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-011-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-081-050.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-036-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-084-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-042-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-024-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-034-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-024-127.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-034-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-056-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-045-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-084-100.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-034-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-029-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-027-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-106-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-026-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-083-127.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-085-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-080-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-074-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-035-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-096-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-106-100.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-053-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-059-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-055-025.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-051-127.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-056-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-069-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-070-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-056-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-042-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-037-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-061-025.wav", "captions": "acoustic dark reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-075-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-034-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-077-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-071-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-034-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-100-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-051-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-104-025.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-018-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-074-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-080-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-049-025.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-072-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-069-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-021-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-049-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-035-127.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-027-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-041-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-058-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-042-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-039-075.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-066-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-065-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-093-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-102-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-059-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-039-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-098-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-053-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-063-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-047-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-043-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-036-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-057-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-067-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-103-050.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-058-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-057-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-045-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-101-075.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-039-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-035-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-097-100.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-026-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-039-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-059-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-036-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-025-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-083-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-058-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-086-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-039-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-067-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-029-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-050-100.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-065-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-102-050.wav", "captions": "acoustic bright guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-077-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-064-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-031-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-072-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-094-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-029-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-038-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-101-100.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-049-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-024-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-068-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-052-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-088-050.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-076-025.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-086-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-072-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-058-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-084-100.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-063-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-032-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-089-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-074-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-065-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-082-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-069-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-082-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-029-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-068-050.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-028-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-102-050.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-087-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-062-025.wav", "captions": "acoustic dark reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-023-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-071-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-053-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-044-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-096-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-095-025.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-079-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-032-127.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-046-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-048-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-087-025.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-098-050.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-042-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-074-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-039-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-064-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-025-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-090-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-020-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-066-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-049-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-023-025.wav", "captions": "electronic percussive bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-061-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-027-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-042-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-037-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-036-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-099-025.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-045-050.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-054-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-050-127.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-042-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-049-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-050-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-046-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-031-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-028-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-045-025.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-049-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-041-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-052-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-063-050.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-082-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-091-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-107-050.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-079-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-095-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-055-050.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-079-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-053-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-068-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-066-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-090-075.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-035-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-057-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-080-127.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-097-075.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-030-127.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-068-127.wav", "captions": "acoustic long_release reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-104-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-069-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-026-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-034-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-044-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-075-100.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-091-025.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-103-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-044-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-045-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-050-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-106-025.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-042-127.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-101-050.wav", "captions": "acoustic bright guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-038-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-049-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-069-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-033-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-100-075.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-085-127.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-044-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-023-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-029-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-071-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-086-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-041-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-025-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-037-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-046-100.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-051-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-065-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-087-075.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-092-100.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-072-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-079-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-041-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-059-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-022-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-067-025.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-052-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-045-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-036-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-069-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-068-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-048-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-022-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-065-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-052-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-041-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-070-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-043-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-057-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-055-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-030-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-077-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-078-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-085-100.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-031-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-014-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-067-075.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-071-050.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-026-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-054-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-050-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-043-075.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-068-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-021-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-049-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-059-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-093-100.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-032-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-101-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-041-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-038-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-105-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-028-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-057-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-030-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-079-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-050-127.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-084-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-098-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-080-100.wav", "captions": "electronic bright fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-045-050.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-086-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-051-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-032-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-096-075.wav", "captions": "synthetic long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-077-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-040-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-055-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-035-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-038-100.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-057-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-053-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-059-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-039-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-043-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-075-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-033-127.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-068-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-042-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-052-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-060-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-068-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-048-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-062-075.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-068-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-083-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-101-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-029-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-086-127.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-080-050.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-105-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-040-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-044-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-050-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-070-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-026-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-099-050.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-058-025.wav", "captions": "acoustic dark reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-073-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-045-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-073-100.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-039-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-047-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-038-025.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-033-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-106-075.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-038-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-066-127.wav", "captions": "synthetic dark fast_decay reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-011-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-108-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-105-100.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-099-025.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-027-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-074-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-019-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-058-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-103-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-106-025.wav", "captions": "acoustic bright fast_decay multiphonic percussive mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-050-050.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-065-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-046-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-100-100.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-091-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-087-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-103-050.wav", "captions": "acoustic bright guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-105-100.wav", "captions": "synthetic bright distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-053-100.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-061-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-068-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-038-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-077-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-032-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-024-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-093-100.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-024-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-073-127.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-035-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-063-127.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-087-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-054-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-087-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-041-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-075-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-083-025.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-030-075.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-099-075.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-071-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-049-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-026-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-059-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-062-075.wav", "captions": "acoustic dark percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-035-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-054-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-095-127.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-025-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-098-050.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-070-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-040-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-047-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-012-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-059-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-071-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-039-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-033-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-035-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-037-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-100-050.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-021-050.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-088-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-052-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-085-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-058-127.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-021-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-054-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-037-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-025-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-051-025.wav", "captions": "acoustic dark reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-034-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-083-100.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-027-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-081-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-036-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-102-100.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-087-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-103-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-040-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-060-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-045-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-101-025.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-045-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-032-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-102-050.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-023-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-103-127.wav", "captions": "acoustic percussive reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-058-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-077-025.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-035-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-049-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-082-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-032-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-060-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-047-025.wav", "captions": "acoustic dark reverb brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-065-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-025-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-063-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-070-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-030-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-034-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-036-100.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-059-100.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-057-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-086-127.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-088-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-087-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-087-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-050-127.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-049-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-060-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-013-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-087-100.wav", "captions": "acoustic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-022-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-032-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-047-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-034-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-083-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-080-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-055-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-051-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-065-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-090-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-040-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-101-127.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-039-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-068-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-045-050.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-079-127.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-040-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-047-100.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-083-050.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-050-127.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-040-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-061-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-018-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-062-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-054-050.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-080-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-054-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-082-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-090-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-030-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-076-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-096-050.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-076-050.wav", "captions": "synthetic dark fast_decay reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-095-025.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-073-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-068-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-061-127.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-059-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-030-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-037-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-041-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-095-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-058-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-054-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-054-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-035-025.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-034-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-043-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-102-075.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-068-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-075-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-071-075.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-037-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-035-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-040-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-080-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-080-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-070-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-096-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-046-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-063-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-070-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-082-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-081-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-027-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-084-075.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-088-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-073-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-034-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-031-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-054-075.wav", "captions": "acoustic bright reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-032-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-092-075.wav", "captions": "synthetic tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-108-100.wav", "captions": "synthetic bright distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-061-050.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-095-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-078-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-077-025.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-089-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-068-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-036-100.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-057-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-073-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-057-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-055-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-072-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-100-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-091-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-061-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-067-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-044-100.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-108-075.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-051-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-033-100.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-089-100.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-071-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-050-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-075-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-029-025.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-039-050.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-033-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-072-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-081-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-037-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-058-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-039-050.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-090-075.wav", "captions": "acoustic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-023-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-074-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-063-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-054-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-037-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-098-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-031-025.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-028-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-062-050.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-025-025.wav", "captions": "electronic dark long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-098-025.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-105-050.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-037-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-042-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-096-100.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-062-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-038-075.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-094-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-059-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-055-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-089-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-097-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-036-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-053-025.wav", "captions": "electronic dark long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-071-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-044-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-037-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-033-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-058-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-048-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-022-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-058-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-047-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-028-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-040-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-035-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-047-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-091-075.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-041-127.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-047-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-094-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-090-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-082-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-081-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-069-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-078-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-069-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-089-127.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-076-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-056-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-090-050.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-080-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-082-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-055-025.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-028-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-083-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-036-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-040-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-032-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-059-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-042-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-094-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-018-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-041-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-040-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-107-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-100-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-028-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-061-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-071-127.wav", "captions": "synthetic dark fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-072-127.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-080-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-049-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-096-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-022-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-048-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-062-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-077-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-026-100.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-036-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-062-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-087-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-048-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-099-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-062-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-048-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-085-025.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-063-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-059-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-103-075.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-050-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-046-050.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-037-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-064-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-057-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-054-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-057-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-088-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-062-100.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-024-075.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-101-050.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-062-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-032-025.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-067-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-065-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-090-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-104-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-048-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-081-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-078-100.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-090-050.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-045-025.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-037-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-082-127.wav", "captions": "electronic bright distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-069-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-098-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-055-100.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-024-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-049-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-089-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-076-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-037-025.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-089-050.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-068-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-044-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-031-127.wav", "captions": "synthetic dark distortion bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-049-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-062-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-028-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-050-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-052-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-080-025.wav", "captions": "acoustic percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-040-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-083-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-025-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-070-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-070-025.wav", "captions": "acoustic dark fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-045-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-058-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-072-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-026-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-047-100.wav", "captions": "acoustic long_release reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-092-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-059-075.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-063-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-074-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-073-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-064-127.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-099-100.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-033-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-054-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-082-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-028-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-049-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-041-100.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-077-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-091-025.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-027-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-099-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-061-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-067-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-094-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-072-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-072-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-049-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-064-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-081-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-073-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-048-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-038-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-082-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-072-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-069-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-047-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-040-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-093-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-060-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-087-075.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-071-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-085-100.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-104-100.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-024-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-104-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-067-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-082-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-053-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-026-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-059-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-049-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-027-127.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-097-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-050-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-054-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-082-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-062-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-087-075.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-058-127.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-040-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-084-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-054-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-076-050.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-078-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-058-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-074-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-029-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-092-025.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-097-127.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env percussive reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-088-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-057-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-077-100.wav", "captions": "acoustic percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-073-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-090-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-065-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-024-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-025-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-092-075.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-101-025.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-061-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-034-127.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-032-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-108-075.wav", "captions": "acoustic bright fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-043-100.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-095-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-038-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-032-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-063-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-023-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-023-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-036-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-063-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-048-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-061-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-074-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-053-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-050-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-096-025.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-057-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-080-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-021-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-078-100.wav", "captions": "electronic bright fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-066-025.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-097-127.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-029-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-096-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-067-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-052-127.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-040-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-035-075.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-073-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-042-100.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-105-127.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-062-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-068-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-083-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-029-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-056-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-084-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-053-050.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-049-127.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-054-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-081-127.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-065-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-026-025.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-091-100.wav", "captions": "acoustic mallet"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-061-127.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-068-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-106-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-010-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-020-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-047-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-090-025.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-052-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-066-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-049-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-070-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-073-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-033-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-083-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-101-050.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-070-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-054-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-092-100.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-059-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-032-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-048-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-071-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-092-075.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-063-127.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-080-100.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-060-075.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-060-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-023-100.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-076-075.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-035-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-056-127.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-086-075.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-083-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-055-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-050-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-028-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-045-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-028-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-035-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-087-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-061-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-096-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-060-050.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-070-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-046-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-103-050.wav", "captions": "electronic bright guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-039-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-039-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-070-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-062-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-056-075.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-082-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-087-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-086-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-040-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-044-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-092-075.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-041-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-076-100.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-108-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-022-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-083-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-019-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-048-025.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-065-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-057-025.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-022-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-095-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-047-050.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-061-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-078-075.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-068-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-069-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-063-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-026-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-037-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-032-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-098-025.wav", "captions": "synthetic fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-031-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-090-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-039-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-062-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-078-100.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-083-127.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-035-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-075-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-046-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-043-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-034-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-035-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-092-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-058-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-064-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-050-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-093-100.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-076-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-088-050.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-028-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-079-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-062-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-082-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-082-100.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-048-025.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-057-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-105-100.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-054-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-062-100.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-081-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-073-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-031-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-037-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-057-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-037-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-050-050.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-037-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-065-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-057-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-047-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-063-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-043-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-065-100.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-023-127.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-047-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-023-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-085-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-087-100.wav", "captions": "acoustic nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-063-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-024-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-038-127.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-083-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-032-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-068-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-088-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-074-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-068-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-065-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-074-100.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-061-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-060-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-064-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-095-100.wav", "captions": "synthetic fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-072-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-080-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-070-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-091-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-119-025.wav", "captions": "acoustic bright long_release mallet"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-102-100.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-053-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-072-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-054-100.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-057-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-042-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-025-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-037-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-056-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-084-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-054-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-086-127.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-089-025.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-069-100.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-054-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-087-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-106-075.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-033-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-048-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-074-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-078-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-065-127.wav", "captions": "synthetic dark fast_decay reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-067-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-037-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-073-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-060-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-065-127.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-072-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-031-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-046-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-054-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-076-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-108-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-046-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-038-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-022-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-030-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-051-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-084-025.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-036-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-101-050.wav", "captions": "acoustic bright mallet"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-060-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-031-075.wav", "captions": "acoustic dark fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-075-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-062-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-083-075.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-065-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-051-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-071-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-052-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-108-127.wav", "captions": "acoustic percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-022-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-061-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-104-025.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-051-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-070-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-106-075.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-098-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-039-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-052-100.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-031-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-033-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-084-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-095-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-057-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-094-127.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-101-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-059-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-028-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-093-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-079-100.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-051-127.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-065-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-064-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-061-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-085-100.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-091-025.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-077-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-066-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-066-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-097-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-037-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-104-075.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-035-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-067-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-078-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-036-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-049-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-032-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-083-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-045-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-074-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-039-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-065-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-074-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-022-100.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-093-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-099-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-061-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-048-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-047-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-034-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-095-050.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-038-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-062-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-046-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-037-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-095-050.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-031-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-034-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-068-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-088-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-051-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-072-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-037-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-077-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-074-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-068-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-105-075.wav", "captions": "acoustic bright fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-036-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-083-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-025-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-091-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-055-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-049-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-055-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-022-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-049-100.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-081-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-067-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-082-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-071-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-048-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-035-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-056-127.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-026-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-043-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-044-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-072-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-045-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-088-127.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-037-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-051-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-069-100.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-092-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-089-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-092-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-048-127.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-030-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-079-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-080-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-035-127.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-080-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-090-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-055-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-054-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-027-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-046-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-061-127.wav", "captions": "acoustic dark percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-033-100.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-044-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-040-100.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-053-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-064-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-061-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-084-050.wav", "captions": "electronic bright distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-045-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-090-100.wav", "captions": "acoustic nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-072-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-033-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-088-127.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-044-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-054-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-028-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-077-050.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-021-127.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-065-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-062-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-036-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-054-050.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-069-025.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-106-100.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-056-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-057-127.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-027-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-069-127.wav", "captions": "acoustic long_release reverb brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-074-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-082-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-107-100.wav", "captions": "electronic percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-039-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-090-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-068-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-047-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-032-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-088-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-053-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-010-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-106-025.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-051-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-064-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-090-075.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-050-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-056-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-092-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-070-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-069-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-083-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-072-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-051-075.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-073-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-097-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-040-100.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-060-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-092-100.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-058-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-071-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-036-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-053-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-040-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-024-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-072-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-022-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-110-050.wav", "captions": "acoustic bright mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-085-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-071-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-056-025.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-073-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-092-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-072-100.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-021-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-045-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-044-025.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-071-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-075-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-074-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-031-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-038-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-086-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-095-075.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-049-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-037-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-052-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-055-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-039-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-061-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-064-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-100-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-065-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-102-025.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-041-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-052-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-032-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-087-075.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-061-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-062-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-108-050.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-048-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-073-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-072-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-056-100.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-062-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-092-025.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-030-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-093-025.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-028-075.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-056-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-081-075.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-089-100.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-092-050.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-061-100.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-093-075.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-065-075.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-063-075.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-104-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-087-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-104-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-038-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-062-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-046-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-073-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-067-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-048-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-051-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-083-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-023-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-030-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-099-025.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-087-025.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-047-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-096-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-081-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-033-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-041-075.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-051-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-097-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-093-075.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-064-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-041-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-084-075.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-046-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-089-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-084-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-022-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-096-075.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-030-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-101-075.wav", "captions": "acoustic bright guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-045-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-023-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-042-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-106-050.wav", "captions": "acoustic bright fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-051-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-037-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-058-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-088-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-070-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-083-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-059-100.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-077-050.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-107-075.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-048-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-082-100.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-048-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-042-025.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-060-127.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-039-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-073-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-077-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-049-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-040-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-070-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-069-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-077-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-099-025.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-025-100.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-104-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-043-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-022-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-051-127.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-057-100.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-098-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-092-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-054-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-035-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-071-100.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-087-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-040-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-043-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-103-100.wav", "captions": "synthetic bright fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-031-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-104-050.wav", "captions": "synthetic bright distortion flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-032-050.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-032-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-045-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-039-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-068-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-070-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-100-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-047-100.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-053-050.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-032-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-067-025.wav", "captions": "acoustic percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-032-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-062-075.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-028-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-024-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-071-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-032-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-104-127.wav", "captions": "acoustic bright mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-082-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-052-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-077-050.wav", "captions": "electronic bright distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-090-100.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-027-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-108-050.wav", "captions": "acoustic bright fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-060-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-027-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-046-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-095-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-070-050.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-040-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-056-100.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-041-050.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-033-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-033-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-048-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-093-100.wav", "captions": "synthetic fast_decay percussive bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-092-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-102-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-043-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-091-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-025-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-064-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-051-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-052-025.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-064-100.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-095-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-040-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-098-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-039-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-085-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-101-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-078-025.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-094-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-044-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-035-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-046-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-084-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-095-100.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-021-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-037-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-042-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-091-127.wav", "captions": "acoustic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-043-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-077-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-080-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-043-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-078-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-062-050.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-072-050.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-066-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-060-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-063-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-081-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-083-050.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-065-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-055-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-059-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-058-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-063-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-080-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-047-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-034-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-031-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-055-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-043-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-082-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-040-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-091-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-058-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-076-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-060-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-091-100.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-051-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-031-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-107-100.wav", "captions": "acoustic bright reverb flute"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-034-100.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-042-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-086-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-049-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-090-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-072-075.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-071-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-077-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-088-100.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-095-100.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-063-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-078-127.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-083-100.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-096-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-051-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-057-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-056-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-060-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-040-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-049-127.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-074-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-108-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-076-127.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-066-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-076-050.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-061-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-059-075.wav", "captions": "acoustic tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-069-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-057-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-058-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-049-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-040-100.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-031-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-054-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-092-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-036-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-040-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-029-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-059-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-050-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-046-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-049-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-077-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-063-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-050-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-060-075.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-026-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-035-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-016-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-104-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-075-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-071-127.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-052-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-088-025.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-082-100.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-064-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-060-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-040-025.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-035-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-105-100.wav", "captions": "acoustic bright fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-096-075.wav", "captions": "synthetic tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-025-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-095-127.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-052-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-063-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-073-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-066-127.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-062-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-038-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-078-050.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-067-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-064-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-053-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-021-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-059-075.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-068-050.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-032-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-099-100.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-067-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-047-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-058-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-097-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-054-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-051-025.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-050-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-061-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-093-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-024-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-079-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-024-025.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-040-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-095-127.wav", "captions": "electronic bright long_release organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-044-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-040-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-079-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-043-075.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-051-127.wav", "captions": "acoustic long_release reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-051-127.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-065-050.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-104-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-058-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-057-075.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-108-100.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-062-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-076-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-100-075.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-037-100.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-041-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-067-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-064-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-088-075.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-055-050.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-050-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-108-100.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-065-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-060-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-077-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-058-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-100-050.wav", "captions": "synthetic bright distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-059-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-065-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-055-025.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-090-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-093-075.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-063-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-078-025.wav", "captions": "acoustic fast_decay multiphonic percussive mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-098-025.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-046-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-100-127.wav", "captions": "acoustic bright multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-086-075.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-058-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-045-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-069-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-072-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-096-100.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-041-025.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-079-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-039-100.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-050-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-084-025.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-039-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-089-050.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-081-025.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-099-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-041-075.wav", "captions": "acoustic bright reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-075-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-098-100.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-086-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-061-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-096-127.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-027-100.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-104-050.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-051-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-025-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-038-127.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-091-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-035-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-091-100.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-071-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-058-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-080-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-050-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-027-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-062-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-070-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-062-075.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-078-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-064-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-088-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-074-075.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-085-075.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-046-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-042-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-094-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-033-127.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-103-050.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-086-075.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-064-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-042-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-072-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-034-127.wav", "captions": "acoustic distortion guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-040-050.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-027-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-094-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-030-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-074-100.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-082-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-101-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-032-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-068-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-022-100.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-064-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-067-127.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-027-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-034-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-051-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-080-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-051-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-069-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-074-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-022-127.wav", "captions": "acoustic long_release guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-082-100.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-037-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-054-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-060-050.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-045-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-104-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-049-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-068-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-030-075.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-046-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-093-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-074-075.wav", "captions": "electronic bright fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-079-050.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-052-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-053-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-036-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-047-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-052-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-095-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-075-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-045-127.wav", "captions": "acoustic bright fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-075-050.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-079-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-068-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-084-025.wav", "captions": "acoustic long_release reverb flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-086-075.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-099-100.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-030-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-085-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-098-025.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-062-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-028-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-095-025.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-086-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-033-075.wav", "captions": "acoustic reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-104-075.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-029-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-065-025.wav", "captions": "acoustic fast_decay percussive mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-048-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-073-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-082-025.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-086-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-083-050.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-066-025.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-075-127.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-061-100.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-074-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-060-025.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-070-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-078-127.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-048-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-084-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-039-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-028-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-107-100.wav", "captions": "acoustic bright fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-053-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-031-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-054-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-061-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-049-127.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-057-100.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-100-025.wav", "captions": "synthetic bright distortion bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-081-075.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-069-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-077-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-030-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-064-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-075-127.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-024-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-072-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-102-127.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-055-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-073-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-044-025.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-036-127.wav", "captions": "acoustic long_release tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-076-100.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-063-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-062-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-079-075.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-051-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-075-075.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-045-025.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-088-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-078-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-090-075.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-040-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-042-075.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-079-025.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-061-100.wav", "captions": "acoustic dark percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-021-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-118-050.wav", "captions": "acoustic bright long_release mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-084-100.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-071-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-077-100.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-067-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-072-025.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-040-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-084-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-077-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-073-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-060-127.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-026-100.wav", "captions": "acoustic long_release guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-063-075.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-062-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-082-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-081-025.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-022-050.wav", "captions": "electronic percussive bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-024-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-063-025.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-066-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-030-075.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-031-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-033-050.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-080-100.wav", "captions": "acoustic fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-052-127.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-060-127.wav", "captions": "acoustic fast_decay reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-026-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-037-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-094-100.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-053-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-058-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-059-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-041-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-036-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-083-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-050-025.wav", "captions": "synthetic distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-045-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_030-096-050.wav", "captions": "acoustic fast_decay percussive tempo-synced guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-080-025.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-102-050.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-062-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-055-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-090-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-038-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-053-075.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-051-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-075-025.wav", "captions": "acoustic dark fast_decay multiphonic percussive mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-057-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-079-050.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-043-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-075-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-076-100.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-023-100.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-104-050.wav", "captions": "synthetic fast_decay percussive reverb bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-082-025.wav", "captions": "electronic long_release keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-065-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-030-025.wav", "captions": "synthetic distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-108-075.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-022-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-086-025.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-097-025.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-049-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-029-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-044-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-034-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-043-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-045-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-055-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-051-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-044-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-064-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_015-070-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-055-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-064-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-056-025.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-059-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-077-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-073-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-087-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-091-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-077-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-041-127.wav", "captions": "electronic dark distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-098-075.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_acoustic_002-078-025.wav", "captions": "acoustic reverb flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-106-127.wav", "captions": "acoustic bright multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-063-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-100-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-033-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-030-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-075-050.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-071-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-082-075.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-104-025.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-053-075.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-037-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-090-050.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-069-075.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-078-100.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-058-025.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-079-100.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-053-075.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-054-127.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-103-127.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-027-050.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-074-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-029-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-031-050.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-054-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-093-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-024-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-066-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-050-050.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-048-100.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-074-025.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-075-050.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-073-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-056-025.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-043-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-049-100.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-073-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_046-098-025.wav", "captions": "acoustic long_release brass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-099-127.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-050-025.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-074-100.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-046-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-061-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-034-100.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-067-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-096-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-081-050.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-081-127.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-086-127.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-099-050.wav", "captions": "acoustic fast_decay percussive guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-038-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-039-050.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_012-042-025.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_057-037-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-061-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-094-075.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-106-075.wav", "captions": "acoustic bright fast_decay guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-082-025.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-040-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-096-127.wav", "captions": "synthetic long_release bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-029-127.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-030-127.wav", "captions": "synthetic distortion flute"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-079-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-045-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/vocal_acoustic_000-059-127.wav", "captions": "acoustic reverb vocal"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_011-048-100.wav", "captions": "acoustic bright reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-061-127.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-027-025.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-101-075.wav", "captions": "acoustic bright fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-091-100.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-076-025.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-094-050.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-048-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-106-127.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-032-127.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-077-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-102-050.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-085-075.wav", "captions": "acoustic fast_decay multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-104-075.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-037-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-082-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-074-100.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-065-127.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-028-050.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-055-025.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-049-050.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-083-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-027-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-083-050.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-053-050.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/vocal_synthetic_003-056-127.wav", "captions": "synthetic bright distortion long_release nonlinear_env vocal"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-023-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_104-078-050.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-068-127.wav", "captions": "acoustic bright brass"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-029-050.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-091-025.wav", "captions": "acoustic fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-058-075.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-075-025.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-040-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-047-075.wav", "captions": "acoustic reverb reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-058-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-033-075.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-030-050.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_014-063-127.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_080-035-100.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_059-047-050.wav", "captions": "acoustic dark reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-099-127.wav", "captions": "electronic bright fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_010-052-100.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-032-127.wav", "captions": "acoustic long_release reverb guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-025-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-097-050.wav", "captions": "acoustic fast_decay percussive reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-060-100.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-076-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-090-100.wav", "captions": "synthetic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_015-070-025.wav", "captions": "acoustic reverb guitar"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-048-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-092-127.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-090-127.wav", "captions": "acoustic multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-032-100.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-065-025.wav", "captions": "acoustic dark reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-074-127.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-073-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-068-050.wav", "captions": "synthetic bright distortion long_release bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-041-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-080-025.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-103-025.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-082-075.wav", "captions": "electronic fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-024-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-052-050.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-048-075.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-030-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-115-025.wav", "captions": "acoustic bright long_release mallet"}
{"dataset": "NSynth", "location": "/audio/flute_synthetic_000-100-025.wav", "captions": "synthetic bright distortion flute"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_047-076-025.wav", "captions": "acoustic fast_decay percussive reverb mallet"}
{"dataset": "NSynth", "location": "/audio/guitar_acoustic_021-061-075.wav", "captions": "acoustic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_018-024-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-010-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-034-025.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_014-036-025.wav", "captions": "acoustic dark reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-097-075.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_113-080-075.wav", "captions": "electronic organ"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_056-077-100.wav", "captions": "acoustic fast_decay mallet"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-092-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-058-127.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_025-063-100.wav", "captions": "electronic fast_decay bass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-043-100.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_056-071-100.wav", "captions": "acoustic fast_decay percussive reverb string"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_003-062-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-088-100.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_068-033-050.wav", "captions": "synthetic dark bass"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_022-073-127.wav", "captions": "electronic guitar"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-071-127.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-040-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-052-075.wav", "captions": "electronic distortion long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/guitar_electronic_028-037-100.wav", "captions": "electronic dark guitar"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-055-127.wav", "captions": "acoustic dark long_release multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_098-044-025.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-093-025.wav", "captions": "electronic fast_decay percussive keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-032-025.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-085-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_078-053-127.wav", "captions": "electronic bright keyboard"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_001-036-050.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_007-092-127.wav", "captions": "electronic long_release nonlinear_env organ"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-063-050.wav", "captions": "synthetic distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_synthetic_000-066-127.wav", "captions": "synthetic bright distortion fast_decay nonlinear_env keyboard"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_034-095-127.wav", "captions": "synthetic bright distortion tempo-synced bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_037-071-127.wav", "captions": "acoustic long_release reverb reed"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-103-050.wav", "captions": "electronic bright organ"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_016-089-025.wav", "captions": "acoustic brass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_002-082-127.wav", "captions": "electronic distortion fast_decay keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-058-050.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-079-025.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-060-025.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-080-050.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_134-062-075.wav", "captions": "synthetic dark reverb bass"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-040-075.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_023-078-025.wav", "captions": "acoustic bright fast_decay multiphonic nonlinear_env reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_135-055-050.wav", "captions": "synthetic distortion bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_acoustic_004-105-025.wav", "captions": "acoustic reverb keyboard"}
{"dataset": "NSynth", "location": "/audio/reed_acoustic_018-062-127.wav", "captions": "acoustic reed"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_033-070-100.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/bass_electronic_027-044-100.wav", "captions": "electronic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_001-022-075.wav", "captions": "electronic dark keyboard"}
{"dataset": "NSynth", "location": "/audio/mallet_acoustic_062-072-075.wav", "captions": "acoustic dark multiphonic mallet"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-067-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_098-055-075.wav", "captions": "synthetic bass"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-089-100.wav", "captions": "electronic keyboard"}
{"dataset": "NSynth", "location": "/audio/keyboard_electronic_069-054-127.wav", "captions": "electronic distortion keyboard"}
{"dataset": "NSynth", "location": "/audio/brass_acoustic_006-088-075.wav", "captions": "acoustic reverb brass"}
{"dataset": "NSynth", "location": "/audio/organ_electronic_028-044-100.wav", "captions": "electronic dark organ"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_071-027-127.wav", "captions": "acoustic long_release reverb string"}
{"dataset": "NSynth", "location": "/audio/string_acoustic_057-063-127.wav", "captions": "acoustic bright nonlinear_env reverb string"}
{"dataset": "NSynth", "location": "/audio/bass_synthetic_009-058-025.wav", "captions": "synthetic bright distortion long_release bass"} |