File size: 94,705 Bytes
95c37a8 | 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 | {
"model_name": "qwen3vl_instruct",
"model_path": "/mnt/bn/bohanzhainas1/changshuochen/Qwen3-VL-8B-Instruct",
"frames_per_video": 8,
"max_pixels": 112896,
"total_samples": 133,
"accuracy": 0.487,
"correct": 56,
"evaluated": 115,
"parse_failures": 18,
"per_class": {
"0": {
"precision": 0.4239,
"recall": 0.8667,
"f1": 0.5693,
"support": 45
},
"1": {
"precision": 0.7391,
"recall": 0.2429,
"f1": 0.3656,
"support": 70
}
},
"results": [
{
"key": "7582864625457384725_7592503137240386834",
"view_gid": "7582864625457384725",
"pub_gid": "7592503137240386834",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Both videos feature the same core concept: a colander being used in a repetitive, rhythmic motion with a spoon, accompanied by text overlays. The visual style, object, and action are nearly identical, suggesting that Video 2 was directly inspired by or a copy of Video 1. The slight variation in text (\\\"SYBAU FAITH\\\" vs \\\"SYBAU 67\\\") and background (gray surface vs wooden surface) does not negate the causal relationship, as these are common variations in user-generated content responding to a viral template. The consistent use of the colander and spoon motion strongly indicates"
},
{
"key": "7583298662386650389_7603817886603300103",
"view_gid": "7583298662386650389",
"pub_gid": "7603817886603300103",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos use the exact same text overlay \\\"REFLEXÃO NADA É POR ACASO\\\" and follow the same format of displaying inspirational religious messages with changing background visuals. The content and structure are identical, indicating that Video 2 was likely created as a direct response or re-creation inspired by Video 1.\", \"label\": 1}"
},
{
"key": "7583769463078800643_7603057302106656022",
"view_gid": "7583769463078800643",
"pub_gid": "7603057302106656022",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 consists of photos of people posing with movie/animation characters (e.g., Chip and Dale, The Lego Movie, The Croods, etc.), while Video 2 is a meme-style video using a recurring animated character (a cartoon man with glasses and a halo) reacting to scenes from The Legend of Zelda. There is no shared template, meme, challenge, or direct inspiration between the two videos. The content and themes are unrelated.\", \"label\": 0}"
},
{
"key": "7584143881545977110_7593173975707028758",
"view_gid": "7584143881545977110",
"pub_gid": "7593173975707028758",
"class_name": "Music",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features a person named SCHWARZKOPF showing his first song, while Video 2 is a music video by KSHH with different visuals, lyrics, and style. There is no evidence that watching Video 1 inspired or caused the creation of Video 2. The content, artist, and context are entirely different.\", \"label\": 0}"
},
{
"key": "7584459358449405202_7604337545559674132",
"view_gid": "7584459358449405202",
"pub_gid": "7604337545559674132",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Both videos feature religious messages overlaid on nature scenes, but they differ significantly in content and style. Video 1 uses a 'Streak of the day' format with a simple, repetitive message ('Jesus loves you') and a desolate, snowy landscape. Video 2 uses a specific Bible verse (Isaiah 66:13) with a lush, tropical setting. The themes are related (spiritual encouragement), but the execution, text, and visual context are distinct enough that Video 1 did not directly inspire or cause Video 2. The lack of shared meme, template, or challenge"
},
{
"key": "7584515446049656086_7592960395527146774",
"view_gid": "7584515446049656086",
"pub_gid": "7592960395527146774",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Both videos involve car cleaning, but Video 1 focuses on interior cleaning (car mats, pedals) while Video 2 focuses on exterior cleaning (van body). The products and methods differ (e.g., 'Guf' in Video 1 vs. 'NetExpert' in Video 2), and there's no shared template, challenge, or meme. The content is related broadly (car cleaning) but not causally linked.\", \"label\": 0}"
},
{
"key": "7585337388545723681_7593386207040507169",
"view_gid": "7585337388545723681",
"pub_gid": "7593386207040507169",
"class_name": "Outfit",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a dance challenge to 'The Big One Song' with participants wearing puffer jackets and performing synchronized movements. Video 2 shows a person in a similar puffer jacket but without any dance or song context, simply posing and showcasing the jacket. There is no evidence that watching Video 1 inspired the creation of Video 2, as the content, context, and intent are entirely different. The only shared element is the puffer jacket, which is not sufficient to establish causal inspiration.\", \"label\": 0}"
},
{
"key": "7586774649753718038_7593408077811207427",
"view_gid": "7586774649753718038",
"pub_gid": "7593408077811207427",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a person changing a tire without a jack, with a humorous caption. Video 2 is a showcase of a luxury car at a charging station. There is no visual, thematic, or contextual link between the two videos — one is about a practical, humorous car-related struggle, the other is a polished display of a high-end vehicle. The content and intent are unrelated, so no inspiration or causation exists.\", \"label\": 0}"
},
{
"key": "7588310732303879432_7595998237404761362",
"view_gid": "7588310732303879432",
"pub_gid": "7595998237404761362",
"class_name": "Movies_TVworks",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a festive outdoor scene with a large Christmas tree structure near the water, while Video 2 depicts a beach party with people dancing and drinking. There is no shared visual template, meme, challenge, or song between the two videos. The content and context are entirely different, with no clear causal or inspirational link.\", \"label\": 0}"
},
{
"key": "7589478401866616084_7592464439727623445",
"view_gid": "7589478401866616084",
"pub_gid": "7592464439727623445",
"class_name": "Diary_VLOG",
"gt_label": 0,
"pred_label": 1,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature a person holding and showcasing crystals or mineral specimens, with text overlays promoting a live show. The format is consistent: a hand holding a unique crystal, rotating it for the camera, with promotional text about a live event. This suggests Video 2 was inspired by or directly copied from the style and structure of Video 1, making them causally related.\", \"label\": 1}"
},
{
"key": "7589598278531009813_7604139924731809045",
"view_gid": "7589598278531009813",
"pub_gid": "7604139924731809045",
"class_name": "Comics_Cartoon_Anime",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features a child riding various animals (rabbit, elephant, cat, panda) in outdoor, nature-themed settings, while Video 2 shows a child playing indoors with a cat and toys. The settings, subjects, and overall themes are completely different. Video 1 is about animal rides in nature, while Video 2 is about indoor play. There is no visual, thematic, or stylistic connection that suggests Video 1 inspired Video 2.\", \"label\": 0}"
},
{
"key": "7590080459309124886_7602942433009159446",
"view_gid": "7590080459309124886",
"pub_gid": "7602942433009159446",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Video 2 directly replicates the format and humor of Video 1. Both videos use the same joke structure: a person claims 'My knee hurts,' followed by a follow-up question 'Which knee?' and then a comedic reveal of the specific knee. The text overlays, poses, and even the exaggerated expressions mirror Video 1, indicating that Video 2 was inspired by and likely a direct reaction to Video 1.\", \"label\": 1}"
},
{
"key": "7590122947935735062_7602760876478745878",
"view_gid": "7590122947935735062",
"pub_gid": "7602760876478745878",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person posing with a heart filter in a selfie-style format, while Video 2 uses a starry night filter with a different aesthetic and appears to be a lip-sync video. There is no shared template, challenge, or song that links them directly. The content, filters, and context are distinct.\", \"label\": 0}"
},
{
"key": "7590736059038698760_7604236963700329736",
"view_gid": "7590736059038698760",
"pub_gid": "7604236963700329736",
"class_name": "Traditional_Sports",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a person jumping into water from a bridge, while Video 2 shows a person playing golf. These are entirely different activities and settings, with no shared meme, challenge, song, or template. The actions and environments are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7591396054570896660_7602174366645865736",
"view_gid": "7591396054570896660",
"pub_gid": "7602174366645865736",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a woman emotionally reacting to a dog's situation, including vet visits and emotional moments, while Video 2 is a simple, affectionate showcase of a different dog named Kiara. There is no shared meme, challenge, template, or direct inspiration between the two videos. The content and emotional tone differ significantly, and Video 2 does not appear to be a reaction or copy of Video 1.\", \"label\": 0}"
},
{
"key": "7591603142207474952_7592657430761295124",
"view_gid": "7591603142207474952",
"pub_gid": "7592657430761295124",
"class_name": "Pets",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"The two videos depict entirely different scenarios: Video 1 shows a dog attempting to climb a fence, while Video 2 shows cats and raccoons interacting at night. There is no shared meme, challenge, template, or direct inspiration between the two. The content, animals, setting, and context are unrelated.\", \"label\": 0}"
},
{
"key": "7591633885876833543_7592914268626930952",
"view_gid": "7591633885876833543",
"pub_gid": "7592914268626930952",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person with tattoos and sunglasses making expressive facial gestures outdoors, while Video 2 shows a person indoors making exaggerated facial expressions in a different context. There is no shared meme, challenge, song, or template between them, and the content and style are distinct.\", \"label\": 0}"
},
{
"key": "7592127916369022215_7592811493075225877",
"view_gid": "7592127916369022215",
"pub_gid": "7592811493075225877",
"class_name": "Family",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a woman in a car making expressive gestures, likely reacting to something, while Video 2 is a family photo with text overlay about using ChatGPT to create a family. There is no shared meme, challenge, song, or template between the two videos. The content and context are unrelated.\", \"label\": 0}"
},
{
"key": "7592292714314566934_7603000520394968342",
"view_gid": "7592292714314566934",
"pub_gid": "7603000520394968342",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 0,
"pred_label": 1,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature white cars and are shot in similar outdoor residential settings, suggesting a possible inspiration or trend-following behavior. The style of showcasing the car (angles, transitions, and focus on details) in Video 2 mirrors the aesthetic of Video 1, indicating that Video 1 likely inspired Video 2.\", \"label\": 1}"
},
{
"key": "7592363769301388575_7592557472821382420",
"view_gid": "7592363769301388575",
"pub_gid": "7592557472821382420",
"class_name": "Diary_VLOG",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is a personal, emotionally charged moment involving a couple and a failed call, while Video 2 is a vlog about resuming school and daily life. There is no shared meme, challenge, song, or template between them. The content, tone, and context are entirely different, indicating no causal or inspirational link.\", \"label\": 0}"
},
{
"key": "7592379393456999688_7592812522206514452",
"view_gid": "7592379393456999688",
"pub_gid": "7592812522206514452",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Both videos involve car detailing, but Video 1 focuses on exterior detailing of a red Tesla, while Video 2 focuses on interior detailing of a different car. The content, style, and specific actions (exterior vs. interior) are distinct, and there is no clear indication that watching Video 1 inspired the creation of Video 2. The two videos are in the same broad category (cars) but lack direct causal or inspirational linkage.\", \"label\": 0}"
},
{
"key": "7592395525857627448_7592424707811446034",
"view_gid": "7592395525857627448",
"pub_gid": "7592424707811446034",
"class_name": "Movies_TVworks",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a psychological horror-themed video with text overlays describing a woman battling inner demons and being haunted by an entity, using dark imagery and a suspenseful tone. Video 2 is a 'Bargain Bin Massacre' review video featuring a man showcasing a horror movie Blu-ray. While both involve horror content, the themes, formats, and specific elements (e.g., text overlays, visual style, narrative structure) are entirely different. There is no clear causal or inspirational link between the two videos.\", \"label\": 0}"
},
{
"key": "7592396786472455445_7592776503407037716",
"view_gid": "7592396786472455445",
"pub_gid": "7592776503407037716",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features a person showcasing motorcycles with a text overlay advertising a price and promotion, while Video 2 shows a man posing with a motorcycle but without any promotional text or similar format. There is no evidence that Video 2 was inspired by or directly copied from Video 1's format, meme, or challenge. The content and style are unrelated.\", \"label\": 0}"
},
{
"key": "7592406759860423943_7592469167501102344",
"view_gid": "7592406759860423943",
"pub_gid": "7592469167501102344",
"class_name": "Fitness",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is about a person visiting a Tim Hortons restaurant and enjoying a drink, while Video 2 is about a person showcasing their fitness and muscle definition in a gym. There is no shared meme, challenge, song, or template between the two videos. The content and context are entirely unrelated, so Video 1 did not cause or inspire Video 2.\", \"label\": 0}"
},
{
"key": "7592439822283705607_7592708834959904001",
"view_gid": "7592439822283705607",
"pub_gid": "7592708834959904001",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 shows a gray car in a showroom, while Video 2 features a man speaking in a car dealership with multiple cars in the background. Although both videos are in the same category (Cars_Trucks_Motorcycles) and take place in car-related settings, there is no evidence that Video 1 inspired or caused Video 2. The content, format, and purpose of the videos are different: Video 1 is a simple car showcase, while Video 2 is a promotional or sales-oriented video with a person speaking to the camera. There is no shared meme, challenge, song, or template between"
},
{
"key": "7592441861743136007_7592686503755582727",
"view_gid": "7592441861743136007",
"pub_gid": "7592686503755582727",
"class_name": "Traditional_Sports",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature golf swings on a practice mat, but Video 1 is outdoors with a young person and includes French text overlays, while Video 2 is indoors with an older person and includes French text about golf rules. The settings, subjects, and content are different enough that Video 1 did not directly inspire Video 2.\", \"label\": 0}"
},
{
"key": "7592612029127494934_7593372133087022358",
"view_gid": "7592612029127494934",
"pub_gid": "7593372133087022358",
"class_name": "Diary_VLOG",
"gt_label": 0,
"pred_label": 1,
"match": false,
"prediction": "{\"reasoning\": \"Both videos use the identical text overlay: \\\"when someone asks us how uni is going but we treat it as a side hobby so wouldn't know.\\\" This exact phrase and format are reused across both videos, indicating that Video 2 was directly inspired by or a reaction to Video 1. The content and structure are nearly identical, suggesting a clear causal relationship.\", \"label\": 1}"
},
{
"key": "7592621669458480417_7593325946653003030",
"view_gid": "7592621669458480417",
"pub_gid": "7593325946653003030",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person reacting to snow or wind outdoors with expressive facial gestures, while Video 2 is a close-up lipsync video with a person lying down indoors, making different facial expressions. There is no shared meme, challenge, song, or template between them. The contexts, settings, and expressions are distinct, indicating no direct inspiration or causation.\", \"label\": 0}"
},
{
"key": "7592630277092936980_7592934574200605974",
"view_gid": "7592630277092936980",
"pub_gid": "7592934574200605974",
"class_name": "FingerDance_BasicDance",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person performing a basic finger dance in a bathroom setting, while Video 2 shows a person dancing in a hallway with a black-and-white filter and the text 'My fyp lately 😊'. The dance styles, settings, and visual aesthetics are different, and there is no clear indication that Video 1 inspired Video 2.\", \"label\": 0}"
},
{
"key": "7592662940269006113_7593135968987696406",
"view_gid": "7592662940269006113",
"pub_gid": "7593135968987696406",
"class_name": "Pets",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"The two videos feature different cats in different settings and do not share the same meme, challenge, or template. Video 1 shows a tabby kitten standing on its hind legs in a playful manner, while Video 2 shows a fluffy orange kitten being bathed and drying off. There is no direct inspiration or causal link between the two videos.\", \"label\": 0}"
},
{
"key": "7592695844491644178_7593247873295289622",
"view_gid": "7592695844491644178",
"pub_gid": "7593247873295289622",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person reacting to or lip-syncing to text about manga eyes, while Video 2 uses a bear filter with glitter effects. There is no shared meme, challenge, song, or template between them.\", \"label\": 0}"
},
{
"key": "7592734749563653384_7593673083739802898",
"view_gid": "7592734749563653384",
"pub_gid": "7593673083739802898",
"class_name": "Diary_VLOG",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a travel vlog showcasing local food and landmarks in Hokkaido, while Video 2 is a personal dining experience at a restaurant. There is no shared meme, challenge, template, or direct inspiration between the two. The content and context are unrelated.\", \"label\": 0}"
},
{
"key": "7592983455659543830_7593423283710610710",
"view_gid": "7592983455659543830",
"pub_gid": "7593423283710610710",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 shows a person reacting to or commenting on a video playing on a TV screen, while Video 2 is a lipsync video with changing colored lights and a cloud ceiling. There is no shared meme, challenge, song, or template between them. The content and context of the two videos are entirely different.\", \"label\": 0}"
},
{
"key": "7593033792315575574_7593099150867172630",
"view_gid": "7593033792315575574",
"pub_gid": "7593099150867172630",
"class_name": "Music",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a DJ setup with a text overlay promoting a music release, while Video 2 is a promotional video for a music release on SoundCloud with a circular video clip. Although both are music promotion videos, they use completely different visual styles, content, and formats. Video 1 is a live DJ performance shot, while Video 2 is a stylized, circular video clip. There is no shared template, meme, or direct inspiration between the two videos.\", \"label\": 0}"
},
{
"key": "7593219919349566741_7595664852438338823",
"view_gid": "7593219919349566741",
"pub_gid": "7595664852438338823",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature the same phrase \\\"Unos besos/sabores con sabor a fierro\\\" (\\\"Some kisses with an iron taste\\\") and use a similar lip-syncing format. The content, text, and style are nearly identical, indicating that Video 2 was likely inspired by or a direct reaction to Video 1. This is a clear case of a viral challenge or meme being replicated.\", \"label\": 1}"
},
{
"key": "7593374120054656276_7604306674219863303",
"view_gid": "7593374120054656276",
"pub_gid": "7604306674219863303",
"class_name": "Music",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 features a group of people in streetwear, some wearing masks, performing a choreographed or coordinated action in an urban setting, possibly as part of a viral challenge or meme. Video 2, however, is a stylized, glitchy, and abstract video with text overlays like 'BROAD IN THE STREET DAY' and 'I'M GONE I'M BACKING MY SET', which appears to be a music video or artistic expression with no direct visual or thematic connection to the street scene in Video 1. The aesthetic, content, and intent are completely different, indicating no causal relationship.\", \""
},
{
"key": "7593727005841968391_7595431144884129035",
"view_gid": "7593727005841968391",
"pub_gid": "7595431144884129035",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 and Video 2 both use the same meme format: a Roblox character or other character reacting to a gaming situation with text overlays. The text in Video 2 ('Meto 50 espadazos en una partida', 'Hacker tenia que ser', etc.) directly mirrors the text in Video 1 ('Metes 50 parrys en una partida', 'Ió Focuseo por hacker', etc.). This indicates that Video 2 was inspired by Video 1, using the same template and meme structure.\", \"label\": 1}"
},
{
"key": "7593819989833026834_7604240520432520466",
"view_gid": "7593819989833026834",
"pub_gid": "7604240520432520466",
"class_name": "Fitness",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a person reacting to music in a car, while Video 2 is a fitness-themed video with the word 'movement' overlaid, showing various gym activities. There is no shared meme, challenge, song, or template between the two videos. The content and context are unrelated.\", \"label\": 0}"
},
{
"key": "7594557794372652309_7604204623724809479",
"view_gid": "7594557794372652309",
"pub_gid": "7604204623724809479",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 uses a driving footage template with sequential text overlays related to spiritual warfare, while Video 2 uses a prayer/quote template with religious imagery and serene nature scenes. The formats, visual styles, and thematic content are entirely different, indicating no direct inspiration or causal relationship.\", \"label\": 0}"
},
{
"key": "7594990951328746808_7595755849885289748",
"view_gid": "7594990951328746808",
"pub_gid": "7595755849885289748",
"class_name": "Traditional_Sports",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows horses in a flooded arena, likely during or after a rainstorm, while Video 2 shows a horse race on a dry dirt track with riders competing. The contexts, settings, and events are entirely different. Video 2 is about a competitive race, while Video 1 depicts an unusual, possibly humorous or unfortunate situation due to weather. There is no shared meme, challenge, template, or direct inspiration between the two videos. The content and tone are unrelated.\", \"label\": 0}"
},
{
"key": "7595380926247341332_7602338775099837714",
"view_gid": "7595380926247341332",
"pub_gid": "7602338775099837714",
"class_name": "CelebrityClips_VarietyShow",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 shows a WhatsApp chat with a voice message and a text message saying 'Ni-ki, vai dormir' (Ni-ki, go to sleep), which is a casual, personal interaction. Video 2 is a meme template featuring side-by-side images of celebrities with the caption 'você e sua irmã devem ter os mesmos gostos' (you and your sister must have the same tastes), which is a humorous, viral format. There is no direct connection between the content, context, or format of Video 1 and Video 2. The first video is a private chat"
},
{
"key": "7595395129591024904_7595962701738741000",
"view_gid": "7595395129591024904",
"pub_gid": "7595962701738741000",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a concert with fans holding lights, while Video 2 is a scenic road trip video with BTS-themed text overlays. There is no direct visual, thematic, or content-based connection between the two. The inspiration for Video 2 appears to be a fan's imagination of BTS visiting a location, not a reaction to the concert footage in Video 1.\", \"label\": 0}"
},
{
"key": "7595407496525663506_7595842450577575179",
"view_gid": "7595407496525663506",
"pub_gid": "7595842450577575179",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 is a montage of religious imagery and text overlays discussing theological concepts, particularly around the Trinity and doctrinal divisions. Video 2 is a structured presentation explaining a theological framework called 'Lenguaje Apostólico' (Apostolic Language) that aims to resolve doctrinal debates. While both videos deal with theological topics, Video 1 does not contain any elements (meme, challenge, template, or format) that directly inspired or caused the creation of Video 2. The content of Video 2 is a systematic theological explanation, not a reaction or derivative of the visual/textual style or message"
},
{
"key": "7595414619993246983_7595648604866350354",
"view_gid": "7595414619993246983",
"pub_gid": "7595648604866350354",
"class_name": "Fitness",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a person lifting weights in a gym, while Video 2 is a self-promotional fitness video with a caption about muscle and motivation. There is no direct connection in content, format, or inspiration between the two videos. The first video is a candid gym moment, while the second is a styled, text-overlaid self-showcase. No meme, challenge, or template is shared between them.\", \"label\": 0}"
},
{
"key": "7595460052346096914_7595599161152605447",
"view_gid": "7595460052346096914",
"pub_gid": "7595599161152605447",
"class_name": "Diary_VLOG",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature individuals in traditional costumes with colorful feathered headdresses performing a dance, likely a cultural or folkloric dance. The setting in both videos appears to be an outdoor or semi-outdoor venue with similar architectural elements (e.g., corrugated metal roofs). The movement and attire are consistent across both videos, suggesting that Video 2 was inspired by or directly copied from Video 1. The presence of the same dance style, costumes, and environment indicates a direct causal relationship.\", \"label\": 1}"
},
{
"key": "7595474031126646034_7595640420671982904",
"view_gid": "7595474031126646034",
"pub_gid": "7595640420671982904",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 is a short clip of a person traveling to Argentina with text overlays like 'Cañita rumbo a argentina' and 'EVERYBODY', 'CAÑITA', 'NIVEL', 'WELCOME', 'FAVOR', 'VENGAN', which are part of a viral travel-themed meme or challenge. Video 2 is a live stream with a romantic theme, featuring the text 'FELIZ CAÑITITO' and 'CAÑITA ❤️ OLIVIA', which is a different context and not directly inspired by the travel meme. The content, tone, and"
},
{
"key": "7595812699439648007_7604520050434854152",
"view_gid": "7595812699439648007",
"pub_gid": "7604520050434854152",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 shows a worship or praise event with text overlays in Amharic, while Video 2 features a couple in casual home attire discussing or reacting to something, with no visible connection to the content, style, or context of Video 1. There is no evidence that watching Video 1 inspired or caused the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7597044647780764948_7604054478521748757",
"view_gid": "7597044647780764948",
"pub_gid": "7604054478521748757",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 shows a person reacting to content, likely a stream or video, with visible text overlays and emotional expressions. Video 2 is a series of stylized, artistic illustrations featuring a character named 'Eggman' (from Sonic the Hedgehog) and references to Superman, with text overlays like 'COME ON EGGY' and 'SAY YOUR STUPID LINE!'. While both involve text overlays and character-based content, there is no direct visual, thematic, or structural link between the reactive format of Video 1 and the illustrated, meme-style format of Video 2. The content and"
},
{
"key": "7597788963738324232_7603763715422407957",
"view_gid": "7597788963738324232",
"pub_gid": "7603763715422407957",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a person showcasing colorful knives with text overlays, likely related to a gaming or collector's theme. Video 2 is a gameplay video from a soccer game with player interactions and in-game chat. There is no visual, thematic, or content-based connection between the two videos. The first video focuses on physical objects and aesthetics, while the second is purely gameplay-based. Therefore, watching Video 1 did not cause or inspire Video 2.\", \"label\": 0}"
},
{
"key": "7598938266598952210_7604394570947890440",
"view_gid": "7598938266598952210",
"pub_gid": "7604394570947890440",
"class_name": "Diary_VLOG",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a snowy street in Old Town Toronto, while Video 2 is a weather comparison meme contrasting Toronto's -17°C with Calgary's 8°C. The content of Video 2 is a humorous observation about weather differences, not directly inspired by the visual or thematic elements of Video 1 (which is a simple walk through a snowy urban environment). There is no shared meme, challenge, template, or direct inspiration between the two videos.\", \"label\": 0}"
},
{
"key": "7598981214132849942_7603041768992460054",
"view_gid": "7598981214132849942",
"pub_gid": "7603041768992460054",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos use the same comedic format: a common stereotype ('girls/boys can't cook') is visually represented by balancing an object (a globe on cans in Video 1, a mayonnaise bottle on bread in Video 2) to imply the stereotype is 'unstable' or 'ridiculous'. The structure, text overlay, and humor are directly inspired by the same meme template, making them causally related.\", \"label\": 1}"
},
{
"key": "7599419411836964117_7602328110696090901",
"view_gid": "7599419411836964117",
"pub_gid": "7602328110696090901",
"class_name": "Fitness",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a woman in a celebratory or party setting with text 'Essa não ficou boa, tira outra!' (This didn't turn out good, take another one!), while Video 2 is a gym tour with a timestamp. There is no shared meme, challenge, song, or template between the two. The content and context are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7600049951300685076_7602626609417604370",
"view_gid": "7600049951300685076",
"pub_gid": "7602626609417604370",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a man speaking with text overlays in Portuguese, likely a motivational or reflective message, while Video 2 is a performance video with religious lyrics and imagery. There is no shared meme, challenge, song, or template between the two. The content, tone, and context are entirely different, making them not causally related.\", \"label\": 0}"
},
{
"key": "7600071116324900116_7602337842538368276",
"view_gid": "7600071116324900116",
"pub_gid": "7602337842538368276",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a detailed nail design process, while Video 2 is a comedic skit about a 'secret' for fast nails involving a gag where the client's mouth is taped shut. There is no shared meme, challenge, song, or template between the two videos. The content and tone are completely different, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7600138772541394198_7602907593710767382",
"view_gid": "7600138772541394198",
"pub_gid": "7602907593710767382",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature the same phrase \\\"The worst thing she can say is no\\\" and use a similar format of a person reacting or speaking to the text. The content and structure are nearly identical, indicating that Video 2 was likely inspired by or a direct copy of Video 1.\", \"label\": 1}"
},
{
"key": "7600184266231745810_7603856182331051284",
"view_gid": "7600184266231745810",
"pub_gid": "7603856182331051284",
"class_name": "Food_Display",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is a 'Stranger Things 5' themed reaction video using a filter, while Video 2 is about a Pringles x Stranger Things collaboration product and its augmented reality app. Although both reference 'Stranger Things,' the content and purpose are unrelated: one is a fan reaction video, the other is a product showcase. There is no evidence that watching Video 1 inspired or caused the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7600267409701833992_7604407914765290759",
"view_gid": "7600267409701833992",
"pub_gid": "7604407914765290759",
"class_name": "Singing_Instruments",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 is a cover of 'gnaw riff' by Alex G, while Video 2 is a cover of 'Go Away' by Weezer. They are different songs by different artists, and there is no indication that watching the first video inspired the creation of the second. The only shared element is that both involve playing an acoustic guitar, but this is insufficient to establish a causal or inspirational link.\", \"label\": 0}"
},
{
"key": "7600717184851053846_7603923738865782037",
"view_gid": "7600717184851053846",
"pub_gid": "7603923738865782037",
"class_name": "Pets",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features AI-generated cartoon cats in humorous, exaggerated scenarios (e.g., one cat 'punishing' another for parenting mishaps). Video 2 features a cute, real-looking kitten in a pink dress posing in a city setting. While both involve cats and AI generation, the content, tone, and style are completely different — one is comedic and anthropomorphic, the other is cute and realistic. There is no clear inspiration or causal link between the two videos.\", \"label\": 0}"
},
{
"key": "7600822923275799828_7604562398480977159",
"view_gid": "7600822923275799828",
"pub_gid": "7604562398480977159",
"class_name": "Comics_Cartoon_Anime",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features a cartoon-style animation with a consistent visual template (text overlays, simple backgrounds, character focus) centered around animals (dog, cat). Video 2, while also cartoon-style, depicts a completely different subject (a tank and a spaceship) and uses a different visual style (more abstract, less character-focused, with heavy use of color blocks and explosions). There is no shared meme, challenge, song, or template between the two videos. The content and style are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7600850853821418772_7604066449119857941",
"view_gid": "7600850853821418772",
"pub_gid": "7604066449119857941",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a Minecraft gameplay video with humorous text overlays ('KELP THINKING IT'S META', 'THIS BAD BOY'), while Video 2 is a person reacting to content on a tablet with a caption expressing frustration about children. There is no shared meme, challenge, song, or template between the two videos. The content and context are entirely unrelated.\", \"label\": 0}"
},
{
"key": "7601115694347947294_7604552935992724744",
"view_gid": "7601115694347947294",
"pub_gid": "7604552935992724744",
"class_name": "Music",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features individuals performing a lip-sync or reaction video with Russian text overlays, likely a personal or fan-made content piece. Video 2 shows concert footage with Russian text overlays that appear to be fan edits or commentary, possibly from a live performance. There is no evidence that watching Video 1 inspired or caused the creation of Video 2. The content, context, and style are entirely different.\", \"label\": 0}"
},
{
"key": "7601134749763030294_7602752793023204630",
"view_gid": "7601134749763030294",
"pub_gid": "7602752793023204630",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is about nail art and features pop culture references (e.g., movie characters), while Video 2 is about building and landscaping in a simulation game (likely The Sims). There is no shared theme, template, meme, or challenge between the two videos. The content and context are entirely unrelated.\", \"label\": 0}"
},
{
"key": "7601312798609591574_7603019182405373206",
"view_gid": "7601312798609591574",
"pub_gid": "7603019182405373206",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a woman reacting to rumors with exaggerated hand gestures and text overlays in Romanian, while Video 2 shows a woman performing a dance or lip-sync with winking emojis. There is no shared meme, challenge, song, or template between them. The gestures and context are entirely different, indicating no direct inspiration or causation.\", \"label\": 0}"
},
{
"key": "7601325066151890196_7602212400758000916",
"view_gid": "7601325066151890196",
"pub_gid": "7602212400758000916",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a woman with a specific tattoo and makeup, performing a lip-sync with a focused expression. Video 2 shows a different woman in a pink room, filming herself in a mirror with a more casual, playful demeanor. There is no shared meme, challenge, song, or template between them. The content, setting, and style are distinct, indicating no direct inspiration or causation.\", \"label\": 0}"
},
{
"key": "7601574274960231702_7602694663203523862",
"view_gid": "7601574274960231702",
"pub_gid": "7602694663203523862",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos reference Jungwon and the same song intro, indicating a direct connection. The first video expresses nostalgia for Jungwon's song, while the second video directly compares the song to Jungwon with angel wings, suggesting the first video inspired the second.\", \"label\": 1}"
},
{
"key": "7601579424177343762_7602468045705006356",
"view_gid": "7601579424177343762",
"pub_gid": "7602468045705006356",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a Roblox character interacting with text overlays in a meme-like format, while Video 2 shows a user creating a TikTok video using a different template (a cartoon character with a pink dress). There is no visual, thematic, or stylistic connection between the two videos. The content and context are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7601586470712954115_7603338240136908054",
"view_gid": "7601586470712954115",
"pub_gid": "7603338240136908054",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a close-up of a black kitten being petted, while Video 2 features a black-and-white cat sitting on a chair with a child reacting to its 'help-me' look. The content, format, and theme are different. Video 1 is a simple, cute pet moment, while Video 2 is a staged 'POV' meme with a narrative. There is no direct inspiration or template reuse between the two videos.\", \"label\": 0}"
},
{
"key": "7601669855993007382_7603430768756477206",
"view_gid": "7601669855993007382",
"pub_gid": "7603430768756477206",
"class_name": "Baby",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is a 'POV' meme about changing a baby's diaper, while Video 2 is a simple clip of a baby playing with toys. There is no shared meme, challenge, song, or template between them. The content and context are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7601674006034402582_7602604985834048790",
"view_gid": "7601674006034402582",
"pub_gid": "7602604985834048790",
"class_name": "Random_Shoot",
"gt_label": 0,
"pred_label": 1,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature the same text overlay: 'si nu dimane te sfastidie, che fa? \\\"trovo 'o modo pe turna n'ata vota aret.\\\"' This exact phrase appears in both the consumption video (Video 1) and the publish video (Video 2), indicating that the user likely watched Video 1 and was inspired to recreate or adapt the same text-based meme format in Video 2. The content and text are directly related, making them causally linked.\", \"label\": 1}"
},
{
"key": "7601713212869856533_7602376124693351688",
"view_gid": "7601713212869856533",
"pub_gid": "7602376124693351688",
"class_name": "Comics_Cartoon_Anime",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"The two videos feature entirely different characters, settings, and visual styles. Video 1 shows a fairy in a forest, while Video 2 depicts a woman in a modern indoor setting with magical effects and a dog. There is no shared meme, challenge, song, or template between them, so watching Video 1 did not cause or inspire Video 2.\", \"label\": 0}"
},
{
"key": "7601765261200461078_7602681205758102806",
"view_gid": "7601765261200461078",
"pub_gid": "7602681205758102806",
"class_name": "Baby",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is a short clip of a baby with text overlay, likely a viral or trending format. Video 2 is a series of photos of a child in various poses and settings, not replicating the same format or content. There is no evidence that Video 1 inspired or caused Video 2; they are simply both in the 'Baby' category but lack direct causal or inspirational linkage.\", \"label\": 0}"
},
{
"key": "7601949430056602900_7602434611599265044",
"view_gid": "7601949430056602900",
"pub_gid": "7602434611599265044",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 shows two women in matching black 'DIDS' shirts engaging in a live stream or skit, with a focus on their interaction and the product 'Kit Girassol'. Video 2 is a collage-style post about the creator asking her mother to dye her hair pink, with humorous outcomes. There is no visual, thematic, or content-based connection between the two videos. The first video is a live stream skit, while the second is a personal, humorous 'what-if' post. They do not share the same meme, challenge, song, or template, and the content is unrelated in"
},
{
"key": "7601970606141148438_7603078990038895894",
"view_gid": "7601970606141148438",
"pub_gid": "7603078990038895894",
"class_name": "FingerDance_BasicDance",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature the same text overlay: \\\"cause your friends don't dance and if they don't dance well they're no friends of mine.\\\" This indicates they are using the same viral phrase and likely the same template or challenge. The content of Video 2 (a party scene) is a different setting from Video 1 (two girls dancing in a kitchen), but the shared text and format strongly suggest that Video 2 was inspired by or a direct response to Video 1. Therefore, they are causally related.\", \"label\": 1}"
},
{
"key": "7602006928537046280_7602420413976546567",
"view_gid": "7602006928537046280",
"pub_gid": "7602420413976546567",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature the exact same Portuguese text overlay: \\\"ser bonita não é o suficiente, eu quero e preciso soar exatamente igual esse solo na cabeça de alguém\\\". The text is identical in wording, placement, and font style. While the visuals differ (one is a close-up in dim lighting, the other is in a club setting), the shared text strongly indicates that Video 2 was created as a direct response or re-creation of Video 1, likely to participate in a viral trend or challenge. This makes them causally related.\", \"label\": 1}"
},
{
"key": "7602009271491988743_7604143486912171271",
"view_gid": "7602009271491988743",
"pub_gid": "7604143486912171271",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features a popular French meme format with the text 'Si ma réponse était OUI, Que serais ta question ?', often used in reaction videos or challenges. Video 2 is a gaming video showing a Fortnite lobby screen with a different text overlay about a friend leaving. There is no shared meme, challenge, song, or template between the two videos. The content and context are unrelated, so Video 1 did not cause or inspire Video 2.\", \"label\": 0}"
},
{
"key": "7602060282625674517_7602477809264495880",
"view_gid": "7602060282625674517",
"pub_gid": "7602477809264495880",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a streamer reacting to content with text overlay 'AGUINHA DO SONO GABE CONTA O QUE ACONTECEU', while Video 2 is a compilation of clips with the text 'QUANDO O ASSUNTO É SER OS 3 MELHORES DA TWITCH' and includes branding like 'Coringa'. There is no shared meme, challenge, song, or template between them. The content and context are entirely different, and Video 2 does not appear to be inspired by or a direct"
},
{
"key": "7602082846525754631_7604271197852929287",
"view_gid": "7602082846525754631",
"pub_gid": "7604271197852929287",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 shows a user attempting to post a comment that violates community guidelines, with the text 'callate rata' (shut up rat) being edited to include 'JUST LIKE THE WIND' as a humorous or defiant response. Video 2 is a dance video featuring a 3D avatar with the text 'como la gente quiere que seas:' (how people want you to be:). There is no direct connection between the content, theme, or format of the two videos. The first video is about a social media comment interaction, while the second is a dance video with a self-expression or"
},
{
"key": "7602143673546984725_7604193599068146951",
"view_gid": "7602143673546984725",
"pub_gid": "7604193599068146951",
"class_name": "CelebrityClips_VarietyShow",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a reaction video criticizing a performer's live performance, while Video 2 is a compilation of clips featuring a group of women in various settings with Spanish text overlays. There is no evidence that Video 1 inspired or caused Video 2; they differ in content, context, and purpose. The text overlays in Video 2 are unrelated to the critique in Video 1, and the visual style and subject matter are distinct.\", \"label\": 0}"
},
{
"key": "7602256064427330839_7603098072029138198",
"view_gid": "7602256064427330839",
"pub_gid": "7603098072029138198",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is about a Volkswagen van with humorous text overlays, while Video 2 is about a dog and motorcycle scenes with a different text overlay ('Good Boy' and 'Until the boys call'). There is no shared meme, challenge, song, or template between the two videos. The content and themes are unrelated.\", \"label\": 0}"
},
{
"key": "7602270984690748694_7603038892320705814",
"view_gid": "7602270984690748694",
"pub_gid": "7603038892320705814",
"class_name": "FingerDance_BasicDance",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a mother playfully showcasing her 'mum butt' with a humorous caption, while Video 2 is a child mimicking her mother's actions in a mirror, with a caption about being a 'mini me.' Although both involve playful self-expression and mirror shots, the content, theme, and context are entirely different. There is no evidence that watching Video 1 inspired the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7602366022103878929_7602669638551391496",
"view_gid": "7602366022103878929",
"pub_gid": "7602669638551391496",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a detailed haircut process, while Video 2 is a comedic skit about a client misunderstanding the barber’s cape. There is no shared meme, challenge, song, or template between them. The humor in Video 2 is situational and unrelated to the grooming content in Video 1.\", \"label\": 0}"
},
{
"key": "7602382902457863445_7604191296412159252",
"view_gid": "7602382902457863445",
"pub_gid": "7604191296412159252",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a woman performing a dance or lip-syncing with the text 'dicen q soy traidora' (they say I'm a traitor), while Video 2 shows a woman outdoors announcing she will work until 9 PM. There is no shared meme, challenge, song, or template between them. The content, context, and style are entirely different, indicating no direct inspiration or causation.\", \"label\": 0}"
},
{
"key": "7602700620830625046_7602866165395803414",
"view_gid": "7602700620830625046",
"pub_gid": "7602866165395803414",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a person burning a book and holding flowers, with a dramatic, symbolic aesthetic. Video 2 is a close-up lipsync video with a smoky, moody filter and emotional facial expressions. There is no visual, thematic, or stylistic overlap between the two videos. The content, mood, and format are entirely different, indicating no causal or inspirational link.\", \"label\": 0}"
},
{
"key": "7602708595221875986_7604355289906826504",
"view_gid": "7602708595221875986",
"pub_gid": "7604355289906826504",
"class_name": "Baby",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a toddler being asked about planning a 2nd birthday party, while Video 2 shows a birthday celebration with a cake and multiple children, including a baby. Although both involve babies and birthdays, Video 2 does not appear to be directly inspired by or a reaction to Video 1. The content and context are different: Video 1 is a humorous or playful moment about a child’s birthday planning, while Video 2 is a compilation of birthday party moments and baby photos. There is no clear causal or inspirational link between the two videos.\", \"label\": 0}"
},
{
"key": "7602725486715817219_7603481735279512854",
"view_gid": "7602725486715817219",
"pub_gid": "7603481735279512854",
"class_name": "Traditional_Sports",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 features a man in a sports jersey mimicking a football player's celebration with a humorous text overlay about a 'meniscus' injury, while Video 2 shows a woman reacting to a 'Gol di scamacca' (a football goal) with laughter and playful gestures. Although both videos are in the 'Traditional_Sports' category and involve football-related content, the specific meme, format, and humor are distinct. The text in Video 1 references a personal injury joke, while Video 2 references a specific football goal and reaction. There is no clear causal or inspirational link between the"
},
{
"key": "7602729554339253526_7603093834116943126",
"view_gid": "7602729554339253526",
"pub_gid": "7603093834116943126",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a man and his dog in a humorous, chaotic interaction with the text 'Something has gone horribly wrong,' while Video 2 is a calm, serene video of dogs sleeping on a couch. There is no shared meme, challenge, song, or template between the two videos. The content and tone are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7602843396088106262_7602995295437278486",
"view_gid": "7602843396088106262",
"pub_gid": "7602995295437278486",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos feature different cats in different settings and actions. Video 1 shows a cat sitting still with a name overlay, while Video 2 shows a cat drinking from a bowl. There is no shared meme, challenge, template, or direct inspiration between the two videos.\", \"label\": 0}"
},
{
"key": "7602910354212932884_7603540991643061512",
"view_gid": "7602910354212932884",
"pub_gid": "7603540991643061512",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features two men in a car with comedic expressions and text overlays, while Video 2 shows a man in a suit performing a dance routine. There is no shared meme, challenge, song, or template between them. The content, setting, and style are entirely different, indicating no direct inspiration or causation.\", \"label\": 0}"
},
{
"key": "7602915847211977992_7604398958395559186",
"view_gid": "7602915847211977992",
"pub_gid": "7604398958395559186",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 features a person using a specific filter with the text 'D De Dios' and a heart icon, which is a common TikTok filter used for fan engagement. Video 2 is a multi-person live stream with a 'Vuelta de honor' (honor round) format, which is a different type of content. There is no direct evidence that watching Video 1 inspired or caused the creation of Video 2, as the formats, contexts, and purposes are unrelated. The filter in Video 1 is not present in Video 2, and the live stream format in Video 2 does"
},
{
"key": "7602946751540071701_7604027006077963528",
"view_gid": "7602946751540071701",
"pub_gid": "7604027006077963528",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a close-up of a car interior with a laughing emoji and smoke, while Video 2 showcases an electric fatbike in various outdoor settings. There is no shared meme, challenge, song, or template between the two videos. The content and context are entirely unrelated.\", \"label\": 0}"
},
{
"key": "7602984837502307606_7603479345079815446",
"view_gid": "7602984837502307606",
"pub_gid": "7603479345079815446",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 depicts a historical or religious narrative involving a volcanic eruption and martyrdom, with a focus on solemn, dramatic imagery. Video 2 shows a static, ornate religious statue surrounded by pink flowers, likely from a religious procession or shrine. There is no visual, thematic, or narrative connection between the two videos. The content, tone, and subject matter are entirely different, and there is no indication that watching Video 1 inspired or caused the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7603022279718538516_7604021216944360712",
"view_gid": "7603022279718538516",
"pub_gid": "7604021216944360712",
"class_name": "Baby",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature babies in cribs or on beds with decorative items like signs, balloons, and themed outfits, suggesting a similar aesthetic and theme of celebrating a baby's milestone. The content and style are consistent with a 'baby milestone' trend, indicating that watching Video 1 likely inspired the creation of Video 2.\", \"label\": 1}"
},
{
"key": "7603057662082731286_7603508048769993987",
"view_gid": "7603057662082731286",
"pub_gid": "7603508048769993987",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 is a popular 'Five Nights at Freddy's' meme compilation featuring iconic characters and phrases like 'IF YOU'RE EVER', 'Funtime Freddy WILL', etc., which are part of a viral format. Video 2, however, is a gameplay clip from 'Five Nights at Freddy's' showing a player's perspective with the text 'look in the hallway' repeatedly displayed. While both videos are from the same game universe, Video 2 is not a direct recreation or inspired by the meme format of Video 1. The content and style are fundamentally different: Video 1 is a meme compilation with"
},
{
"key": "7603072200341507329_7604142589331115280",
"view_gid": "7603072200341507329",
"pub_gid": "7604142589331115280",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature the same text overlay: \\\"Quizá solo necesitaba un abrazo pero me puse mi uniforme y fui a ayudar a un desconocido\\\" (Albarrán 2026). Video 1 shows a real ambulance interior, while Video 2 uses a digitally altered background (appearing to be a game or simulation) but retains the identical text and framing. The content, text, and theme are directly inspired by Video 1, making them causally related.\", \"label\": 1}"
},
{
"key": "7603075574315158806_7603118367762910486",
"view_gid": "7603075574315158806",
"pub_gid": "7603118367762910486",
"class_name": "Singing_Instruments",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature individuals singing while playing guitar, but they are not causally related. Video 1 is a personal, informal performance with lyrics about personal feelings and decisions, while Video 2 is a cover of a specific song ('Man I Need' by Olivia Dean). There is no evidence that watching Video 1 inspired or caused the creation of Video 2, as they differ in content, song, and intent.\", \"label\": 0}"
},
{
"key": "7603079625559887125_7603753412768910612",
"view_gid": "7603079625559887125",
"pub_gid": "7603753412768910612",
"class_name": "Family",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a humorous, text-based skit about calorie counting and food choices, while Video 2 is a product unboxing/review video. There is no shared meme, challenge, template, or direct inspiration between the two. The content, tone, and purpose are entirely different.\", \"label\": 0}"
},
{
"key": "7603090622093757718_7603453990323457303",
"view_gid": "7603090622093757718",
"pub_gid": "7603453990323457303",
"class_name": "Family",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows children playing on swings in a playground, while Video 2 is a heartwarming family moment inside a car with a mother and her autistic son. There is no shared meme, challenge, song, or template between the two videos. The content, setting, and emotional tone are entirely different, indicating no causal or inspirational link.\", \"label\": 0}"
},
{
"key": "7603114436525870358_7603434420065848598",
"view_gid": "7603114436525870358",
"pub_gid": "7603434420065848598",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a woman in a pink shirt with a child and a man in the background, while Video 2 features a different woman holding a baby. There is no shared meme, challenge, song, or template between them. The content and context are distinct, and there is no evidence that watching Video 1 inspired the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7603118709992967446_7603141944167976214",
"view_gid": "7603118709992967446",
"pub_gid": "7603141944167976214",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature dogs and involve pet-related content, but they are not causally related. Video 1 is a humorous clip of a dog trying to eat a treat with a comedic caption, while Video 2 is a cost-benefit analysis of dog treats. There is no shared meme, challenge, template, or direct inspiration between the two videos.\", \"label\": 0}"
},
{
"key": "7603138308822076692_7603806260097453332",
"view_gid": "7603138308822076692",
"pub_gid": "7603806260097453332",
"class_name": "Movies_TVworks",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features clips of Lisa from BLACKPINK with overlaid text in Portuguese, likely from a fan-made compilation or reaction video. Video 2 is a montage of scenes from a movie or TV show with text overlays like 'Yes I Go,' 'The Gallic,' etc., which appear to be titles or references from a film. There is no shared visual template, meme, song, or challenge between the two videos. The content and style are unrelated, and Video 2 does not appear to be inspired by or a reaction to Video 1.\", \"label\": 0}"
},
{
"key": "7603146769148513566_7604566499847687445",
"view_gid": "7603146769148513566",
"pub_gid": "7604566499847687445",
"class_name": "Traditional_Sports",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a first-person perspective soccer video with a humorous 'POV: TE TRAEN UN POWER' theme, featuring a goalkeeper reacting to a powerful shot. Video 2 is a standard soccer game video from a third-person perspective, showing gameplay on a street court. There is no evidence that Video 1 inspired or caused Video 2, as they differ in perspective, humor, and context. The content of Video 2 does not reflect the specific meme or format of Video 1.\", \"label\": 0}"
},
{
"key": "7603165062764711186_7603407222311292181",
"view_gid": "7603165062764711186",
"pub_gid": "7603407222311292181",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a person wearing a mask and using a star filter, while Video 2 is a compilation of clips with the text 'Nem em outra vida eu iria ser padrão' (I wouldn't be a standard in another life) and various costumes or masks. There is no shared meme, challenge, song, or template between the two videos. The content and style are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7603185260158881045_7603447262575906068",
"view_gid": "7603185260158881045",
"pub_gid": "7603447262575906068",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 depicts a monstrous creature in snowy mountains with horror-themed text, while Video 2 is about sea myths and the Bermuda Triangle with mermaid and ship imagery. The themes, settings, and visual styles are entirely different. There is no shared meme, challenge, song, or template between them. The content of Video 2 does not appear to be inspired by or a direct reaction to Video 1.\", \"label\": 0}"
},
{
"key": "7603389036920704264_7604264676964207892",
"view_gid": "7603389036920704264",
"pub_gid": "7604264676964207892",
"class_name": "VideoGames",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a live-streamed reaction to a hockey game, while Video 2 is a gaming stream with French text overlays and a focus on in-game performance. There is no shared meme, challenge, song, or template between the two videos. The content and context are entirely different, making them not causally related.\", \"label\": 0}"
},
{
"key": "7603529071628225800_7604036865682951445",
"view_gid": "7603529071628225800",
"pub_gid": "7604036865682951445",
"class_name": "Diary_VLOG",
"gt_label": 0,
"pred_label": 1,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows a collection of decorative, personalized pens and beads, while Video 2 displays a vendor setup with similar pens and accessories for sale. The content in both videos is related to the same product category (customized pens and accessories), suggesting that watching Video 1 may have inspired the creator to showcase or sell similar items in Video 2. The visual similarity in products and the context of personalization and customization support a causal relationship.\", \"label\": 1}"
},
{
"key": "7603529734223383828_7604261847734275335",
"view_gid": "7603529734223383828",
"pub_gid": "7604261847734275335",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 shows a green vehicle (likely a truck or tractor) driving on muddy, rural roads, with scenes of daily life and a snack being held. Video 2 features a white semi-truck with decorative lights, shown in various angles and settings, including on dirt roads. While both involve trucks and rural settings, the content, style, and focus are entirely different. Video 1 is a casual, real-life documentation of a journey, while Video 2 is a stylized, aesthetic showcase of a truck, likely for social media appeal. There is no clear meme, challenge, or template shared between"
},
{
"key": "7603597531121011986_7604027676130594055",
"view_gid": "7603597531121011986",
"pub_gid": "7604027676130594055",
"class_name": "Fitness",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a gym session with a trainer guiding a client through a machine exercise, while Video 2 is a split-screen video showing a man working out and a singer performing, with text overlay about a song stuck in his head. There is no shared meme, challenge, song, or template between the two videos. The content and structure are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7603814056583023893_7603967990312307975",
"view_gid": "7603814056583023893",
"pub_gid": "7603967990312307975",
"class_name": "Cars_Trucks_Motorcycles",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature Ford vehicles, but Video 1 is a humorous plea for customers to buy cars to afford a heated parking lot, while Video 2 is a showcase of a Ford F-350 truck. There is no shared meme, challenge, template, or direct inspiration between the two. The content and context are unrelated.\", \"label\": 0}"
},
{
"key": "7603818369183190303_7604234434702806280",
"view_gid": "7603818369183190303",
"pub_gid": "7604234434702806280",
"class_name": "Diary_VLOG",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos use the same visual template of a phone screen with a missed call notification and a text message, but they differ in content and context. Video 1 shows a message from 'uncle' about going to heaven, while Video 2 is a darkly humorous take on a missed call with a tragic backstory. The core template (phone screen + text message) is reused, but the specific content and tone are unrelated. This suggests the user may have been inspired by the format, not the specific theme or message.\", \"label\": 1}"
},
{
"key": "7603852215660465416_7604220286849813781",
"view_gid": "7603852215660465416",
"pub_gid": "7604220286849813781",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature the same text overlay \\\"se viene el dia del nadador\\\" and similar pool settings, indicating that Video 2 was likely inspired by Video 1. The structure and theme are consistent, suggesting a direct causal relationship.\", \"label\": 1}"
},
{
"key": "7603876731857931540_7604241667603893524",
"view_gid": "7603876731857931540",
"pub_gid": "7604241667603893524",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person interacting with mannequins and displaying various props, while Video 2 is a series of personal, aesthetic shots with text overlays. There is no shared meme, challenge, song, or template between them. The content, style, and intent of the videos are distinct, indicating no direct inspiration or causation.\", \"label\": 0}"
},
{
"key": "7603884493329550609_7604041815758490901",
"view_gid": "7603884493329550609",
"pub_gid": "7604041815758490901",
"class_name": "Comics_Cartoon_Anime",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature My Little Pony characters and use a similar visual style with text overlays, but the content and characters differ significantly. Video 1 uses Pinkie Pie and focuses on a slime-making 'hot take' narrative, while Video 2 uses Twilight Sparkle and is a static image with text about creativity. The themes, characters, and formats are not the same, so there is no direct causal inspiration.\", \"label\": 0}"
},
{
"key": "7603902943246503175_7604332451615247623",
"view_gid": "7603902943246503175",
"pub_gid": "7604332451615247623",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a person in a sparkly skeleton costume with star headpiece, dancing in a themed setting, while Video 2 shows a person with bright rainbow eye makeup and a colorful lei, lip-syncing indoors. There is no shared meme, challenge, song, or template between them. The content, styling, and context are entirely different.\", \"label\": 0}"
},
{
"key": "7603921933381455125_7604079730609982741",
"view_gid": "7603921933381455125",
"pub_gid": "7604079730609982741",
"class_name": "Family",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is a personal celebration of Rose Day with roses and emotional expressions, while Video 2 is a family beach outing. There is no shared meme, challenge, song, or template between the two videos. The content and context are unrelated.\", \"label\": 0}"
},
{
"key": "7603932047878442257_7603978976616336661",
"view_gid": "7603932047878442257",
"pub_gid": "7603978976616336661",
"class_name": "Random_Shoot",
"gt_label": 0,
"pred_label": 1,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature the same text overlay: \\\"I'm the type of person who would listen to your problems while drowning in my own\\\" (with minor spelling variation in Video 2: \\\"on my own\\\" instead of \\\"in my own\\\"). The content and text are identical in intent and phrasing, indicating that Video 2 is a direct copy or inspired by Video 1. The visual style (text overlay on a night scene) and the core message are consistent, making this a clear case of inspiration or direct replication. Therefore, the videos are causally related.\", \"label\": 1}"
},
{
"key": "7603947476332186901_7604063261130034433",
"view_gid": "7603947476332186901",
"pub_gid": "7604063261130034433",
"class_name": "Comics_Cartoon_Anime",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 features a stylized, colorful anime character with a specific pose and outfit, while Video 2 is a black-and-white, more dramatic and moody anime-style sequence with different characters and themes. There is no shared meme, challenge, song, or template between the two videos. The art style, character design, and overall tone are distinct, indicating no direct causal inspiration.\", \"label\": 0}"
},
{
"key": "7603977624448175368_7604464746045230354",
"view_gid": "7603977624448175368",
"pub_gid": "7604464746045230354",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 is a travel vlog-style video showcasing Tirana, Albania, with a focus on its landmarks and cityscape, under the branding 'EXPLOROPOLIA'. Video 2 is a historical/political-themed video featuring imagery related to Albanian communist leader Enver Hoxha, including his portrait, the Albanian communist emblem, and historical dates. There is no visual, thematic, or stylistic overlap between the two videos. Video 1 is about tourism and modern cityscapes, while Video 2 is about historical political figures and symbols. The content and intent of the videos are"
},
{
"key": "7603979300127214866_7604577411136621844",
"view_gid": "7603979300127214866",
"pub_gid": "7604577411136621844",
"class_name": "Singing_Instruments",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 is a piano performance of a worship song with lyrics displayed as text overlays, while Video 2 is a rehearsal session of a different worship song (\\\"The Lord's Prayer\\\") with a singer and pianist in a church setting. The songs, settings, and presentation styles are distinct. There is no evidence that watching Video 1 inspired or caused the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7603993350802394389_7604087376469642517",
"view_gid": "7603993350802394389",
"pub_gid": "7604087376469642517",
"class_name": "Random_Shoot",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature roses, but Video 1 shows a person selecting yellow roses in a flower shop with a specific caption about self-reliance, while Video 2 is a simple close-up of orange roses with heart emojis. There is no evidence that Video 1 inspired or caused Video 2; they are not the same meme, challenge, or template. The content and context differ significantly, making them not causally related.\", \"label\": 0}"
},
{
"key": "7604019342124043540_7604368885785070868",
"view_gid": "7604019342124043540",
"pub_gid": "7604368885785070868",
"class_name": "VideoGames",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 features a character with a dramatic, gothic aesthetic and a specific quote overlay, while Video 2 features a racing-themed character in a garage setting. There is no shared meme, challenge, song, or template between the two videos. The content, style, and context are entirely different, indicating no causal relationship.\", \"label\": 0}"
},
{
"key": "7604023995578453256_7604406022966463752",
"view_gid": "7604023995578453256",
"pub_gid": "7604406022966463752",
"class_name": "Music",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows fans at a music festival reacting to a performance with the text 'Laneway is a Feeling,' indicating they are enjoying a live concert. Video 2 shows a different concert performance with a distinct stage setup and lighting. While both are music-related, there is no evidence that Video 1 inspired or caused Video 2. The content, context, and performers are unrelated. The 'Laneway' reference in Video 1 is likely a specific event or venue, not a template or challenge that would inspire the creation of Video 2.\", \"label\": 0}"
},
{
"key": "7604071937224199445_7604486246018075922",
"view_gid": "7604071937224199445",
"pub_gid": "7604486246018075922",
"class_name": "Traditional_Sports",
"gt_label": 0,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 features two women running early in the morning with a humorous caption about waking up early to exercise while others are still sleeping. Video 2 features a man playing soccer with a humorous caption about his partner not replying to his messages. While both videos use humor and captions to create a relatable or funny situation, they differ in context, setting, and subject matter. Video 1 is about early morning exercise and social comparison, while Video 2 is about a romantic situation and a game of soccer. There is no clear template, meme, or challenge shared between the two videos that would indicate one caused"
},
{
"key": "7604117742802701576_7604523788599938321",
"view_gid": "7604117742802701576",
"pub_gid": "7604523788599938321",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Both videos feature dogs in a relaxed or sleeping state, and the text overlay in Video 2 ('is he dreaming some yummy food?') suggests a humorous interpretation of the dog's behavior, which is similar to the playful, observational tone often found in pet videos. The content and style are consistent with a common TikTok pet trend where users capture their pets in amusing or endearing moments. This indicates a likely causal relationship where watching Video 1 inspired the creation of Video 2.\", \"label\": 1}"
},
{
"key": "7604119657179630856_7604130070600437010",
"view_gid": "7604119657179630856",
"pub_gid": "7604130070600437010",
"class_name": "No_classification",
"gt_label": 1,
"pred_label": null,
"match": null,
"prediction": "{\"reasoning\": \"Video 1 is a compilation of clips from Tucker Carlson's show discussing the Nephilim, the flood, and giant bones, with a focus on ancient myths and biblical interpretations. Video 2 is a humorous meme-style video featuring Jesus on a camel with a map, listing things he \\\"definitely never said.\\\" While both videos involve religious or mythological themes, there is no direct connection in content, format, or inspiration. The humor and structure of Video 2 (a 'Things Jesus never said' meme) are unrelated to the serious, documentary-style presentation of Video 1. Therefore, Video "
},
{
"key": "7604120387240234260_7604264832187108629",
"view_gid": "7604120387240234260",
"pub_gid": "7604264832187108629",
"class_name": "Toys_Ornaments",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature toy car models, but they are of different brands and models (Toyota Hilux '85 vs. Porsche R8W). The content and style are similar (showcasing toy cars with text overlays), but there is no direct inspiration or causal link between the specific toy cars or the content presented. The videos are in the same category (Toys_Ornaments) but lack a direct connection in theme, model, or inspiration.\", \"label\": 0}"
},
{
"key": "7604133644516494613_7604325341783493906",
"view_gid": "7604133644516494613",
"pub_gid": "7604325341783493906",
"class_name": "Pets",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Both videos feature cats, but Video 1 shows a fluffy cat sleeping/resting in a cozy setting, while Video 2 uses a different cat and overlays poetic text, suggesting a thematic or emotional narrative. There is no shared meme, challenge, song, or template between the two videos. The content and style are distinct, and Video 2 does not appear to be directly inspired by Video 1.\", \"label\": 0}"
},
{
"key": "7604138193516055815_7604239035036437780",
"view_gid": "7604138193516055815",
"pub_gid": "7604239035036437780",
"class_name": "Music",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 shows a person in a blue hoodie performing or reacting in a casual indoor setting, then transitioning to outdoor festival photos. Video 2 is a concert footage with text overlay about a musician. There is no shared meme, challenge, song, or template between the two. The content and context are unrelated.\", \"label\": 0}"
},
{
"key": "7604161389954862337_7604241413802380564",
"view_gid": "7604161389954862337",
"pub_gid": "7604241413802380564",
"class_name": "Food_Display",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"Video 1 shows the preparation and assembly of small pancakes with various sauces, while Video 2 displays a variety of unrelated desserts and dishes (a rolled dessert, waffle, cheesecake, and pasta). There is no shared theme, format, or inspiration between the two videos. The content of Video 2 does not appear to be inspired by or a direct reaction to Video 1.\", \"label\": 0}"
},
{
"key": "7604192834694040850_7604553253086383381",
"view_gid": "7604192834694040850",
"pub_gid": "7604553253086383381",
"class_name": "Other_Comedy",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 discusses the injuries of Romo and Castillo, two Chivas players, using clips and commentary. Video 2 uses the same players' names and the Chivas team theme to create a comedic reaction video. The emotional shift from joy to sadness in Video 2 directly mirrors the narrative structure of Video 1, indicating that Video 1 likely inspired Video 2.\", \"label\": 1}"
},
{
"key": "7604198893898763541_7604200050855775508",
"view_gid": "7604198893898763541",
"pub_gid": "7604200050855775508",
"class_name": "Lipsync",
"gt_label": 1,
"pred_label": 1,
"match": true,
"prediction": "{\"reasoning\": \"The two videos are nearly identical in content, style, and sequence of movements. The same person, outfit, background, and lip-syncing actions are present in both videos, suggesting that Video 2 was directly inspired by or a re-upload of Video 1. This indicates a clear causal relationship.\", \"label\": 1}"
},
{
"key": "7604221872682634503_7604297076985351432",
"view_gid": "7604221872682634503",
"pub_gid": "7604297076985351432",
"class_name": "Toys_Ornaments",
"gt_label": 1,
"pred_label": 0,
"match": false,
"prediction": "{\"reasoning\": \"The two videos are not causally related. Video 1 features a dog with a plushie being held up to its face, with text overlays that are humorous and playful. Video 2 shows a person with a dog wearing a harness, with text explaining the dog is still in training. There is no shared meme, challenge, song, or template between the two videos. The content and context are entirely different, and one does not inspire or cause the other.\", \"label\": 0}"
},
{
"key": "7604250553891310869_7604452867709127956",
"view_gid": "7604250553891310869",
"pub_gid": "7604452867709127956",
"class_name": "Diary_VLOG",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a 'one February day' themed vlog showing a person's daily routine with consistent text overlay and aesthetic, while Video 2 is a casual diary vlog with no shared theme, text, or visual template. The content, style, and structure are unrelated, so Video 1 did not inspire or cause Video 2.\", \"label\": 0}"
},
{
"key": "7604250992779087122_7604343009810926869",
"view_gid": "7604250992779087122",
"pub_gid": "7604343009810926869",
"class_name": "Singing_Instruments",
"gt_label": 0,
"pred_label": 0,
"match": true,
"prediction": "{\"reasoning\": \"Video 1 is a series of close-up facial expressions and reactions, likely a personal vlog or reaction video, while Video 2 is a musical performance of a song. There is no shared meme, challenge, song, or template between the two videos. The content and context are entirely different, so watching Video 1 did not cause or inspire Video 2.\", \"label\": 0}"
}
]
} |