File size: 44,200 Bytes
c1aa54d | 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 | [
{
"user_id": 0,
"target_item_id": 13846,
"target_title": "Planet Waves PW-CGTP-305 Classic Series Instrument Cable with Right Angle Plug, 0.5 feet (3-pack)",
"history_ids": [
11527,
11527,
5362,
22085
],
"history_titles": [
"Crescent MG38-PK 38" Acoustic Guitar Starter Package, PINK (Includes CrescentTM Digital E-Tuner)",
"Crescent MG38-PK 38" Acoustic Guitar Starter Package, PINK (Includes CrescentTM Digital E-Tuner)",
"Hosa CMS-105 3.5 mm TRS to 1/4" TRS Stereo Interconnect Cable, 5 Feet",
"Professional Wireless Microphone System - Dual UHF Band, Wireless, Handheld, 2 MICS With 8 Selectable Frequency Channels, Independent Volume Controls, AF & RF Signal Indicators - Pyle PDWM3375"
],
"history_stars": [
2.0,
2.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 1,
"target_item_id": 16633,
"target_title": "Gator Cases Mini Bone Rotationally Molded Polyethylene Guitar Pedal Board with Cinch Style Carry Bag; USA Made, 12.5" x 6" x 2" (G-MINI BONE)",
"history_ids": [
26580,
7459,
21341,
19420,
7805,
9481,
9691,
8259,
6013,
19178
],
"history_titles": [
"World Tour Keyboard Gig Bag, 38" x 15" x 6"",
"Planet Waves Ergonomic Guitar Peg Winder",
"ChromaCast CC-MINIGS Universal Folding Guitar Stand with Secure Lock",
"Hohner 590BX-G Harmonica, Key of G",
"D'Addario EJ46 Pro-Arte Nylon Classical Guitar Strings, Hard Tension",
"On-Stage FS7850B Guitar Foot Rest",
"Lee Oskar Harmonicas Harmonica (LOHP)",
"Promark R22 Cymbal Rattler",
"Paiste Cymbal Cleaner",
"On-Stage RS6000 Foldable Tiltback Amp Stand"
],
"history_stars": [
4.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
4.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 3,
"target_item_id": 24143,
"target_title": "Sabian SSB360 360 Drumstick Bag",
"history_ids": [
10149,
6584,
7752,
5814,
24610,
25488
],
"history_titles": [
"American Dj P36 Led RGB Led Wash Light",
"American Dj Mini Fog Fog Machine",
"American Dj F-Scent Tropical Scent For Water Based Fog Juice",
"CHAUVET DJ CLP-10 Light-Duty Adjustable O-Clamp for DJ Lighting on Truss",
"ADJ Products LTS-2 H.D. ALUMINUM STAND SINGLE BAR",
"Aquila Red Series AQ-87 Tenor Ukulele Strings - High G - 1 Set of 4"
],
"history_stars": [
3.0,
5.0,
4.0,
5.0,
3.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 4,
"target_item_id": 5448,
"target_title": "Alesis M1 Active Mk2 Bi-Amplified Reference Monitor (Pair)",
"history_ids": [
7900,
22665,
7753,
11204,
13676
],
"history_titles": [
"Whirlwind Leader Instrument Cable (Straight, 15 ft)",
"Westone - Old Model - UM Pro10 High Performance Single Driver Noise-Isolating In-Ear Monitors - Red - Discontinued by Manufacturer",
"Ernie Ball VP Jr. P06180 250K Potentiometer for Passive Electronics",
"Fulltone Fulldrive2 MOSFET Overdrive / Boost Pedal",
"Presonus StudioLive 16.4.2 16-Channel Performance and Recording Digital Mixer"
],
"history_stars": [
5.0,
5.0,
4.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 5,
"target_item_id": 9530,
"target_title": "Plusdeck 2c PC Cassette Deck - Tape to MP3!",
"history_ids": [
19812,
5766,
13541,
10514,
13541,
14040,
14676,
17703
],
"history_titles": [
"12" Flexible XLR Male-Female Microphone Gooseneck - Black",
"Furman SS6B 6 Plug Surge Protector",
"Mogami Platinum Guitar 20R, Straight to R/A Ends 20 feet",
"On-Stage QK-2C Quik-Release Microphone Clip Adapter, Chrome",
"Mogami Platinum Guitar 20R, Straight to R/A Ends 20 feet",
"Neutrik NP2X-B 1/4" Professional Phone Plug, Black Shell with Gold Contacts",
" LIVE-ST Live Series Microphone Stand with One-handed Height Adjustment, Durable Lightweight Aluminum Construction, and Weighted Base",
"Neutrik SCDP-0 Sealing Gasket for D-size Connectors Black"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 6,
"target_item_id": 11670,
"target_title": "Singing Machine SMM-205 Unidirectional Dynamic Microphone with 10 Ft. Cord",
"history_ids": [
14494,
17662,
6480,
11670
],
"history_titles": [
"Meinl Percussion ES-GREEN Plastic Egg Shaker, Green",
"Guitar Hanger Hook Holder Wall Mount Display - Fits all size Guitars, Bass, Mandolin, Banjo, etc.",
"Rhythm Band 8-Note Handbell Set",
"Singing Machine SMM-205 Unidirectional Dynamic Microphone with 10 Ft. Cord"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 7,
"target_item_id": 28207,
"target_title": "DW Control Beater",
"history_ids": [
17555,
24891,
8572,
27745
],
"history_titles": [
"Double Tom Drum Stand with Cymbal Arm by Griffin | Premium Percussion Set Hardware with Dual Drum Mounts|Medium Duty Tom Holder with Double Braced Tripod Legs|Accommodates All Standard Cymbals",
"Mackie Studio Monitor, Black w/Green Trim, 3-inch (CR3)",
"Drum Workshop CP5700 5000 Series Cymbal/Boom Stand",
"Drumtacs Sound Control Pads"
],
"history_stars": [
1.0,
4.0,
3.0,
3.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 8,
"target_item_id": 11884,
"target_title": "Yamaha MG82CX 8 Input Stereo Mixer with Digital Effects",
"history_ids": [
21537,
21268,
21616,
11884
],
"history_titles": [
"Portable UHF Wireless Microphone System - 32 Channel Set w/ Handheld Mic, ¼” Transmitter and Receiver, Supports Multiple Microphones For Outdoor, PA, Karaoke, DJ and Conference - Pyle",
"M-Audio M-Track Plus Two-Channel Portable USB Audio and MIDI Interface with Digital I/O, Ignite by AIR and Pro Tools",
"Auphonix Microphone Pop Filter (MPF-1) 6-inch Diameter With Double Mesh Filter Screen",
"Yamaha MG82CX 8 Input Stereo Mixer with Digital Effects"
],
"history_stars": [
5.0,
3.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 9,
"target_item_id": 26347,
"target_title": "Andoer Jazz Tenor Sax Saxophone 5C Mouthpiece Metal with Mouthpiece Patches Pads Cushions Cap Buckle Gold Plating",
"history_ids": [
5888,
6326,
6362,
6866,
7874,
9195,
15086,
20290
],
"history_titles": [
"Vandoren SR224 Tenor Sax Traditional Reeds Strength 4; Box of 5",
"Neotech Soft Sax Strap - Swivel XL",
"Rico by D'Addario Tenor Sax Reeds, Strength 3.5, 10-pack",
"Hodge Silk Tenor Saxophone Swab - Black",
"Otto Link OLR-404-7S Tone Edge Rubber Tenor Sax Mouthpiece",
"Rovner Accordion Accessory (C2R)",
" Rico Metalite Tenor Sax Mouthpiece, M9",
"YMC 12567 Alto/Tenor Sax Clarinet Mouthpiece Patches Pads Cushions, Black, 8 Pack"
],
"history_stars": [
5.0,
1.0,
5.0,
5.0,
5.0,
4.0,
1.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 10,
"target_item_id": 14816,
"target_title": "Planet Waves Thumb Picks, Large, 5 Pack",
"history_ids": [
21181,
18208,
24009,
14817,
25026
],
"history_titles": [
"ChromaCast CC-SAMPLE Sampler Guitar Picks (12 count)",
"Simtyso® Predmium Folk Acoustic Electric Guitar Banjo Trigger Capo Key Clamp",
"Snark SN1 Guitar Tuner (Blue)",
" Planet Waves 4CSH6-5 Finger Picks",
"TopStage Guitar Hangers Hook Holder Wall Mount Display - Fits Guitars, Bass, Mandolin, w/Mounting Hardware"
],
"history_stars": [
5.0,
5.0,
5.0,
4.0,
3.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 11,
"target_item_id": 10540,
"target_title": "Behringer BEQ700 Ultimate 7-Band Bass Graphic Equalizer",
"history_ids": [
12403,
12403,
15113,
17936
],
"history_titles": [
" BEHRINGER REVERB MACHINE RV600",
" BEHRINGER REVERB MACHINE RV600",
"Behringer Compressor/Sustainer CS400 Ultimate Dynamics Effects Pedal",
"ModTone Mini-Mod Fuzzer Distortion Pedal"
],
"history_stars": [
5.0,
5.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 12,
"target_item_id": 5488,
"target_title": "Shure SM58-CN Cardioid Dynamic Vocal Microphone",
"history_ids": [
4210,
5648,
7780,
19793,
20794,
24254,
5685,
9239,
10936,
25791
],
"history_titles": [
"Performance Designed Products PS3 Wireless Afterglow Control - Assorted Colors (Color Assigned when Shipped) PL6422",
"Planet Waves Circuit Breaker Instrument Cable, 10 feet",
"Planet Waves Custom Series Instrument Cable, Right Angle, 10 feet",
"Music Nomad MN205 The Nomad String, Body, and Hardware Cleaning Tool",
"TC Electronic Guitar Ditto Looper Effects Pedal",
"D'Addario NYXL1046 Nickel Plated Electric Guitar Strings, Light",
"Dunlop SLS1033BK Straplok Dual Design Strap Retainer System, Black",
"Hercules GS432B A/G Tri Guitar Stand",
"Dunlop 47PXLS Nylon Jazz III XL, Black, 6/Player's Pack",
"DUBS Noise Cancelling Music Ear Plugs: Acoustic Filters High Fidelity Hearing Protection"
],
"history_stars": [
4.0,
4.0,
4.0,
4.0,
5.0,
4.0,
5.0,
4.0,
5.0,
4.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 13,
"target_item_id": 17842,
"target_title": "Presonus AudioBox 22VSL 24-Bit/96 kHz 2x2 USB 2.0 Audio Interface",
"history_ids": [
21236,
21922,
3195,
4236,
6365,
10992,
27403,
30847,
20249,
6064
],
"history_titles": [
"Rosette Guitar 3M Fret Polishing Kit- The Utimate Fret Cleaning System",
"Guitar Neck Straight Edge (Notched) Luthiers Tool",
"Blink Indoor Home Security Camera System with Motion Detection, HD Video, 2-Year Battery Life and Cloud Storage Included - 1 Camera Kit",
"Lizone 6800mAh A1405 A1496 Laptop Battery for Apple MacBook Air 13 (2011 2012 2013 2014 2015 Version) A1466 A1377 A1369 MC503 MC504 A1405 A1496 Battery -7.3V/50Wh",
"Dunlop 6500 System 65 Guitar Maintenance Kit",
"Grover 135N Guitar Tuner",
"NUX Loop Core Guitar Effect Pedal, Yellow",
"NUX MOD Core DELUXE Chorus/Flanger/Phaser/Rotary Guitar Effect Pedal 8 Modulation Effects Preset Tone Lock",
"Davison Guitars Full Size Electric Bass Guitar Starter Beginner Pack with Amp Case Strap Package Vintage Sunburst Right Handed",
"Ernie Ball Nickel Plain Single Guitar String .009 6-Pack"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
2.0,
5.0,
3.0,
4.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 14,
"target_item_id": 27317,
"target_title": "Nordic Essentials Guitar Capo Deluxe with Carrying Pouch - Brushed Metallic Bronze",
"history_ids": [
29938,
30247,
23321,
30982,
24953
],
"history_titles": [
"Alesis Forge Kit | Eight-Piece Electronic Drum Set with Forge Drum Module and USB Port for User-Loaded Samples",
"Promark TXRRW-AG Rich Redmond Drumstick with ActiveGrip",
"Planet Waves PW-CP-12 NS Ukulele Capo Pro",
"Marantz Professional Pod Pack 1 | Broadcast Boom Arm with Included USB Condenser Microphone",
"Pick Geek Guitar Picks - 16 Cool Custom Guitar Picks For Your Electric, Acoustic, or Bass Guitar - X-Heavy, Heavy, Medium & Light - Presented in a Luxury Metal Pocket Box"
],
"history_stars": [
4.0,
5.0,
4.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 15,
"target_item_id": 5613,
"target_title": "Martin M130 80-20 Silk & Steel Strings Acoustic Guitar Frets",
"history_ids": [
6696,
13074,
21699,
20343,
13070,
16797,
23410,
31054,
19420,
8687
],
"history_titles": [
"BEHRINGER TUBE ULTRAGAIN MIC200",
" On-Stage GBA4550 Acoustic Guitar Gig Bag",
"iConnectivity mio 1-in 1-out USB to MIDI Interface for Mac and PC",
"Gearlux Vented Collapsible Music Stand",
"Korg KDM-2 True Tone Advanced Digital Metronome",
"Alto Professional ZMX52 | 5-Channel 2-Bus Mixer with 6 Inputs, 2-Band EQ per Channel & +18V Phantom Power",
"Gearlux XLR Microphone Cable, 25 Foot",
"Bose L1 Compact with Carry Case",
"Hohner 590BX-G Harmonica, Key of G",
"Levy's Leathers M19-BLK Leather Mandolin Strap,Black"
],
"history_stars": [
2.0,
4.0,
4.0,
4.0,
4.0,
4.0,
3.0,
4.0,
4.0,
3.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 16,
"target_item_id": 19813,
"target_title": "Fender Gretsch G2181 Mandolin Gig Bag",
"history_ids": [
12420,
9735,
19845,
12916,
9453,
7380,
10271,
25726,
24448,
27943
],
"history_titles": [
"Kala UB-B Baritone Ukulele Bag",
"Belmonte Guitar Strap (3489)",
"Palatino PW-220-T Tenor Saxophone Mouthpiece",
"Fibracell Synthetic Tenor Saxophone Reed Strength 2.5",
"Hohner H455C Harmonica, Key of C",
"Rico Plasticover Alto Sax Reeds, Strength 2.0, 5-pack",
"Cecilio CCO-300 Solid Wood Cello with Hard & Soft Case, Stand, Bow, Rosin, Bridge and Extra Set of Strings, Size 4/4 (Full Size)",
"MicroMall(TM) High Quality Fashion Square Shape Nylon 4/4 Full Size Violin Case - Black",
"YR-Seasons 4 pcs of Silver Stable-style Violin String Adjusters Fine Tuners for 3/4-4/4 Violin",
"Artisan Violin Strings Premium Quality - For 4 4 or 3 4 Size. Full set: GDAE. Stainless Steel Ball End. Flat wound E string eliminates finger noise. Warmest Tones & Unmatched Durability"
],
"history_stars": [
5.0,
4.0,
4.0,
5.0,
2.0,
5.0,
2.0,
4.0,
5.0,
2.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 17,
"target_item_id": 28809,
"target_title": "Musiclily Slotted Folk Acoustic Guitar Ebony Bridge Pins for Taylor Martin Guitar Replacement Parts, Black with White Pearl Shell Dot (Pack of 6)",
"history_ids": [
21139,
6531,
7785,
7783,
8566,
34616,
22723
],
"history_titles": [
"Pearl P932 Demonator Right Footed Single Chain with Interchangeable Cam Powershifter",
"D'Addario EXL120-7 Nickel Wound 7-String Electric Guitar Strings, Super Light, 9-54",
"D'Addario EXL120+ Nickel Wound Electric Guitar Strings, Super Light Plus, 9.5-44",
"D'Addario EJ21 Nickel Wound Electric Guitar Strings, Jazz Light, 12-52",
"D'Addario EXL150H Nickel Wound Electric Guitar Strings, High-Strung/Nashville Tuning, 10-26",
" Monoprice 104759 1.5-Feet Premier Series XLR Male to 1/4-Inch TRS Male 16AWG Cable",
"IsoAcoustics ISO-L8R430 Oversized Acoustic Isolation Stand (each)"
],
"history_stars": [
3.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 18,
"target_item_id": 9372,
"target_title": "World Tour Deluxe Padded Keyboard Bench",
"history_ids": [
5513,
19857,
31328,
293,
274
],
"history_titles": [
"Monster Cable M DJ-ST-2M Monster DJ Cables 2 meter pair TRS to TRS",
"Casio CTK-3200 61-Key Premium Portable Keyboard Package with Headphones, Stand and Power Supply",
"Lipton Recipe Secrets Soup and Dip Mix, Beefy Onion Flavor, 2.2 oz 2 Count",
"Waterpik Ultra Water Flosser",
"Waterpik Ultra Water Flosser"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 19,
"target_item_id": 32900,
"target_title": "Fishless Tuna, 5 oz (Case of 24 Cans)",
"history_ids": [
31313,
32521,
32524,
31295
],
"history_titles": [
"Worthington Choplets, 20-OunceCans (Pack of 12)",
"WORTHINGTON CHOPLETS LF MSG, 20 OZ",
"Worthington FriChik Original, 12.5 oz (Pack of 8)",
"Worthington Super Links, 19-Ounce Cans (Pack of 12)"
],
"history_stars": [
5.0,
5.0,
5.0,
4.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 20,
"target_item_id": 36964,
"target_title": "Ferrero Nutella Hazelnut Spread, 26.5 oz. Jar",
"history_ids": [
37030,
37032,
37029,
36842,
2827,
36123,
36339,
36972,
36274,
36689
],
"history_titles": [
"Stretch Island Strawberry Original Fruit Leather Snacks – Vegan | No Sugar Added | Gluten Free | Non-GMO | No Sugar Added - 0.5 Oz Strips (8 Count)",
"Stretch Island All Natural Fruit Strips, Grape, 8 Count",
"Kellogg’s Rice Krispies Treats, Crispy Marshmallow Squares, Original, Value Pack, 0.78 oz Bars (16 Count)",
"Maybelline New York Eye Studio Master Precise Liquid Eyeliner, No.110 Black, 0.037 Fluid Ounce",
"Susenstone®20 pcs/set Makeup Brush Set (15 Colors Concealer + 20 BRUSH)",
"Tide Original Scent HE Turbo Clean Liquid Laundry Detergent, 64 loads, 100 fl oz (Packaging May Vary)",
"Mr. Clean Magic Eraser Extra Durable, Cleaning Pads with Durafoam, 4 Count (Packaging May Vary)",
"Chicken of the Sea White Albacore Tuna in Water, Solid, 5 Ounce Cans (Pack of 4)",
"Barilla Pasta, Rigatoni, 16 Ounce",
"Santitas White Corn Tortilla Chips, 11 Ounce"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
4.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 21,
"target_item_id": 8566,
"target_title": "D'Addario EXL150H Nickel Wound Electric Guitar Strings, High-Strung/Nashville Tuning, 10-26",
"history_ids": [
578,
12255,
12255,
6531,
7785,
7783
],
"history_titles": [
"Gillette Razor Manual, Fusion Gamer, 1-Count Packages",
"Dean Vendetta Guitar, XM with Tremelo, Metalic Red",
"Dean Vendetta Guitar, XM with Tremelo, Metalic Red",
"D'Addario EXL120-7 Nickel Wound 7-String Electric Guitar Strings, Super Light, 9-54",
"D'Addario EXL120+ Nickel Wound Electric Guitar Strings, Super Light Plus, 9.5-44",
"D'Addario EJ21 Nickel Wound Electric Guitar Strings, Jazz Light, 12-52"
],
"history_stars": [
5.0,
4.0,
4.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 22,
"target_item_id": 36666,
"target_title": "Glad Dual Defense Large Drawstring Trash Bags - 30 Gallon - 50 Count",
"history_ids": [
3053,
13816,
34484,
4104,
449,
449,
2532
],
"history_titles": [
"Kindle, 6" E Ink Display, Wi-Fi (Graphite)",
" Shure EAADPT-KIT Adapter Kit (Combines 1/4" Adapter, Airline Adapter, Attachable Volume Control)",
"C2G 03137 18 AWG Outlet Saver Power Extension Cord - NEMA 5-15P to NEMA 5-15R, TAA Compliant, Black (1 Feet, 0.30 Meters)",
"Bolse® SuperSpeed 7 Port USB 3.0 HUB with 2x1.5A Charging Port, 5V 4A Power Adapter and USB 3.0 Cable (VIA VL812 Chipset), Compatible with USB 2.0",
"Williams Lectric Shave, 7 Ounce",
"Williams Lectric Shave, 7 Ounce",
"Lectric Shave Pre-Shave Original 3 oz"
],
"history_stars": [
5.0,
4.0,
5.0,
5.0,
3.0,
3.0,
3.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 23,
"target_item_id": 651,
"target_title": "Urban Spa Natural Bamboo and Jute Bath Mitt",
"history_ids": [
32768,
3140,
32914,
36798,
33522,
35860,
3178,
35838,
36791,
1993
],
"history_titles": [
"Lipton KCups Surprise and Delight Sampler",
"Trina Turk Hybrid Case for Fire Phone, Purple",
"Reusable Disc for Tassimo T-Disc Brewers (1 Hand-Made Disc)",
"Clear Shampoo, 24/7 Total Care 12.9 oz",
"<span class=\"a-size-medium a-color-secondary\"",
"SKIPPY Peanut Butter Spread - Creamy - Natural - 15 Ounce",
"Fire TV Stick with Voice Remote",
"Mrs. Meyer´s Clean Day Hand Soap, Lemon Verbena, 12.5 fl oz",
"Nestle Pure Life Purified Water, 16.9 fl oz. Plastic Bottles (12 count)",
"Pre de Provence Artisanal French Soap Bar Enriched with Shea Butter, Quad-Milled For A Smooth & Rich Lather (150 grams) - Raspberry"
],
"history_stars": [
3.0,
5.0,
1.0,
5.0,
2.0,
5.0,
5.0,
3.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 24,
"target_item_id": 37022,
"target_title": "King Arthur Flour Blueberry Scone Mix, 14 Ounce",
"history_ids": [
36594,
35812,
36017,
36017,
37020
],
"history_titles": [
"Coombs Family Farms Maple Syrup, Organic, Grade A, Dark Color, Robust Taste, 32-Ounce",
"Quaker Oats, Old Fashioned, 18 Oz",
"Diamond of California, Shelled Walnuts, 16 oz.",
"Diamond of California, Shelled Walnuts, 16 oz.",
"King Arthur Cake Flour, Unbleached, 2 lb"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 25,
"target_item_id": 30988,
"target_title": "Topeakmart 2 Pack Boom Cymbal Stand Drum Hardware Percussion Double Braced Tripod Holder",
"history_ids": [
17809,
4809,
11207,
9431,
25679
],
"history_titles": [
"Planet Waves PW-CT-12 D'Addario NS Micro Clip-On Tuner",
"Satechi Bluetooth Wireless Universal Game Controller Gamepad for Samsung Galaxy Note HTC LG Android Tablet PC Samsung Gear VR",
"First Act FG127 Acoustic Guitar",
"Marshall MS2 Battery-Powered Micro Guitar Amplifier",
"Pearl RS584CC31 Roadshow 4-Piece Drum Set, Jet Black"
],
"history_stars": [
5.0,
1.0,
1.0,
4.0,
4.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 26,
"target_item_id": 11873,
"target_title": "On-Stage Keyboard Dust Cover for 88 Key Keyboards, Black",
"history_ids": [
24009,
8794,
6316,
7786,
8870,
10698,
24823,
23832,
11873
],
"history_titles": [
"Snark SN1 Guitar Tuner (Blue)",
"Chief Raxxess UNS1 Vented Universal Rack Tray Shelf for 19\" Server Racks, with Bottom Slots for Mounting Non-Rack and Half-Rack Equipment",
"Neotech Acoustic Guitar Body (5901002)",
"D'Addario EJ26 Phosphor Bronze Acoustic Guitar Strings, Custom Light, 11-52",
"D'Addario EJ17-B25 Phosphor Bronze Acoustic Guitar Strings, Medium, 13-56, 25 Bulk Sets",
"Behringer Ultracoustic AT108 Ultra-Compact 15-Watt Acoustic Instrument Amplifier",
"ChromaCast CC-KSTAND Double Braced X-Style Pro Series Keyboard Stand with Locking Straps",
"Yamaha PKBB1 Adjustable Padded Keyboard X-Style Bench, black",
"On-Stage Keyboard Dust Cover for 88 Key Keyboards, Black"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
2.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 27,
"target_item_id": 12179,
"target_title": "Theremin Fully FCC Compliant Electronic Instrument",
"history_ids": [
11872,
12230,
11872,
12230,
19911,
6721,
13096,
10714,
14728,
5428
],
"history_titles": [
"DigiTech RP70 Guitar Multi-Effects Processor",
" Suzuki Promaster Harmonica, Key of C",
"DigiTech RP70 Guitar Multi-Effects Processor",
" Suzuki Promaster Harmonica, Key of C",
"Leegoal 1pkg Guitar Violin Viola Cello Banjo Contact Mic. Pickup High Quality",
"Hohner1490 1490 Blues Blaster Harmonica, Minor Microphone",
" J. LaSalle LB-20 Carbon Graphite Deluxe Student Violin Bow - 4/4 Size",
"Heet Sound PLUSEBOW Plus E-bow for Guitar",
"Percussion Pluss BL32 Percussion Holder",
"Record Producer Deluxe"
],
"history_stars": [
4.0,
5.0,
4.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 28,
"target_item_id": 1175,
"target_title": "NO SWEAT BUNDLE! Lady Anti-Monkey Butt Powder (6oz) AND Fresh Breasts Lotion, The Solution for Women (3.4 OZ tube)",
"history_ids": [
36876,
36924,
36539,
36739,
36888
],
"history_titles": [
"Snuggle Exhilarations Liquid Fabric Softener, Blue Iris & Ocean Breeze, 32 Fluid Ounces, 37 Loads",
"Seventh Generation Bathroom Tissue 300 Count, 2 Ply",
"Charmin Freshmates Flushable Wipes with Refillable Tub, 40 Count",
"Cottonelle FreshCare Flushable Cleansing Cloths Refill, 168 Count",
"Finish Hard Water Booster Powder, Lemon Sparkle, 14oz"
],
"history_stars": [
5.0,
4.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 29,
"target_item_id": 2154,
"target_title": "Houseables Roller Bottles, 10 ml, 1/3 oz, 6 Pack, Cobalt Blue, Glass, Plastic Roll On Ball, Perfume Aromatherapy Bottle, Black Cap",
"history_ids": [
5386,
17275,
23581,
9694,
17414,
15752,
9309
],
"history_titles": [
"Audio-Technica AT92ECD Universal Replacement Magnetic Phono Cartridge",
"Protec Double Professional 4/4 Violin PRO PAC Case (Wine Interior) - Black",
"A Guarneri 4/4 Violin Rosewood Chin Rest with Standard Brackets Vwws",
"Poehland 600P Violin Shoulder Pad",
"Casio SA-76 EDP Personal Keyboard Package with Closed-Cup Headphones, Power Supply and Instructional Software",
"Bonmusica 4/4 Violin Shoulder Rest",
"Players Products Music Stand (BSVP)"
],
"history_stars": [
4.0,
4.0,
3.0,
3.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 30,
"target_item_id": 28120,
"target_title": "Yamaha REFACE DX Portable FM Synthesizer",
"history_ids": [
12455,
12455,
12804,
22813
],
"history_titles": [
"Behringer MS20 24-Bit/192 kHz Digital 20-Watt Stereo Near Field Studio Monitor Speakers",
"Behringer MS20 24-Bit/192 kHz Digital 20-Watt Stereo Near Field Studio Monitor Speakers",
"Memorex MKS-SS2 SingStand 2 Home Karaoke System",
"M-Audio M3-8 | 3-Way Active Studio Monitor Speaker with 8-inch Woven Kevlar Woofer (Single/Black)"
],
"history_stars": [
5.0,
5.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 31,
"target_item_id": 33356,
"target_title": "Twinings Darjeeling Tea, 50 ct (Pack of 3)",
"history_ids": [
32475,
31606,
31606,
37025,
37017
],
"history_titles": [
"3 Pack - Prickly Pear Syrup - 23 oz - Giant Size - Made from Natural Prickly Pear Juice - Cactus - Southwest",
"Saco Cultured Buttermilk for Cooking and Baking, Powdered, 12 oz",
"Saco Cultured Buttermilk for Cooking and Baking, Powdered, 12 oz",
"King Arthur Flour 100% s Organic Unbleached White Whole Wheat Flour, 5 Pound",
"King Arthur Flour Unbleached All-Purpose Flour, 5 Pound"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 32,
"target_item_id": 18985,
"target_title": "Seismic Audio - SAGPC6-6 - 6 Pack Pedal Board Pro Effects Cables 1/4" Patch Cables Right Angle",
"history_ids": [
6308,
7799,
7786,
8870,
6057
],
"history_titles": [
"Ernie Ball Not Even Slinky Nickel Wound Set, .012 - .056",
"D'Addario EJ14 80/20 Bronze Acoustic Guitar Strings, Light Top/Medium Bottom/Bluegrass, 12-56",
"D'Addario EJ26 Phosphor Bronze Acoustic Guitar Strings, Custom Light, 11-52",
"D'Addario EJ17-B25 Phosphor Bronze Acoustic Guitar Strings, Medium, 13-56, 25 Bulk Sets",
"Gibson Regular Style 2 Inch Safety Guitar Strap, Jet Black"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 33,
"target_item_id": 21052,
"target_title": "Musiclily Metal 4 Hole Guitar Neck Plate for Fender Stratcaster Telecaster Guitar or Bass,Gold",
"history_ids": [
25832,
18860,
12578,
23189,
24685,
9325,
19178
],
"history_titles": [
"National NP1-8T Thumb & Finger Pick Pack - Stainless Steel/Mock Tortoise - Large",
"SX Lap 2 Ash NA Electric Lap Steel Guitar w/Stand & Bag",
"Musician's Gear Deluxe Amp Stand Black",
"Musiclily 6-in-line Guitar Tuners Tuning Pegs Keys Machine Head Set Right Hand,Keystone Button Black",
"Copper Tape EMI Shielding for Electric & Bass Guitar Pickups & Quadcopter Shielding",
"EMINENCE LILTEXAS 12-Inch Lead/Rhythm Guitar Speakers",
"On-Stage RS6000 Foldable Tiltback Amp Stand"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 34,
"target_item_id": 24226,
"target_title": "Shure CVL Centraverse Clip-On Lavalier Condenser Microphone",
"history_ids": [
6227,
20713,
21988,
20561,
10568
],
"history_titles": [
"Pioneer SE-DJ5000 Dj Headphones",
"Shure Gooseneck Condenser Microphone with Integrated Desktop Base",
"Samson Concert 88 Headset 16-Channel True Diversity UHF Wireless System (Channel C)",
"Shure CVD-B XLR Desktop Base, 12-Inch Cable (Black)",
"Behringer Ultra-DI DI400P Professional High-Performance Passive DI-Box"
],
"history_stars": [
5.0,
5.0,
2.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 35,
"target_item_id": 36736,
"target_title": "Cottonelle FreshCare Flushable Wipes Refill Tub, 42 Flushable Wet Wipes, Lightly Scented",
"history_ids": [
36056,
36056,
36182,
36498,
36513,
36516
],
"history_titles": [
" Nutella Hazelnut Spread, 13 Ounce Jar",
" Nutella Hazelnut Spread, 13 Ounce Jar",
"Crisco Pure Canola Oil, 48 Fl Oz",
"Australian Gold Dark Intensifier Tanning Oil, Colorboost Maximizer, Native Australian Tea Tree Oil & Banana Extract, Cruelty Free, 8 Ounce",
"Lubriderm Men's 3-In-1 Fragrance-Free Lotion, 16 fl. oz",
"Olay Total Effects Age Defying Wet Cleansing Cloths, 30 Count"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 36,
"target_item_id": 18269,
"target_title": "Arriba Padded Multi Purpose Case Atp-22 Top Stackable Case Dims 22X12X15 Inches",
"history_ids": [
3898,
10327,
16886,
18270
],
"history_titles": [
"Limitless Creations X806 5.1 Surround Sound Computer/Multimedia Speakers System for PC or Home Use with Remote",
"Arriba Cases AC-125",
"American Dj H20 Dmx Pro Led Water Light",
"Arriba Padded Multi Purpose Case Acr-22 Bottom Rolling Stackable Case Dims 22X12X15 Inches"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 37,
"target_item_id": 10281,
"target_title": "On-Stage KT7800+ Deluxe X-Style Bench",
"history_ids": [
7746,
12178,
12178,
7530
],
"history_titles": [
"Truetone 1 Spot Adapter",
"On-Stage Keyboard Dust Cover for 61 or 76 Key Keyboards, Black",
"On-Stage Keyboard Dust Cover for 61 or 76 Key Keyboards, Black",
"String Swing CC01KOAK Hardwood Home & Studio Guitar Hanger"
],
"history_stars": [
4.0,
5.0,
5.0,
4.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 38,
"target_item_id": 25605,
"target_title": "2015 Gibson Les Paul Studio in Manhattan Midnight",
"history_ids": [
11917,
11917,
10185,
15218
],
"history_titles": [
"[OLD MODEL] Vox amPlug AC30 Guitar Headphone Amp",
"[OLD MODEL] Vox amPlug AC30 Guitar Headphone Amp",
"DIMARZIO ep1105Selector",
"Kustom KG212FX 30W 2 x 12 Guitar Combo Amp with Digital Effects"
],
"history_stars": [
4.0,
4.0,
3.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 39,
"target_item_id": 7458,
"target_title": "John Pearse 100XL 80/20 Bronze Acoustic Guitar Strings (Standard)",
"history_ids": [
6285,
7243,
13296,
20571,
9185,
13278,
14194
],
"history_titles": [
"Squier by Fender Affinity Jazz Beginner Electric Bass Guitar - Rosewood Fretboard, Brown Sunburst",
"Squier 'Mini' - Torino Red with Picks, Tuner, Strap, and Amp",
"Shaky Jimi Vibe",
"Souldier Custom GS0251NM05WB Acoustic Guitar Strap",
"Planet Waves Restore Guitar Polish",
"Everly Guitar Picks (30023)",
"Gibson J-45 Standard Acoustic-Electric Guitar, Vintage Sunburst"
],
"history_stars": [
4.0,
4.0,
1.0,
5.0,
5.0,
5.0,
2.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 40,
"target_item_id": 23999,
"target_title": "12 Feet GAVITT Cloth-Covered Pre-Tinned Pushback 22AWG Vintage-Style Guitar Wire",
"history_ids": [
16178,
6139,
6056,
15285,
24239,
6089
],
"history_titles": [
"Gibson Historic Knob Pointers, Nickel",
"Gibson Gear PRWA-030 Switchwasher - Creme with Gold Imprint",
"Gibson Gear PRPG-030 Les Paul Pickguard, Creme",
"Gibson Gear PRMK-030 Replacement Parts",
"6 feet Gavitt Single-Conductor Braided Shield Cable Guitar Wire",
"Gibson Gear PRPB-030 Pickguard Bracket, Nickel"
],
"history_stars": [
5.0,
3.0,
3.0,
3.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 41,
"target_item_id": 31159,
"target_title": "Neewer Traditional Wind Up Mechanical Metronome for Piano Guitar Bass Drum Violin and Other Musical Instruments NW-707(Blue)",
"history_ids": [
6058,
21056,
6030,
29520
],
"history_titles": [
"Gibson Top Hat Knobs - 4 Pack, Amber",
"Hohner 7542BX-C Discovery 48 Chromatic Harmonica",
"Gibson Gear PRTK-020 Electric Guitar Part",
"Neewer NW-707 Traditional Wind Up Mechanical Metronome for Piano Guitar Bass Drum Violin and Other Musical Instruments (Black)"
],
"history_stars": [
5.0,
4.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 42,
"target_item_id": 29585,
"target_title": "Musiclily Martin Style D28 Oversize Teardrop Self Adhesive Acoustic Guitar Pickguard Pick Guards Scratch Plate, White Pearl",
"history_ids": [
10743,
9909,
24440,
27686
],
"history_titles": [
"3 x Stainless Steel, Open Design, Metal Finger Picks for Guitar, Banjo, Dobro, etc. Fingerstyle picks. Banjo picks, fingerpicks, finger picks for acoustic guitar. Adjustable large medium or small",
"D'Andrea 1312 Banjo Strap (Colors May Vary)",
"Hamzer 61-Key Digital Music Piano Keyboard - Portable Electronic Musical Instrument - LCD Display",
"Donner Guitar Tuner Clip on-Accurate Chromatic,Acoustic Guitar Bass Violin Ukulele Tuner DT-2"
],
"history_stars": [
4.0,
4.0,
5.0,
4.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 43,
"target_item_id": 18933,
"target_title": "Kluson SD90SLN Tuners, 3 Per Side, Gibson Style, Nickel/Pearl",
"history_ids": [
25564,
7624,
7627,
18559
],
"history_titles": [
"Nordic Essentials Aluminum Metal Universal Guitar Capo, 1.2 oz (2 Pack) - Green and Blue for 6 and 12 String Instruments",
"Dunlop 211 Tempered Glass Slide, Heavy Wall Thickness, Small",
"Dunlop 218 Tempered Glass Slide, Heavy Wall Thickness, Medium/Short",
"SKB SKB-61 Deluxe Double Cutaway Electric Guitar Case"
],
"history_stars": [
4.0,
4.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 44,
"target_item_id": 22193,
"target_title": "ADM 1/2 Half Size Well Balanced Brazilwood Violin Bow with Wood Stick, Horsehair, Ebony Frog with Pearl Eye and Pearl Slide, Nickel Silver Mounted",
"history_ids": [
27431,
21256,
7377,
2403
],
"history_titles": [
"YMC Metal Wire Music Stand + Gig Bag + Polishing Cloth - Black",
"Gator Frameworks 'A' Frame Folding Guitar Stand; Holds Electric or Acoustic Guitar (GFW-GTRA-4000)",
"Kun Original 4/4 Violin Shoulder Rest",
"STONG Family Size Sg-103 Zero Germ UV Light 3-5 Minute Toothbrush Holders Sanitizing timer Sanitizer Sterilizer with Cleaning Cloth"
],
"history_stars": [
5.0,
5.0,
4.0,
3.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 45,
"target_item_id": 36972,
"target_title": "Chicken of the Sea White Albacore Tuna in Water, Solid, 5 Ounce Cans (Pack of 4)",
"history_ids": [
35709,
35739,
35854,
36180
],
"history_titles": [
"Dole Fruit Bowls, Diced Peaches in 100% Fruit Juice, 4 Ounce (4 Cups), All Natural Diced Peaches Packed in Fruit Juice, Naturally Gluten Free, Non-GMO, No Artificial Sweeteners",
"Old El Paso Taco Shells, Stand 'n Stuff, 10 Count",
"ReaLemon 100% Lemon Juice, 8 Fluid Ounce Bottle",
"Smucker's Squeeze Reduced Sugar Strawberry Fruit Spread, 17.4 Oz"
],
"history_stars": [
3.0,
5.0,
5.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 46,
"target_item_id": 20607,
"target_title": "Souldier Custom GS0273BR04DB Handmade Dresden Guitar Strap, Seafoam Brown",
"history_ids": [
10545,
14618,
22231,
27889,
15762,
17778
],
"history_titles": [
"Behringer V-Tone Acoustic Driver DI ADI21 Amp Modeler/Direct Recording Preamp/DI Box",
"Oscar Schmidt OM10EWH Acoustic Electric Mandolin",
"Hola! Heavy Duty A & F Style Mandolin Gig Bag (Soft Case) with 15mm Padding, Black",
"MUSIC FIRST Cartoon Hero Soft Cotton & Genuine Leather Ukulele Strap Ukulele Shoulder Strap Version 2.0",
"Instrument Stand for Violin, Ukulele and Other Small Instruments",
"Oscar Schmidt OU55CE Koa Cutaway Baritone Acoustic-Electric Ukulele Bundle with Gig Bag, Austin Bazaar Instructional DVD, Clip-On Tuner, and Cloth"
],
"history_stars": [
5.0,
5.0,
5.0,
5.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 47,
"target_item_id": 9204,
"target_title": "Rovner C3R MK III Bari Sax Ligature",
"history_ids": [
6971,
8851,
8867,
8851,
6972,
7236,
17943,
9639
],
"history_titles": [
"DAddario Woodwinds La Voz Tenor Sax Reeds, Strength Medium-Hard, 10-pack - RKC10MH",
"H.W. Alto Sax Pad-Saver",
"HWP H-TGN Pad Saver for Tenor Saxophone Gooseneck",
"H.W. Alto Sax Pad-Saver",
"DAddario Woodwinds La Voz Alto Sax Reeds, Strength Medium-Hard, 10-pack - RJC10MH",
"Protec PB304 Alto Saxophone PRO PAC Case - Rectangular",
"Jazzlab SAXHOLDER Saxophone Harness",
"Hercules DS535B BARITONE Sax Stand"
],
"history_stars": [
4.0,
4.0,
5.0,
4.0,
5.0,
4.0,
1.0,
2.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 48,
"target_item_id": 8185,
"target_title": "JJ Electronics Amplifier Tube (T-12AX7-S-JJ)",
"history_ids": [
24006,
24065,
7295,
30224
],
"history_titles": [
"Snark SN1 Guitar Tuner",
"Set of 4 (4X) CTS 500K Short Split Shaft Audio Taper Potentiometers",
"String Swing Metal Home and Studio Wide Guitar Hanger (Black)",
"Build your Fuzz Effects Pedal Kits DIY Electric Guitar Stomp Box Kit (chrome)"
],
"history_stars": [
4.0,
4.0,
5.0,
3.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 49,
"target_item_id": 13845,
"target_title": "D'Addario Assorted Pearl Celluloid Guitar Picks, 10 Pack, Medium",
"history_ids": [
6229,
7525,
7524,
13848,
16915
],
"history_titles": [
"Fender Mini Acoustic Guitar Stand",
"Planet Waves Classic Series Instrument Cable, Right Angle Plug , 10 feet",
"Planet Waves Classic Series Instrument Cable, 15 feet",
"Planet Waves Black Pearl Celluloid Guitar Picks, 100 pack, Extra Heavy",
"Powerwerks PA System (PW50)"
],
"history_stars": [
5.0,
5.0,
5.0,
4.0,
5.0
],
"budget": 1.0,
"split": "test"
},
{
"user_id": 50,
"target_item_id": 8566,
"target_title": "D'Addario EXL150H Nickel Wound Electric Guitar Strings, High-Strung/Nashville Tuning, 10-26",
"history_ids": [
34737,
5640,
8521,
13599,
16121,
24009,
6531,
7785,
7783
],
"history_titles": [
"iHip NFF10200NOS NFL New Orleans Saints Mini Ear Buds, Gold/Black",
"Epiphone Les Paul SPECIAL-II Electric Guitar, Vintage Sunburst",
"Musician's Gear Braided Instrument Cable 1/4\" Black 10 ft.",
"Legacy Pearloid Guitar Picks - 60 Assorted (.46MM - 1.5MM)",
"Rogue G10 10W 1x5 Guitar Combo Amp Black",
"Snark SN1 Guitar Tuner (Blue)",
"D'Addario EXL120-7 Nickel Wound 7-String Electric Guitar Strings, Super Light, 9-54",
"D'Addario EXL120+ Nickel Wound Electric Guitar Strings, Super Light Plus, 9.5-44",
"D'Addario EJ21 Nickel Wound Electric Guitar Strings, Jazz Light, 12-52"
],
"history_stars": [
5.0,
5.0,
5.0,
4.0,
5.0,
5.0,
4.0,
4.0,
4.0
],
"budget": 1.0,
"split": "test"
}
] |