File size: 170,090 Bytes
f8ba0eb |
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 |
2025-08-20 22:19:18 - INFO - Loading model: LiquidAI/LFM2-VL-1.6B
2025-08-20 22:19:19 - INFO - We will use 90% of the memory on device 0 for storing the model, and 10% for the buffer to avoid OOM. You can set `max_memory` in to a higher value to use more memory (at your own risk).
2025-08-20 22:19:25 - INFO - Model loaded in 7.27 seconds
2025-08-20 22:19:25 - INFO - GPU Memory Usage after model load: 3023.64 MB
2025-08-20 22:19:28 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_001.mp4'
2025-08-20 22:19:28 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Video saved to temporary file: temp_videos/e94e2738-0fd3-4b88-82e1-08a69ca1c7a9.mp4
2025-08-20 22:19:28 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:19:36 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:19:36 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] 30 frames saved to temp_videos/e94e2738-0fd3-4b88-82e1-08a69ca1c7a9
2025-08-20 22:19:36 - INFO - Prompt token length: 3604
2025-08-20 22:19:56 - INFO - Tokens per second: 39.176053401717525, Peak GPU memory MB: 9378.375
2025-08-20 22:19:56 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Inference time: 28.35 seconds, CPU usage: 71.5%, CPU core utilization: [68.7, 71.6, 75.1, 70.5]
2025-08-20 22:19:56 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Cleaned up temporary file: temp_videos/e94e2738-0fd3-4b88-82e1-08a69ca1c7a9.mp4
2025-08-20 22:19:56 - INFO - [e94e2738-0fd3-4b88-82e1-08a69ca1c7a9] Cleaned up temporary frame directory: temp_videos/e94e2738-0fd3-4b88-82e1-08a69ca1c7a9
2025-08-20 22:19:56 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_001.mp4'
2025-08-20 22:19:56 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Video saved to temporary file: temp_videos/8e164907-7f90-40e8-b374-12585636ef24.mp4
2025-08-20 22:19:56 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:20:03 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:20:03 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] 30 frames saved to temp_videos/8e164907-7f90-40e8-b374-12585636ef24
2025-08-20 22:20:03 - INFO - Prompt token length: 3604
2025-08-20 22:20:23 - INFO - Tokens per second: 39.56194680302735, Peak GPU memory MB: 9378.375
2025-08-20 22:20:23 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Inference time: 27.08 seconds, CPU usage: 80.8%, CPU core utilization: [82.5, 86.9, 82.1, 71.6]
2025-08-20 22:20:23 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Cleaned up temporary file: temp_videos/8e164907-7f90-40e8-b374-12585636ef24.mp4
2025-08-20 22:20:23 - INFO - [8e164907-7f90-40e8-b374-12585636ef24] Cleaned up temporary frame directory: temp_videos/8e164907-7f90-40e8-b374-12585636ef24
2025-08-20 22:20:24 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_002.mp4'
2025-08-20 22:20:24 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Video saved to temporary file: temp_videos/f700ec81-f123-4733-8310-d1f290508bae.mp4
2025-08-20 22:20:24 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:20:30 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:20:30 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] 30 frames saved to temp_videos/f700ec81-f123-4733-8310-d1f290508bae
2025-08-20 22:20:30 - INFO - Prompt token length: 3604
2025-08-20 22:20:53 - INFO - Tokens per second: 39.591219952109306, Peak GPU memory MB: 9378.375
2025-08-20 22:20:53 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Inference time: 29.22 seconds, CPU usage: 75.2%, CPU core utilization: [78.7, 74.7, 71.3, 75.9]
2025-08-20 22:20:53 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Cleaned up temporary file: temp_videos/f700ec81-f123-4733-8310-d1f290508bae.mp4
2025-08-20 22:20:53 - INFO - [f700ec81-f123-4733-8310-d1f290508bae] Cleaned up temporary frame directory: temp_videos/f700ec81-f123-4733-8310-d1f290508bae
2025-08-20 22:20:53 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_002.mp4'
2025-08-20 22:20:53 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Video saved to temporary file: temp_videos/2cb43a5e-af7f-47cd-a884-391a85924bc9.mp4
2025-08-20 22:20:53 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:21:00 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:21:00 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] 30 frames saved to temp_videos/2cb43a5e-af7f-47cd-a884-391a85924bc9
2025-08-20 22:21:01 - INFO - Prompt token length: 3604
2025-08-20 22:21:23 - INFO - Tokens per second: 39.47068338412706, Peak GPU memory MB: 9378.375
2025-08-20 22:21:23 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Inference time: 30.13 seconds, CPU usage: 76.5%, CPU core utilization: [76.8, 64.9, 74.5, 89.6]
2025-08-20 22:21:23 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Cleaned up temporary file: temp_videos/2cb43a5e-af7f-47cd-a884-391a85924bc9.mp4
2025-08-20 22:21:23 - INFO - [2cb43a5e-af7f-47cd-a884-391a85924bc9] Cleaned up temporary frame directory: temp_videos/2cb43a5e-af7f-47cd-a884-391a85924bc9
2025-08-20 22:21:23 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_003.mp4'
2025-08-20 22:21:23 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Video saved to temporary file: temp_videos/d3999990-f57b-4179-b38a-7afdf16172b5.mp4
2025-08-20 22:21:23 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:21:31 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:21:31 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] 30 frames saved to temp_videos/d3999990-f57b-4179-b38a-7afdf16172b5
2025-08-20 22:21:31 - INFO - Prompt token length: 3604
2025-08-20 22:21:49 - INFO - Tokens per second: 37.345095593526885, Peak GPU memory MB: 9378.375
2025-08-20 22:21:49 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Inference time: 25.28 seconds, CPU usage: 80.3%, CPU core utilization: [82.3, 71.7, 76.5, 90.4]
2025-08-20 22:21:49 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Cleaned up temporary file: temp_videos/d3999990-f57b-4179-b38a-7afdf16172b5.mp4
2025-08-20 22:21:49 - INFO - [d3999990-f57b-4179-b38a-7afdf16172b5] Cleaned up temporary frame directory: temp_videos/d3999990-f57b-4179-b38a-7afdf16172b5
2025-08-20 22:21:49 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_003.mp4'
2025-08-20 22:21:49 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Video saved to temporary file: temp_videos/c09c7f90-52c6-4bf2-ac2c-418cc0338733.mp4
2025-08-20 22:21:49 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:21:55 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:21:55 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] 30 frames saved to temp_videos/c09c7f90-52c6-4bf2-ac2c-418cc0338733
2025-08-20 22:21:56 - INFO - Prompt token length: 3604
2025-08-20 22:22:13 - INFO - Tokens per second: 40.50104433917785, Peak GPU memory MB: 9378.375
2025-08-20 22:22:13 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Inference time: 23.93 seconds, CPU usage: 79.5%, CPU core utilization: [79.5, 75.0, 79.3, 84.2]
2025-08-20 22:22:13 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Cleaned up temporary file: temp_videos/c09c7f90-52c6-4bf2-ac2c-418cc0338733.mp4
2025-08-20 22:22:13 - INFO - [c09c7f90-52c6-4bf2-ac2c-418cc0338733] Cleaned up temporary frame directory: temp_videos/c09c7f90-52c6-4bf2-ac2c-418cc0338733
2025-08-20 22:22:13 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_004.mp4'
2025-08-20 22:22:13 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Video saved to temporary file: temp_videos/824a9617-49cb-42c7-a162-4a10bdb02903.mp4
2025-08-20 22:22:13 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:22:21 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:22:21 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] 30 frames saved to temp_videos/824a9617-49cb-42c7-a162-4a10bdb02903
2025-08-20 22:22:21 - INFO - Prompt token length: 3604
2025-08-20 22:22:39 - INFO - Tokens per second: 37.87612857083515, Peak GPU memory MB: 9378.375
2025-08-20 22:22:39 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Inference time: 25.99 seconds, CPU usage: 79.5%, CPU core utilization: [75.3, 81.1, 84.0, 77.5]
2025-08-20 22:22:39 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Cleaned up temporary file: temp_videos/824a9617-49cb-42c7-a162-4a10bdb02903.mp4
2025-08-20 22:22:39 - INFO - [824a9617-49cb-42c7-a162-4a10bdb02903] Cleaned up temporary frame directory: temp_videos/824a9617-49cb-42c7-a162-4a10bdb02903
2025-08-20 22:22:39 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_004.mp4'
2025-08-20 22:22:39 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Video saved to temporary file: temp_videos/a7b763d8-0520-4d3c-999b-55b993864802.mp4
2025-08-20 22:22:39 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:22:45 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:22:46 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] 30 frames saved to temp_videos/a7b763d8-0520-4d3c-999b-55b993864802
2025-08-20 22:22:46 - INFO - Prompt token length: 3604
2025-08-20 22:23:04 - INFO - Tokens per second: 40.64016822608698, Peak GPU memory MB: 9378.375
2025-08-20 22:23:04 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Inference time: 24.65 seconds, CPU usage: 77.6%, CPU core utilization: [85.7, 82.1, 72.3, 70.5]
2025-08-20 22:23:04 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Cleaned up temporary file: temp_videos/a7b763d8-0520-4d3c-999b-55b993864802.mp4
2025-08-20 22:23:04 - INFO - [a7b763d8-0520-4d3c-999b-55b993864802] Cleaned up temporary frame directory: temp_videos/a7b763d8-0520-4d3c-999b-55b993864802
2025-08-20 22:23:04 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_005.mp4'
2025-08-20 22:23:04 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Video saved to temporary file: temp_videos/8e59eb45-94db-4110-b8d9-7b5e9002a61d.mp4
2025-08-20 22:23:04 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:23:12 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:23:12 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] 30 frames saved to temp_videos/8e59eb45-94db-4110-b8d9-7b5e9002a61d
2025-08-20 22:23:12 - INFO - Prompt token length: 3604
2025-08-20 22:23:32 - INFO - Tokens per second: 38.38521565523533, Peak GPU memory MB: 9378.375
2025-08-20 22:23:32 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Inference time: 28.44 seconds, CPU usage: 76.7%, CPU core utilization: [79.8, 68.9, 72.7, 85.3]
2025-08-20 22:23:32 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Cleaned up temporary file: temp_videos/8e59eb45-94db-4110-b8d9-7b5e9002a61d.mp4
2025-08-20 22:23:32 - INFO - [8e59eb45-94db-4110-b8d9-7b5e9002a61d] Cleaned up temporary frame directory: temp_videos/8e59eb45-94db-4110-b8d9-7b5e9002a61d
2025-08-20 22:23:33 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_005.mp4'
2025-08-20 22:23:33 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Video saved to temporary file: temp_videos/5b8d1d2a-a615-4ba4-b741-4c36881bfacc.mp4
2025-08-20 22:23:33 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:23:40 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:23:40 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] 30 frames saved to temp_videos/5b8d1d2a-a615-4ba4-b741-4c36881bfacc
2025-08-20 22:23:41 - INFO - Prompt token length: 3604
2025-08-20 22:24:01 - INFO - Tokens per second: 38.57113528231376, Peak GPU memory MB: 9378.375
2025-08-20 22:24:01 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Inference time: 28.64 seconds, CPU usage: 77.1%, CPU core utilization: [73.2, 79.6, 81.1, 74.7]
2025-08-20 22:24:01 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Cleaned up temporary file: temp_videos/5b8d1d2a-a615-4ba4-b741-4c36881bfacc.mp4
2025-08-20 22:24:01 - INFO - [5b8d1d2a-a615-4ba4-b741-4c36881bfacc] Cleaned up temporary frame directory: temp_videos/5b8d1d2a-a615-4ba4-b741-4c36881bfacc
2025-08-20 22:24:01 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_006.mp4'
2025-08-20 22:24:02 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Video saved to temporary file: temp_videos/c0077e00-2982-41ee-aace-96617d8c8de5.mp4
2025-08-20 22:24:02 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:24:08 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:24:08 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] 30 frames saved to temp_videos/c0077e00-2982-41ee-aace-96617d8c8de5
2025-08-20 22:24:08 - INFO - Prompt token length: 3604
2025-08-20 22:24:28 - INFO - Tokens per second: 40.54745884718579, Peak GPU memory MB: 9378.375
2025-08-20 22:24:28 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Inference time: 26.51 seconds, CPU usage: 77.3%, CPU core utilization: [79.2, 76.4, 74.3, 79.2]
2025-08-20 22:24:28 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Cleaned up temporary file: temp_videos/c0077e00-2982-41ee-aace-96617d8c8de5.mp4
2025-08-20 22:24:28 - INFO - [c0077e00-2982-41ee-aace-96617d8c8de5] Cleaned up temporary frame directory: temp_videos/c0077e00-2982-41ee-aace-96617d8c8de5
2025-08-20 22:24:28 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_006.mp4'
2025-08-20 22:24:28 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Video saved to temporary file: temp_videos/35d87ed3-6cef-4a44-a713-9d53bbcfba55.mp4
2025-08-20 22:24:28 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:24:36 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:24:36 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] 30 frames saved to temp_videos/35d87ed3-6cef-4a44-a713-9d53bbcfba55
2025-08-20 22:24:36 - INFO - Prompt token length: 3604
2025-08-20 22:24:56 - INFO - Tokens per second: 40.02737695090751, Peak GPU memory MB: 9378.375
2025-08-20 22:24:56 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Inference time: 27.57 seconds, CPU usage: 79.0%, CPU core utilization: [80.2, 69.7, 76.0, 90.1]
2025-08-20 22:24:56 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Cleaned up temporary file: temp_videos/35d87ed3-6cef-4a44-a713-9d53bbcfba55.mp4
2025-08-20 22:24:56 - INFO - [35d87ed3-6cef-4a44-a713-9d53bbcfba55] Cleaned up temporary frame directory: temp_videos/35d87ed3-6cef-4a44-a713-9d53bbcfba55
2025-08-20 22:24:56 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_007.mp4'
2025-08-20 22:24:56 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Video saved to temporary file: temp_videos/119f28d6-447d-47e4-8e70-a0a792e9cda4.mp4
2025-08-20 22:24:56 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:25:03 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:25:03 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] 30 frames saved to temp_videos/119f28d6-447d-47e4-8e70-a0a792e9cda4
2025-08-20 22:25:04 - INFO - Prompt token length: 3604
2025-08-20 22:25:20 - INFO - Tokens per second: 41.297771497632056, Peak GPU memory MB: 9378.375
2025-08-20 22:25:20 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Inference time: 24.52 seconds, CPU usage: 74.6%, CPU core utilization: [75.6, 72.6, 73.9, 76.5]
2025-08-20 22:25:20 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Cleaned up temporary file: temp_videos/119f28d6-447d-47e4-8e70-a0a792e9cda4.mp4
2025-08-20 22:25:20 - INFO - [119f28d6-447d-47e4-8e70-a0a792e9cda4] Cleaned up temporary frame directory: temp_videos/119f28d6-447d-47e4-8e70-a0a792e9cda4
2025-08-20 22:25:21 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_007.mp4'
2025-08-20 22:25:21 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Video saved to temporary file: temp_videos/978c75bb-6eef-41fe-87b2-77b10f5f478b.mp4
2025-08-20 22:25:21 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:25:29 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:25:29 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] 30 frames saved to temp_videos/978c75bb-6eef-41fe-87b2-77b10f5f478b
2025-08-20 22:25:30 - INFO - Prompt token length: 3604
2025-08-20 22:25:47 - INFO - Tokens per second: 40.57407084953663, Peak GPU memory MB: 9378.375
2025-08-20 22:25:47 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Inference time: 25.99 seconds, CPU usage: 79.6%, CPU core utilization: [78.2, 63.9, 78.7, 97.4]
2025-08-20 22:25:47 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Cleaned up temporary file: temp_videos/978c75bb-6eef-41fe-87b2-77b10f5f478b.mp4
2025-08-20 22:25:47 - INFO - [978c75bb-6eef-41fe-87b2-77b10f5f478b] Cleaned up temporary frame directory: temp_videos/978c75bb-6eef-41fe-87b2-77b10f5f478b
2025-08-20 22:25:47 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_008.mp4'
2025-08-20 22:25:47 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Video saved to temporary file: temp_videos/3cbbc13e-21b5-407c-a202-85e09a8c2ddc.mp4
2025-08-20 22:25:47 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:25:54 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:25:54 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] 30 frames saved to temp_videos/3cbbc13e-21b5-407c-a202-85e09a8c2ddc
2025-08-20 22:25:54 - INFO - Prompt token length: 3604
2025-08-20 22:26:14 - INFO - Tokens per second: 37.33059104449174, Peak GPU memory MB: 9378.375
2025-08-20 22:26:14 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Inference time: 26.96 seconds, CPU usage: 77.7%, CPU core utilization: [78.5, 62.8, 76.3, 93.3]
2025-08-20 22:26:14 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Cleaned up temporary file: temp_videos/3cbbc13e-21b5-407c-a202-85e09a8c2ddc.mp4
2025-08-20 22:26:14 - INFO - [3cbbc13e-21b5-407c-a202-85e09a8c2ddc] Cleaned up temporary frame directory: temp_videos/3cbbc13e-21b5-407c-a202-85e09a8c2ddc
2025-08-20 22:26:14 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_008.mp4'
2025-08-20 22:26:14 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Video saved to temporary file: temp_videos/47d0b154-958f-4c13-bc1c-1ee74c146ad3.mp4
2025-08-20 22:26:14 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:26:20 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:26:20 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] 30 frames saved to temp_videos/47d0b154-958f-4c13-bc1c-1ee74c146ad3
2025-08-20 22:26:21 - INFO - Prompt token length: 3604
2025-08-20 22:26:40 - INFO - Tokens per second: 40.97108679897668, Peak GPU memory MB: 9378.375
2025-08-20 22:26:40 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Inference time: 26.01 seconds, CPU usage: 77.4%, CPU core utilization: [79.7, 59.8, 73.6, 96.6]
2025-08-20 22:26:40 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Cleaned up temporary file: temp_videos/47d0b154-958f-4c13-bc1c-1ee74c146ad3.mp4
2025-08-20 22:26:40 - INFO - [47d0b154-958f-4c13-bc1c-1ee74c146ad3] Cleaned up temporary frame directory: temp_videos/47d0b154-958f-4c13-bc1c-1ee74c146ad3
2025-08-20 22:26:40 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_009.mp4'
2025-08-20 22:26:40 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Video saved to temporary file: temp_videos/6de44e06-0d01-49ef-bc85-1b7d65affd7e.mp4
2025-08-20 22:26:40 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:26:49 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:26:49 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] 30 frames saved to temp_videos/6de44e06-0d01-49ef-bc85-1b7d65affd7e
2025-08-20 22:26:49 - INFO - Prompt token length: 3604
2025-08-20 22:27:09 - INFO - Tokens per second: 39.948981204658494, Peak GPU memory MB: 9378.375
2025-08-20 22:27:09 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Inference time: 29.25 seconds, CPU usage: 78.7%, CPU core utilization: [78.1, 74.6, 76.1, 85.9]
2025-08-20 22:27:09 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Cleaned up temporary file: temp_videos/6de44e06-0d01-49ef-bc85-1b7d65affd7e.mp4
2025-08-20 22:27:09 - INFO - [6de44e06-0d01-49ef-bc85-1b7d65affd7e] Cleaned up temporary frame directory: temp_videos/6de44e06-0d01-49ef-bc85-1b7d65affd7e
2025-08-20 22:27:10 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_009.mp4'
2025-08-20 22:27:10 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Video saved to temporary file: temp_videos/20773204-9773-4845-babb-02b5c94f87a0.mp4
2025-08-20 22:27:10 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:27:17 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:27:17 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] 30 frames saved to temp_videos/20773204-9773-4845-babb-02b5c94f87a0
2025-08-20 22:27:18 - INFO - Prompt token length: 3604
2025-08-20 22:27:38 - INFO - Tokens per second: 39.48549649221776, Peak GPU memory MB: 9378.375
2025-08-20 22:27:38 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Inference time: 28.26 seconds, CPU usage: 77.1%, CPU core utilization: [83.8, 69.4, 66.9, 88.1]
2025-08-20 22:27:38 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Cleaned up temporary file: temp_videos/20773204-9773-4845-babb-02b5c94f87a0.mp4
2025-08-20 22:27:38 - INFO - [20773204-9773-4845-babb-02b5c94f87a0] Cleaned up temporary frame directory: temp_videos/20773204-9773-4845-babb-02b5c94f87a0
2025-08-20 22:27:38 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_010.mp4'
2025-08-20 22:27:38 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Video saved to temporary file: temp_videos/aa2a66a2-808c-4e5c-b423-99e23a45f381.mp4
2025-08-20 22:27:38 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:27:46 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:27:46 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] 30 frames saved to temp_videos/aa2a66a2-808c-4e5c-b423-99e23a45f381
2025-08-20 22:27:47 - INFO - Prompt token length: 3604
2025-08-20 22:28:06 - INFO - Tokens per second: 40.950792314228124, Peak GPU memory MB: 9378.375
2025-08-20 22:28:06 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Inference time: 28.13 seconds, CPU usage: 76.7%, CPU core utilization: [65.8, 73.5, 90.0, 77.5]
2025-08-20 22:28:06 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Cleaned up temporary file: temp_videos/aa2a66a2-808c-4e5c-b423-99e23a45f381.mp4
2025-08-20 22:28:06 - INFO - [aa2a66a2-808c-4e5c-b423-99e23a45f381] Cleaned up temporary frame directory: temp_videos/aa2a66a2-808c-4e5c-b423-99e23a45f381
2025-08-20 22:28:06 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_010.mp4'
2025-08-20 22:28:07 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Video saved to temporary file: temp_videos/722f84b8-f835-49ec-b9cf-7abc704404f5.mp4
2025-08-20 22:28:07 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:28:14 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:28:14 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] 30 frames saved to temp_videos/722f84b8-f835-49ec-b9cf-7abc704404f5
2025-08-20 22:28:15 - INFO - Prompt token length: 3604
2025-08-20 22:28:35 - INFO - Tokens per second: 40.48125592448077, Peak GPU memory MB: 9378.375
2025-08-20 22:28:35 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Inference time: 28.07 seconds, CPU usage: 76.5%, CPU core utilization: [77.9, 58.7, 76.8, 92.3]
2025-08-20 22:28:35 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Cleaned up temporary file: temp_videos/722f84b8-f835-49ec-b9cf-7abc704404f5.mp4
2025-08-20 22:28:35 - INFO - [722f84b8-f835-49ec-b9cf-7abc704404f5] Cleaned up temporary frame directory: temp_videos/722f84b8-f835-49ec-b9cf-7abc704404f5
2025-08-20 22:28:35 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_011.mp4'
2025-08-20 22:28:35 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Video saved to temporary file: temp_videos/56c1fc8e-dbb1-431b-8990-35a4a3403517.mp4
2025-08-20 22:28:35 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:28:43 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:28:43 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] 30 frames saved to temp_videos/56c1fc8e-dbb1-431b-8990-35a4a3403517
2025-08-20 22:28:43 - INFO - Prompt token length: 3604
2025-08-20 22:29:04 - INFO - Tokens per second: 38.97002996849644, Peak GPU memory MB: 9378.375
2025-08-20 22:29:04 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Inference time: 28.80 seconds, CPU usage: 77.8%, CPU core utilization: [82.0, 74.7, 73.1, 81.4]
2025-08-20 22:29:04 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Cleaned up temporary file: temp_videos/56c1fc8e-dbb1-431b-8990-35a4a3403517.mp4
2025-08-20 22:29:04 - INFO - [56c1fc8e-dbb1-431b-8990-35a4a3403517] Cleaned up temporary frame directory: temp_videos/56c1fc8e-dbb1-431b-8990-35a4a3403517
2025-08-20 22:29:04 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_011.mp4'
2025-08-20 22:29:04 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Video saved to temporary file: temp_videos/ce1a27bd-6bcf-44bb-940e-83518f14957b.mp4
2025-08-20 22:29:04 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:29:10 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:29:10 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] 30 frames saved to temp_videos/ce1a27bd-6bcf-44bb-940e-83518f14957b
2025-08-20 22:29:11 - INFO - Prompt token length: 3604
2025-08-20 22:29:31 - INFO - Tokens per second: 38.9287779528858, Peak GPU memory MB: 9378.375
2025-08-20 22:29:31 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Inference time: 27.48 seconds, CPU usage: 81.7%, CPU core utilization: [80.4, 82.5, 84.0, 80.1]
2025-08-20 22:29:31 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Cleaned up temporary file: temp_videos/ce1a27bd-6bcf-44bb-940e-83518f14957b.mp4
2025-08-20 22:29:31 - INFO - [ce1a27bd-6bcf-44bb-940e-83518f14957b] Cleaned up temporary frame directory: temp_videos/ce1a27bd-6bcf-44bb-940e-83518f14957b
2025-08-20 22:29:31 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_012.mp4'
2025-08-20 22:29:32 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Video saved to temporary file: temp_videos/0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd.mp4
2025-08-20 22:29:32 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:29:39 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:29:39 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] 30 frames saved to temp_videos/0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd
2025-08-20 22:29:39 - INFO - Prompt token length: 3604
2025-08-20 22:30:00 - INFO - Tokens per second: 40.38346039864145, Peak GPU memory MB: 9378.375
2025-08-20 22:30:00 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Inference time: 28.03 seconds, CPU usage: 75.2%, CPU core utilization: [80.4, 65.1, 68.7, 86.3]
2025-08-20 22:30:00 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Cleaned up temporary file: temp_videos/0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd.mp4
2025-08-20 22:30:00 - INFO - [0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd] Cleaned up temporary frame directory: temp_videos/0f99c8fb-ff01-4a6a-82c6-ea7cbfb3b9cd
2025-08-20 22:30:00 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_012.mp4'
2025-08-20 22:30:00 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Video saved to temporary file: temp_videos/49359fa0-f5ef-4368-af74-8cdd0bab6c37.mp4
2025-08-20 22:30:00 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:30:06 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:30:06 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] 30 frames saved to temp_videos/49359fa0-f5ef-4368-af74-8cdd0bab6c37
2025-08-20 22:30:07 - INFO - Prompt token length: 3604
2025-08-20 22:30:27 - INFO - Tokens per second: 39.63977281870722, Peak GPU memory MB: 9378.375
2025-08-20 22:30:27 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Inference time: 27.23 seconds, CPU usage: 76.7%, CPU core utilization: [91.7, 76.0, 62.5, 76.4]
2025-08-20 22:30:27 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Cleaned up temporary file: temp_videos/49359fa0-f5ef-4368-af74-8cdd0bab6c37.mp4
2025-08-20 22:30:27 - INFO - [49359fa0-f5ef-4368-af74-8cdd0bab6c37] Cleaned up temporary frame directory: temp_videos/49359fa0-f5ef-4368-af74-8cdd0bab6c37
2025-08-20 22:30:27 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_013.mp4'
2025-08-20 22:30:27 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Video saved to temporary file: temp_videos/2026d740-4f10-41fe-b77b-892d16850275.mp4
2025-08-20 22:30:27 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:30:34 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:30:34 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] 30 frames saved to temp_videos/2026d740-4f10-41fe-b77b-892d16850275
2025-08-20 22:30:35 - INFO - Prompt token length: 3604
2025-08-20 22:30:54 - INFO - Tokens per second: 39.012777556196205, Peak GPU memory MB: 9378.375
2025-08-20 22:30:54 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Inference time: 26.88 seconds, CPU usage: 78.8%, CPU core utilization: [83.9, 82.9, 73.8, 74.7]
2025-08-20 22:30:54 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Cleaned up temporary file: temp_videos/2026d740-4f10-41fe-b77b-892d16850275.mp4
2025-08-20 22:30:54 - INFO - [2026d740-4f10-41fe-b77b-892d16850275] Cleaned up temporary frame directory: temp_videos/2026d740-4f10-41fe-b77b-892d16850275
2025-08-20 22:30:54 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_013.mp4'
2025-08-20 22:30:54 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Video saved to temporary file: temp_videos/279b6d04-e588-4d24-8792-aa7ca95570db.mp4
2025-08-20 22:30:54 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:31:02 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:31:02 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] 30 frames saved to temp_videos/279b6d04-e588-4d24-8792-aa7ca95570db
2025-08-20 22:31:02 - INFO - Prompt token length: 3604
2025-08-20 22:31:21 - INFO - Tokens per second: 38.80665454390215, Peak GPU memory MB: 9378.375
2025-08-20 22:31:21 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Inference time: 27.22 seconds, CPU usage: 81.7%, CPU core utilization: [82.7, 73.3, 79.5, 91.2]
2025-08-20 22:31:21 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Cleaned up temporary file: temp_videos/279b6d04-e588-4d24-8792-aa7ca95570db.mp4
2025-08-20 22:31:21 - INFO - [279b6d04-e588-4d24-8792-aa7ca95570db] Cleaned up temporary frame directory: temp_videos/279b6d04-e588-4d24-8792-aa7ca95570db
2025-08-20 22:31:22 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_014.mp4'
2025-08-20 22:31:22 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Video saved to temporary file: temp_videos/54f8cc9f-9a1a-4295-a7eb-8072b859e4cc.mp4
2025-08-20 22:31:22 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:31:28 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:31:28 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] 30 frames saved to temp_videos/54f8cc9f-9a1a-4295-a7eb-8072b859e4cc
2025-08-20 22:31:28 - INFO - Prompt token length: 3604
2025-08-20 22:31:45 - INFO - Tokens per second: 37.616265679442, Peak GPU memory MB: 9378.375
2025-08-20 22:31:45 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Inference time: 23.60 seconds, CPU usage: 79.2%, CPU core utilization: [81.4, 72.9, 75.7, 86.5]
2025-08-20 22:31:45 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Cleaned up temporary file: temp_videos/54f8cc9f-9a1a-4295-a7eb-8072b859e4cc.mp4
2025-08-20 22:31:45 - INFO - [54f8cc9f-9a1a-4295-a7eb-8072b859e4cc] Cleaned up temporary frame directory: temp_videos/54f8cc9f-9a1a-4295-a7eb-8072b859e4cc
2025-08-20 22:31:45 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_014.mp4'
2025-08-20 22:31:45 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Video saved to temporary file: temp_videos/b28f6588-dffd-4301-af64-e07895a357bd.mp4
2025-08-20 22:31:45 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:31:52 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:31:52 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] 30 frames saved to temp_videos/b28f6588-dffd-4301-af64-e07895a357bd
2025-08-20 22:31:53 - INFO - Prompt token length: 3604
2025-08-20 22:32:10 - INFO - Tokens per second: 37.28115717917145, Peak GPU memory MB: 9378.375
2025-08-20 22:32:10 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Inference time: 24.27 seconds, CPU usage: 78.4%, CPU core utilization: [75.0, 67.1, 82.7, 88.7]
2025-08-20 22:32:10 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Cleaned up temporary file: temp_videos/b28f6588-dffd-4301-af64-e07895a357bd.mp4
2025-08-20 22:32:10 - INFO - [b28f6588-dffd-4301-af64-e07895a357bd] Cleaned up temporary frame directory: temp_videos/b28f6588-dffd-4301-af64-e07895a357bd
2025-08-20 22:32:10 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_015.mp4'
2025-08-20 22:32:10 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Video saved to temporary file: temp_videos/853f6874-3c45-41a1-b1d9-a2a738b3bfcc.mp4
2025-08-20 22:32:10 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:32:17 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:32:17 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] 30 frames saved to temp_videos/853f6874-3c45-41a1-b1d9-a2a738b3bfcc
2025-08-20 22:32:17 - INFO - Prompt token length: 3604
2025-08-20 22:32:37 - INFO - Tokens per second: 39.86888270261289, Peak GPU memory MB: 9378.375
2025-08-20 22:32:37 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Inference time: 27.15 seconds, CPU usage: 75.9%, CPU core utilization: [79.5, 73.9, 74.9, 75.2]
2025-08-20 22:32:37 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Cleaned up temporary file: temp_videos/853f6874-3c45-41a1-b1d9-a2a738b3bfcc.mp4
2025-08-20 22:32:37 - INFO - [853f6874-3c45-41a1-b1d9-a2a738b3bfcc] Cleaned up temporary frame directory: temp_videos/853f6874-3c45-41a1-b1d9-a2a738b3bfcc
2025-08-20 22:32:37 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_015.mp4'
2025-08-20 22:32:37 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Video saved to temporary file: temp_videos/66be1528-862a-4abf-8c42-4a366dace799.mp4
2025-08-20 22:32:37 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:32:45 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:32:45 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] 30 frames saved to temp_videos/66be1528-862a-4abf-8c42-4a366dace799
2025-08-20 22:32:45 - INFO - Prompt token length: 3604
2025-08-20 22:33:06 - INFO - Tokens per second: 39.45218673810312, Peak GPU memory MB: 9378.375
2025-08-20 22:33:06 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Inference time: 28.37 seconds, CPU usage: 77.8%, CPU core utilization: [72.5, 73.4, 81.9, 83.0]
2025-08-20 22:33:06 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Cleaned up temporary file: temp_videos/66be1528-862a-4abf-8c42-4a366dace799.mp4
2025-08-20 22:33:06 - INFO - [66be1528-862a-4abf-8c42-4a366dace799] Cleaned up temporary frame directory: temp_videos/66be1528-862a-4abf-8c42-4a366dace799
2025-08-20 22:33:06 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_016.mp4'
2025-08-20 22:33:06 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Video saved to temporary file: temp_videos/071144ce-0c39-4716-88c7-b0b1e4658f0e.mp4
2025-08-20 22:33:06 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:33:14 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:33:14 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] 30 frames saved to temp_videos/071144ce-0c39-4716-88c7-b0b1e4658f0e
2025-08-20 22:33:14 - INFO - Prompt token length: 3604
2025-08-20 22:33:32 - INFO - Tokens per second: 41.188979826273595, Peak GPU memory MB: 9378.375
2025-08-20 22:33:32 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Inference time: 26.26 seconds, CPU usage: 80.6%, CPU core utilization: [86.1, 88.6, 75.0, 72.8]
2025-08-20 22:33:32 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Cleaned up temporary file: temp_videos/071144ce-0c39-4716-88c7-b0b1e4658f0e.mp4
2025-08-20 22:33:32 - INFO - [071144ce-0c39-4716-88c7-b0b1e4658f0e] Cleaned up temporary frame directory: temp_videos/071144ce-0c39-4716-88c7-b0b1e4658f0e
2025-08-20 22:33:32 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_016.mp4'
2025-08-20 22:33:32 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Video saved to temporary file: temp_videos/f9a44b60-82c4-445d-a8e5-320f739e023e.mp4
2025-08-20 22:33:32 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:33:40 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:33:40 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] 30 frames saved to temp_videos/f9a44b60-82c4-445d-a8e5-320f739e023e
2025-08-20 22:33:40 - INFO - Prompt token length: 3604
2025-08-20 22:33:58 - INFO - Tokens per second: 39.37396963384792, Peak GPU memory MB: 9378.375
2025-08-20 22:33:58 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Inference time: 26.18 seconds, CPU usage: 77.8%, CPU core utilization: [76.8, 70.1, 78.0, 86.3]
2025-08-20 22:33:58 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Cleaned up temporary file: temp_videos/f9a44b60-82c4-445d-a8e5-320f739e023e.mp4
2025-08-20 22:33:58 - INFO - [f9a44b60-82c4-445d-a8e5-320f739e023e] Cleaned up temporary frame directory: temp_videos/f9a44b60-82c4-445d-a8e5-320f739e023e
2025-08-20 22:33:59 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_017.mp4'
2025-08-20 22:33:59 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Video saved to temporary file: temp_videos/bff55645-4f57-49ee-8725-051114a14816.mp4
2025-08-20 22:33:59 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:34:05 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:34:05 - INFO - [bff55645-4f57-49ee-8725-051114a14816] 30 frames saved to temp_videos/bff55645-4f57-49ee-8725-051114a14816
2025-08-20 22:34:06 - INFO - Prompt token length: 3604
2025-08-20 22:34:24 - INFO - Tokens per second: 40.829451790231566, Peak GPU memory MB: 9378.375
2025-08-20 22:34:24 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Inference time: 24.92 seconds, CPU usage: 79.1%, CPU core utilization: [85.1, 85.4, 73.6, 72.2]
2025-08-20 22:34:24 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Cleaned up temporary file: temp_videos/bff55645-4f57-49ee-8725-051114a14816.mp4
2025-08-20 22:34:24 - INFO - [bff55645-4f57-49ee-8725-051114a14816] Cleaned up temporary frame directory: temp_videos/bff55645-4f57-49ee-8725-051114a14816
2025-08-20 22:34:24 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_017.mp4'
2025-08-20 22:34:24 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Video saved to temporary file: temp_videos/42e5904b-710c-44d5-a60d-20efcce3b62d.mp4
2025-08-20 22:34:24 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:34:30 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:34:30 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] 30 frames saved to temp_videos/42e5904b-710c-44d5-a60d-20efcce3b62d
2025-08-20 22:34:31 - INFO - Prompt token length: 3604
2025-08-20 22:34:49 - INFO - Tokens per second: 38.884255600661035, Peak GPU memory MB: 9378.375
2025-08-20 22:34:49 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Inference time: 24.90 seconds, CPU usage: 83.2%, CPU core utilization: [85.3, 81.4, 80.7, 85.5]
2025-08-20 22:34:49 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Cleaned up temporary file: temp_videos/42e5904b-710c-44d5-a60d-20efcce3b62d.mp4
2025-08-20 22:34:49 - INFO - [42e5904b-710c-44d5-a60d-20efcce3b62d] Cleaned up temporary frame directory: temp_videos/42e5904b-710c-44d5-a60d-20efcce3b62d
2025-08-20 22:34:49 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_018.mp4'
2025-08-20 22:34:49 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Video saved to temporary file: temp_videos/74f1be80-c5b0-49fe-b669-79448eb5c43b.mp4
2025-08-20 22:34:49 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:34:55 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:34:55 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] 30 frames saved to temp_videos/74f1be80-c5b0-49fe-b669-79448eb5c43b
2025-08-20 22:34:56 - INFO - Prompt token length: 3604
2025-08-20 22:35:14 - INFO - Tokens per second: 39.540108007028685, Peak GPU memory MB: 9378.375
2025-08-20 22:35:14 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Inference time: 25.35 seconds, CPU usage: 76.2%, CPU core utilization: [80.1, 65.1, 71.7, 87.9]
2025-08-20 22:35:14 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Cleaned up temporary file: temp_videos/74f1be80-c5b0-49fe-b669-79448eb5c43b.mp4
2025-08-20 22:35:14 - INFO - [74f1be80-c5b0-49fe-b669-79448eb5c43b] Cleaned up temporary frame directory: temp_videos/74f1be80-c5b0-49fe-b669-79448eb5c43b
2025-08-20 22:35:15 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_018.mp4'
2025-08-20 22:35:15 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Video saved to temporary file: temp_videos/4abff9bb-803b-4789-8cdf-a87b71107b8a.mp4
2025-08-20 22:35:15 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:35:22 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:35:22 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] 30 frames saved to temp_videos/4abff9bb-803b-4789-8cdf-a87b71107b8a
2025-08-20 22:35:23 - INFO - Prompt token length: 3604
2025-08-20 22:35:41 - INFO - Tokens per second: 38.10626565587464, Peak GPU memory MB: 9378.375
2025-08-20 22:35:41 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Inference time: 26.76 seconds, CPU usage: 77.1%, CPU core utilization: [69.9, 75.1, 84.7, 78.9]
2025-08-20 22:35:41 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Cleaned up temporary file: temp_videos/4abff9bb-803b-4789-8cdf-a87b71107b8a.mp4
2025-08-20 22:35:41 - INFO - [4abff9bb-803b-4789-8cdf-a87b71107b8a] Cleaned up temporary frame directory: temp_videos/4abff9bb-803b-4789-8cdf-a87b71107b8a
2025-08-20 22:35:42 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_019.mp4'
2025-08-20 22:35:42 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Video saved to temporary file: temp_videos/79b4b617-47dc-4863-a4b9-3c2536a5cd7d.mp4
2025-08-20 22:35:42 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:35:49 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:35:49 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] 30 frames saved to temp_videos/79b4b617-47dc-4863-a4b9-3c2536a5cd7d
2025-08-20 22:35:49 - INFO - Prompt token length: 3604
2025-08-20 22:36:09 - INFO - Tokens per second: 40.695375287382426, Peak GPU memory MB: 9378.375
2025-08-20 22:36:09 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Inference time: 26.98 seconds, CPU usage: 73.6%, CPU core utilization: [66.1, 75.3, 82.2, 71.1]
2025-08-20 22:36:09 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Cleaned up temporary file: temp_videos/79b4b617-47dc-4863-a4b9-3c2536a5cd7d.mp4
2025-08-20 22:36:09 - INFO - [79b4b617-47dc-4863-a4b9-3c2536a5cd7d] Cleaned up temporary frame directory: temp_videos/79b4b617-47dc-4863-a4b9-3c2536a5cd7d
2025-08-20 22:36:09 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_019.mp4'
2025-08-20 22:36:09 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Video saved to temporary file: temp_videos/f79ea27a-5f36-4c6f-a78f-4ef7415042f4.mp4
2025-08-20 22:36:09 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:36:17 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:36:17 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] 30 frames saved to temp_videos/f79ea27a-5f36-4c6f-a78f-4ef7415042f4
2025-08-20 22:36:18 - INFO - Prompt token length: 3604
2025-08-20 22:36:38 - INFO - Tokens per second: 37.79767195865447, Peak GPU memory MB: 9378.375
2025-08-20 22:36:38 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Inference time: 28.79 seconds, CPU usage: 77.8%, CPU core utilization: [84.9, 72.4, 69.3, 84.7]
2025-08-20 22:36:38 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Cleaned up temporary file: temp_videos/f79ea27a-5f36-4c6f-a78f-4ef7415042f4.mp4
2025-08-20 22:36:38 - INFO - [f79ea27a-5f36-4c6f-a78f-4ef7415042f4] Cleaned up temporary frame directory: temp_videos/f79ea27a-5f36-4c6f-a78f-4ef7415042f4
2025-08-20 22:36:38 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_020.mp4'
2025-08-20 22:36:38 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Video saved to temporary file: temp_videos/73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d.mp4
2025-08-20 22:36:38 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:36:45 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:36:45 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] 30 frames saved to temp_videos/73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d
2025-08-20 22:36:46 - INFO - Prompt token length: 3604
2025-08-20 22:37:03 - INFO - Tokens per second: 39.61199438135451, Peak GPU memory MB: 9378.375
2025-08-20 22:37:03 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Inference time: 25.21 seconds, CPU usage: 78.1%, CPU core utilization: [82.2, 64.5, 71.5, 94.0]
2025-08-20 22:37:03 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Cleaned up temporary file: temp_videos/73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d.mp4
2025-08-20 22:37:03 - INFO - [73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d] Cleaned up temporary frame directory: temp_videos/73fa4fbe-2530-4b5c-91f5-9f6a842a8f7d
2025-08-20 22:37:03 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_020.mp4'
2025-08-20 22:37:03 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Video saved to temporary file: temp_videos/09d554f9-7e98-4e05-8aa7-11da1fab4ac5.mp4
2025-08-20 22:37:03 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:37:10 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:37:10 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] 30 frames saved to temp_videos/09d554f9-7e98-4e05-8aa7-11da1fab4ac5
2025-08-20 22:37:11 - INFO - Prompt token length: 3604
2025-08-20 22:37:29 - INFO - Tokens per second: 38.21252206264074, Peak GPU memory MB: 9378.375
2025-08-20 22:37:29 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Inference time: 25.31 seconds, CPU usage: 81.7%, CPU core utilization: [82.3, 75.8, 79.9, 88.8]
2025-08-20 22:37:29 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Cleaned up temporary file: temp_videos/09d554f9-7e98-4e05-8aa7-11da1fab4ac5.mp4
2025-08-20 22:37:29 - INFO - [09d554f9-7e98-4e05-8aa7-11da1fab4ac5] Cleaned up temporary frame directory: temp_videos/09d554f9-7e98-4e05-8aa7-11da1fab4ac5
2025-08-20 22:37:29 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_021.mp4'
2025-08-20 22:37:29 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Video saved to temporary file: temp_videos/3622e9e8-28ea-4e4c-b570-38df953aaf9f.mp4
2025-08-20 22:37:29 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:37:36 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:37:36 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] 30 frames saved to temp_videos/3622e9e8-28ea-4e4c-b570-38df953aaf9f
2025-08-20 22:37:37 - INFO - Prompt token length: 3604
2025-08-20 22:37:59 - INFO - Tokens per second: 38.79660135730641, Peak GPU memory MB: 9378.375
2025-08-20 22:37:59 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Inference time: 30.01 seconds, CPU usage: 73.4%, CPU core utilization: [75.8, 60.0, 69.3, 88.6]
2025-08-20 22:37:59 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Cleaned up temporary file: temp_videos/3622e9e8-28ea-4e4c-b570-38df953aaf9f.mp4
2025-08-20 22:37:59 - INFO - [3622e9e8-28ea-4e4c-b570-38df953aaf9f] Cleaned up temporary frame directory: temp_videos/3622e9e8-28ea-4e4c-b570-38df953aaf9f
2025-08-20 22:37:59 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_021.mp4'
2025-08-20 22:37:59 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Video saved to temporary file: temp_videos/220a22a6-3f88-431d-abb1-5fe0cd58a911.mp4
2025-08-20 22:37:59 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:38:07 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:38:07 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] 30 frames saved to temp_videos/220a22a6-3f88-431d-abb1-5fe0cd58a911
2025-08-20 22:38:07 - INFO - Prompt token length: 3604
2025-08-20 22:38:29 - INFO - Tokens per second: 39.54199949017956, Peak GPU memory MB: 9378.375
2025-08-20 22:38:29 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Inference time: 30.05 seconds, CPU usage: 73.8%, CPU core utilization: [77.7, 70.0, 68.1, 79.3]
2025-08-20 22:38:29 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Cleaned up temporary file: temp_videos/220a22a6-3f88-431d-abb1-5fe0cd58a911.mp4
2025-08-20 22:38:29 - INFO - [220a22a6-3f88-431d-abb1-5fe0cd58a911] Cleaned up temporary frame directory: temp_videos/220a22a6-3f88-431d-abb1-5fe0cd58a911
2025-08-20 22:38:29 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_022.mp4'
2025-08-20 22:38:29 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Video saved to temporary file: temp_videos/39eff279-d88f-41db-bc04-a620534dd1f6.mp4
2025-08-20 22:38:29 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:38:36 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:38:36 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] 30 frames saved to temp_videos/39eff279-d88f-41db-bc04-a620534dd1f6
2025-08-20 22:38:37 - INFO - Prompt token length: 3604
2025-08-20 22:38:59 - INFO - Tokens per second: 39.230858988985254, Peak GPU memory MB: 9378.375
2025-08-20 22:38:59 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Inference time: 29.67 seconds, CPU usage: 76.4%, CPU core utilization: [74.1, 61.5, 77.9, 92.1]
2025-08-20 22:38:59 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Cleaned up temporary file: temp_videos/39eff279-d88f-41db-bc04-a620534dd1f6.mp4
2025-08-20 22:38:59 - INFO - [39eff279-d88f-41db-bc04-a620534dd1f6] Cleaned up temporary frame directory: temp_videos/39eff279-d88f-41db-bc04-a620534dd1f6
2025-08-20 22:38:59 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_022.mp4'
2025-08-20 22:38:59 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Video saved to temporary file: temp_videos/96fa5647-4edc-4b1e-957e-04c63a7a7a32.mp4
2025-08-20 22:38:59 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:39:05 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:39:06 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] 30 frames saved to temp_videos/96fa5647-4edc-4b1e-957e-04c63a7a7a32
2025-08-20 22:39:06 - INFO - Prompt token length: 3604
2025-08-20 22:39:28 - INFO - Tokens per second: 39.54947543028791, Peak GPU memory MB: 9378.375
2025-08-20 22:39:28 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Inference time: 28.73 seconds, CPU usage: 79.0%, CPU core utilization: [77.2, 73.8, 80.5, 84.6]
2025-08-20 22:39:28 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Cleaned up temporary file: temp_videos/96fa5647-4edc-4b1e-957e-04c63a7a7a32.mp4
2025-08-20 22:39:28 - INFO - [96fa5647-4edc-4b1e-957e-04c63a7a7a32] Cleaned up temporary frame directory: temp_videos/96fa5647-4edc-4b1e-957e-04c63a7a7a32
2025-08-20 22:39:28 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_023.mp4'
2025-08-20 22:39:28 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Video saved to temporary file: temp_videos/adedb259-ffef-494b-9fa8-46d7a7d9436b.mp4
2025-08-20 22:39:28 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:39:34 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:39:34 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] 30 frames saved to temp_videos/adedb259-ffef-494b-9fa8-46d7a7d9436b
2025-08-20 22:39:35 - INFO - Prompt token length: 3604
2025-08-20 22:39:55 - INFO - Tokens per second: 40.91406490564467, Peak GPU memory MB: 9378.375
2025-08-20 22:39:55 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Inference time: 26.68 seconds, CPU usage: 77.2%, CPU core utilization: [76.4, 80.0, 79.4, 73.1]
2025-08-20 22:39:55 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Cleaned up temporary file: temp_videos/adedb259-ffef-494b-9fa8-46d7a7d9436b.mp4
2025-08-20 22:39:55 - INFO - [adedb259-ffef-494b-9fa8-46d7a7d9436b] Cleaned up temporary frame directory: temp_videos/adedb259-ffef-494b-9fa8-46d7a7d9436b
2025-08-20 22:39:55 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_023.mp4'
2025-08-20 22:39:55 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Video saved to temporary file: temp_videos/7caf9ce9-1fbe-40c3-9ac5-30fbf769f132.mp4
2025-08-20 22:39:55 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:40:03 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:40:03 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] 30 frames saved to temp_videos/7caf9ce9-1fbe-40c3-9ac5-30fbf769f132
2025-08-20 22:40:03 - INFO - Prompt token length: 3604
2025-08-20 22:40:23 - INFO - Tokens per second: 39.12818796943181, Peak GPU memory MB: 9378.375
2025-08-20 22:40:23 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Inference time: 28.12 seconds, CPU usage: 78.2%, CPU core utilization: [69.3, 77.7, 88.1, 77.7]
2025-08-20 22:40:23 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Cleaned up temporary file: temp_videos/7caf9ce9-1fbe-40c3-9ac5-30fbf769f132.mp4
2025-08-20 22:40:23 - INFO - [7caf9ce9-1fbe-40c3-9ac5-30fbf769f132] Cleaned up temporary frame directory: temp_videos/7caf9ce9-1fbe-40c3-9ac5-30fbf769f132
2025-08-20 22:40:23 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_024.mp4'
2025-08-20 22:40:23 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Video saved to temporary file: temp_videos/ff693e7b-6913-4b31-bf2b-acd38601813e.mp4
2025-08-20 22:40:23 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:40:30 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:40:30 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] 30 frames saved to temp_videos/ff693e7b-6913-4b31-bf2b-acd38601813e
2025-08-20 22:40:30 - INFO - Prompt token length: 3604
2025-08-20 22:40:49 - INFO - Tokens per second: 40.69113410208588, Peak GPU memory MB: 9378.375
2025-08-20 22:40:49 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Inference time: 25.75 seconds, CPU usage: 77.4%, CPU core utilization: [74.5, 66.0, 79.8, 89.1]
2025-08-20 22:40:49 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Cleaned up temporary file: temp_videos/ff693e7b-6913-4b31-bf2b-acd38601813e.mp4
2025-08-20 22:40:49 - INFO - [ff693e7b-6913-4b31-bf2b-acd38601813e] Cleaned up temporary frame directory: temp_videos/ff693e7b-6913-4b31-bf2b-acd38601813e
2025-08-20 22:40:49 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_024.mp4'
2025-08-20 22:40:49 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Video saved to temporary file: temp_videos/5b91e958-1746-43b3-86bb-07e19383d4a8.mp4
2025-08-20 22:40:49 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:40:57 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:40:57 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] 30 frames saved to temp_videos/5b91e958-1746-43b3-86bb-07e19383d4a8
2025-08-20 22:40:57 - INFO - Prompt token length: 3604
2025-08-20 22:41:16 - INFO - Tokens per second: 39.941217640686915, Peak GPU memory MB: 9378.375
2025-08-20 22:41:16 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Inference time: 26.89 seconds, CPU usage: 78.8%, CPU core utilization: [83.5, 79.6, 73.1, 79.2]
2025-08-20 22:41:16 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Cleaned up temporary file: temp_videos/5b91e958-1746-43b3-86bb-07e19383d4a8.mp4
2025-08-20 22:41:16 - INFO - [5b91e958-1746-43b3-86bb-07e19383d4a8] Cleaned up temporary frame directory: temp_videos/5b91e958-1746-43b3-86bb-07e19383d4a8
2025-08-20 22:41:16 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_025.mp4'
2025-08-20 22:41:16 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Video saved to temporary file: temp_videos/95296555-f7d5-42a4-a9bd-09a237cf3307.mp4
2025-08-20 22:41:16 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:41:23 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:41:23 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] 30 frames saved to temp_videos/95296555-f7d5-42a4-a9bd-09a237cf3307
2025-08-20 22:41:23 - INFO - Prompt token length: 3604
2025-08-20 22:41:43 - INFO - Tokens per second: 39.45076495853286, Peak GPU memory MB: 9378.375
2025-08-20 22:41:43 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Inference time: 26.88 seconds, CPU usage: 78.6%, CPU core utilization: [73.0, 82.5, 84.3, 74.7]
2025-08-20 22:41:43 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Cleaned up temporary file: temp_videos/95296555-f7d5-42a4-a9bd-09a237cf3307.mp4
2025-08-20 22:41:43 - INFO - [95296555-f7d5-42a4-a9bd-09a237cf3307] Cleaned up temporary frame directory: temp_videos/95296555-f7d5-42a4-a9bd-09a237cf3307
2025-08-20 22:41:43 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_025.mp4'
2025-08-20 22:41:43 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Video saved to temporary file: temp_videos/48a01780-bac8-4bc4-b674-960e500a485b.mp4
2025-08-20 22:41:43 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:41:51 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:41:51 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] 30 frames saved to temp_videos/48a01780-bac8-4bc4-b674-960e500a485b
2025-08-20 22:41:51 - INFO - Prompt token length: 3604
2025-08-20 22:42:11 - INFO - Tokens per second: 40.173796211251464, Peak GPU memory MB: 9378.375
2025-08-20 22:42:11 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Inference time: 27.59 seconds, CPU usage: 77.7%, CPU core utilization: [82.9, 62.6, 68.5, 96.5]
2025-08-20 22:42:11 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Cleaned up temporary file: temp_videos/48a01780-bac8-4bc4-b674-960e500a485b.mp4
2025-08-20 22:42:11 - INFO - [48a01780-bac8-4bc4-b674-960e500a485b] Cleaned up temporary frame directory: temp_videos/48a01780-bac8-4bc4-b674-960e500a485b
2025-08-20 22:42:11 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_026.mp4'
2025-08-20 22:42:11 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Video saved to temporary file: temp_videos/10ca2e39-2518-4d95-a25c-3614c6d24b60.mp4
2025-08-20 22:42:11 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:42:18 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:42:18 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] 30 frames saved to temp_videos/10ca2e39-2518-4d95-a25c-3614c6d24b60
2025-08-20 22:42:18 - INFO - Prompt token length: 3604
2025-08-20 22:42:35 - INFO - Tokens per second: 40.88995817929939, Peak GPU memory MB: 9378.375
2025-08-20 22:42:35 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Inference time: 24.05 seconds, CPU usage: 77.5%, CPU core utilization: [77.5, 67.6, 77.0, 88.0]
2025-08-20 22:42:35 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Cleaned up temporary file: temp_videos/10ca2e39-2518-4d95-a25c-3614c6d24b60.mp4
2025-08-20 22:42:35 - INFO - [10ca2e39-2518-4d95-a25c-3614c6d24b60] Cleaned up temporary frame directory: temp_videos/10ca2e39-2518-4d95-a25c-3614c6d24b60
2025-08-20 22:42:35 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_026.mp4'
2025-08-20 22:42:36 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Video saved to temporary file: temp_videos/a2999e49-cb50-4242-866b-34d48bca2545.mp4
2025-08-20 22:42:36 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:42:42 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:42:42 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] 30 frames saved to temp_videos/a2999e49-cb50-4242-866b-34d48bca2545
2025-08-20 22:42:42 - INFO - Prompt token length: 3604
2025-08-20 22:42:59 - INFO - Tokens per second: 41.29902120715977, Peak GPU memory MB: 9378.375
2025-08-20 22:42:59 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Inference time: 23.75 seconds, CPU usage: 80.4%, CPU core utilization: [79.6, 84.1, 81.0, 76.9]
2025-08-20 22:42:59 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Cleaned up temporary file: temp_videos/a2999e49-cb50-4242-866b-34d48bca2545.mp4
2025-08-20 22:42:59 - INFO - [a2999e49-cb50-4242-866b-34d48bca2545] Cleaned up temporary frame directory: temp_videos/a2999e49-cb50-4242-866b-34d48bca2545
2025-08-20 22:42:59 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_027.mp4'
2025-08-20 22:43:00 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Video saved to temporary file: temp_videos/811a63a5-1887-490b-88eb-b873d0d3cf87.mp4
2025-08-20 22:43:00 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:43:07 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:43:07 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] 30 frames saved to temp_videos/811a63a5-1887-490b-88eb-b873d0d3cf87
2025-08-20 22:43:08 - INFO - Prompt token length: 3604
2025-08-20 22:43:26 - INFO - Tokens per second: 38.078800277017294, Peak GPU memory MB: 9378.375
2025-08-20 22:43:26 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Inference time: 26.18 seconds, CPU usage: 79.9%, CPU core utilization: [81.3, 65.3, 76.5, 96.5]
2025-08-20 22:43:26 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Cleaned up temporary file: temp_videos/811a63a5-1887-490b-88eb-b873d0d3cf87.mp4
2025-08-20 22:43:26 - INFO - [811a63a5-1887-490b-88eb-b873d0d3cf87] Cleaned up temporary frame directory: temp_videos/811a63a5-1887-490b-88eb-b873d0d3cf87
2025-08-20 22:43:26 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_027.mp4'
2025-08-20 22:43:26 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Video saved to temporary file: temp_videos/72fb8435-fb20-47b1-a99b-ac9e2d5822e8.mp4
2025-08-20 22:43:26 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:43:32 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:43:32 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] 30 frames saved to temp_videos/72fb8435-fb20-47b1-a99b-ac9e2d5822e8
2025-08-20 22:43:33 - INFO - Prompt token length: 3604
2025-08-20 22:43:50 - INFO - Tokens per second: 41.296913159264854, Peak GPU memory MB: 9378.375
2025-08-20 22:43:50 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Inference time: 24.63 seconds, CPU usage: 79.0%, CPU core utilization: [87.2, 77.0, 70.0, 81.6]
2025-08-20 22:43:50 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Cleaned up temporary file: temp_videos/72fb8435-fb20-47b1-a99b-ac9e2d5822e8.mp4
2025-08-20 22:43:50 - INFO - [72fb8435-fb20-47b1-a99b-ac9e2d5822e8] Cleaned up temporary frame directory: temp_videos/72fb8435-fb20-47b1-a99b-ac9e2d5822e8
2025-08-20 22:43:51 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_028.mp4'
2025-08-20 22:43:51 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Video saved to temporary file: temp_videos/a1923e99-8ead-4886-ae7f-4e0074d6e2d4.mp4
2025-08-20 22:43:51 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:43:58 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:43:58 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] 30 frames saved to temp_videos/a1923e99-8ead-4886-ae7f-4e0074d6e2d4
2025-08-20 22:43:59 - INFO - Prompt token length: 3604
2025-08-20 22:44:20 - INFO - Tokens per second: 38.84482978776854, Peak GPU memory MB: 9378.375
2025-08-20 22:44:20 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Inference time: 28.93 seconds, CPU usage: 77.1%, CPU core utilization: [69.0, 81.6, 87.6, 70.1]
2025-08-20 22:44:20 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Cleaned up temporary file: temp_videos/a1923e99-8ead-4886-ae7f-4e0074d6e2d4.mp4
2025-08-20 22:44:20 - INFO - [a1923e99-8ead-4886-ae7f-4e0074d6e2d4] Cleaned up temporary frame directory: temp_videos/a1923e99-8ead-4886-ae7f-4e0074d6e2d4
2025-08-20 22:44:20 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_028.mp4'
2025-08-20 22:44:20 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Video saved to temporary file: temp_videos/f37e0636-bba0-44e3-923e-6feea37c53a9.mp4
2025-08-20 22:44:20 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:44:28 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:44:28 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] 30 frames saved to temp_videos/f37e0636-bba0-44e3-923e-6feea37c53a9
2025-08-20 22:44:28 - INFO - Prompt token length: 3604
2025-08-20 22:44:49 - INFO - Tokens per second: 39.910911105816794, Peak GPU memory MB: 9378.375
2025-08-20 22:44:49 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Inference time: 28.97 seconds, CPU usage: 75.8%, CPU core utilization: [74.4, 74.7, 76.0, 77.9]
2025-08-20 22:44:49 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Cleaned up temporary file: temp_videos/f37e0636-bba0-44e3-923e-6feea37c53a9.mp4
2025-08-20 22:44:49 - INFO - [f37e0636-bba0-44e3-923e-6feea37c53a9] Cleaned up temporary frame directory: temp_videos/f37e0636-bba0-44e3-923e-6feea37c53a9
2025-08-20 22:44:49 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_029.mp4'
2025-08-20 22:44:49 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Video saved to temporary file: temp_videos/d9d5eda4-26ed-419e-8aa2-9697fba9dd31.mp4
2025-08-20 22:44:49 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:44:58 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:44:58 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] 30 frames saved to temp_videos/d9d5eda4-26ed-419e-8aa2-9697fba9dd31
2025-08-20 22:44:59 - INFO - Prompt token length: 3604
2025-08-20 22:45:18 - INFO - Tokens per second: 39.2671771929051, Peak GPU memory MB: 9378.375
2025-08-20 22:45:18 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Inference time: 29.12 seconds, CPU usage: 75.9%, CPU core utilization: [73.0, 62.7, 76.9, 90.8]
2025-08-20 22:45:18 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Cleaned up temporary file: temp_videos/d9d5eda4-26ed-419e-8aa2-9697fba9dd31.mp4
2025-08-20 22:45:18 - INFO - [d9d5eda4-26ed-419e-8aa2-9697fba9dd31] Cleaned up temporary frame directory: temp_videos/d9d5eda4-26ed-419e-8aa2-9697fba9dd31
2025-08-20 22:45:18 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_029.mp4'
2025-08-20 22:45:18 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Video saved to temporary file: temp_videos/0156c3c5-ba34-4a33-a89a-de08f834c444.mp4
2025-08-20 22:45:18 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:45:25 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:45:25 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] 30 frames saved to temp_videos/0156c3c5-ba34-4a33-a89a-de08f834c444
2025-08-20 22:45:26 - INFO - Prompt token length: 3604
2025-08-20 22:45:45 - INFO - Tokens per second: 38.770346069233774, Peak GPU memory MB: 9378.375
2025-08-20 22:45:45 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Inference time: 26.91 seconds, CPU usage: 77.2%, CPU core utilization: [77.0, 73.5, 76.6, 81.9]
2025-08-20 22:45:45 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Cleaned up temporary file: temp_videos/0156c3c5-ba34-4a33-a89a-de08f834c444.mp4
2025-08-20 22:45:45 - INFO - [0156c3c5-ba34-4a33-a89a-de08f834c444] Cleaned up temporary frame directory: temp_videos/0156c3c5-ba34-4a33-a89a-de08f834c444
2025-08-20 22:45:46 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_030.mp4'
2025-08-20 22:45:46 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Video saved to temporary file: temp_videos/f29f39ce-5322-4289-8a8e-dd1d548e0c1e.mp4
2025-08-20 22:45:46 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:45:52 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:45:52 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] 30 frames saved to temp_videos/f29f39ce-5322-4289-8a8e-dd1d548e0c1e
2025-08-20 22:45:52 - INFO - Prompt token length: 3604
2025-08-20 22:46:10 - INFO - Tokens per second: 37.574975679061765, Peak GPU memory MB: 9378.375
2025-08-20 22:46:10 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Inference time: 24.52 seconds, CPU usage: 76.4%, CPU core utilization: [73.2, 76.8, 78.6, 76.9]
2025-08-20 22:46:10 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Cleaned up temporary file: temp_videos/f29f39ce-5322-4289-8a8e-dd1d548e0c1e.mp4
2025-08-20 22:46:10 - INFO - [f29f39ce-5322-4289-8a8e-dd1d548e0c1e] Cleaned up temporary frame directory: temp_videos/f29f39ce-5322-4289-8a8e-dd1d548e0c1e
2025-08-20 22:46:10 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_030.mp4'
2025-08-20 22:46:10 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Video saved to temporary file: temp_videos/701e416c-0359-4f4c-ba05-8b8f7ec8434b.mp4
2025-08-20 22:46:10 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:46:17 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:46:17 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] 30 frames saved to temp_videos/701e416c-0359-4f4c-ba05-8b8f7ec8434b
2025-08-20 22:46:18 - INFO - Prompt token length: 3604
2025-08-20 22:46:35 - INFO - Tokens per second: 38.867499480898886, Peak GPU memory MB: 9378.375
2025-08-20 22:46:35 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Inference time: 24.94 seconds, CPU usage: 82.0%, CPU core utilization: [85.2, 68.3, 78.1, 96.2]
2025-08-20 22:46:35 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Cleaned up temporary file: temp_videos/701e416c-0359-4f4c-ba05-8b8f7ec8434b.mp4
2025-08-20 22:46:35 - INFO - [701e416c-0359-4f4c-ba05-8b8f7ec8434b] Cleaned up temporary frame directory: temp_videos/701e416c-0359-4f4c-ba05-8b8f7ec8434b
2025-08-20 22:46:35 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_031.mp4'
2025-08-20 22:46:36 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Video saved to temporary file: temp_videos/7d13050f-0acf-4140-b270-4f3a01ea84ad.mp4
2025-08-20 22:46:36 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:46:42 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:46:42 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] 30 frames saved to temp_videos/7d13050f-0acf-4140-b270-4f3a01ea84ad
2025-08-20 22:46:43 - INFO - Prompt token length: 3604
2025-08-20 22:47:02 - INFO - Tokens per second: 42.473264827377115, Peak GPU memory MB: 9378.375
2025-08-20 22:47:02 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Inference time: 26.92 seconds, CPU usage: 62.5%, CPU core utilization: [60.4, 57.0, 51.6, 81.0]
2025-08-20 22:47:02 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Cleaned up temporary file: temp_videos/7d13050f-0acf-4140-b270-4f3a01ea84ad.mp4
2025-08-20 22:47:02 - INFO - [7d13050f-0acf-4140-b270-4f3a01ea84ad] Cleaned up temporary frame directory: temp_videos/7d13050f-0acf-4140-b270-4f3a01ea84ad
2025-08-20 22:47:03 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_031.mp4'
2025-08-20 22:47:03 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Video saved to temporary file: temp_videos/81e5e9db-81e6-4b5c-aae9-e808434e01c0.mp4
2025-08-20 22:47:03 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:47:07 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:47:07 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] 30 frames saved to temp_videos/81e5e9db-81e6-4b5c-aae9-e808434e01c0
2025-08-20 22:47:08 - INFO - Prompt token length: 3604
2025-08-20 22:47:27 - INFO - Tokens per second: 42.60848705585198, Peak GPU memory MB: 9378.375
2025-08-20 22:47:27 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Inference time: 24.63 seconds, CPU usage: 38.9%, CPU core utilization: [21.8, 63.8, 20.6, 49.7]
2025-08-20 22:47:27 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Cleaned up temporary file: temp_videos/81e5e9db-81e6-4b5c-aae9-e808434e01c0.mp4
2025-08-20 22:47:27 - INFO - [81e5e9db-81e6-4b5c-aae9-e808434e01c0] Cleaned up temporary frame directory: temp_videos/81e5e9db-81e6-4b5c-aae9-e808434e01c0
2025-08-20 22:47:27 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_032.mp4'
2025-08-20 22:47:27 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Video saved to temporary file: temp_videos/26b2aa09-2296-48d2-9ccf-71573c8c8f65.mp4
2025-08-20 22:47:27 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:47:32 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:47:32 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] 30 frames saved to temp_videos/26b2aa09-2296-48d2-9ccf-71573c8c8f65
2025-08-20 22:47:33 - INFO - Prompt token length: 3604
2025-08-20 22:47:53 - INFO - Tokens per second: 40.80785392093638, Peak GPU memory MB: 9378.375
2025-08-20 22:47:53 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Inference time: 25.82 seconds, CPU usage: 44.1%, CPU core utilization: [51.5, 31.5, 66.0, 27.2]
2025-08-20 22:47:53 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Cleaned up temporary file: temp_videos/26b2aa09-2296-48d2-9ccf-71573c8c8f65.mp4
2025-08-20 22:47:53 - INFO - [26b2aa09-2296-48d2-9ccf-71573c8c8f65] Cleaned up temporary frame directory: temp_videos/26b2aa09-2296-48d2-9ccf-71573c8c8f65
2025-08-20 22:47:53 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_032.mp4'
2025-08-20 22:47:53 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Video saved to temporary file: temp_videos/d521c0c1-df0f-4a77-98fe-904531631498.mp4
2025-08-20 22:47:53 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:47:58 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:47:58 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] 30 frames saved to temp_videos/d521c0c1-df0f-4a77-98fe-904531631498
2025-08-20 22:47:59 - INFO - Prompt token length: 3604
2025-08-20 22:48:19 - INFO - Tokens per second: 41.68167505655786, Peak GPU memory MB: 9378.375
2025-08-20 22:48:19 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Inference time: 25.70 seconds, CPU usage: 55.5%, CPU core utilization: [41.3, 65.4, 56.7, 58.6]
2025-08-20 22:48:19 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Cleaned up temporary file: temp_videos/d521c0c1-df0f-4a77-98fe-904531631498.mp4
2025-08-20 22:48:19 - INFO - [d521c0c1-df0f-4a77-98fe-904531631498] Cleaned up temporary frame directory: temp_videos/d521c0c1-df0f-4a77-98fe-904531631498
2025-08-20 22:48:19 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_033.mp4'
2025-08-20 22:48:19 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Video saved to temporary file: temp_videos/34958ac9-b7d7-4bbf-820a-41b304ebf7e5.mp4
2025-08-20 22:48:19 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:48:24 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:48:24 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] 30 frames saved to temp_videos/34958ac9-b7d7-4bbf-820a-41b304ebf7e5
2025-08-20 22:48:24 - INFO - Prompt token length: 3604
2025-08-20 22:48:41 - INFO - Tokens per second: 42.93652782490678, Peak GPU memory MB: 9378.375
2025-08-20 22:48:41 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Inference time: 21.99 seconds, CPU usage: 39.5%, CPU core utilization: [21.5, 55.4, 19.6, 61.4]
2025-08-20 22:48:41 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Cleaned up temporary file: temp_videos/34958ac9-b7d7-4bbf-820a-41b304ebf7e5.mp4
2025-08-20 22:48:41 - INFO - [34958ac9-b7d7-4bbf-820a-41b304ebf7e5] Cleaned up temporary frame directory: temp_videos/34958ac9-b7d7-4bbf-820a-41b304ebf7e5
2025-08-20 22:48:41 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_033.mp4'
2025-08-20 22:48:41 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Video saved to temporary file: temp_videos/bb49e37e-2d52-4e0e-819d-740e1fd7da79.mp4
2025-08-20 22:48:41 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:48:46 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:48:46 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] 30 frames saved to temp_videos/bb49e37e-2d52-4e0e-819d-740e1fd7da79
2025-08-20 22:48:47 - INFO - Prompt token length: 3604
2025-08-20 22:49:03 - INFO - Tokens per second: 43.18803826536313, Peak GPU memory MB: 9378.375
2025-08-20 22:49:03 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Inference time: 22.06 seconds, CPU usage: 39.8%, CPU core utilization: [22.0, 21.8, 95.1, 20.1]
2025-08-20 22:49:03 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Cleaned up temporary file: temp_videos/bb49e37e-2d52-4e0e-819d-740e1fd7da79.mp4
2025-08-20 22:49:03 - INFO - [bb49e37e-2d52-4e0e-819d-740e1fd7da79] Cleaned up temporary frame directory: temp_videos/bb49e37e-2d52-4e0e-819d-740e1fd7da79
2025-08-20 22:49:04 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_034.mp4'
2025-08-20 22:49:04 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Video saved to temporary file: temp_videos/8944c9b5-003e-4f7f-b955-f0d3a1242c6c.mp4
2025-08-20 22:49:04 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:49:09 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:49:09 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] 30 frames saved to temp_videos/8944c9b5-003e-4f7f-b955-f0d3a1242c6c
2025-08-20 22:49:09 - INFO - Prompt token length: 3604
2025-08-20 22:49:28 - INFO - Tokens per second: 42.55636672195234, Peak GPU memory MB: 9378.375
2025-08-20 22:49:28 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Inference time: 24.50 seconds, CPU usage: 39.2%, CPU core utilization: [26.4, 54.9, 21.9, 53.6]
2025-08-20 22:49:28 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Cleaned up temporary file: temp_videos/8944c9b5-003e-4f7f-b955-f0d3a1242c6c.mp4
2025-08-20 22:49:28 - INFO - [8944c9b5-003e-4f7f-b955-f0d3a1242c6c] Cleaned up temporary frame directory: temp_videos/8944c9b5-003e-4f7f-b955-f0d3a1242c6c
2025-08-20 22:49:28 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_034.mp4'
2025-08-20 22:49:28 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Video saved to temporary file: temp_videos/2fc4f4a7-985e-4444-b521-6f05e6ddd98b.mp4
2025-08-20 22:49:28 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:49:33 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:49:33 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] 30 frames saved to temp_videos/2fc4f4a7-985e-4444-b521-6f05e6ddd98b
2025-08-20 22:49:34 - INFO - Prompt token length: 3604
2025-08-20 22:49:53 - INFO - Tokens per second: 42.77388431601942, Peak GPU memory MB: 9378.375
2025-08-20 22:49:53 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Inference time: 24.49 seconds, CPU usage: 50.7%, CPU core utilization: [48.9, 68.1, 50.9, 35.1]
2025-08-20 22:49:53 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Cleaned up temporary file: temp_videos/2fc4f4a7-985e-4444-b521-6f05e6ddd98b.mp4
2025-08-20 22:49:53 - INFO - [2fc4f4a7-985e-4444-b521-6f05e6ddd98b] Cleaned up temporary frame directory: temp_videos/2fc4f4a7-985e-4444-b521-6f05e6ddd98b
2025-08-20 22:49:53 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_035.mp4'
2025-08-20 22:49:53 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Video saved to temporary file: temp_videos/3b0fde39-fa83-45a9-9100-4255f9ed00b4.mp4
2025-08-20 22:49:53 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:49:58 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:49:58 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] 30 frames saved to temp_videos/3b0fde39-fa83-45a9-9100-4255f9ed00b4
2025-08-20 22:49:58 - INFO - Prompt token length: 3604
2025-08-20 22:50:19 - INFO - Tokens per second: 42.49865841788772, Peak GPU memory MB: 9378.375
2025-08-20 22:50:19 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Inference time: 25.52 seconds, CPU usage: 38.1%, CPU core utilization: [19.0, 77.5, 19.1, 36.8]
2025-08-20 22:50:19 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Cleaned up temporary file: temp_videos/3b0fde39-fa83-45a9-9100-4255f9ed00b4.mp4
2025-08-20 22:50:19 - INFO - [3b0fde39-fa83-45a9-9100-4255f9ed00b4] Cleaned up temporary frame directory: temp_videos/3b0fde39-fa83-45a9-9100-4255f9ed00b4
2025-08-20 22:50:19 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_035.mp4'
2025-08-20 22:50:19 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Video saved to temporary file: temp_videos/d3e3c964-fc52-45f6-83e8-6208ba813345.mp4
2025-08-20 22:50:19 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:50:24 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:50:24 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] 30 frames saved to temp_videos/d3e3c964-fc52-45f6-83e8-6208ba813345
2025-08-20 22:50:24 - INFO - Prompt token length: 3604
2025-08-20 22:50:44 - INFO - Tokens per second: 42.56102609895685, Peak GPU memory MB: 9378.375
2025-08-20 22:50:44 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Inference time: 25.44 seconds, CPU usage: 38.0%, CPU core utilization: [56.1, 44.5, 33.2, 18.2]
2025-08-20 22:50:44 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Cleaned up temporary file: temp_videos/d3e3c964-fc52-45f6-83e8-6208ba813345.mp4
2025-08-20 22:50:44 - INFO - [d3e3c964-fc52-45f6-83e8-6208ba813345] Cleaned up temporary frame directory: temp_videos/d3e3c964-fc52-45f6-83e8-6208ba813345
2025-08-20 22:50:44 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_036.mp4'
2025-08-20 22:50:44 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Video saved to temporary file: temp_videos/05601db3-ba4c-405e-bbc0-982185b86516.mp4
2025-08-20 22:50:44 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:50:49 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:50:49 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] 30 frames saved to temp_videos/05601db3-ba4c-405e-bbc0-982185b86516
2025-08-20 22:50:50 - INFO - Prompt token length: 3604
2025-08-20 22:51:07 - INFO - Tokens per second: 42.71259057251842, Peak GPU memory MB: 9378.375
2025-08-20 22:51:07 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Inference time: 22.76 seconds, CPU usage: 39.3%, CPU core utilization: [31.6, 20.0, 76.4, 28.9]
2025-08-20 22:51:07 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Cleaned up temporary file: temp_videos/05601db3-ba4c-405e-bbc0-982185b86516.mp4
2025-08-20 22:51:07 - INFO - [05601db3-ba4c-405e-bbc0-982185b86516] Cleaned up temporary frame directory: temp_videos/05601db3-ba4c-405e-bbc0-982185b86516
2025-08-20 22:51:07 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_036.mp4'
2025-08-20 22:51:07 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Video saved to temporary file: temp_videos/d3e8e022-c4df-4844-a3c6-6f0838a0a72d.mp4
2025-08-20 22:51:07 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:51:12 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:51:12 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] 30 frames saved to temp_videos/d3e8e022-c4df-4844-a3c6-6f0838a0a72d
2025-08-20 22:51:13 - INFO - Prompt token length: 3604
2025-08-20 22:51:30 - INFO - Tokens per second: 43.1751414519081, Peak GPU memory MB: 9378.375
2025-08-20 22:51:30 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Inference time: 22.83 seconds, CPU usage: 39.9%, CPU core utilization: [38.8, 21.6, 78.3, 20.7]
2025-08-20 22:51:30 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Cleaned up temporary file: temp_videos/d3e8e022-c4df-4844-a3c6-6f0838a0a72d.mp4
2025-08-20 22:51:30 - INFO - [d3e8e022-c4df-4844-a3c6-6f0838a0a72d] Cleaned up temporary frame directory: temp_videos/d3e8e022-c4df-4844-a3c6-6f0838a0a72d
2025-08-20 22:51:30 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_037.mp4'
2025-08-20 22:51:30 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Video saved to temporary file: temp_videos/67cebe22-e989-4767-a814-edf257b2eb99.mp4
2025-08-20 22:51:30 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:51:35 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:51:35 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] 30 frames saved to temp_videos/67cebe22-e989-4767-a814-edf257b2eb99
2025-08-20 22:51:36 - INFO - Prompt token length: 3604
2025-08-20 22:51:54 - INFO - Tokens per second: 42.99028640429355, Peak GPU memory MB: 9378.375
2025-08-20 22:51:54 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Inference time: 23.24 seconds, CPU usage: 39.1%, CPU core utilization: [53.7, 27.7, 52.4, 22.5]
2025-08-20 22:51:54 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Cleaned up temporary file: temp_videos/67cebe22-e989-4767-a814-edf257b2eb99.mp4
2025-08-20 22:51:54 - INFO - [67cebe22-e989-4767-a814-edf257b2eb99] Cleaned up temporary frame directory: temp_videos/67cebe22-e989-4767-a814-edf257b2eb99
2025-08-20 22:51:54 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_037.mp4'
2025-08-20 22:51:54 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Video saved to temporary file: temp_videos/c3876a59-c2a5-4f8a-ae78-8f2b40b834b5.mp4
2025-08-20 22:51:54 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:51:59 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:51:59 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] 30 frames saved to temp_videos/c3876a59-c2a5-4f8a-ae78-8f2b40b834b5
2025-08-20 22:51:59 - INFO - Prompt token length: 3604
2025-08-20 22:52:17 - INFO - Tokens per second: 42.91101890756983, Peak GPU memory MB: 9378.375
2025-08-20 22:52:17 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Inference time: 23.26 seconds, CPU usage: 39.4%, CPU core utilization: [20.5, 55.9, 21.0, 60.1]
2025-08-20 22:52:17 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Cleaned up temporary file: temp_videos/c3876a59-c2a5-4f8a-ae78-8f2b40b834b5.mp4
2025-08-20 22:52:17 - INFO - [c3876a59-c2a5-4f8a-ae78-8f2b40b834b5] Cleaned up temporary frame directory: temp_videos/c3876a59-c2a5-4f8a-ae78-8f2b40b834b5
2025-08-20 22:52:17 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_038.mp4'
2025-08-20 22:52:17 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Video saved to temporary file: temp_videos/d07c5198-346d-4745-a0bb-2c05890908a9.mp4
2025-08-20 22:52:17 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:52:22 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:52:22 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] 30 frames saved to temp_videos/d07c5198-346d-4745-a0bb-2c05890908a9
2025-08-20 22:52:22 - INFO - Prompt token length: 3604
2025-08-20 22:52:41 - INFO - Tokens per second: 42.56079816289042, Peak GPU memory MB: 9378.375
2025-08-20 22:52:41 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Inference time: 23.32 seconds, CPU usage: 38.9%, CPU core utilization: [40.0, 19.9, 63.4, 32.4]
2025-08-20 22:52:41 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Cleaned up temporary file: temp_videos/d07c5198-346d-4745-a0bb-2c05890908a9.mp4
2025-08-20 22:52:41 - INFO - [d07c5198-346d-4745-a0bb-2c05890908a9] Cleaned up temporary frame directory: temp_videos/d07c5198-346d-4745-a0bb-2c05890908a9
2025-08-20 22:52:41 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_038.mp4'
2025-08-20 22:52:41 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Video saved to temporary file: temp_videos/2e1a282f-c384-44ad-acdd-7bc9b75084da.mp4
2025-08-20 22:52:41 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:52:46 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:52:46 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] 30 frames saved to temp_videos/2e1a282f-c384-44ad-acdd-7bc9b75084da
2025-08-20 22:52:46 - INFO - Prompt token length: 3604
2025-08-20 22:53:04 - INFO - Tokens per second: 43.039363167119106, Peak GPU memory MB: 9378.375
2025-08-20 22:53:04 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Inference time: 23.33 seconds, CPU usage: 39.0%, CPU core utilization: [32.3, 46.4, 47.3, 29.8]
2025-08-20 22:53:04 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Cleaned up temporary file: temp_videos/2e1a282f-c384-44ad-acdd-7bc9b75084da.mp4
2025-08-20 22:53:04 - INFO - [2e1a282f-c384-44ad-acdd-7bc9b75084da] Cleaned up temporary frame directory: temp_videos/2e1a282f-c384-44ad-acdd-7bc9b75084da
2025-08-20 22:53:04 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_039.mp4'
2025-08-20 22:53:04 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Video saved to temporary file: temp_videos/b8191900-0e19-491d-8a46-47212e0143fb.mp4
2025-08-20 22:53:04 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:53:09 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:53:09 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] 30 frames saved to temp_videos/b8191900-0e19-491d-8a46-47212e0143fb
2025-08-20 22:53:09 - INFO - Prompt token length: 3604
2025-08-20 22:53:29 - INFO - Tokens per second: 42.75833952241025, Peak GPU memory MB: 9378.375
2025-08-20 22:53:29 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Inference time: 24.55 seconds, CPU usage: 38.6%, CPU core utilization: [20.2, 25.7, 89.8, 18.7]
2025-08-20 22:53:29 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Cleaned up temporary file: temp_videos/b8191900-0e19-491d-8a46-47212e0143fb.mp4
2025-08-20 22:53:29 - INFO - [b8191900-0e19-491d-8a46-47212e0143fb] Cleaned up temporary frame directory: temp_videos/b8191900-0e19-491d-8a46-47212e0143fb
2025-08-20 22:53:29 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_039.mp4'
2025-08-20 22:53:29 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Video saved to temporary file: temp_videos/910d3fc2-1d5c-40b3-856f-02012cfbe592.mp4
2025-08-20 22:53:29 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:53:34 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:53:34 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] 30 frames saved to temp_videos/910d3fc2-1d5c-40b3-856f-02012cfbe592
2025-08-20 22:53:34 - INFO - Prompt token length: 3604
2025-08-20 22:53:53 - INFO - Tokens per second: 43.06007293674169, Peak GPU memory MB: 9378.375
2025-08-20 22:53:53 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Inference time: 24.49 seconds, CPU usage: 38.6%, CPU core utilization: [28.2, 20.0, 86.1, 20.0]
2025-08-20 22:53:54 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Cleaned up temporary file: temp_videos/910d3fc2-1d5c-40b3-856f-02012cfbe592.mp4
2025-08-20 22:53:54 - INFO - [910d3fc2-1d5c-40b3-856f-02012cfbe592] Cleaned up temporary frame directory: temp_videos/910d3fc2-1d5c-40b3-856f-02012cfbe592
2025-08-20 22:53:54 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_040.mp4'
2025-08-20 22:53:54 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Video saved to temporary file: temp_videos/a552571d-2073-4688-84ba-f2e3fe36e9f5.mp4
2025-08-20 22:53:54 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:53:59 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:53:59 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] 30 frames saved to temp_videos/a552571d-2073-4688-84ba-f2e3fe36e9f5
2025-08-20 22:53:59 - INFO - Prompt token length: 3604
2025-08-20 22:54:16 - INFO - Tokens per second: 43.14582941802569, Peak GPU memory MB: 9378.375
2025-08-20 22:54:16 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Inference time: 22.64 seconds, CPU usage: 39.7%, CPU core utilization: [69.3, 21.9, 47.1, 20.1]
2025-08-20 22:54:16 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Cleaned up temporary file: temp_videos/a552571d-2073-4688-84ba-f2e3fe36e9f5.mp4
2025-08-20 22:54:16 - INFO - [a552571d-2073-4688-84ba-f2e3fe36e9f5] Cleaned up temporary frame directory: temp_videos/a552571d-2073-4688-84ba-f2e3fe36e9f5
2025-08-20 22:54:17 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_040.mp4'
2025-08-20 22:54:17 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Video saved to temporary file: temp_videos/7a3804f8-f643-49b6-ac31-fdfe9917bb44.mp4
2025-08-20 22:54:17 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:54:21 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:54:21 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] 30 frames saved to temp_videos/7a3804f8-f643-49b6-ac31-fdfe9917bb44
2025-08-20 22:54:22 - INFO - Prompt token length: 3604
2025-08-20 22:54:39 - INFO - Tokens per second: 42.90120292725611, Peak GPU memory MB: 9378.375
2025-08-20 22:54:39 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Inference time: 22.56 seconds, CPU usage: 39.4%, CPU core utilization: [23.0, 33.0, 19.8, 81.8]
2025-08-20 22:54:39 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Cleaned up temporary file: temp_videos/7a3804f8-f643-49b6-ac31-fdfe9917bb44.mp4
2025-08-20 22:54:39 - INFO - [7a3804f8-f643-49b6-ac31-fdfe9917bb44] Cleaned up temporary frame directory: temp_videos/7a3804f8-f643-49b6-ac31-fdfe9917bb44
2025-08-20 22:54:39 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_041.mp4'
2025-08-20 22:54:39 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Video saved to temporary file: temp_videos/29e1bbd2-43fc-421e-8ec6-e4426f910645.mp4
2025-08-20 22:54:39 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:54:44 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:54:44 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] 30 frames saved to temp_videos/29e1bbd2-43fc-421e-8ec6-e4426f910645
2025-08-20 22:54:45 - INFO - Prompt token length: 3604
2025-08-20 22:55:01 - INFO - Tokens per second: 42.74904721881862, Peak GPU memory MB: 9378.375
2025-08-20 22:55:01 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Inference time: 21.91 seconds, CPU usage: 39.5%, CPU core utilization: [20.1, 51.4, 21.5, 64.9]
2025-08-20 22:55:01 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Cleaned up temporary file: temp_videos/29e1bbd2-43fc-421e-8ec6-e4426f910645.mp4
2025-08-20 22:55:01 - INFO - [29e1bbd2-43fc-421e-8ec6-e4426f910645] Cleaned up temporary frame directory: temp_videos/29e1bbd2-43fc-421e-8ec6-e4426f910645
2025-08-20 22:55:01 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_041.mp4'
2025-08-20 22:55:01 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Video saved to temporary file: temp_videos/a180e8ab-6e30-47d1-8754-b84cbf712b15.mp4
2025-08-20 22:55:01 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:55:06 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:55:06 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] 30 frames saved to temp_videos/a180e8ab-6e30-47d1-8754-b84cbf712b15
2025-08-20 22:55:07 - INFO - Prompt token length: 3604
2025-08-20 22:55:23 - INFO - Tokens per second: 43.534909908199374, Peak GPU memory MB: 9378.375
2025-08-20 22:55:23 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Inference time: 21.86 seconds, CPU usage: 40.0%, CPU core utilization: [26.5, 21.5, 90.0, 21.9]
2025-08-20 22:55:23 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Cleaned up temporary file: temp_videos/a180e8ab-6e30-47d1-8754-b84cbf712b15.mp4
2025-08-20 22:55:23 - INFO - [a180e8ab-6e30-47d1-8754-b84cbf712b15] Cleaned up temporary frame directory: temp_videos/a180e8ab-6e30-47d1-8754-b84cbf712b15
2025-08-20 22:55:23 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_042.mp4'
2025-08-20 22:55:24 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Video saved to temporary file: temp_videos/2fd14dbf-6cab-4d1d-8cfa-9d16543ad180.mp4
2025-08-20 22:55:24 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:55:28 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:55:28 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] 30 frames saved to temp_videos/2fd14dbf-6cab-4d1d-8cfa-9d16543ad180
2025-08-20 22:55:29 - INFO - Prompt token length: 3604
2025-08-20 22:55:46 - INFO - Tokens per second: 42.738544378380034, Peak GPU memory MB: 9378.375
2025-08-20 22:55:46 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Inference time: 22.71 seconds, CPU usage: 39.2%, CPU core utilization: [27.0, 85.7, 21.2, 22.8]
2025-08-20 22:55:46 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Cleaned up temporary file: temp_videos/2fd14dbf-6cab-4d1d-8cfa-9d16543ad180.mp4
2025-08-20 22:55:46 - INFO - [2fd14dbf-6cab-4d1d-8cfa-9d16543ad180] Cleaned up temporary frame directory: temp_videos/2fd14dbf-6cab-4d1d-8cfa-9d16543ad180
2025-08-20 22:55:46 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_042.mp4'
2025-08-20 22:55:46 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Video saved to temporary file: temp_videos/041c0c6f-29fe-4509-a5e2-a906b10e0b9b.mp4
2025-08-20 22:55:46 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:55:51 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:55:51 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] 30 frames saved to temp_videos/041c0c6f-29fe-4509-a5e2-a906b10e0b9b
2025-08-20 22:55:51 - INFO - Prompt token length: 3604
2025-08-20 22:56:09 - INFO - Tokens per second: 42.90742954996482, Peak GPU memory MB: 9378.375
2025-08-20 22:56:09 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Inference time: 22.72 seconds, CPU usage: 39.0%, CPU core utilization: [20.2, 51.9, 20.0, 64.1]
2025-08-20 22:56:09 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Cleaned up temporary file: temp_videos/041c0c6f-29fe-4509-a5e2-a906b10e0b9b.mp4
2025-08-20 22:56:09 - INFO - [041c0c6f-29fe-4509-a5e2-a906b10e0b9b] Cleaned up temporary frame directory: temp_videos/041c0c6f-29fe-4509-a5e2-a906b10e0b9b
2025-08-20 22:56:09 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_043.mp4'
2025-08-20 22:56:09 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Video saved to temporary file: temp_videos/5e655c1b-8f68-48b8-821b-39192e744ded.mp4
2025-08-20 22:56:09 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:56:14 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:56:14 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] 30 frames saved to temp_videos/5e655c1b-8f68-48b8-821b-39192e744ded
2025-08-20 22:56:15 - INFO - Prompt token length: 3604
2025-08-20 22:56:33 - INFO - Tokens per second: 42.936896064627625, Peak GPU memory MB: 9378.375
2025-08-20 22:56:33 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Inference time: 24.11 seconds, CPU usage: 38.7%, CPU core utilization: [64.6, 19.5, 51.1, 19.2]
2025-08-20 22:56:33 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Cleaned up temporary file: temp_videos/5e655c1b-8f68-48b8-821b-39192e744ded.mp4
2025-08-20 22:56:33 - INFO - [5e655c1b-8f68-48b8-821b-39192e744ded] Cleaned up temporary frame directory: temp_videos/5e655c1b-8f68-48b8-821b-39192e744ded
2025-08-20 22:56:33 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_043.mp4'
2025-08-20 22:56:34 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Video saved to temporary file: temp_videos/4854dfea-d0be-4393-944b-e0ae11c25bb2.mp4
2025-08-20 22:56:34 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:56:38 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:56:38 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] 30 frames saved to temp_videos/4854dfea-d0be-4393-944b-e0ae11c25bb2
2025-08-20 22:56:39 - INFO - Prompt token length: 3604
2025-08-20 22:56:57 - INFO - Tokens per second: 42.647811292769354, Peak GPU memory MB: 9378.375
2025-08-20 22:56:57 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Inference time: 24.02 seconds, CPU usage: 38.6%, CPU core utilization: [29.3, 66.2, 19.3, 39.4]
2025-08-20 22:56:57 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Cleaned up temporary file: temp_videos/4854dfea-d0be-4393-944b-e0ae11c25bb2.mp4
2025-08-20 22:56:57 - INFO - [4854dfea-d0be-4393-944b-e0ae11c25bb2] Cleaned up temporary frame directory: temp_videos/4854dfea-d0be-4393-944b-e0ae11c25bb2
2025-08-20 22:56:58 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_044.mp4'
2025-08-20 22:56:58 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Video saved to temporary file: temp_videos/3ac0d962-5cd6-4a52-b217-201197b1652f.mp4
2025-08-20 22:56:58 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:57:03 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:57:03 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] 30 frames saved to temp_videos/3ac0d962-5cd6-4a52-b217-201197b1652f
2025-08-20 22:57:03 - INFO - Prompt token length: 3604
2025-08-20 22:57:23 - INFO - Tokens per second: 42.76047099874616, Peak GPU memory MB: 9378.375
2025-08-20 22:57:23 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Inference time: 25.45 seconds, CPU usage: 38.0%, CPU core utilization: [38.5, 39.9, 51.3, 22.5]
2025-08-20 22:57:23 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Cleaned up temporary file: temp_videos/3ac0d962-5cd6-4a52-b217-201197b1652f.mp4
2025-08-20 22:57:23 - INFO - [3ac0d962-5cd6-4a52-b217-201197b1652f] Cleaned up temporary frame directory: temp_videos/3ac0d962-5cd6-4a52-b217-201197b1652f
2025-08-20 22:57:23 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_044.mp4'
2025-08-20 22:57:23 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Video saved to temporary file: temp_videos/21610b16-8e9e-489f-b78a-a3cfc6fa85ef.mp4
2025-08-20 22:57:23 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:57:28 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:57:28 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] 30 frames saved to temp_videos/21610b16-8e9e-489f-b78a-a3cfc6fa85ef
2025-08-20 22:57:28 - INFO - Prompt token length: 3604
2025-08-20 22:57:49 - INFO - Tokens per second: 42.59159214178798, Peak GPU memory MB: 9378.375
2025-08-20 22:57:49 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Inference time: 25.50 seconds, CPU usage: 38.1%, CPU core utilization: [65.0, 33.4, 35.0, 18.8]
2025-08-20 22:57:49 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Cleaned up temporary file: temp_videos/21610b16-8e9e-489f-b78a-a3cfc6fa85ef.mp4
2025-08-20 22:57:49 - INFO - [21610b16-8e9e-489f-b78a-a3cfc6fa85ef] Cleaned up temporary frame directory: temp_videos/21610b16-8e9e-489f-b78a-a3cfc6fa85ef
2025-08-20 22:57:49 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_045.mp4'
2025-08-20 22:57:49 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Video saved to temporary file: temp_videos/feb0c88d-775a-48d3-b753-f84bd9a71c31.mp4
2025-08-20 22:57:49 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:57:54 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:57:54 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] 30 frames saved to temp_videos/feb0c88d-775a-48d3-b753-f84bd9a71c31
2025-08-20 22:57:54 - INFO - Prompt token length: 3604
2025-08-20 22:58:14 - INFO - Tokens per second: 42.3515119462839, Peak GPU memory MB: 9378.375
2025-08-20 22:58:14 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Inference time: 24.73 seconds, CPU usage: 38.5%, CPU core utilization: [63.4, 19.3, 50.9, 20.2]
2025-08-20 22:58:14 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Cleaned up temporary file: temp_videos/feb0c88d-775a-48d3-b753-f84bd9a71c31.mp4
2025-08-20 22:58:14 - INFO - [feb0c88d-775a-48d3-b753-f84bd9a71c31] Cleaned up temporary frame directory: temp_videos/feb0c88d-775a-48d3-b753-f84bd9a71c31
2025-08-20 22:58:14 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_045.mp4'
2025-08-20 22:58:14 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Video saved to temporary file: temp_videos/4de136b1-8fd4-4d8c-856c-31c8f0fab002.mp4
2025-08-20 22:58:14 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:58:19 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:58:19 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] 30 frames saved to temp_videos/4de136b1-8fd4-4d8c-856c-31c8f0fab002
2025-08-20 22:58:19 - INFO - Prompt token length: 3604
2025-08-20 22:58:39 - INFO - Tokens per second: 42.61727911180951, Peak GPU memory MB: 9378.375
2025-08-20 22:58:39 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Inference time: 24.74 seconds, CPU usage: 38.2%, CPU core utilization: [22.8, 83.6, 19.8, 26.4]
2025-08-20 22:58:39 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Cleaned up temporary file: temp_videos/4de136b1-8fd4-4d8c-856c-31c8f0fab002.mp4
2025-08-20 22:58:39 - INFO - [4de136b1-8fd4-4d8c-856c-31c8f0fab002] Cleaned up temporary frame directory: temp_videos/4de136b1-8fd4-4d8c-856c-31c8f0fab002
2025-08-20 22:58:39 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_046.mp4'
2025-08-20 22:58:39 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Video saved to temporary file: temp_videos/087c2a1c-4994-468f-82a5-953eb56936ee.mp4
2025-08-20 22:58:39 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:58:44 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:58:44 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] 30 frames saved to temp_videos/087c2a1c-4994-468f-82a5-953eb56936ee
2025-08-20 22:58:44 - INFO - Prompt token length: 3604
2025-08-20 22:59:01 - INFO - Tokens per second: 43.249674450395666, Peak GPU memory MB: 9378.375
2025-08-20 22:59:01 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Inference time: 21.93 seconds, CPU usage: 39.3%, CPU core utilization: [83.8, 19.9, 30.3, 23.2]
2025-08-20 22:59:01 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Cleaned up temporary file: temp_videos/087c2a1c-4994-468f-82a5-953eb56936ee.mp4
2025-08-20 22:59:01 - INFO - [087c2a1c-4994-468f-82a5-953eb56936ee] Cleaned up temporary frame directory: temp_videos/087c2a1c-4994-468f-82a5-953eb56936ee
2025-08-20 22:59:01 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_046.mp4'
2025-08-20 22:59:01 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Video saved to temporary file: temp_videos/831c6126-0127-4b8a-8156-b89d4bb8dc7e.mp4
2025-08-20 22:59:01 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:59:06 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:59:06 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] 30 frames saved to temp_videos/831c6126-0127-4b8a-8156-b89d4bb8dc7e
2025-08-20 22:59:06 - INFO - Prompt token length: 3604
2025-08-20 22:59:23 - INFO - Tokens per second: 43.059706339265055, Peak GPU memory MB: 9378.375
2025-08-20 22:59:23 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Inference time: 21.99 seconds, CPU usage: 39.9%, CPU core utilization: [22.2, 66.7, 21.8, 49.2]
2025-08-20 22:59:23 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Cleaned up temporary file: temp_videos/831c6126-0127-4b8a-8156-b89d4bb8dc7e.mp4
2025-08-20 22:59:23 - INFO - [831c6126-0127-4b8a-8156-b89d4bb8dc7e] Cleaned up temporary frame directory: temp_videos/831c6126-0127-4b8a-8156-b89d4bb8dc7e
2025-08-20 22:59:23 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_047.mp4'
2025-08-20 22:59:23 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Video saved to temporary file: temp_videos/b02cbe9c-034e-44e3-9f5c-f2a3d410de8a.mp4
2025-08-20 22:59:23 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:59:28 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:59:28 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] 30 frames saved to temp_videos/b02cbe9c-034e-44e3-9f5c-f2a3d410de8a
2025-08-20 22:59:28 - INFO - Prompt token length: 3604
2025-08-20 22:59:46 - INFO - Tokens per second: 42.36511761463495, Peak GPU memory MB: 9378.375
2025-08-20 22:59:46 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Inference time: 23.30 seconds, CPU usage: 39.0%, CPU core utilization: [43.1, 32.7, 57.2, 23.1]
2025-08-20 22:59:46 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Cleaned up temporary file: temp_videos/b02cbe9c-034e-44e3-9f5c-f2a3d410de8a.mp4
2025-08-20 22:59:46 - INFO - [b02cbe9c-034e-44e3-9f5c-f2a3d410de8a] Cleaned up temporary frame directory: temp_videos/b02cbe9c-034e-44e3-9f5c-f2a3d410de8a
2025-08-20 22:59:47 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_047.mp4'
2025-08-20 22:59:47 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Video saved to temporary file: temp_videos/29f20fc9-520a-4863-81a9-106c43a3bc58.mp4
2025-08-20 22:59:47 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 22:59:51 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 22:59:51 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] 30 frames saved to temp_videos/29f20fc9-520a-4863-81a9-106c43a3bc58
2025-08-20 22:59:52 - INFO - Prompt token length: 3604
2025-08-20 23:00:10 - INFO - Tokens per second: 42.53428786851631, Peak GPU memory MB: 9378.375
2025-08-20 23:00:10 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Inference time: 23.26 seconds, CPU usage: 38.7%, CPU core utilization: [22.5, 21.1, 85.9, 25.2]
2025-08-20 23:00:10 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Cleaned up temporary file: temp_videos/29f20fc9-520a-4863-81a9-106c43a3bc58.mp4
2025-08-20 23:00:10 - INFO - [29f20fc9-520a-4863-81a9-106c43a3bc58] Cleaned up temporary frame directory: temp_videos/29f20fc9-520a-4863-81a9-106c43a3bc58
2025-08-20 23:00:10 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_048.mp4'
2025-08-20 23:00:10 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Video saved to temporary file: temp_videos/bb729bf5-39d3-48fb-a99c-1390751762ba.mp4
2025-08-20 23:00:10 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:00:15 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:00:15 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] 30 frames saved to temp_videos/bb729bf5-39d3-48fb-a99c-1390751762ba
2025-08-20 23:00:15 - INFO - Prompt token length: 3604
2025-08-20 23:00:33 - INFO - Tokens per second: 42.81460133759092, Peak GPU memory MB: 9378.375
2025-08-20 23:00:33 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Inference time: 22.84 seconds, CPU usage: 39.4%, CPU core utilization: [21.4, 95.4, 20.1, 20.5]
2025-08-20 23:00:33 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Cleaned up temporary file: temp_videos/bb729bf5-39d3-48fb-a99c-1390751762ba.mp4
2025-08-20 23:00:33 - INFO - [bb729bf5-39d3-48fb-a99c-1390751762ba] Cleaned up temporary frame directory: temp_videos/bb729bf5-39d3-48fb-a99c-1390751762ba
2025-08-20 23:00:33 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_048.mp4'
2025-08-20 23:00:33 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Video saved to temporary file: temp_videos/3abb0699-5ba4-446a-a054-c5256903a403.mp4
2025-08-20 23:00:33 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:00:38 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:00:38 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] 30 frames saved to temp_videos/3abb0699-5ba4-446a-a054-c5256903a403
2025-08-20 23:00:38 - INFO - Prompt token length: 3604
2025-08-20 23:00:56 - INFO - Tokens per second: 43.10943641242185, Peak GPU memory MB: 9378.375
2025-08-20 23:00:56 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Inference time: 22.69 seconds, CPU usage: 39.3%, CPU core utilization: [38.0, 42.1, 56.6, 20.4]
2025-08-20 23:00:56 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Cleaned up temporary file: temp_videos/3abb0699-5ba4-446a-a054-c5256903a403.mp4
2025-08-20 23:00:56 - INFO - [3abb0699-5ba4-446a-a054-c5256903a403] Cleaned up temporary frame directory: temp_videos/3abb0699-5ba4-446a-a054-c5256903a403
2025-08-20 23:00:56 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_049.mp4'
2025-08-20 23:00:56 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Video saved to temporary file: temp_videos/d7dc77c0-254f-424f-83f4-ed836f3a91ba.mp4
2025-08-20 23:00:56 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:01:01 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:01:01 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] 30 frames saved to temp_videos/d7dc77c0-254f-424f-83f4-ed836f3a91ba
2025-08-20 23:01:01 - INFO - Prompt token length: 3604
2025-08-20 23:01:21 - INFO - Tokens per second: 42.50698010505375, Peak GPU memory MB: 9378.375
2025-08-20 23:01:21 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Inference time: 24.72 seconds, CPU usage: 39.4%, CPU core utilization: [20.8, 74.7, 20.5, 41.6]
2025-08-20 23:01:21 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Cleaned up temporary file: temp_videos/d7dc77c0-254f-424f-83f4-ed836f3a91ba.mp4
2025-08-20 23:01:21 - INFO - [d7dc77c0-254f-424f-83f4-ed836f3a91ba] Cleaned up temporary frame directory: temp_videos/d7dc77c0-254f-424f-83f4-ed836f3a91ba
2025-08-20 23:01:21 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_049.mp4'
2025-08-20 23:01:21 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Video saved to temporary file: temp_videos/e2dd263a-8774-4cfe-97fa-7a87af0ceb25.mp4
2025-08-20 23:01:21 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:01:26 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:01:26 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] 30 frames saved to temp_videos/e2dd263a-8774-4cfe-97fa-7a87af0ceb25
2025-08-20 23:01:26 - INFO - Prompt token length: 3604
2025-08-20 23:01:45 - INFO - Tokens per second: 42.78977476040254, Peak GPU memory MB: 9378.375
2025-08-20 23:01:45 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Inference time: 24.59 seconds, CPU usage: 38.3%, CPU core utilization: [21.3, 37.6, 18.5, 75.6]
2025-08-20 23:01:45 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Cleaned up temporary file: temp_videos/e2dd263a-8774-4cfe-97fa-7a87af0ceb25.mp4
2025-08-20 23:01:45 - INFO - [e2dd263a-8774-4cfe-97fa-7a87af0ceb25] Cleaned up temporary frame directory: temp_videos/e2dd263a-8774-4cfe-97fa-7a87af0ceb25
2025-08-20 23:01:46 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_050.mp4'
2025-08-20 23:01:46 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Video saved to temporary file: temp_videos/b95c51f4-bcef-4b15-9ea2-79872c805ccc.mp4
2025-08-20 23:01:46 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:01:50 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:01:50 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] 30 frames saved to temp_videos/b95c51f4-bcef-4b15-9ea2-79872c805ccc
2025-08-20 23:01:51 - INFO - Prompt token length: 3604
2025-08-20 23:02:13 - INFO - Tokens per second: 42.23388544166544, Peak GPU memory MB: 9378.375
2025-08-20 23:02:13 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Inference time: 26.92 seconds, CPU usage: 37.5%, CPU core utilization: [18.6, 72.9, 19.1, 39.4]
2025-08-20 23:02:13 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Cleaned up temporary file: temp_videos/b95c51f4-bcef-4b15-9ea2-79872c805ccc.mp4
2025-08-20 23:02:13 - INFO - [b95c51f4-bcef-4b15-9ea2-79872c805ccc] Cleaned up temporary frame directory: temp_videos/b95c51f4-bcef-4b15-9ea2-79872c805ccc
2025-08-20 23:02:13 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_050.mp4'
2025-08-20 23:02:13 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Video saved to temporary file: temp_videos/fb484afe-5231-4034-b421-0c4ee72ee7d0.mp4
2025-08-20 23:02:13 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:02:18 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:02:18 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] 30 frames saved to temp_videos/fb484afe-5231-4034-b421-0c4ee72ee7d0
2025-08-20 23:02:18 - INFO - Prompt token length: 3604
2025-08-20 23:02:40 - INFO - Tokens per second: 42.601318461085675, Peak GPU memory MB: 9378.375
2025-08-20 23:02:40 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Inference time: 26.90 seconds, CPU usage: 37.2%, CPU core utilization: [64.1, 32.5, 25.5, 26.8]
2025-08-20 23:02:40 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Cleaned up temporary file: temp_videos/fb484afe-5231-4034-b421-0c4ee72ee7d0.mp4
2025-08-20 23:02:40 - INFO - [fb484afe-5231-4034-b421-0c4ee72ee7d0] Cleaned up temporary frame directory: temp_videos/fb484afe-5231-4034-b421-0c4ee72ee7d0
2025-08-20 23:02:40 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_051.mp4'
2025-08-20 23:02:40 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Video saved to temporary file: temp_videos/4bbf7cea-443a-4af9-924c-c0c17990ee1b.mp4
2025-08-20 23:02:40 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:02:45 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:02:45 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] 30 frames saved to temp_videos/4bbf7cea-443a-4af9-924c-c0c17990ee1b
2025-08-20 23:02:45 - INFO - Prompt token length: 3604
2025-08-20 23:03:05 - INFO - Tokens per second: 42.34823834581445, Peak GPU memory MB: 9378.375
2025-08-20 23:03:05 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Inference time: 25.38 seconds, CPU usage: 37.7%, CPU core utilization: [45.4, 60.6, 19.2, 25.5]
2025-08-20 23:03:05 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Cleaned up temporary file: temp_videos/4bbf7cea-443a-4af9-924c-c0c17990ee1b.mp4
2025-08-20 23:03:05 - INFO - [4bbf7cea-443a-4af9-924c-c0c17990ee1b] Cleaned up temporary frame directory: temp_videos/4bbf7cea-443a-4af9-924c-c0c17990ee1b
2025-08-20 23:03:05 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_051.mp4'
2025-08-20 23:03:05 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Video saved to temporary file: temp_videos/a8181ec3-6deb-4e8c-b3cb-d53838b34226.mp4
2025-08-20 23:03:05 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:03:10 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:03:10 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] 30 frames saved to temp_videos/a8181ec3-6deb-4e8c-b3cb-d53838b34226
2025-08-20 23:03:10 - INFO - Prompt token length: 3604
2025-08-20 23:03:31 - INFO - Tokens per second: 42.85916018839002, Peak GPU memory MB: 9378.375
2025-08-20 23:03:31 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Inference time: 25.26 seconds, CPU usage: 38.3%, CPU core utilization: [67.3, 20.3, 45.2, 20.3]
2025-08-20 23:03:31 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Cleaned up temporary file: temp_videos/a8181ec3-6deb-4e8c-b3cb-d53838b34226.mp4
2025-08-20 23:03:31 - INFO - [a8181ec3-6deb-4e8c-b3cb-d53838b34226] Cleaned up temporary frame directory: temp_videos/a8181ec3-6deb-4e8c-b3cb-d53838b34226
2025-08-20 23:03:31 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_052.mp4'
2025-08-20 23:03:31 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Video saved to temporary file: temp_videos/64f9432c-e052-4fb4-99ec-95a03f915291.mp4
2025-08-20 23:03:31 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:03:36 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:03:36 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] 30 frames saved to temp_videos/64f9432c-e052-4fb4-99ec-95a03f915291
2025-08-20 23:03:36 - INFO - Prompt token length: 3604
2025-08-20 23:03:54 - INFO - Tokens per second: 42.94569831378426, Peak GPU memory MB: 9378.375
2025-08-20 23:03:54 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Inference time: 22.75 seconds, CPU usage: 39.3%, CPU core utilization: [21.5, 19.9, 25.0, 90.5]
2025-08-20 23:03:54 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Cleaned up temporary file: temp_videos/64f9432c-e052-4fb4-99ec-95a03f915291.mp4
2025-08-20 23:03:54 - INFO - [64f9432c-e052-4fb4-99ec-95a03f915291] Cleaned up temporary frame directory: temp_videos/64f9432c-e052-4fb4-99ec-95a03f915291
2025-08-20 23:03:54 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_052.mp4'
2025-08-20 23:03:54 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Video saved to temporary file: temp_videos/a79715aa-2e90-4a21-890d-b6397fbe2f76.mp4
2025-08-20 23:03:54 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:03:59 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:03:59 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] 30 frames saved to temp_videos/a79715aa-2e90-4a21-890d-b6397fbe2f76
2025-08-20 23:03:59 - INFO - Prompt token length: 3604
2025-08-20 23:04:16 - INFO - Tokens per second: 42.59541770032984, Peak GPU memory MB: 9378.375
2025-08-20 23:04:16 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Inference time: 22.76 seconds, CPU usage: 40.7%, CPU core utilization: [34.6, 31.3, 60.6, 36.2]
2025-08-20 23:04:16 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Cleaned up temporary file: temp_videos/a79715aa-2e90-4a21-890d-b6397fbe2f76.mp4
2025-08-20 23:04:16 - INFO - [a79715aa-2e90-4a21-890d-b6397fbe2f76] Cleaned up temporary frame directory: temp_videos/a79715aa-2e90-4a21-890d-b6397fbe2f76
2025-08-20 23:04:17 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_053.mp4'
2025-08-20 23:04:17 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Video saved to temporary file: temp_videos/6fd2f5de-b430-4d10-ba73-4c89f882c788.mp4
2025-08-20 23:04:17 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:04:22 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:04:22 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] 30 frames saved to temp_videos/6fd2f5de-b430-4d10-ba73-4c89f882c788
2025-08-20 23:04:22 - INFO - Prompt token length: 3604
2025-08-20 23:04:43 - INFO - Tokens per second: 42.49892289738985, Peak GPU memory MB: 9378.375
2025-08-20 23:04:43 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Inference time: 26.64 seconds, CPU usage: 37.3%, CPU core utilization: [18.9, 19.9, 17.1, 93.3]
2025-08-20 23:04:43 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Cleaned up temporary file: temp_videos/6fd2f5de-b430-4d10-ba73-4c89f882c788.mp4
2025-08-20 23:04:43 - INFO - [6fd2f5de-b430-4d10-ba73-4c89f882c788] Cleaned up temporary frame directory: temp_videos/6fd2f5de-b430-4d10-ba73-4c89f882c788
2025-08-20 23:04:43 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_053.mp4'
2025-08-20 23:04:44 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Video saved to temporary file: temp_videos/29de0226-ad7b-485d-9240-43b7cc741a9d.mp4
2025-08-20 23:04:44 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:04:48 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:04:48 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] 30 frames saved to temp_videos/29de0226-ad7b-485d-9240-43b7cc741a9d
2025-08-20 23:04:49 - INFO - Prompt token length: 3604
2025-08-20 23:05:10 - INFO - Tokens per second: 42.52309268195912, Peak GPU memory MB: 9378.375
2025-08-20 23:05:10 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Inference time: 26.74 seconds, CPU usage: 37.4%, CPU core utilization: [18.6, 68.7, 17.1, 45.2]
2025-08-20 23:05:10 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Cleaned up temporary file: temp_videos/29de0226-ad7b-485d-9240-43b7cc741a9d.mp4
2025-08-20 23:05:10 - INFO - [29de0226-ad7b-485d-9240-43b7cc741a9d] Cleaned up temporary frame directory: temp_videos/29de0226-ad7b-485d-9240-43b7cc741a9d
2025-08-20 23:05:10 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_054.mp4'
2025-08-20 23:05:10 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Video saved to temporary file: temp_videos/03d6e67f-8e91-4c8d-91f1-73344ccb52a8.mp4
2025-08-20 23:05:10 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:05:15 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:05:15 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] 30 frames saved to temp_videos/03d6e67f-8e91-4c8d-91f1-73344ccb52a8
2025-08-20 23:05:16 - INFO - Prompt token length: 3604
2025-08-20 23:05:33 - INFO - Tokens per second: 43.08725558435238, Peak GPU memory MB: 9378.375
2025-08-20 23:05:33 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Inference time: 22.19 seconds, CPU usage: 39.7%, CPU core utilization: [53.2, 21.7, 63.5, 20.3]
2025-08-20 23:05:33 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Cleaned up temporary file: temp_videos/03d6e67f-8e91-4c8d-91f1-73344ccb52a8.mp4
2025-08-20 23:05:33 - INFO - [03d6e67f-8e91-4c8d-91f1-73344ccb52a8] Cleaned up temporary frame directory: temp_videos/03d6e67f-8e91-4c8d-91f1-73344ccb52a8
2025-08-20 23:05:33 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_054.mp4'
2025-08-20 23:05:33 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Video saved to temporary file: temp_videos/033436f8-aa03-4105-bfd4-cf2581b96f24.mp4
2025-08-20 23:05:33 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:05:38 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:05:38 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] 30 frames saved to temp_videos/033436f8-aa03-4105-bfd4-cf2581b96f24
2025-08-20 23:05:38 - INFO - Prompt token length: 3604
2025-08-20 23:05:55 - INFO - Tokens per second: 43.295534779120004, Peak GPU memory MB: 9378.375
2025-08-20 23:05:55 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Inference time: 22.07 seconds, CPU usage: 39.6%, CPU core utilization: [66.3, 21.5, 48.7, 21.8]
2025-08-20 23:05:55 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Cleaned up temporary file: temp_videos/033436f8-aa03-4105-bfd4-cf2581b96f24.mp4
2025-08-20 23:05:55 - INFO - [033436f8-aa03-4105-bfd4-cf2581b96f24] Cleaned up temporary frame directory: temp_videos/033436f8-aa03-4105-bfd4-cf2581b96f24
2025-08-20 23:05:55 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_055.mp4'
2025-08-20 23:05:55 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Video saved to temporary file: temp_videos/39e0d201-6b42-41ad-a42d-21b1adfe9f53.mp4
2025-08-20 23:05:55 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:06:00 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:06:00 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] 30 frames saved to temp_videos/39e0d201-6b42-41ad-a42d-21b1adfe9f53
2025-08-20 23:06:00 - INFO - Prompt token length: 3604
2025-08-20 23:06:20 - INFO - Tokens per second: 42.6048713404806, Peak GPU memory MB: 9378.375
2025-08-20 23:06:20 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Inference time: 24.96 seconds, CPU usage: 38.2%, CPU core utilization: [36.1, 49.3, 43.9, 23.8]
2025-08-20 23:06:20 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Cleaned up temporary file: temp_videos/39e0d201-6b42-41ad-a42d-21b1adfe9f53.mp4
2025-08-20 23:06:20 - INFO - [39e0d201-6b42-41ad-a42d-21b1adfe9f53] Cleaned up temporary frame directory: temp_videos/39e0d201-6b42-41ad-a42d-21b1adfe9f53
2025-08-20 23:06:20 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_055.mp4'
2025-08-20 23:06:20 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Video saved to temporary file: temp_videos/3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f.mp4
2025-08-20 23:06:20 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:06:25 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:06:25 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] 30 frames saved to temp_videos/3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f
2025-08-20 23:06:25 - INFO - Prompt token length: 3604
2025-08-20 23:06:45 - INFO - Tokens per second: 43.15558723881245, Peak GPU memory MB: 9378.375
2025-08-20 23:06:45 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Inference time: 24.84 seconds, CPU usage: 38.2%, CPU core utilization: [33.6, 44.5, 22.5, 52.2]
2025-08-20 23:06:45 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Cleaned up temporary file: temp_videos/3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f.mp4
2025-08-20 23:06:45 - INFO - [3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f] Cleaned up temporary frame directory: temp_videos/3795c6f8-ed71-4ea1-9bee-1a9ebb2fe67f
2025-08-20 23:06:45 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_056.mp4'
2025-08-20 23:06:45 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Video saved to temporary file: temp_videos/3e9a4399-7bb2-44bc-a419-6fbd50ec7dac.mp4
2025-08-20 23:06:45 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:06:50 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:06:50 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] 30 frames saved to temp_videos/3e9a4399-7bb2-44bc-a419-6fbd50ec7dac
2025-08-20 23:06:50 - INFO - Prompt token length: 3604
2025-08-20 23:07:12 - INFO - Tokens per second: 42.60317461272888, Peak GPU memory MB: 9378.375
2025-08-20 23:07:12 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Inference time: 26.37 seconds, CPU usage: 37.6%, CPU core utilization: [19.0, 18.8, 17.2, 95.4]
2025-08-20 23:07:12 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Cleaned up temporary file: temp_videos/3e9a4399-7bb2-44bc-a419-6fbd50ec7dac.mp4
2025-08-20 23:07:12 - INFO - [3e9a4399-7bb2-44bc-a419-6fbd50ec7dac] Cleaned up temporary frame directory: temp_videos/3e9a4399-7bb2-44bc-a419-6fbd50ec7dac
2025-08-20 23:07:12 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_056.mp4'
2025-08-20 23:07:12 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Video saved to temporary file: temp_videos/d5af78ae-c0c8-473d-8749-38c5728a5d0d.mp4
2025-08-20 23:07:12 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:07:17 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:07:17 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] 30 frames saved to temp_videos/d5af78ae-c0c8-473d-8749-38c5728a5d0d
2025-08-20 23:07:17 - INFO - Prompt token length: 3604
2025-08-20 23:07:38 - INFO - Tokens per second: 41.82676160274437, Peak GPU memory MB: 9378.375
2025-08-20 23:07:38 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Inference time: 26.51 seconds, CPU usage: 53.9%, CPU core utilization: [43.5, 65.8, 40.3, 66.1]
2025-08-20 23:07:38 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Cleaned up temporary file: temp_videos/d5af78ae-c0c8-473d-8749-38c5728a5d0d.mp4
2025-08-20 23:07:38 - INFO - [d5af78ae-c0c8-473d-8749-38c5728a5d0d] Cleaned up temporary frame directory: temp_videos/d5af78ae-c0c8-473d-8749-38c5728a5d0d
2025-08-20 23:07:38 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_057.mp4'
2025-08-20 23:07:39 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Video saved to temporary file: temp_videos/e995f18e-94cc-467e-9d41-d9c9382e8dbf.mp4
2025-08-20 23:07:39 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:07:43 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:07:43 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] 30 frames saved to temp_videos/e995f18e-94cc-467e-9d41-d9c9382e8dbf
2025-08-20 23:07:44 - INFO - Prompt token length: 3604
2025-08-20 23:08:03 - INFO - Tokens per second: 42.67129610631823, Peak GPU memory MB: 9378.375
2025-08-20 23:08:03 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Inference time: 25.01 seconds, CPU usage: 38.1%, CPU core utilization: [19.9, 19.9, 17.5, 94.9]
2025-08-20 23:08:03 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Cleaned up temporary file: temp_videos/e995f18e-94cc-467e-9d41-d9c9382e8dbf.mp4
2025-08-20 23:08:03 - INFO - [e995f18e-94cc-467e-9d41-d9c9382e8dbf] Cleaned up temporary frame directory: temp_videos/e995f18e-94cc-467e-9d41-d9c9382e8dbf
2025-08-20 23:08:04 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_057.mp4'
2025-08-20 23:08:04 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Video saved to temporary file: temp_videos/417d5b8b-60b9-473a-9bbc-3fbcb562a292.mp4
2025-08-20 23:08:04 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:08:09 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:08:09 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] 30 frames saved to temp_videos/417d5b8b-60b9-473a-9bbc-3fbcb562a292
2025-08-20 23:08:09 - INFO - Prompt token length: 3604
2025-08-20 23:08:29 - INFO - Tokens per second: 42.26603746275003, Peak GPU memory MB: 9378.375
2025-08-20 23:08:29 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Inference time: 25.03 seconds, CPU usage: 40.2%, CPU core utilization: [35.2, 34.3, 55.8, 35.3]
2025-08-20 23:08:29 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Cleaned up temporary file: temp_videos/417d5b8b-60b9-473a-9bbc-3fbcb562a292.mp4
2025-08-20 23:08:29 - INFO - [417d5b8b-60b9-473a-9bbc-3fbcb562a292] Cleaned up temporary frame directory: temp_videos/417d5b8b-60b9-473a-9bbc-3fbcb562a292
2025-08-20 23:08:29 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_058.mp4'
2025-08-20 23:08:29 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Video saved to temporary file: temp_videos/eca7f4fb-46ca-427e-8cd8-3bb9a01aa521.mp4
2025-08-20 23:08:29 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:08:34 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:08:34 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] 30 frames saved to temp_videos/eca7f4fb-46ca-427e-8cd8-3bb9a01aa521
2025-08-20 23:08:34 - INFO - Prompt token length: 3604
2025-08-20 23:08:53 - INFO - Tokens per second: 43.04006124843271, Peak GPU memory MB: 9378.375
2025-08-20 23:08:53 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Inference time: 24.56 seconds, CPU usage: 39.9%, CPU core utilization: [59.2, 24.2, 40.5, 35.6]
2025-08-20 23:08:53 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Cleaned up temporary file: temp_videos/eca7f4fb-46ca-427e-8cd8-3bb9a01aa521.mp4
2025-08-20 23:08:53 - INFO - [eca7f4fb-46ca-427e-8cd8-3bb9a01aa521] Cleaned up temporary frame directory: temp_videos/eca7f4fb-46ca-427e-8cd8-3bb9a01aa521
2025-08-20 23:08:54 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_058.mp4'
2025-08-20 23:08:54 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Video saved to temporary file: temp_videos/acf5c753-08fa-4423-a1d5-9b4da15087c1.mp4
2025-08-20 23:08:54 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:08:58 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:08:58 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] 30 frames saved to temp_videos/acf5c753-08fa-4423-a1d5-9b4da15087c1
2025-08-20 23:08:59 - INFO - Prompt token length: 3604
2025-08-20 23:09:18 - INFO - Tokens per second: 43.234796973891356, Peak GPU memory MB: 9378.375
2025-08-20 23:09:18 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Inference time: 24.54 seconds, CPU usage: 38.5%, CPU core utilization: [42.4, 19.0, 72.2, 20.2]
2025-08-20 23:09:18 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Cleaned up temporary file: temp_videos/acf5c753-08fa-4423-a1d5-9b4da15087c1.mp4
2025-08-20 23:09:18 - INFO - [acf5c753-08fa-4423-a1d5-9b4da15087c1] Cleaned up temporary frame directory: temp_videos/acf5c753-08fa-4423-a1d5-9b4da15087c1
2025-08-20 23:09:18 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Received new video inference request. Prompt: 'Please describe the video in detail, only focus on customer and staff behavior and activities and do not overly describe the static scene.', Video: 'sample_part_059.mp4'
2025-08-20 23:09:18 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Video saved to temporary file: temp_videos/23ceb8f5-fc21-4854-b1b9-d50d6432411c.mp4
2025-08-20 23:09:18 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Extracting frames using method: uniform, rate/threshold: 30
2025-08-20 23:09:23 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Extracted 30 frames successfully. Saving to temporary files...
2025-08-20 23:09:23 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] 30 frames saved to temp_videos/23ceb8f5-fc21-4854-b1b9-d50d6432411c
2025-08-20 23:09:24 - INFO - Prompt token length: 3604
2025-08-20 23:09:42 - INFO - Tokens per second: 42.14474474836568, Peak GPU memory MB: 9378.375
2025-08-20 23:09:42 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Inference time: 23.65 seconds, CPU usage: 40.2%, CPU core utilization: [37.4, 26.5, 69.8, 26.9]
2025-08-20 23:09:42 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Cleaned up temporary file: temp_videos/23ceb8f5-fc21-4854-b1b9-d50d6432411c.mp4
2025-08-20 23:09:42 - INFO - [23ceb8f5-fc21-4854-b1b9-d50d6432411c] Cleaned up temporary frame directory: temp_videos/23ceb8f5-fc21-4854-b1b9-d50d6432411c
|