commit 8625930f38cac08578435042c18080073c5e4ed9 Author: thebears Date: Tue Apr 15 12:07:31 2025 -0400 bump diff --git a/__pycache__/deepstream_obj_det.cpython-310.pyc b/__pycache__/deepstream_obj_det.cpython-310.pyc new file mode 100644 index 0000000..251737d Binary files /dev/null and b/__pycache__/deepstream_obj_det.cpython-310.pyc differ diff --git a/deepstream_obj_det.py b/deepstream_obj_det.py new file mode 100755 index 0000000..c346e8b --- /dev/null +++ b/deepstream_obj_det.py @@ -0,0 +1,370 @@ + +import sys +sys.path.append('/opt/nvidia/deepstream/deepstream/sources/deepstream_python_apps/apps') +import os +import gi +gi.require_version('Gst', '1.0') +from gi.repository import GLib, Gst +from common.platform_info import PlatformInfo +from common.bus_call import bus_call +import numpy as np +import ctypes +import pyds +from functools import partial +from CommonCode.settings import get_logger, LogColorize +import argparse +pfm = LogColorize.watch_and_fix_permissions + +logger = get_logger(__name__,'/var/log/ml_vision_logs/00_watch_and_fix_permissions', stdout=True, systemd=False) + + +target_width = 1280 +target_height = 720 +os.environ.pop("DISPLAY",None) +MUXER_BATCH_TIMEOUT_USEC = 1000000 +def embedder_results_probe(pad,info,u_data, list_add, frame_num = 0): + gst_buffer = info.get_buffer() + if not gst_buffer: + print("Unable to get GstBuffer ") + return + batch_meta = pyds.gst_buffer_get_nvds_batch_meta(hash(gst_buffer)) + l_frame = batch_meta.frame_meta_list + + while l_frame is not None: + try: + # Note that l_frame.data needs a cast to pyds.NvDsFrameMeta + # The casting also keeps ownership of the underlying memory + # in the C code, so the Python garbage collector will leave + # it alone. + frame_meta = pyds.NvDsFrameMeta.cast(l_frame.data) + except StopIteration: + break + + frame_number=frame_meta.frame_num + + + l_user = frame_meta.frame_user_meta_list + while l_user is not None: + try: + # Note that l_user.data needs a cast to pyds.NvDsUserMeta + # The casting also keeps ownership of the underlying memory + # in the C code, so the Python garbage collector will leave + # it alone. + user_meta = pyds.NvDsUserMeta.cast(l_user.data) + except StopIteration: + break + + if ( + user_meta.base_meta.meta_type + != pyds.NvDsMetaType.NVDSINFER_TENSOR_OUTPUT_META + ): + continue + + tensor_meta = pyds.NvDsInferTensorMeta.cast(user_meta.user_meta_data) + + # Boxes in the tensor meta should be in network resolution which is + # found in tensor_meta.network_info. Use this info to scale boxes to + # the input frame resolution. + layers_info = [] + if True: + for i in range(tensor_meta.num_output_layers): + layer = pyds.get_nvds_LayerInfo(tensor_meta, i) + if layer.layerName=='output0': + + ptr = ctypes.cast(pyds.get_ptr(layer.buffer), ctypes.POINTER(ctypes.c_float)) + num_elements = layer.inferDims.numElements + v = list(np.ctypeslib.as_array(ptr, shape=(num_elements,))) + v = [float(x) for x in v] + + list_add.append({'frame_number':frame_number, 'vector':v}) + + + + + + try: + l_user = l_user.next + except StopIteration: + break + + try: + # indicate inference is performed on the frame + frame_meta.bInferDone = True + l_frame = l_frame.next + except StopIteration: + break + + + return Gst.PadProbeReturn.OK + + + + +def detector_results_probe(pad,info,u_data, list_add, frame_num = 0): + frame_number=0 + num_rects=0 + got_fps = False + + gst_buffer = info.get_buffer() + if not gst_buffer: + print("Unable to get GstBuffer ") + return + + + batch_meta = pyds.gst_buffer_get_nvds_batch_meta(hash(gst_buffer)) + l_frame = batch_meta.frame_meta_list + + while l_frame is not None: + try: + frame_meta = pyds.NvDsFrameMeta.cast(l_frame.data) + except StopIteration: + break + + frame_number=frame_meta.frame_num + l_obj=frame_meta.obj_meta_list + num_rects = frame_meta.num_obj_meta + + l_user = frame_meta.frame_user_meta_list + + + + while l_obj is not None: + try: + # Casting l_obj.data to pyds.NvDsObjectMeta + obj_meta=pyds.NvDsObjectMeta.cast(l_obj.data) + except StopIteration: + break + + # param_extract = ['left','top','width','height'] + # strc = '' + # for param in param_extract: + # strc+=str(getattr(obj_meta.rect_params, param)) + # strc+=' ' + + # target_width +# target_height + score = obj_meta.confidence + label = obj_meta.obj_label + left = obj_meta.rect_params.left + top = obj_meta.rect_params.top + width = obj_meta.rect_params.width + height = obj_meta.rect_params.height + frame_number = frame_number + class_id = obj_meta.class_id + + d_add = {'score':score, 'label':label, 'left':left, 'top':top, 'width':width, 'height':height, 'frame_number':frame_number, 'class_id': class_id} + list_add.append(d_add) + + if frame_number % 100 == 0: + str_pr = 'FRAME_PROGRESS: '+pfm(str(frame_number) + '/' + str(frame_num)) + logger.info(str_pr) + + + try: + l_obj=l_obj.next + except StopIteration: + break + + # Update frame rate through this probe + stream_index = "stream{0}".format(frame_meta.pad_index) + + try: + l_frame=l_frame.next + except StopIteration: + break + + return Gst.PadProbeReturn.OK + + + +def cb_newpad(decodebin, decoder_src_pad,data): + print("In cb_newpad\n") + caps=decoder_src_pad.get_current_caps() + if not caps: + caps = decoder_src_pad.query_caps() + gststruct=caps.get_structure(0) + gstname=gststruct.get_name() + source_bin=data + features=caps.get_features(0) + + # Need to check if the pad created by the decodebin is for video and not + # audio. + print("gstname=",gstname) + if(gstname.find("video")!=-1): + # Link the decodebin pad only if decodebin has picked nvidia + # decoder plugin nvdec_*. We do this by checking if the pad caps contain + # NVMM memory features. + print("features=",features) + if features.contains("memory:NVMM"): + # Get the source bin ghost pad + bin_ghost_pad=source_bin.get_static_pad("src") + if not bin_ghost_pad.set_target(decoder_src_pad): + sys.stderr.write("Failed to link decoder src pad to source bin ghost pad\n") + else: + sys.stderr.write(" Error: Decodebin did not pick nvidia decoder plugin.\n") + +def decodebin_child_added(child_proxy,Object,name,user_data): + print("Decodebin child added:", name, "\n") + if(name.find("decodebin") != -1): + Object.connect("child-added",decodebin_child_added,user_data) + + if "source" in name: + source_element = child_proxy.get_by_name("source") + if source_element.find_property('drop-on-latency') != None: + Object.set_property("drop-on-latency", True) + + +def create_source_bin(uri): + print("Creating source bin") + + # Create a source GstBin to abstract this bin's content from the rest of the + # pipeline + bin_name="source-bin-any-format" + print(bin_name) + nbin=Gst.Bin.new(bin_name) + if not nbin: + sys.stderr.write(" Unable to create source bin \n") + + # Source element for reading from the uri. + # We will use decodebin and let it figure out the container format of the + # stream and the codec and plug the appropriate demux and decode plugins. + uri_decode_bin=Gst.ElementFactory.make("uridecodebin", "uri-decode-bin") + if not uri_decode_bin: + sys.stderr.write(" Unable to create uri decode bin \n") + # We set the input uri to the source element + uri_decode_bin.set_property("uri",uri) + # Connect to the "pad-added" signal of the decodebin which generates a + # callback once a new pad for raw data has beed created by the decodebin + uri_decode_bin.connect("pad-added",cb_newpad,nbin) + uri_decode_bin.connect("child-added",decodebin_child_added,nbin) + + # We need to create a ghost pad for the source bin which will act as a proxy + # for the video decoder src pad. The ghost pad will not have a target right + # now. Once the decode bin creates the video decoder and generates the + # cb_newpad callback, we will set the ghost pad target to the video decoder + # src pad. + Gst.Bin.add(nbin,uri_decode_bin) + bin_pad=nbin.add_pad(Gst.GhostPad.new_no_target("src",Gst.PadDirection.SRC)) + if not bin_pad: + sys.stderr.write(" Failed to add ghost pad in source bin \n") + return None + return nbin + + +def run_inference(file_path): + os.environ.pop("DISPLAY",None) + if not file_path.startswith('file://'): + file_path = 'file://'+file_path + + platform_info = PlatformInfo() + Gst.init(None) + + pipeline = Gst.Pipeline() + + streammux = Gst.ElementFactory.make("nvstreammux", "Stream-muxer") + + nugget_detector = Gst.ElementFactory.make("nvinfer", "primary-inference") + nugget_embedder = Gst.ElementFactory.make("nvinfer", "secondary-inference") + + streammux.set_property('width', target_width) + streammux.set_property('height', target_height) + streammux.set_property('batched-push-timeout', MUXER_BATCH_TIMEOUT_USEC) + streammux.set_property('enable-padding',1) + streammux.set_property('batch-size', 1) + + + nugget_detector.set_property('config-file-path', "/home/thebears/DeepStream-Yolo/detector.txt") + nugget_embedder.set_property('config-file-path', "/home/thebears/DeepStream-Yolo/embedder.txt") + + fakesink1 = Gst.ElementFactory.make("fakesink","fakesink") + fakesink1.set_property('enable-last-sample', 0) + fakesink1.set_property('sync', 1) + pipeline.add(fakesink1) + + fakesink2 = Gst.ElementFactory.make("fakesink","fakesink2") + fakesink2.set_property('enable-last-sample', 0) + fakesink2.set_property('sync', 1) + pipeline.add(fakesink2) + + pipeline.add(streammux) + pipeline.add(nugget_detector) + pipeline.add(nugget_embedder) + + + +# uri_name = 'file:///home/thebears/railing.mp4' +# uri_name = 'file:///home/thebears/railing_00_20250213094806.mp4' + source_file=create_source_bin(file_path) + + pipeline.add(source_file) + + stream_pad = streammux.request_pad_simple("sink_0") + source_pad = source_file.get_static_pad("src") + source_pad.link(stream_pad) + + tee=Gst.ElementFactory.make("tee", "nvsink-tee") + pipeline.add(tee) + + queue1=Gst.ElementFactory.make("queue", "nvtee-que1") + queue2=Gst.ElementFactory.make("queue", "nvtee-que2") + pipeline.add(queue1) + pipeline.add(queue2) + + streammux.link(tee) + + + tee.link(queue1) + tee.link(queue2) + + queue1.link(nugget_detector) + queue2.link(nugget_embedder) + + + cmd = f'/usr/bin/ffprobe -v error -select_streams v:0 -count_packets -show_entries stream=nb_read_packets -of csv=p=0 {file_path}'#/srv/ftp/railing/2025/02/28/railing_00_20250228115800.mp4 + try: + frames = int(os.popen(cmd).read().strip()) + except: + frames = 0 + + logger.info(f"TOTAL_FRAMES: {frames}") + + embedder_list = list() + + + embedder_results = partial(embedder_results_probe, list_add=embedder_list, frame_num = frames) + nugget_embedder.get_static_pad("src").add_probe(Gst.PadProbeType.BUFFER, embedder_results, 0) + + + detector_list = list() + + + detector_results = partial(detector_results_probe, list_add = detector_list, frame_num = frames) + nugget_detector.get_static_pad("src").add_probe(Gst.PadProbeType.BUFFER, detector_results, 0) + + + + nugget_detector.link(fakesink1) + nugget_embedder.link(fakesink2) + + + # create an event loop and feed gstreamer bus mesages to it + loop = GLib.MainLoop() + bus = pipeline.get_bus() + bus.add_signal_watch() + bus.connect ("message", bus_call, loop) + + # start play back and listen to events + print("Starting pipeline \n") + pipeline.set_state(Gst.State.PLAYING) + try: + loop.run() + except: + pass + # cleanup + pipeline.set_state(Gst.State.NULL) + return detector_list, embedder_list + + +if __name__ == '__main__': + sys.exit(run_inference(sys.argv[1])) + diff --git a/hello b/hello new file mode 100644 index 0000000..1c4fd19 --- /dev/null +++ b/hello @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..25099ba --- /dev/null +++ b/test.py @@ -0,0 +1,5 @@ +import time + +while True: + print("Hello from Orin") + time.sleep(0.25) diff --git a/test_kafka.py b/test_kafka.py new file mode 100644 index 0000000..f14446f --- /dev/null +++ b/test_kafka.py @@ -0,0 +1,36 @@ +from kafka import TopicPartition +from kafka.structs import OffsetAndMetadata +from CommonCode import kwq + +input_topic = kwq.TOPICS.videos_to_score_detection +producer = kwq.producer +topic_produce = kwq.TOPICS.videos_scored_detection + + + +client_id = 'hello_world2' +group_id = client_id + + +consumer = kwq.create_consumer(input_topic, group_id = group_id, client_id = client_id) + + +c_part = TopicPartition(input_topic, 0) +consumer.assign([c_part]) + + + +c_committed = consumer.committed(c_part) +logger.info(f"KAFKA_POSITION_IS: {str(consumer.position(c_part))}") + +if c_committed is None: + logger.info(f"KAFKA_POSITION_NOT_COMMITTED") +else: + logger.info(f"KAFKA_POSITION_COMMITTED_IS: {c_committed}") + consumer.seek(c_part, c_committed) +logger.info("START POLLING") + +# %% + +for c in consumer: + print(c.offset) diff --git a/trimmed.json.orin b/trimmed.json.orin new file mode 100644 index 0000000..1716efd --- /dev/null +++ b/trimmed.json.orin @@ -0,0 +1,1048 @@ +{ + "meta": { + "model_version": "orin_v1" + }, + "scoring": { + "start_time": 1740753918.6187809, + "end_time": 1740753922.7351537 + }, + "json": { + "path": "/home/thebears/Source/pipelines/01_do_obj_det/trimmed.json.orin" + }, + "video": { + "path": "/home/thebears/Source/pipelines/01_do_obj_det/trimmed.mp4", + "target_w": 1280, + "target_h": 720 + }, + "scores": [ + { + "frame": 0, + "detections": [ + { + "score": 0.8678860068321228, + "L": 766.3603515625, + "T": 179.85498046875, + "W": 167.5111083984375, + "H": 173.09039306640625, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.5017945766448975, + "L": 581.0621948242188, + "T": 294.3250732421875, + "W": 76.18511962890625, + "H": 55.37396240234375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 1, + "detections": [ + { + "score": 0.8597596883773804, + "L": 766.4890747070312, + "T": 179.65072631835938, + "W": 165.72308349609375, + "H": 173.66635131835938, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.4881754517555237, + "L": 581.0787963867188, + "T": 294.3953857421875, + "W": 76.2041015625, + "H": 55.2445068359375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 2, + "detections": [ + { + "score": 0.8700428009033203, + "L": 766.6541748046875, + "T": 179.59957885742188, + "W": 163.5562744140625, + "H": 173.74630737304688, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.48235175013542175, + "L": 580.9750366210938, + "T": 294.313232421875, + "W": 76.29364013671875, + "H": 55.37774658203125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 3, + "detections": [ + { + "score": 0.8862096667289734, + "L": 766.5748901367188, + "T": 179.29949951171875, + "W": 164.85760498046875, + "H": 173.56817626953125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.5123206377029419, + "L": 581.302001953125, + "T": 294.23651123046875, + "W": 74.5699462890625, + "H": 55.59454345703125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 4, + "detections": [ + { + "score": 0.8766194581985474, + "L": 766.6520385742188, + "T": 176.2847900390625, + "W": 167.11846923828125, + "H": 176.47650146484375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.5078917145729065, + "L": 581.40185546875, + "T": 294.3719482421875, + "W": 74.839599609375, + "H": 55.42120361328125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 5, + "detections": [ + { + "score": 0.8859403729438782, + "L": 766.6107788085938, + "T": 173.10198974609375, + "W": 161.55157470703125, + "H": 179.46893310546875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.5881021022796631, + "L": 581.3032836914062, + "T": 294.31201171875, + "W": 75.6669921875, + "H": 55.46649169921875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 6, + "detections": [ + { + "score": 0.8788629770278931, + "L": 766.95849609375, + "T": 172.78561401367188, + "W": 161.77081298828125, + "H": 180.30862426757812, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.45599880814552307, + "L": 581.22216796875, + "T": 294.37457275390625, + "W": 75.7835693359375, + "H": 55.5057373046875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 7, + "detections": [ + { + "score": 0.8800469040870667, + "L": 766.7344970703125, + "T": 172.5001220703125, + "W": 157.3616943359375, + "H": 180.14971923828125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.5363314151763916, + "L": 581.3129272460938, + "T": 294.355712890625, + "W": 75.68267822265625, + "H": 55.48370361328125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 8, + "detections": [ + { + "score": 0.8777188062667847, + "L": 766.778564453125, + "T": 172.89208984375, + "W": 157.896240234375, + "H": 179.91754150390625, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.510200560092926, + "L": 581.517578125, + "T": 294.37054443359375, + "W": 74.15008544921875, + "H": 55.3621826171875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 9, + "detections": [ + { + "score": 0.8774833083152771, + "L": 766.92626953125, + "T": 172.92343139648438, + "W": 159.2904052734375, + "H": 179.88455200195312, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.3925632834434509, + "L": 581.5001220703125, + "T": 294.2640380859375, + "W": 74.3114013671875, + "H": 55.5040283203125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 10, + "detections": [ + { + "score": 0.883200466632843, + "L": 766.9757690429688, + "T": 172.8946533203125, + "W": 159.71832275390625, + "H": 179.9652099609375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.2892279624938965, + "L": 582.7890014648438, + "T": 295.206298828125, + "W": 72.1123046875, + "H": 54.48956298828125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 11, + "detections": [ + { + "score": 0.8824859857559204, + "L": 766.8514404296875, + "T": 172.910400390625, + "W": 160.49609375, + "H": 180.2108154296875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.6629460453987122, + "L": 582.14892578125, + "T": 294.07208251953125, + "W": 75.47454833984375, + "H": 55.33038330078125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 12, + "detections": [ + { + "score": 0.8807172179222107, + "L": 767.2960205078125, + "T": 173.18017578125, + "W": 161.2508544921875, + "H": 179.6092529296875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7144152522087097, + "L": 582.7830200195312, + "T": 294.51678466796875, + "W": 74.34637451171875, + "H": 55.03704833984375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 13, + "detections": [ + { + "score": 0.8788647055625916, + "L": 767.3961791992188, + "T": 173.48818969726562, + "W": 161.27618408203125, + "H": 178.86203002929688, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7059105634689331, + "L": 582.663330078125, + "T": 294.314697265625, + "W": 74.57904052734375, + "H": 55.21038818359375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 14, + "detections": [ + { + "score": 0.8853716850280762, + "L": 767.48681640625, + "T": 173.40338134765625, + "W": 158.9454345703125, + "H": 179.1390380859375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7449429631233215, + "L": 582.7568969726562, + "T": 294.27752685546875, + "W": 74.95855712890625, + "H": 55.21722412109375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 15, + "detections": [ + { + "score": 0.8968122005462646, + "L": 767.6798706054688, + "T": 174.508056640625, + "W": 160.663330078125, + "H": 177.4168701171875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7183752655982971, + "L": 582.687744140625, + "T": 294.16571044921875, + "W": 74.774169921875, + "H": 55.26678466796875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 16, + "detections": [ + { + "score": 0.8713943958282471, + "L": 768.6433715820312, + "T": 181.47500610351562, + "W": 169.74017333984375, + "H": 171.16397094726562, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7279254198074341, + "L": 582.83935546875, + "T": 294.24456787109375, + "W": 75.07379150390625, + "H": 55.0162353515625, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 17, + "detections": [ + { + "score": 0.8232389092445374, + "L": 774.2735595703125, + "T": 188.27801513671875, + "W": 135.55621337890625, + "H": 165.6910400390625, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7493936419487, + "L": 583.0973510742188, + "T": 294.39239501953125, + "W": 73.99029541015625, + "H": 54.955078125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 18, + "detections": [ + { + "score": 0.8060417771339417, + "L": 781.9568481445312, + "T": 196.05831909179688, + "W": 125.10498046875, + "H": 157.09713745117188, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.8033968806266785, + "L": 582.9434204101562, + "T": 294.37640380859375, + "W": 74.5562744140625, + "H": 55.07391357421875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 19, + "detections": [ + { + "score": 0.8534303307533264, + "L": 786.1295166015625, + "T": 187.795654296875, + "W": 111.35174560546875, + "H": 164.6856689453125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.7262913584709167, + "L": 582.4038696289062, + "T": 293.55517578125, + "W": 75.26300048828125, + "H": 55.85791015625, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 20, + "detections": [ + { + "score": 0.8175969123840332, + "L": 788.4649658203125, + "T": 167.68896484375, + "W": 112.8133544921875, + "H": 183.7625732421875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.41010943055152893, + "L": 584.9738159179688, + "T": 293.8179931640625, + "W": 73.50726318359375, + "H": 55.97705078125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 21, + "detections": [ + { + "score": 0.8745036721229553, + "L": 789.7882690429688, + "T": 148.30126953125, + "W": 122.53338623046875, + "H": 194.36163330078125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.2560553252696991, + "L": 583.3012084960938, + "T": 289.09185791015625, + "W": 75.91827392578125, + "H": 60.7562255859375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 22, + "detections": [ + { + "score": 0.8641981482505798, + "L": 796.28125, + "T": 149.82742309570312, + "W": 124.34991455078125, + "H": 222.07717895507812, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 23, + "detections": [ + { + "score": 0.8308458924293518, + "L": 804.6061401367188, + "T": 156.9989013671875, + "W": 130.91094970703125, + "H": 219.05413818359375, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 24, + "detections": [ + { + "score": 0.8705301880836487, + "L": 806.7145385742188, + "T": 154.94854736328125, + "W": 143.432861328125, + "H": 220.2293701171875, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 25, + "detections": [ + { + "score": 0.869906485080719, + "L": 797.6564331054688, + "T": 141.61392211914062, + "W": 187.76019287109375, + "H": 236.29391479492188, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 26, + "detections": [ + { + "score": 0.858146071434021, + "L": 796.6878051757812, + "T": 141.35162353515625, + "W": 211.163818359375, + "H": 237.96112060546875, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 27, + "detections": [ + { + "score": 0.8593393564224243, + "L": 796.0562133789062, + "T": 141.34271240234375, + "W": 223.80810546875, + "H": 241.5064697265625, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 28, + "detections": [ + { + "score": 0.8589053153991699, + "L": 796.8392333984375, + "T": 141.2032470703125, + "W": 229.9569091796875, + "H": 240.5059814453125, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 29, + "detections": [ + { + "score": 0.8491601943969727, + "L": 797.0999755859375, + "T": 141.45147705078125, + "W": 225.61932373046875, + "H": 237.16461181640625, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 30, + "detections": [ + { + "score": 0.85709547996521, + "L": 797.04931640625, + "T": 141.071533203125, + "W": 225.4405517578125, + "H": 239.46173095703125, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 31, + "detections": [ + { + "score": 0.858268141746521, + "L": 797.4210815429688, + "T": 141.2381591796875, + "W": 226.07403564453125, + "H": 240.3212890625, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 32, + "detections": [ + { + "score": 0.8604181408882141, + "L": 796.9324951171875, + "T": 141.0870361328125, + "W": 226.410400390625, + "H": 239.50811767578125, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 33, + "detections": [ + { + "score": 0.8556936383247375, + "L": 796.6904296875, + "T": 141.0771484375, + "W": 226.73828125, + "H": 240.31829833984375, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 34, + "detections": [ + { + "score": 0.8593029975891113, + "L": 796.823486328125, + "T": 141.1190185546875, + "W": 225.97174072265625, + "H": 240.95849609375, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 35, + "detections": [ + { + "score": 0.8589336276054382, + "L": 796.0578002929688, + "T": 141.16384887695312, + "W": 226.51690673828125, + "H": 241.23666381835938, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 36, + "detections": [ + { + "score": 0.858910083770752, + "L": 796.2628784179688, + "T": 140.40411376953125, + "W": 225.641845703125, + "H": 242.182373046875, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 37, + "detections": [ + { + "score": 0.855059027671814, + "L": 796.181396484375, + "T": 140.43670654296875, + "W": 225.142822265625, + "H": 241.828857421875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.3072548806667328, + "L": 581.7217407226562, + "T": 294.244140625, + "W": 77.95703125, + "H": 55.39093017578125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 38, + "detections": [ + { + "score": 0.8577080965042114, + "L": 796.1810913085938, + "T": 140.11895751953125, + "W": 224.74688720703125, + "H": 242.45880126953125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.2587040364742279, + "L": 581.7620849609375, + "T": 294.21685791015625, + "W": 77.51666259765625, + "H": 55.3963623046875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 39, + "detections": [ + { + "score": 0.8618997931480408, + "L": 795.8499145507812, + "T": 139.78240966796875, + "W": 228.06524658203125, + "H": 243.63031005859375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.2797865867614746, + "L": 581.97509765625, + "T": 294.45587158203125, + "W": 76.74127197265625, + "H": 55.19586181640625, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 40, + "detections": [ + { + "score": 0.8626558780670166, + "L": 795.3516235351562, + "T": 139.81283569335938, + "W": 228.18597412109375, + "H": 243.27627563476562, + "name": "Turdus migratorius", + "idx": 130 + } + ] + }, + { + "frame": 41, + "detections": [ + { + "score": 0.8619824647903442, + "L": 795.655029296875, + "T": 139.81280517578125, + "W": 227.1588134765625, + "H": 243.09130859375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.3543163537979126, + "L": 581.8204345703125, + "T": 294.39581298828125, + "W": 77.418701171875, + "H": 55.0596923828125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 42, + "detections": [ + { + "score": 0.8615503907203674, + "L": 795.8169555664062, + "T": 139.84805297851562, + "W": 227.17657470703125, + "H": 243.15493774414062, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.32558777928352356, + "L": 581.491943359375, + "T": 294.6712646484375, + "W": 75.9073486328125, + "H": 55.02813720703125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 43, + "detections": [ + { + "score": 0.8577650189399719, + "L": 792.7034301757812, + "T": 141.26138305664062, + "W": 228.70135498046875, + "H": 242.05435180664062, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.3322807550430298, + "L": 581.5570678710938, + "T": 294.67626953125, + "W": 76.11474609375, + "H": 54.92315673828125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 44, + "detections": [ + { + "score": 0.871924877166748, + "L": 782.800537109375, + "T": 143.38909912109375, + "W": 241.6748046875, + "H": 238.070556640625, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.381058931350708, + "L": 581.5750122070312, + "T": 294.9674072265625, + "W": 75.67584228515625, + "H": 54.5704345703125, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 45, + "detections": [ + { + "score": 0.8586143255233765, + "L": 779.7376708984375, + "T": 145.38363647460938, + "W": 244.19720458984375, + "H": 235.37197875976562, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.525657057762146, + "L": 581.8576049804688, + "T": 294.993408203125, + "W": 76.5203857421875, + "H": 54.3818359375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 46, + "detections": [ + { + "score": 0.861335039138794, + "L": 776.9918212890625, + "T": 145.5111083984375, + "W": 246.54315185546875, + "H": 235.02490234375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.2837904989719391, + "L": 581.0264892578125, + "T": 293.037353515625, + "W": 75.88580322265625, + "H": 56.82232666015625, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 47, + "detections": [ + { + "score": 0.8595394492149353, + "L": 775.281005859375, + "T": 146.22772216796875, + "W": 249.240478515625, + "H": 234.8509521484375, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.33126652240753174, + "L": 584.0728759765625, + "T": 293.18994140625, + "W": 71.81597900390625, + "H": 56.41558837890625, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 48, + "detections": [ + { + "score": 0.8692857027053833, + "L": 776.4239501953125, + "T": 145.93719482421875, + "W": 248.482421875, + "H": 234.42578125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.306215763092041, + "L": 583.93359375, + "T": 292.5355224609375, + "W": 72.53448486328125, + "H": 57.04754638671875, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 49, + "detections": [ + { + "score": 0.8678140044212341, + "L": 775.9276123046875, + "T": 145.90911865234375, + "W": 246.70257568359375, + "H": 234.1160888671875, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.28334566950798035, + "L": 584.4751586914062, + "T": 292.938232421875, + "W": 73.2462158203125, + "H": 56.57659912109375, + "name": "Passer domesticus", + "idx": 69 + } + ] + }, + { + "frame": 50, + "detections": [ + { + "score": 0.8716027140617371, + "L": 776.2359619140625, + "T": 145.86383056640625, + "W": 245.51373291015625, + "H": 234.13409423828125, + "name": "Turdus migratorius", + "idx": 130 + }, + { + "score": 0.3215084671974182, + "L": 584.5608520507812, + "T": 293.06341552734375, + "W": 73.9466552734375, + "H": 56.76708984375, + "name": "Passer domesticus", + "idx": 69 + } + ] + } + ] +} \ No newline at end of file diff --git a/trimmed.mp4 b/trimmed.mp4 new file mode 100644 index 0000000..ad4b670 Binary files /dev/null and b/trimmed.mp4 differ diff --git a/trimmed.oclip.orin b/trimmed.oclip.orin new file mode 100644 index 0000000..9de3bea --- /dev/null +++ b/trimmed.oclip.orin @@ -0,0 +1,5165 @@ +{ + "meta": { + "model_version": "ViT-L-16-SigLIP2-512", + "host": "orin" + }, + "scoring": { + "start_time": 1740753918.6187809, + "end_time": 1740753922.7351537 + }, + "json": { + "path": "/home/thebears/Source/pipelines/01_do_obj_det/trimmed.json.orin" + }, + "video": { + "path": "/home/thebears/Source/pipelines/01_do_obj_det/trimmed.mp4", + "target_w": 1280, + "target_h": 720 + }, + "scores": [ + { + "score": [ + 0.040132105350494385, + 0.025978446006774902, + -0.10246089845895767, + -0.5049965977668762, + 0.09657981991767883, + -0.0656479001045227, + 0.6857072710990906, + -0.5923780202865601, + 0.3658519387245178, + -0.07886409759521484, + -0.20313364267349243, + 0.39094078540802, + -0.31880098581314087, + -0.22971296310424805, + -0.22266888618469238, + -0.4348275065422058, + -0.07286310195922852, + 0.02512630820274353, + 0.057829201221466064, + -0.5703117847442627, + 0.11719784140586853, + 0.5448178648948669, + 0.1069909930229187, + -0.031748294830322266, + 0.3141835033893585, + 0.10648611187934875, + -0.23117923736572266, + 0.018077731132507324, + 0.154102623462677, + -0.22216862440109253, + -0.647527277469635, + -0.835310697555542, + -0.16495737433433533, + 0.25057506561279297, + -0.6912912130355835, + 0.09510290622711182, + 0.372902512550354, + -0.22530484199523926, + 0.7560335993766785, + 0.08830368518829346, + 0.5433165431022644, + 0.2305702567100525, + 0.3709171414375305, + -0.37224912643432617, + 0.03054523468017578, + -0.04898485541343689, + 0.6996361017227173, + 0.7393214106559753, + 0.7426053881645203, + -0.31980663537979126, + 0.4724685549736023, + 0.825748085975647, + 0.414894163608551, + -0.17042332887649536, + -0.03721219301223755, + 0.20636367797851562, + -0.0076555609703063965, + 0.462360143661499, + -0.32005685567855835, + -0.9400162100791931, + -0.342219740152359, + -0.0497361421585083, + -0.15671300888061523, + -0.019546151161193848, + 0.15703830122947693, + 0.4285001754760742, + -0.00879138708114624, + 0.3100616931915283, + -0.38132286071777344, + -0.13802826404571533, + 0.05141991376876831, + 0.11318492889404297, + 0.7924127578735352, + -0.18719929456710815, + -0.05182197690010071, + -0.032041966915130615, + -0.13521447777748108, + -1.044871211051941, + 1.3533034324645996, + 0.385660856962204, + 1.0097662210464478, + -0.3071404695510864, + -0.5267257690429688, + 0.083507239818573, + -0.1640920788049698, + 0.17879796028137207, + -0.5634927153587341, + 0.5200232267379761, + -0.06835681200027466, + 0.09443461894989014, + 0.4780278205871582, + -0.022051513195037842, + 0.5379993915557861, + -0.14503145217895508, + 0.4022634029388428, + -0.14878106117248535, + 0.18676990270614624, + -0.09822551906108856, + 0.019185513257980347, + 0.40929722785949707, + -0.7117834091186523, + 0.26798582077026367, + 0.2912106513977051, + 0.5507298707962036, + 0.3958514332771301, + 0.18145158886909485, + -0.4728659689426422, + 0.0016061663627624512, + -0.07616239786148071, + 0.43370598554611206, + -0.10490867495536804, + -0.2966848611831665, + -0.6200200319290161, + 0.05485844612121582, + -0.05978962779045105, + 0.9072624444961548, + -0.30361196398735046, + -0.25583481788635254, + 0.16438299417495728, + -0.25175899267196655, + 0.12906590104103088, + -1.1122918128967285, + 0.29989150166511536, + 0.0861031711101532, + -0.5633939504623413, + 0.16416603326797485, + 0.047823742032051086, + -0.3868490755558014, + -0.3561430871486664, + 0.09388428926467896, + -0.27528083324432373, + 0.0279960036277771, + -0.7009857296943665, + -0.48149386048316956, + 0.6067063808441162, + -0.31389349699020386, + 0.209919273853302, + 0.010206103324890137, + 0.12643161416053772, + 0.15195636451244354, + -0.1390523910522461, + -0.3895605802536011, + 0.1430830955505371, + -0.34962576627731323, + 0.598552405834198, + 0.6120263338088989, + 0.13121627271175385, + 0.6643961668014526, + -0.10221296548843384, + -0.21153056621551514, + -0.30259138345718384, + 0.48467791080474854, + -0.3982529044151306, + -0.4668881595134735, + -0.330603688955307, + 0.27486318349838257, + -0.4164239764213562, + 0.11574554443359375, + 0.11024636030197144, + -0.12409543246030807, + -0.4067339599132538, + -0.33146530389785767, + -0.21290859580039978, + 0.11385953426361084, + -0.8944733738899231, + 0.067766934633255, + 0.3472304344177246, + 0.08730161190032959, + 0.1659729778766632, + 0.788210391998291, + 0.02972644567489624, + 0.47845929861068726, + -0.29655081033706665, + 0.5624974966049194, + 0.22158947587013245, + 0.2620276212692261, + 0.44531166553497314, + -0.35607317090034485, + 0.1155925989151001, + -0.3363589346408844, + 0.14655646681785583, + -0.16530930995941162, + 0.2899613380432129, + -0.723209023475647, + 0.11373001337051392, + 0.29771125316619873, + -0.09828007221221924, + -0.18661445379257202, + 0.9032448530197144, + -0.11264687031507492, + 0.6025184392929077, + 0.20286303758621216, + -0.20600154995918274, + 0.9129260182380676, + -0.8598260879516602, + -0.7037551999092102, + 0.18778270483016968, + 0.2568397521972656, + -0.00523531436920166, + -0.34208914637565613, + 0.45165520906448364, + -0.07044214010238647, + 0.19721587002277374, + -0.5860748887062073, + 0.33957958221435547, + -0.2848348021507263, + -0.021136820316314697, + -0.6077322959899902, + -0.8667707443237305, + -0.03203935548663139, + -0.03880889713764191, + -0.0590437650680542, + -0.7159214019775391, + -0.12850689888000488, + 0.026327908039093018, + 0.009860008955001831, + -0.11976897716522217, + -0.20968329906463623, + -0.006766796112060547, + -0.693524181842804, + -0.399147629737854, + -0.11421111226081848, + 0.24166081845760345, + -0.17237713932991028, + 0.17307013273239136, + 0.08288753032684326, + 0.18333417177200317, + 0.4036605954170227, + 0.23111766576766968, + -0.21842825412750244, + 0.42631709575653076, + -0.04520285129547119, + -0.35285401344299316, + -0.096840500831604, + 0.5854277610778809, + 0.5243367552757263, + -0.21291959285736084, + -0.9156138896942139, + -0.048087991774082184, + -0.08011898398399353, + -0.3587547540664673, + -0.4668501615524292, + 7.29580020904541, + -0.42861267924308777, + -1.4814848899841309, + -0.322782039642334, + 0.23977351188659668, + 0.23000621795654297, + -0.18435490131378174, + -0.8774691820144653, + 0.003827691078186035, + -0.4552845358848572, + -0.4038538336753845, + 0.11147025227546692, + 0.5616264939308167, + 0.005368471145629883, + 0.6825222373008728, + 0.3050956726074219, + 0.7125486731529236, + 0.34115463495254517, + -0.16119766235351562, + -0.36913347244262695, + -0.37902283668518066, + -0.13366156816482544, + 0.4484182596206665, + 0.1359366774559021, + -0.008385419845581055, + -0.08653512597084045, + 0.01835915446281433, + 0.3971700072288513, + -0.26784250140190125, + 0.5402874946594238, + -0.5100274682044983, + -0.5614244937896729, + -0.4314405918121338, + -0.2514837980270386, + 0.2783906161785126, + 0.48996204137802124, + -0.8384637832641602, + -0.21869486570358276, + 0.5153681039810181, + 0.006461381912231445, + -0.21357542276382446, + -0.03872102499008179, + -0.12064138054847717, + -0.21451835334300995, + 0.09288907051086426, + 0.028121590614318848, + -0.4890362620353699, + -0.026065975427627563, + -0.009459719061851501, + -0.4659225642681122, + 0.1816830039024353, + -0.40255090594291687, + 0.5678435564041138, + 0.47293636202812195, + -0.47238022089004517, + -0.718561589717865, + 0.02450445294380188, + -0.2092323899269104, + 0.7427026629447937, + -0.47453731298446655, + 0.055042922496795654, + 0.0017182230949401855, + -0.21818271279335022, + 0.37686288356781006, + -0.5087659358978271, + -0.46597224473953247, + 0.10457879304885864, + 0.24448645114898682, + -0.2524055242538452, + 0.03571420907974243, + 0.08908285945653915, + 0.3140004277229309, + -0.062441468238830566, + 0.2993759214878082, + -0.7820202708244324, + 0.2277679443359375, + 0.1576007604598999, + -0.4237006604671478, + -0.40351927280426025, + 0.1635454297065735, + 0.5723688006401062, + 0.14854420721530914, + 0.6397639513015747, + 0.05906003713607788, + -0.432149738073349, + -0.06600332260131836, + -1.3128494024276733, + 0.02972787618637085, + 0.059385478496551514, + 0.30772629380226135, + -0.34285831451416016, + -0.07090646028518677, + 0.3121252655982971, + 0.4867398142814636, + -0.5059963464736938, + 0.4777606427669525, + -0.28668880462646484, + -0.6561805009841919, + -0.5661420226097107, + -0.3672020733356476, + -0.36228302121162415, + 0.1819387674331665, + 0.33643838763237, + -0.1127040684223175, + -0.3495126962661743, + -0.3458382487297058, + -0.02881753444671631, + -0.5257421135902405, + 0.03923773765563965, + 0.10275867581367493, + 0.2816188633441925, + -0.15578317642211914, + 0.1726166009902954, + -0.11071360111236572, + 0.6140856742858887, + -0.29982733726501465, + -1.0103093385696411, + 0.09482505917549133, + -1.507866382598877, + -0.2841971516609192, + 0.4407810568809509, + -0.3126298189163208, + 0.28542760014533997, + 0.2540563941001892, + 0.24927109479904175, + 0.14015322923660278, + -0.2132452130317688, + -0.2986239790916443, + -0.09369015693664551, + 0.04409670829772949, + 0.5090909600257874, + 0.369983971118927, + 0.03161048889160156, + -0.07097592949867249, + -0.2878600060939789, + 0.3844069838523865, + 0.18010276556015015, + -0.05896499752998352, + -0.027008861303329468, + 0.5519729852676392, + 0.11570006608963013, + 0.08752965927124023, + -0.13357600569725037, + -0.48043084144592285, + 0.15465784072875977, + -0.4742162227630615, + -0.7115193605422974, + -0.8958218097686768, + -0.18950027227401733, + -0.16697275638580322, + 0.2266438603401184, + -0.34921151399612427, + 0.501684308052063, + -0.21145379543304443, + 0.1556117832660675, + -0.11204321682453156, + 0.2924419641494751, + 0.09611871838569641, + -0.3229735493659973, + 0.23017814755439758, + 0.18953478336334229, + -0.32511740922927856, + -0.2492581009864807, + -0.20788514614105225, + -0.8059809803962708, + 0.08014628291130066, + -0.08741112798452377, + 0.48995256423950195, + 0.11526072025299072, + -0.028432846069335938, + -0.057177990674972534, + -0.008906424045562744, + -0.1904357373714447, + 0.09782475233078003, + 0.6221925616264343, + 0.47086769342422485, + -0.29003405570983887, + 0.25601786375045776, + 0.39301615953445435, + 0.7768884897232056, + -0.2589972913265228, + -0.19636434316635132, + 0.5672534704208374, + 0.33138182759284973, + 0.2590738534927368, + -0.3403085172176361, + -0.023801028728485107, + -0.0913989245891571, + -0.13983958959579468, + -0.18000543117523193, + -1.6005234718322754, + 0.4643624424934387, + -0.9174337387084961, + 0.1308990716934204, + -0.1632058322429657, + 0.10830667614936829, + 0.11630165576934814, + 0.126991868019104, + -0.1530545949935913, + 0.6465858817100525, + 0.045245975255966187, + -0.3438578248023987, + 0.7446812391281128, + -0.4620543420314789, + 0.42244207859039307, + 0.7551042437553406, + 0.21837878227233887, + 6.0330376625061035, + -0.1955832540988922, + 0.15737485885620117, + -0.13885334134101868, + 0.16750961542129517, + -0.09092888981103897, + -0.5697035193443298, + 0.2819417715072632, + -0.30051466822624207, + 0.4274784028530121, + -0.282997190952301, + -0.24769288301467896, + -1.1935243606567383, + -0.11142576485872269, + -0.11007353663444519, + -0.3640916645526886, + -0.4696859121322632, + -0.31881392002105713, + 0.16698938608169556, + -0.041487276554107666, + 0.423703134059906, + -0.15203073620796204, + -0.2732856571674347, + 0.14834064245224, + 0.17706617712974548, + -0.7675648927688599, + -0.16917213797569275, + -0.3803996443748474, + 0.3085222840309143, + 0.2623116374015808, + 0.8448942303657532, + 0.27931544184684753, + -1.5529347658157349, + 0.008768439292907715, + 0.2849853038787842, + -0.5857418775558472, + -0.026320576667785645, + 1.0150771141052246, + -0.11466389894485474, + -0.5292365550994873, + 0.4267820119857788, + -0.5200827121734619, + -0.1735438108444214, + 0.6245334148406982, + -0.09751221537590027, + 0.20961789786815643, + 0.32373517751693726, + -0.7164162993431091, + -0.4591935873031616, + 0.40227073431015015, + -0.014001786708831787, + 0.23923581838607788, + 0.40864551067352295, + 0.2519843578338623, + 0.088382288813591, + -0.750224232673645, + 0.8720803260803223, + -0.13254523277282715, + 0.1969059705734253, + -0.437133252620697, + -0.9272018074989319, + -0.40906673669815063, + -0.12057459354400635, + 0.5347766876220703, + 0.2592681050300598, + -0.014476209878921509, + -0.12112641334533691, + 0.8254810571670532, + -0.6370734572410583, + 0.48010319471359253, + -0.4524890184402466, + -0.7249847054481506, + 0.08009360730648041, + -0.36788684129714966, + -0.2771958112716675, + -0.6148895025253296, + 0.8218845725059509, + -0.3153229355812073, + -0.30989813804626465, + 0.0991176962852478, + -0.08498948812484741, + -0.17902499437332153, + -0.08061188459396362, + -0.002202540636062622, + -0.005896836519241333, + -0.5192089080810547, + -0.35847610235214233, + -0.8549351692199707, + -0.7987155318260193, + 0.07087226212024689, + 0.24997380375862122, + -0.3772847652435303, + -0.42263662815093994, + -0.30037373304367065, + -0.11922836303710938, + 0.22916826605796814, + 0.13397151231765747, + -0.2628799080848694, + 0.5206180810928345, + 0.1609143316745758, + -0.011829674243927002, + -0.02683115005493164, + -0.26886117458343506, + -0.8941181898117065, + 0.2848889231681824, + 0.7890462279319763, + -0.4204027056694031, + 0.11570024490356445, + 0.49905669689178467, + 0.1710628867149353, + 0.05369985103607178, + -0.31926870346069336, + 0.30791175365448, + -0.03616070747375488, + 0.2301737666130066, + 0.22087717056274414, + -0.22623348236083984, + -0.40865764021873474, + -0.5892279148101807, + -0.006274759769439697, + -0.5261075496673584, + 0.29736438393592834, + -0.003972262144088745, + -0.39576399326324463, + 0.40686553716659546, + -0.14186090230941772, + 0.12285304069519043, + 0.16551822423934937, + 0.0006651878356933594, + -0.33192020654678345, + -0.6065442562103271, + -0.045427560806274414, + -0.7476757764816284, + 0.3057670295238495, + -0.42729121446609497, + -0.5594764947891235, + -0.19205616414546967, + 0.7030270099639893, + 0.24396251142024994, + -0.1934334933757782, + -0.16327613592147827, + -0.041720300912857056, + -0.2895297408103943, + -0.2992582619190216, + -0.10328865051269531, + 0.5877766609191895, + 0.14153867959976196, + 0.5890902280807495, + -0.6308703422546387, + -0.051959872245788574, + 0.3460620045661926, + 0.1984226107597351, + -0.21887457370758057, + -0.3101118206977844, + -0.34137672185897827, + -0.016870975494384766, + 0.8355736136436462, + 0.0024625658988952637, + -0.26538538932800293, + 0.43635880947113037, + -0.1645868420600891, + 0.013814076781272888, + -0.138674795627594, + 0.0857144147157669, + -0.06298285722732544, + -0.17554551362991333, + -0.14628863334655762, + -0.13136307895183563, + -0.16813120245933533, + 0.11720395088195801, + 0.5291287302970886, + -0.6881661415100098, + -0.07576408237218857, + -0.20540016889572144, + -0.5743172764778137, + -0.3561578691005707, + 0.23185580968856812, + 0.08060383796691895, + -0.7426204085350037, + -0.31900840997695923, + 0.007440090179443359, + 0.5010783672332764, + -0.011089026927947998, + -0.14463895559310913, + -0.35126885771751404, + 0.005907207727432251, + -0.3998212516307831, + 0.09838134050369263, + -0.387433260679245, + 0.5124082565307617, + -0.18993428349494934, + 0.17240016162395477, + 0.4029383063316345, + 0.18372398614883423, + -0.24954462051391602, + 0.2679176330566406, + -0.5977340340614319, + 0.027553260326385498, + -0.15887123346328735, + 0.29473134875297546, + -0.7259754538536072, + 0.5254899859428406, + -0.014462590217590332, + 0.24466127157211304, + 0.44502806663513184, + 0.2135278582572937, + 0.34248483180999756, + 0.3489232659339905, + 0.15701211988925934, + -0.035823822021484375, + -0.07366156578063965, + 0.7022920846939087, + 0.039614319801330566, + 0.028890475630760193, + -0.10217313468456268, + 0.22234344482421875, + -0.6171671748161316, + -0.8491927981376648, + 0.20694679021835327, + -0.20940202474594116, + -0.5030741691589355, + -0.4900285601615906, + -0.21525639295578003, + -0.08604700863361359, + -0.17012590169906616, + 0.28946495056152344, + 0.3266383111476898, + -0.23342204093933105, + -0.33301523327827454, + 0.11194801330566406, + -0.6450269818305969, + -0.6207342147827148, + 0.17454469203948975, + 0.05284520983695984, + -0.07201379537582397, + 0.16955751180648804, + 0.3682017922401428, + 0.4089198708534241, + -0.13404816389083862, + -0.3628612756729126, + 0.018448293209075928, + -0.5339174866676331, + 0.17744460701942444, + -0.47544440627098083, + -0.18417420983314514, + 0.16889944672584534, + -0.3409263491630554, + -0.5006746053695679, + -0.22341963648796082, + -0.2104259431362152, + -0.34838929772377014, + -0.1079937219619751, + 0.0760921835899353, + 0.14054614305496216, + -0.5794633030891418, + -0.6976649165153503, + -0.4499853849411011, + 0.02668100595474243, + 0.8720073699951172, + -0.048549652099609375, + -0.10288774967193604, + 0.5032559633255005, + -0.42559659481048584, + 0.09858545660972595, + 0.17680394649505615, + -0.14224553108215332, + 0.48565465211868286, + -0.16775068640708923, + -0.10935568809509277, + -0.18138742446899414, + -0.06366467475891113, + -0.14692336320877075, + -0.2031901478767395, + 0.18837928771972656, + -0.028339028358459473, + -0.3846972584724426, + -0.15705525875091553, + -0.19876092672348022, + -0.21771684288978577, + -0.3314018249511719, + -0.055802345275878906, + -0.02589339017868042, + 0.2758690416812897, + 0.20617473125457764, + 0.27673912048339844, + -0.26247483491897583, + 0.7026698589324951, + -0.17902719974517822, + -0.018022656440734863, + -0.7543485760688782, + 0.02004951238632202, + -1.1621840000152588, + 0.4084569811820984, + -0.2779788374900818, + -0.3652713894844055, + 0.19442301988601685, + 0.8282442092895508, + 0.09472525119781494, + -0.20073124766349792, + -0.9086061716079712, + -0.14128684997558594, + 0.053449273109436035, + 1.0887212753295898, + -0.042372703552246094, + -0.7218403220176697, + 0.35092830657958984, + 0.12531262636184692, + -0.05794847011566162, + 0.6704244613647461, + 0.044222474098205566, + 0.12348318099975586, + -0.3255009055137634, + -0.876394510269165, + -0.4433118999004364, + -0.5840342044830322, + -0.34187060594558716, + 0.05569523572921753, + -0.26108840107917786, + -0.18339137732982635, + -0.10378247499465942, + -0.35096532106399536, + -0.8463597893714905, + 0.6680262088775635, + 0.10363918542861938, + 0.46196120977401733, + -0.1484776735305786, + -0.40572014451026917, + -0.14057272672653198, + -0.14034110307693481, + -0.02856731414794922, + -0.10145106911659241, + 0.43433481454849243, + 0.07509255409240723, + 0.4932423233985901, + -0.2806481122970581, + -0.3789501190185547, + 0.38790392875671387, + 0.3723791837692261, + -0.4871937930583954, + -0.2019384205341339, + 0.17778795957565308, + 0.06208866834640503, + 0.24789369106292725, + 0.28832632303237915, + 0.23478955030441284, + -0.26662975549697876, + -0.5075361132621765, + -0.39303189516067505, + -0.09405648708343506, + -0.08641347289085388, + -0.6209419965744019, + 0.5870888233184814, + 0.3603416085243225, + 0.0006903558969497681, + 0.6475242972373962, + -0.2523961663246155, + -0.42972564697265625, + -0.02039244771003723, + 0.38270649313926697, + 0.3558884263038635, + 0.33946919441223145, + 0.3895537853240967, + -0.16348949074745178, + 0.46460551023483276, + -1.2085038423538208, + 0.003165900707244873, + -0.123986154794693, + -0.683294415473938, + 0.0424758642911911, + -0.23522233963012695, + -0.2009187936782837, + 0.39329993724823, + -0.11493951082229614, + 0.5900692343711853, + 0.11791402101516724, + -0.3662448227405548, + -0.1791030764579773, + 0.1607860028743744, + 0.43560320138931274, + 0.1489517092704773, + 0.3250148892402649, + 0.048331379890441895, + 0.9391183853149414, + -0.4706571102142334, + -0.07861463725566864, + -0.005249142646789551, + 0.2126769721508026, + 0.5565252900123596, + -0.02873140573501587, + 0.4434696137905121, + 0.998702347278595, + 0.115908682346344, + 0.023684263229370117, + 0.056932806968688965, + -0.2142137587070465, + -0.2027726173400879, + 1.0211570262908936, + 0.0076500773429870605, + -0.10654902458190918, + 0.3022683560848236, + -0.7989990711212158, + 0.05286282300949097, + 0.2773905396461487, + -0.7521010637283325, + -0.1530885100364685, + 0.5104973912239075, + -0.37799835205078125, + -0.19441360235214233, + 0.4567475914955139, + -0.2454727590084076, + -0.18975484371185303, + 0.27348387241363525, + -0.8580899238586426, + 0.13902974128723145, + -0.11925122141838074, + 0.18567153811454773, + -0.0396307110786438, + -0.1379328966140747, + -0.44589829444885254, + 0.05473020672798157, + 0.12546658515930176, + -0.18952679634094238, + 0.12324962019920349, + -0.6768683195114136, + 0.04903459548950195, + 0.32096433639526367, + 0.20717355608940125, + 0.0113297700881958, + 0.02448984980583191, + 0.029962986707687378, + -0.46324723958969116, + -0.49346107244491577, + 0.1471155881881714, + -0.6203868985176086, + -0.013379722833633423, + -0.28082042932510376, + 0.06493431329727173, + -0.46390044689178467, + -0.023896068334579468, + -0.222646102309227, + 0.20748181641101837, + 0.26152366399765015, + 0.16580069065093994, + -0.4242696166038513, + -0.020251348614692688, + -0.40758979320526123, + -0.10990208387374878, + -0.3629907965660095, + 0.09901732206344604, + 0.15618130564689636, + 0.14835399389266968, + -0.6636134386062622, + -0.47647625207901, + -0.412956178188324, + 0.11131829023361206, + 0.7204564809799194, + -0.1341204047203064, + 0.3954712152481079, + -0.16712677478790283, + 0.03617453575134277, + 0.08184236288070679, + 0.41341185569763184, + -0.27499425411224365, + 0.03771497309207916, + -0.2161826491355896, + 0.20713657140731812, + 0.07935947179794312, + -0.10284805297851562, + -0.3503144085407257, + -0.2878849506378174, + -0.3661181628704071, + -0.20140650868415833, + -0.14793524146080017, + -0.1330050230026245, + -0.1242106556892395, + -0.11231105029582977, + 0.25656843185424805, + 2.150320053100586, + -0.6245313286781311, + 0.0783836841583252, + 1.025588035583496, + 0.7083263397216797, + 0.23228472471237183, + -0.26164743304252625, + 0.39392679929733276, + 0.08583784103393555, + -0.5631674528121948, + 0.06766176223754883, + -0.19414931535720825, + 0.29159241914749146, + 0.412784606218338, + -0.06155559420585632, + -0.49454647302627563, + 0.15929514169692993, + 0.5490361452102661, + -0.2714337110519409, + 0.1763525903224945, + -0.047740161418914795, + -0.4537561237812042, + 1.022283911705017, + 0.16239649057388306, + 1.0618160963058472, + -0.07107853889465332, + 0.04746145009994507, + 0.6070279479026794, + 0.07974493503570557, + -0.19781038165092468, + 0.09719114005565643, + 0.25613370537757874, + 0.11253812909126282, + -0.026361197233200073, + 0.49541175365448, + -0.11906957626342773, + -0.19859424233436584, + 0.05270892381668091, + -0.22314363718032837, + 0.22127297520637512, + 0.2934814691543579, + 0.1113707423210144, + -0.06209486722946167, + 0.16145554184913635, + -0.18500801920890808, + -0.4133821725845337, + -0.05383580923080444, + -0.044242292642593384, + -0.13249874114990234, + 0.04072695970535278, + -0.17088475823402405, + -0.2662867307662964, + -0.4325648546218872, + 0.7263601422309875, + -0.12657645344734192, + 0.06864255666732788, + 0.2832593321800232, + 0.08746612071990967, + -0.15627530217170715, + 0.013384491205215454, + -0.10730278491973877, + 0.18077301979064941, + 0.0439886748790741, + 0.28659307956695557, + -0.5013083219528198, + -0.7747005820274353, + 0.026731014251708984, + 0.2713008522987366, + -0.03760913014411926, + -0.11894085258245468, + 0.18527495861053467, + 0.002965867519378662, + 0.6348094940185547, + -0.2922702431678772, + -0.1275911182165146, + -0.042046792805194855, + -0.3571569621562958, + -0.49606525897979736, + -0.016387641429901123, + -0.06579676270484924, + 0.15422892570495605, + 0.41417261958122253, + 0.39914506673812866, + 0.3365284204483032, + -0.17281070351600647, + -0.18070247769355774, + -0.12104713916778564, + -0.4914127588272095, + -0.11961397528648376, + -0.4849827289581299, + -0.22386401891708374, + -0.12906497716903687, + -0.42176300287246704, + -0.17639434337615967, + -0.21623235940933228, + -0.00411146879196167, + 0.14851728081703186, + 0.28478777408599854 + ], + "frame": 0 + }, + { + "score": [ + -0.3480699956417084, + -0.23906445503234863, + -0.02782251685857773, + 0.326931357383728, + 0.22705227136611938, + 0.07727588713169098, + 0.154974102973938, + -0.1546398103237152, + -0.24231241643428802, + -0.0589064359664917, + -0.01625955104827881, + -0.22448089718818665, + -0.6171960234642029, + -0.37179601192474365, + 0.19339221715927124, + -0.4895976483821869, + -0.4249972701072693, + -0.44636276364326477, + -0.21443164348602295, + -0.2919045090675354, + 0.006522655487060547, + -0.13265633583068848, + 0.09285837411880493, + 0.07988917827606201, + 0.18127712607383728, + -0.10587432980537415, + 0.9790388345718384, + 0.7892062664031982, + 0.043986380100250244, + -0.2822551131248474, + -0.39756014943122864, + -0.4867441654205322, + -0.4412875175476074, + 0.013555824756622314, + -0.186506986618042, + 0.2584161162376404, + -0.03815877437591553, + 0.4905319809913635, + 0.1178831160068512, + -0.2856895327568054, + 0.5221338272094727, + -0.5727748870849609, + 0.26763588190078735, + -0.3946566581726074, + -0.3449573218822479, + -0.013210266828536987, + 0.393812894821167, + -0.418110728263855, + 0.5559412240982056, + -0.9223855137825012, + -0.46371281147003174, + 0.9276145100593567, + -0.44929248094558716, + -0.12574023008346558, + 0.1385360062122345, + 0.8046231269836426, + -0.5648815631866455, + 0.1948663592338562, + 0.550638735294342, + -0.05163544416427612, + -0.30154678225517273, + 0.10953712463378906, + -0.04207968711853027, + 0.14843052625656128, + -0.10467511415481567, + 0.13744240999221802, + 0.26656413078308105, + -0.00249423086643219, + 0.389212965965271, + -0.6072126626968384, + 0.06974303722381592, + -0.09036970138549805, + 0.14728456735610962, + 0.3808489441871643, + -0.31079453229904175, + -0.0911780595779419, + -0.6433111429214478, + -0.2023392915725708, + 1.653462290763855, + -0.135158509016037, + 0.8286643624305725, + 0.20790719985961914, + -0.11103656888008118, + 0.0022323131561279297, + -0.18547306954860687, + -0.11490118503570557, + 0.008960828185081482, + 0.6678701639175415, + 0.3106342554092407, + -0.3040551543235779, + 0.09798657894134521, + 0.03245502710342407, + -0.028353989124298096, + 0.2366771697998047, + 0.2573278844356537, + 0.6868191957473755, + -0.28524911403656006, + 0.45035287737846375, + -0.43364936113357544, + -0.20289719104766846, + 0.5205310583114624, + 0.5365481972694397, + 0.09325706958770752, + 0.3615871071815491, + -0.32190316915512085, + 0.10512033104896545, + 0.12499332427978516, + -0.2070024609565735, + -0.25282514095306396, + 0.2541702389717102, + 0.48999276757240295, + -0.8724087476730347, + -0.21001297235488892, + 0.39897555112838745, + 0.14132040739059448, + 0.3467947244644165, + -0.23036187887191772, + 0.06604257225990295, + 0.5889345407485962, + 0.1022036075592041, + -0.16546642780303955, + -0.5051825046539307, + 0.16523343324661255, + -0.9534475803375244, + -0.16762703657150269, + -0.18242615461349487, + -0.019918158650398254, + 0.37255406379699707, + 0.09061330556869507, + 0.16568756103515625, + 0.249688982963562, + -0.3708752691745758, + -0.3470270037651062, + 0.2719271779060364, + 0.16966700553894043, + -0.5135571956634521, + -0.06121015548706055, + 0.08472847938537598, + 0.6991219520568848, + 0.20106270909309387, + -0.1894969940185547, + -0.6248759627342224, + 0.7375169992446899, + -0.3187441825866699, + 0.7239075303077698, + 0.48407334089279175, + 0.16907693445682526, + -0.1738716959953308, + -0.10991883277893066, + 0.05587419867515564, + -0.2585320770740509, + 0.31538188457489014, + 0.07744169235229492, + -0.5010788440704346, + -0.032094329595565796, + 0.24561607837677002, + 0.1767147183418274, + 0.035622745752334595, + -0.09271359443664551, + 0.320234090089798, + 0.13125279545783997, + -0.47873085737228394, + -0.8605606555938721, + 0.08308768272399902, + -0.8313083648681641, + 0.007315605878829956, + 0.18813392519950867, + 0.01083400845527649, + -0.15055382251739502, + 0.6139833331108093, + 0.40712064504623413, + -0.16326802968978882, + 0.3143400549888611, + 0.31077998876571655, + 0.16316917538642883, + -0.07255640625953674, + 0.040274087339639664, + -0.3816555142402649, + -0.5221453309059143, + -0.19685563445091248, + 0.08650153875350952, + -0.31422126293182373, + 0.23707693815231323, + 0.05511900782585144, + 0.27195268869400024, + 0.1422206461429596, + -0.12671244144439697, + 0.00966578722000122, + 0.498523473739624, + 0.1946755200624466, + -0.05777899920940399, + -0.19749319553375244, + 0.04918818175792694, + 0.9165467023849487, + -1.4941009283065796, + -0.21708780527114868, + 0.2862069606781006, + 0.0017625093460083008, + -0.2986874580383301, + 0.11643865704536438, + -0.1538131833076477, + 0.18885254859924316, + 0.09158024191856384, + 0.12557250261306763, + -0.11855447292327881, + -0.9681209921836853, + 0.7451502680778503, + -0.10281246900558472, + -0.2836899757385254, + -0.34962227940559387, + 0.24918442964553833, + -0.4263589382171631, + -0.1565651297569275, + -0.4530787467956543, + -0.14949572086334229, + 0.127029687166214, + -0.8134510517120361, + -0.969245433807373, + -0.38473188877105713, + -0.4187573194503784, + -0.04064762592315674, + -0.2912191152572632, + 0.13771861791610718, + -0.010815441608428955, + 0.04194122552871704, + -0.3885780870914459, + 0.23088249564170837, + -0.13495498895645142, + 0.16508090496063232, + -0.6309241652488708, + -0.17969711124897003, + -0.9445984363555908, + -0.25324511528015137, + 0.41932493448257446, + -0.10249820351600647, + -0.43499842286109924, + -0.028764188289642334, + 0.32780760526657104, + 0.18834972381591797, + 0.6302675604820251, + 0.2943941652774811, + 0.02976858615875244, + 6.125846862792969, + -0.12693169713020325, + -0.6203696727752686, + -0.38044238090515137, + 0.046721458435058594, + 0.021911397576332092, + -0.32321327924728394, + -0.061802804470062256, + 0.021524667739868164, + 0.37523460388183594, + -0.5855284333229065, + 0.827486515045166, + 0.2082653045654297, + -0.06272715330123901, + 0.18780654668807983, + 0.13870510458946228, + 0.46182966232299805, + 0.4910963177680969, + -0.5120835900306702, + 0.3376336395740509, + -0.2825832962989807, + -0.22100591659545898, + 0.13246679306030273, + 0.3681918978691101, + 0.017780303955078125, + -0.11494672298431396, + -0.009779483079910278, + -0.023192644119262695, + 0.4812784790992737, + 0.03725242614746094, + -0.18708175420761108, + -0.011309802532196045, + -0.23381483554840088, + 0.4947558641433716, + -0.13371950387954712, + 0.8801529407501221, + 0.0031533241271972656, + 0.1360045075416565, + 0.16382932662963867, + 0.4689803719520569, + -0.59922194480896, + -0.09339523315429688, + -0.024963021278381348, + -0.13795650005340576, + -0.01534220576286316, + 0.23880261182785034, + -0.20543494820594788, + 0.35290592908859253, + 0.12556850910186768, + 0.06904315948486328, + 0.2061137557029724, + -0.4192095100879669, + -0.40268588066101074, + 0.1647852659225464, + 0.1536257565021515, + 0.13353216648101807, + -0.5668233633041382, + -0.2841768264770508, + 1.2655435800552368, + 0.036256879568099976, + -0.30759555101394653, + 0.18037813901901245, + -0.27210256457328796, + 0.49843817949295044, + -0.012307822704315186, + -0.32322609424591064, + -0.13119998574256897, + -0.12041795253753662, + 0.5103189945220947, + -0.016230642795562744, + -0.3955157399177551, + 0.5285230875015259, + 0.6585703492164612, + 0.2094212770462036, + -0.714621901512146, + -0.39526692032814026, + 0.72676682472229, + -0.1604638397693634, + -0.1476207673549652, + -0.0690838098526001, + 1.50702702999115, + -0.13632556796073914, + -0.1498349905014038, + -0.09916764497756958, + 0.09062033891677856, + -0.13744527101516724, + -0.20628976821899414, + -0.265134334564209, + 0.08824765682220459, + 0.09267416596412659, + -0.22956860065460205, + -0.836146891117096, + 0.16003304719924927, + 0.4971946179866791, + 0.03737238049507141, + 0.2500200867652893, + -0.06930974125862122, + -0.2330019176006317, + -0.03271489590406418, + -0.28932487964630127, + 0.4310467541217804, + -0.07540547847747803, + -0.7324406504631042, + 0.40533626079559326, + -0.2924875020980835, + 0.07358983159065247, + 0.30572882294654846, + 0.01416921615600586, + -0.07260704040527344, + 0.37497439980506897, + -0.5423679351806641, + -0.3875696063041687, + -0.47383224964141846, + 0.12504950165748596, + 0.4425975978374481, + 0.04009246826171875, + -0.22485393285751343, + -0.5140675902366638, + -1.8521513938903809, + -0.10001909732818604, + 0.5744706392288208, + -1.4769257307052612, + -0.1666116565465927, + 0.23334866762161255, + 0.42440396547317505, + 0.02525794506072998, + -0.6766873598098755, + -0.46911853551864624, + -0.16081440448760986, + 0.11847937107086182, + 0.10819560289382935, + 0.2736239433288574, + 0.09973138570785522, + 0.09110182523727417, + -0.32563257217407227, + -0.11587482690811157, + 0.22851687669754028, + -0.01093357801437378, + 0.6902987957000732, + -0.4335756301879883, + 0.21597394347190857, + 0.28045985102653503, + -0.25475797057151794, + -0.1258891224861145, + 0.3101116418838501, + 0.036436617374420166, + -0.30247610807418823, + -0.12011396884918213, + -0.11854749917984009, + -0.25510090589523315, + 0.2724115252494812, + -0.05572792887687683, + -0.35373640060424805, + -0.48523205518722534, + -0.27065765857696533, + -0.057051122188568115, + 0.2716789245605469, + -0.5049000978469849, + -0.11945885419845581, + -0.14307540655136108, + -0.07528108358383179, + -0.0384899377822876, + 0.1644274890422821, + 0.11083027720451355, + -0.7030481100082397, + 0.035947591066360474, + -0.13165909051895142, + 0.48775821924209595, + -0.028803467750549316, + -0.9420076608657837, + -0.18288666009902954, + -0.6860787868499756, + -0.06914201378822327, + -0.25120359659194946, + -0.1476321816444397, + -0.37108123302459717, + -0.0726061463356018, + -0.3126378655433655, + 0.18963152170181274, + 0.8182052373886108, + -0.46193191409111023, + -0.1679975986480713, + 0.10461646318435669, + 0.16688314080238342, + 0.2881024479866028, + -0.39669281244277954, + -0.047125816345214844, + -0.313365638256073, + 0.7114565372467041, + -0.4289281964302063, + -0.8806324005126953, + 0.40875113010406494, + -0.9357024431228638, + -0.3204731345176697, + 0.04117634892463684, + -0.30092450976371765, + -0.167006254196167, + -0.023883044719696045, + 0.3463360071182251, + -0.2205105721950531, + -0.09714311361312866, + -0.4225192964076996, + -0.05971783399581909, + -0.31271305680274963, + -0.08667734265327454, + -0.2153947651386261, + -0.018784403800964355, + 5.778369903564453, + -0.060749828815460205, + 0.1347362995147705, + -0.05355137586593628, + -0.07041758298873901, + -0.0852842703461647, + 0.41476696729660034, + 0.4403747320175171, + -0.4841963052749634, + -0.4562912583351135, + -0.4194691479206085, + 0.005984455347061157, + -0.004606902599334717, + -0.009117156267166138, + -0.26006031036376953, + -0.3726615011692047, + 0.08226433396339417, + 0.09843242168426514, + -0.17871004343032837, + 0.1809908151626587, + 0.2292528748512268, + 0.3622156083583832, + 0.23408406972885132, + -0.2178162932395935, + -0.2009131908416748, + -0.519549548625946, + -0.023161500692367554, + 0.1425338089466095, + 0.15370279550552368, + -0.019117265939712524, + 0.2096797227859497, + 1.0732486248016357, + -0.6036999225616455, + 0.010810673236846924, + 0.08604186773300171, + 0.042169421911239624, + -0.00476682186126709, + 0.6777403950691223, + -0.42106401920318604, + -1.0016813278198242, + 0.1526118516921997, + 0.014491423964500427, + 0.05379575490951538, + 0.47720375657081604, + 0.039966970682144165, + -0.11273854970932007, + 0.217507004737854, + -0.10956132411956787, + -0.31620970368385315, + 0.20767851173877716, + 0.7426387071609497, + 0.1192086935043335, + 0.8904680013656616, + 0.050124168395996094, + 0.009991704486310482, + -0.36821210384368896, + 0.19821316003799438, + -0.19074738025665283, + -0.8521263003349304, + -0.18307769298553467, + 0.1564716100692749, + -0.21595805883407593, + 0.22029763460159302, + 0.04205712676048279, + -0.07492899894714355, + -0.3667167127132416, + 0.12915289402008057, + -0.1258758306503296, + -0.6066696643829346, + 0.7494055032730103, + -0.7282863259315491, + -0.0867266058921814, + 0.3305196166038513, + -0.3080388307571411, + 0.1627810299396515, + 0.5119557976722717, + 0.04669910669326782, + 0.6794191002845764, + -0.4853525459766388, + 0.02532219886779785, + -0.578156590461731, + 0.4810555577278137, + 0.2161756157875061, + 0.10664606094360352, + 0.6053023338317871, + 0.12266041338443756, + -0.4205200970172882, + -0.45798277854919434, + -0.799213707447052, + -0.3983534872531891, + 0.01561465859413147, + -0.4591606855392456, + 0.13927578926086426, + -0.026015758514404297, + 0.6327884793281555, + 0.22502169013023376, + 0.16966944932937622, + -0.2870275378227234, + 0.19795280694961548, + -0.25965988636016846, + -0.5555899739265442, + 0.29849398136138916, + 0.053356438875198364, + -0.4935527443885803, + 0.28576475381851196, + -0.060102224349975586, + -0.21859660744667053, + -0.2930586338043213, + 0.5552476644515991, + -0.38065797090530396, + -0.2567981481552124, + -0.2336556613445282, + 1.0061415433883667, + 0.41349273920059204, + -0.5819470286369324, + 0.01595914363861084, + -1.6279244422912598, + 0.3402772843837738, + 0.1894570142030716, + -0.24828499555587769, + -0.6534155607223511, + -0.09034276008605957, + -0.8018398284912109, + -0.25146055221557617, + -0.5294051766395569, + -0.10018602013587952, + 0.21580982208251953, + 0.3300347924232483, + -0.2384321391582489, + -0.4923565089702606, + -0.6676816344261169, + -0.18995168805122375, + -0.07405148446559906, + -0.003097355365753174, + -0.36252740025520325, + -0.5048280954360962, + 0.27682191133499146, + 0.18913516402244568, + 0.2943728566169739, + -0.1941017508506775, + 0.04096841812133789, + -0.01023167371749878, + -0.22067266702651978, + -0.08609020709991455, + -0.6827607154846191, + 0.3353916108608246, + -0.2559233605861664, + 0.3112347722053528, + -0.7212960720062256, + -0.39735668897628784, + 0.3555449843406677, + 0.2765081524848938, + -0.6890350580215454, + -0.732990562915802, + 0.46243685483932495, + 0.04963874816894531, + -0.18710237741470337, + 0.09246820211410522, + 0.28463470935821533, + -0.3648380637168884, + 0.01584261655807495, + -0.8373347520828247, + -0.4617595076560974, + 0.4689125716686249, + -0.14616990089416504, + 0.21336501836776733, + 0.04157036542892456, + -0.1782739758491516, + 0.2227218747138977, + 0.10875988006591797, + -0.7935486435890198, + -0.012350082397460938, + 0.3803347945213318, + 0.02900645136833191, + -0.4389246106147766, + 0.1662554144859314, + -0.4317825436592102, + -0.344642698764801, + -0.20776644349098206, + -0.23717552423477173, + -0.23183941841125488, + 0.009494900703430176, + 0.336954265832901, + 0.42148053646087646, + -0.5621533393859863, + -0.05396875739097595, + -0.3208611011505127, + 0.313590407371521, + 0.24224811792373657, + -0.2715193033218384, + -0.018804281949996948, + -0.030267998576164246, + 0.6153592467308044, + -0.5337256789207458, + 0.08260238170623779, + 0.6699733734130859, + -0.5153568983078003, + -0.1513206958770752, + -0.39277517795562744, + -0.02505818009376526, + -0.16803765296936035, + 0.46678426861763, + 0.160761296749115, + -0.04023247957229614, + 0.37989118695259094, + 0.07509887218475342, + -0.4677289128303528, + -0.12440723180770874, + -0.02765105664730072, + -0.4948059916496277, + 0.0023940205574035645, + -0.09961739182472229, + -0.3943450152873993, + -0.2093740701675415, + -0.11021192371845245, + 0.04175972938537598, + -0.0006421804428100586, + -1.190726637840271, + -0.12130880355834961, + 0.4581570327281952, + -0.29531168937683105, + -0.8292018175125122, + -0.049050986766815186, + -0.8617570400238037, + 0.2509163022041321, + 0.3716602623462677, + 0.3672950565814972, + 0.10495048761367798, + -0.26984894275665283, + -0.17017477750778198, + 0.5832441449165344, + -0.06178733706474304, + 1.3954191207885742, + 0.7606518864631653, + -0.015156328678131104, + -0.16558220982551575, + 0.4198645353317261, + 0.1255033016204834, + 0.20878762006759644, + -0.3153773248195648, + -0.14551836252212524, + -0.28886908292770386, + 0.00828409194946289, + -0.4859920144081116, + 0.019088327884674072, + -0.030529499053955078, + -0.2523760199546814, + 0.3708459138870239, + -0.08200553059577942, + 0.03599900007247925, + -0.0026211440563201904, + -0.2834594249725342, + 0.04419618844985962, + -0.2469589114189148, + 0.4085276126861572, + -0.42189693450927734, + 0.3847493529319763, + 0.15355747938156128, + -0.6135927438735962, + 0.0005829036235809326, + 0.18286848068237305, + 0.01569277048110962, + -0.08399838209152222, + -0.5264309048652649, + -0.11465984582901001, + 0.2055547833442688, + -0.7303234934806824, + -0.41923338174819946, + -0.12759298086166382, + -0.05963858962059021, + -0.328024685382843, + 0.3632640242576599, + 0.3410112261772156, + 0.07932844758033752, + 0.259723424911499, + 0.1328413188457489, + -0.245670348405838, + -0.19127237796783447, + 0.3723548650741577, + -0.37959861755371094, + -0.47509729862213135, + -0.03651857376098633, + -0.03199028968811035, + 0.5399813652038574, + 0.1385481357574463, + 0.05147010087966919, + 0.2407599687576294, + -0.1344955563545227, + -0.45045843720436096, + -0.2673076391220093, + 0.1808273196220398, + -0.9255813360214233, + -0.034249305725097656, + 0.21730780601501465, + -0.03703989088535309, + -0.007536411285400391, + -0.12969186902046204, + 0.31047558784484863, + 0.17078793048858643, + -1.105073094367981, + -0.9238924384117126, + 0.2816349267959595, + 0.37100058794021606, + -0.33255529403686523, + -0.4334477186203003, + 0.5464572310447693, + -0.17237120866775513, + -0.1782379150390625, + 0.04665428400039673, + -0.030445456504821777, + 0.15990674495697021, + -0.3515107333660126, + -0.032422661781311035, + -0.7735716104507446, + 0.22035276889801025, + -0.43609344959259033, + -0.4810619354248047, + -0.7390546798706055, + -0.047492533922195435, + 0.6261841058731079, + 0.8808805346488953, + -0.1797437071800232, + -0.0831177830696106, + 0.34618473052978516, + 0.87385094165802, + -0.2251235842704773, + -0.0880056619644165, + 0.030205607414245605, + -0.16293615102767944, + 0.17200344800949097, + 0.017192602157592773, + 0.5866906046867371, + -0.585722029209137, + 0.20665663480758667, + 0.03674966096878052, + -0.02721250057220459, + 0.2728600800037384, + -0.3358014225959778, + -0.44351571798324585, + -0.7095997929573059, + 0.4199965000152588, + 0.6497800350189209, + -0.3481066823005676, + -0.0514485239982605, + 0.02152678370475769, + 0.32155048847198486, + 0.3653489351272583, + -0.08253589272499084, + -0.2470678687095642, + 0.635381281375885, + -0.7548101544380188, + 0.6094597578048706, + 0.05095952749252319, + 0.3553643524646759, + -0.8263120055198669, + -0.378567099571228, + 0.024174094200134277, + 0.47095462679862976, + -0.22556495666503906, + 0.5557156801223755, + -0.06817078590393066, + 0.13277745246887207, + 0.3589310050010681, + 0.3016188144683838, + -0.8764260411262512, + 0.13632723689079285, + -0.5630627870559692, + -0.8028359413146973, + 0.24174383282661438, + 0.19348597526550293, + 0.37681472301483154, + -0.18992003798484802, + -0.2863844931125641, + 0.4717828929424286, + 0.12870585918426514, + -0.15979480743408203, + -0.0997355580329895, + -0.005967631936073303, + 0.7354351282119751, + -0.0035952627658843994, + 0.05603039264678955, + -0.41196516156196594, + 0.6581709384918213, + 0.22762538492679596, + 0.262643963098526, + -0.9811977744102478, + -0.6330974698066711, + -0.46662619709968567, + 0.10520535707473755, + -0.013173341751098633, + 0.17044997215270996, + 0.17982718348503113, + 0.21385082602500916, + -0.1106337308883667, + -0.00666123628616333, + 0.08176682889461517, + 0.4535270929336548, + -0.15609294176101685, + -0.3257482647895813, + 0.1331351399421692, + -0.07651875913143158, + -0.21017229557037354, + 0.05945247411727905, + 0.15124893188476562, + -0.012547910213470459, + 0.24442371726036072, + -0.08433473110198975, + -0.6969079375267029, + -0.040883004665374756, + 0.10598364472389221, + -0.06330525875091553, + -0.3356788754463196, + -0.6554464101791382, + 0.03466692566871643, + -0.1401124745607376, + -0.247184157371521, + 0.0009292960166931152, + -0.5251277685165405, + -0.1930985450744629, + 0.26116275787353516, + -0.5024287700653076, + -0.46133947372436523, + -0.13213872909545898, + -0.3665899634361267, + -0.20676696300506592, + -0.09949648380279541, + -0.04576808214187622, + -0.2491324543952942, + -0.21066135168075562, + 0.02629154920578003, + -0.3280339241027832, + -0.09002988040447235, + -0.6198469400405884, + -0.2762305438518524, + 0.3612298369407654, + -0.1186113953590393, + 0.2770281434059143, + -0.16425228118896484, + -0.19960318505764008, + -0.050648510456085205, + -0.11310803890228271, + 0.18435794115066528, + 0.4677641987800598, + -0.430686354637146, + 0.04846234619617462, + -0.47048458456993103, + 0.05743268132209778, + 0.4468401074409485, + -1.626200556755066, + 0.15260770916938782, + 0.09975874423980713, + -0.27887892723083496, + -0.09881579875946045, + 0.01211470365524292, + -0.17148357629776, + 0.556694507598877, + 0.10012757778167725, + -0.3942142128944397, + -0.4189107418060303, + -0.1587715744972229, + 0.033679842948913574, + -0.2723888158798218, + 0.11891603469848633, + -0.008156053721904755, + 0.2969905138015747, + 0.3119741380214691, + -0.12067306041717529, + -0.3391239047050476, + -0.3393842577934265, + 0.02824091911315918, + 0.1687832474708557, + 0.5473329424858093, + -0.3695378303527832, + -0.18365085124969482, + -0.20140039920806885, + -0.1349620670080185, + -0.3947448134422302, + 2.2008705139160156, + -0.17993831634521484, + -0.7222165465354919, + 0.775679349899292, + -0.3364681005477905, + 0.13956362009048462, + -0.6464672684669495, + -0.4770246148109436, + 0.10453909635543823, + -0.8855726718902588, + 0.4984063506126404, + 0.3139228820800781, + -0.16896462440490723, + 0.1804875135421753, + 0.11612150073051453, + -0.30946269631385803, + -0.25252872705459595, + 0.057606831192970276, + -0.2716536819934845, + 0.22652995586395264, + 0.6436536312103271, + -0.09249478578567505, + -0.010317862033843994, + -0.015642285346984863, + 0.34624266624450684, + 0.032112181186676025, + -0.434232234954834, + 0.5775671601295471, + 0.5133159160614014, + -0.04697880148887634, + 0.5829545259475708, + -0.15909618139266968, + 0.6779668927192688, + -0.4726376533508301, + 0.2850825786590576, + -0.0813789963722229, + -0.03954249620437622, + -0.2032126486301422, + 0.3135930597782135, + -0.3998585045337677, + 0.24123498797416687, + -0.11604607105255127, + -0.25539207458496094, + 0.2951425313949585, + -0.01884184032678604, + -0.06905883550643921, + -0.2520391345024109, + -0.037255287170410156, + -0.3225710391998291, + -0.3593631386756897, + -0.16118209064006805, + -0.5702544450759888, + -0.421511173248291, + 0.040509700775146484, + 0.5947911143302917, + 0.23026752471923828, + -0.09075593948364258, + -0.5295754075050354, + -0.6017906665802002, + 0.31291723251342773, + 0.05085861682891846, + -0.22399061918258667, + -0.057099848985672, + -0.1321064531803131, + -0.24981743097305298, + -0.7622888684272766, + -1.0748307704925537, + -0.15619507431983948, + 0.07027092576026917, + -0.28294631838798523, + -0.09358757734298706, + 0.18382155895233154, + 0.5252959728240967, + -0.3532487750053406, + -0.22452908754348755, + 0.33081144094467163, + 0.13279989361763, + -1.3933168649673462, + -0.10629421472549438, + -0.11741647124290466, + 0.048962026834487915, + -0.44692763686180115, + 0.30808407068252563, + 0.46387922763824463, + -0.1464659571647644, + -0.04715058207511902, + -0.19300150871276855, + -0.27007558941841125, + 0.24194538593292236, + -0.32301679253578186, + 0.4385535418987274, + 0.7776331901550293, + 0.08964893221855164, + -0.6485952138900757, + 0.03301289677619934, + -0.10015475749969482, + 0.3220054507255554, + 0.6055036783218384 + ], + "frame": 11 + }, + { + "score": [ + -0.26233941316604614, + -0.2855411171913147, + -0.06477058678865433, + 0.011595427989959717, + -0.08052229136228561, + 0.08451339602470398, + 0.20446902513504028, + -0.38606661558151245, + 0.26146113872528076, + 0.4317525625228882, + -0.17242085933685303, + 0.10114896297454834, + -0.28003543615341187, + -0.8685341477394104, + -0.27229034900665283, + 0.03879798948764801, + -0.4295550584793091, + -0.1503891944885254, + -0.12713146209716797, + 0.09454429149627686, + 0.15304270386695862, + -0.31344664096832275, + 0.28082501888275146, + -0.25875014066696167, + 0.38292980194091797, + 0.02935299277305603, + 0.5068507194519043, + 0.018968164920806885, + -0.43394726514816284, + 0.08088928461074829, + -0.3059391379356384, + -0.7714051008224487, + 0.08557844161987305, + 0.2170005440711975, + -0.46046891808509827, + 0.08294075727462769, + 0.1366966962814331, + 0.3360261917114258, + 0.3425277769565582, + -0.10784918069839478, + 0.6132035255432129, + 0.017779231071472168, + 0.7307361960411072, + -0.7343239784240723, + -0.12360605597496033, + -0.022209614515304565, + 0.5201941132545471, + 0.06924110651016235, + 0.6122190356254578, + 0.1280897855758667, + 0.11516380310058594, + 0.5685020685195923, + 0.1431652456521988, + -0.6632663607597351, + 0.17049938440322876, + 0.6772834062576294, + -0.16715824604034424, + 0.4836732745170593, + 0.1196056604385376, + -1.5538694858551025, + -0.3631867468357086, + -0.20405834913253784, + -1.0429208278656006, + 0.2656211256980896, + 0.019563496112823486, + 0.25026923418045044, + 0.12914931774139404, + -0.15256360173225403, + -0.4587060511112213, + -0.24287322163581848, + 0.0440116822719574, + 0.23106658458709717, + -0.14182090759277344, + 0.06507071852684021, + -0.45299577713012695, + -0.37844884395599365, + -0.3937300145626068, + -0.5721827745437622, + 1.5322935581207275, + -0.26876020431518555, + 0.682568371295929, + -0.043028175830841064, + -0.8854688405990601, + -0.22785276174545288, + -0.6104317903518677, + -0.14055967330932617, + 0.4970070719718933, + 0.4176272749900818, + 0.3480638265609741, + -0.044160038232803345, + -0.27748730778694153, + 0.059433698654174805, + -0.07271444797515869, + -0.893281877040863, + 0.16752344369888306, + 0.38747429847717285, + 0.14498132467269897, + 0.24061298370361328, + -0.13476380705833435, + 0.3729148507118225, + -0.20843499898910522, + 0.5679145455360413, + 0.2876756191253662, + 0.5305847525596619, + 0.1050294041633606, + 0.5114846229553223, + -0.35471510887145996, + 0.05998885631561279, + 0.1491389274597168, + 0.2039574384689331, + -0.5597832798957825, + 0.33002734184265137, + -0.38840362429618835, + 0.10979121923446655, + 0.5951193571090698, + 0.8421424627304077, + -0.528445839881897, + -0.469112366437912, + 0.6184127330780029, + -0.21756696701049805, + -0.17663663625717163, + -1.4262208938598633, + -0.09150035679340363, + 0.20311790704727173, + -0.27582231163978577, + -0.880016028881073, + 0.22154302895069122, + -0.3043845295906067, + 0.021614640951156616, + -0.5220688581466675, + 0.018061518669128418, + -0.209322988986969, + -0.5218660831451416, + 0.04472476243972778, + 0.4259275197982788, + -0.4360443353652954, + 0.10462296009063721, + 0.3868294656276703, + 0.4340127408504486, + -0.4077199101448059, + -0.45932459831237793, + -0.2511283755302429, + 0.3552941679954529, + -0.08711311221122742, + 0.40420734882354736, + 0.3811209499835968, + 0.20688600838184357, + 0.38183706998825073, + -0.18402643501758575, + 0.2177480161190033, + 0.003857433795928955, + 0.6407997608184814, + -0.2807634174823761, + -0.5149098038673401, + -0.2873566150665283, + 0.04756467044353485, + -0.17613589763641357, + -0.010786235332489014, + -0.5890557765960693, + -0.4282319247722626, + -0.2910403609275818, + -0.2625805139541626, + -0.8326372504234314, + 0.09146887063980103, + -0.6285032033920288, + -0.0495782196521759, + 0.22672730684280396, + 0.3524043560028076, + 0.21588590741157532, + 0.8910300135612488, + 0.2874385714530945, + 0.39536404609680176, + -0.19801181554794312, + 0.4909714460372925, + 0.1599154770374298, + -0.10026344656944275, + 0.36003226041793823, + -0.23194654285907745, + -0.2261701226234436, + -0.12601810693740845, + 0.1001172661781311, + -0.1630188226699829, + 0.09715104103088379, + -0.27618953585624695, + 0.7453544735908508, + 0.23696082830429077, + 0.05112999677658081, + 0.44988149404525757, + 1.5588228702545166, + -0.23320269584655762, + 0.3085492253303528, + -0.17841950058937073, + -0.08360545337200165, + 0.8011499047279358, + -0.9796466827392578, + -0.18759998679161072, + -0.056146591901779175, + 0.26367634534835815, + -0.593980610370636, + -0.10656049847602844, + 0.6681111454963684, + 0.10436421632766724, + 0.0010344535112380981, + -0.27258971333503723, + 0.28776663541793823, + -1.5284383296966553, + 0.3144909739494324, + -0.6923996210098267, + -0.7406150102615356, + -0.26695144176483154, + -0.5886334180831909, + 0.025103271007537842, + -0.05242753028869629, + -0.7354233860969543, + -0.003637969493865967, + -0.8461297750473022, + -0.6896616220474243, + 0.20880752801895142, + 0.17386460304260254, + -0.9353870749473572, + -0.22703826427459717, + -0.36094921827316284, + 0.40765661001205444, + 0.16327503323554993, + 0.10199427604675293, + 0.4992563724517822, + 0.5700503587722778, + 0.1555081605911255, + 0.508087158203125, + -0.3725350797176361, + 0.1967799961566925, + 0.8001434803009033, + 0.19965451955795288, + 0.2106395959854126, + 0.36237847805023193, + 0.4197767674922943, + 0.2758261561393738, + -0.5897136330604553, + 0.11745764315128326, + 0.12417009472846985, + -0.27979370951652527, + -0.4479103088378906, + 4.446841239929199, + -0.39812174439430237, + -1.3233201503753662, + -0.4128493070602417, + -0.22262674570083618, + -0.1289481371641159, + -0.08740067481994629, + -0.9133321046829224, + -1.0055714845657349, + -0.853225588798523, + -0.2622082829475403, + -0.19130708277225494, + 0.3555483818054199, + -0.6870465874671936, + 0.24146562814712524, + 0.01139688491821289, + 0.9611023664474487, + 0.6461750268936157, + 0.1206415593624115, + -0.6737385392189026, + -0.5272207856178284, + -0.44568365812301636, + 0.20385116338729858, + 0.16425633430480957, + 0.05124920606613159, + -0.27924537658691406, + -0.008102551102638245, + 0.056740760803222656, + -0.1813507080078125, + 0.2557212710380554, + -0.529349148273468, + -0.012019038200378418, + -0.503870964050293, + -0.11952018737792969, + -0.7627495527267456, + 0.2358158826828003, + -1.0928246974945068, + -0.17806625366210938, + 0.19224339723587036, + -0.054597318172454834, + -0.07779651880264282, + -0.2550961375236511, + 0.16255608201026917, + 0.08237221837043762, + -0.0004811882972717285, + -0.09547364711761475, + 0.25647038221359253, + -0.08789119124412537, + 0.28278112411499023, + -0.11178100109100342, + 0.36955899000167847, + -0.3211814761161804, + 0.10205197334289551, + 0.5396357774734497, + -0.09770011901855469, + -0.07653433084487915, + -0.43581587076187134, + -0.08350861072540283, + 1.2610068321228027, + -0.23512712121009827, + -0.10507303476333618, + -0.17806348204612732, + -0.0677827000617981, + -0.00827091932296753, + -0.5116406679153442, + -0.45780473947525024, + 0.16614706814289093, + 0.44723790884017944, + 0.0611264705657959, + 0.4576922059059143, + -0.4932106137275696, + 0.5728676319122314, + -0.5363990664482117, + 0.17335450649261475, + -0.1820383071899414, + -0.08131760358810425, + 0.309238076210022, + -0.32887670397758484, + -0.23226621747016907, + 0.2891758382320404, + 0.730961799621582, + 0.08485522866249084, + 0.5347204208374023, + 0.06397998332977295, + -0.01722162961959839, + 0.05034029483795166, + -1.0607471466064453, + 0.04265940189361572, + 0.6360049247741699, + -0.10667704045772552, + -0.24376541376113892, + -0.254780650138855, + -0.1184149831533432, + 0.13877224922180176, + -0.2884707748889923, + -0.16393139958381653, + -0.1997261941432953, + -0.3882024884223938, + -0.06899574398994446, + -0.9275407195091248, + 0.16506356000900269, + 0.3986232280731201, + -0.04624009132385254, + 0.34348759055137634, + -0.05325031280517578, + -0.29412299394607544, + 0.10003092885017395, + -0.6439377665519714, + 0.2361278235912323, + -0.11556842923164368, + 0.099517822265625, + 0.19174903631210327, + -0.13173136115074158, + 0.26128724217414856, + 0.2894424796104431, + -0.8910278081893921, + -0.3786652088165283, + 0.35596320033073425, + -0.6976154446601868, + -0.2848948538303375, + -0.27105146646499634, + -1.0799903869628906, + -0.2917216122150421, + 0.5237864851951599, + -0.2908916473388672, + 0.30265146493911743, + -0.429013729095459, + -0.9189217686653137, + 0.007697165012359619, + 0.025517940521240234, + 0.19051599502563477, + 0.33837664127349854, + -0.09417080879211426, + 0.06608715653419495, + -0.2459384799003601, + 0.48120588064193726, + -0.053434133529663086, + -0.1385401040315628, + 0.11695653200149536, + 0.25262367725372314, + -0.23331379890441895, + 0.16030964255332947, + 0.08928883075714111, + -0.05754196643829346, + -0.4533469080924988, + -0.17621874809265137, + -0.06364937126636505, + -0.6875660419464111, + -0.031859129667282104, + 0.045671939849853516, + -0.14175420999526978, + 0.3934686779975891, + 0.7120398283004761, + -0.44707030057907104, + 0.4141368865966797, + 0.29369139671325684, + 0.5233610272407532, + 0.13202500343322754, + 0.031431645154953, + 0.4256831407546997, + -0.25975364446640015, + -0.03934359550476074, + -0.5251006484031677, + -0.14255303144454956, + -0.7659856081008911, + -0.08083868026733398, + 0.1916218101978302, + 0.4466494619846344, + -0.5520835518836975, + -0.4267232418060303, + -0.23891666531562805, + 0.21132659912109375, + -0.01477232575416565, + -0.2732035517692566, + 0.4851011633872986, + -0.02193748950958252, + -0.2611675262451172, + -0.002837836742401123, + 0.30305981636047363, + 1.3596395254135132, + -0.2333243191242218, + -0.2638307809829712, + 0.41905564069747925, + 0.5071651339530945, + 0.37687528133392334, + -0.6722736358642578, + -0.20185792446136475, + -0.5637917518615723, + -0.2685934901237488, + -0.08148074150085449, + -1.334825038909912, + 0.4210531413555145, + -0.5256918668746948, + -0.42355912923812866, + 0.14108774065971375, + 0.6997660994529724, + 0.41976630687713623, + 0.2581268846988678, + 0.37340813875198364, + 0.21714085340499878, + -0.5072199106216431, + 0.1356050968170166, + 0.150068461894989, + -0.374716579914093, + -0.35374119877815247, + 0.7059671878814697, + 0.16323411464691162, + 3.5026421546936035, + -0.17187198996543884, + 0.06671947240829468, + -0.255869597196579, + 0.18715709447860718, + 0.1734309196472168, + -0.6283472180366516, + -0.39130473136901855, + -0.13719570636749268, + -0.3089450001716614, + 0.2829604744911194, + 0.09630876779556274, + -0.8593139052391052, + -0.6707525253295898, + -0.11303943395614624, + -0.1923486292362213, + 0.24719616770744324, + -0.4362229108810425, + -0.32724207639694214, + -0.3892003297805786, + 0.02945810556411743, + -0.40766552090644836, + -0.15099826455116272, + 0.35243815183639526, + -0.3531707525253296, + -0.6992461085319519, + -0.5343995094299316, + -0.6013803482055664, + 0.4734652638435364, + 0.07042554020881653, + 1.0595788955688477, + 0.4327858090400696, + -1.1444453001022339, + -0.0957331657409668, + -0.1285165548324585, + 0.2087598443031311, + 0.12445986270904541, + 1.407270908355713, + 0.3218693733215332, + -0.27305471897125244, + 0.362822949886322, + 0.11738377809524536, + -0.5214261412620544, + 0.022025883197784424, + 0.2234838902950287, + -0.07484924793243408, + -0.05912446975708008, + -0.6282737851142883, + -0.8433751463890076, + -0.0035605281591415405, + -0.16488432884216309, + -0.849511981010437, + 0.716644823551178, + -0.33625614643096924, + 0.4622291028499603, + -0.945033609867096, + 0.6539981961250305, + -0.5531392097473145, + 0.2750018835067749, + -0.2969965636730194, + -0.6659107804298401, + -0.4666874408721924, + -0.07866954803466797, + 0.47421714663505554, + -0.295436292886734, + -0.4330051839351654, + -0.0009618401527404785, + 0.6033443212509155, + -0.38675642013549805, + -0.009805679321289062, + -0.3238152861595154, + -0.4328465461730957, + 0.0872630774974823, + -0.2434794008731842, + -0.12725934386253357, + -0.5307177305221558, + 1.022094488143921, + 0.030468016862869263, + -0.7842803001403809, + -0.14281010627746582, + 0.2782710790634155, + 0.12665563821792603, + -0.042724668979644775, + 0.048982977867126465, + 0.3701709508895874, + 0.2369464486837387, + -0.16353735327720642, + -0.8174310326576233, + -1.4336706399917603, + -0.2571500241756439, + 0.36765190958976746, + -0.3316698372364044, + -0.12640663981437683, + -0.1417222023010254, + 0.15305423736572266, + 0.5319815874099731, + -0.35777974128723145, + -0.12653136253356934, + 0.08651793003082275, + -0.1668405532836914, + -0.5359671711921692, + 0.07691854238510132, + 0.0053029656410217285, + -0.29469209909439087, + 0.009241998195648193, + 0.19172245264053345, + -0.09691751003265381, + 0.12147051095962524, + -0.039050936698913574, + -0.2996169924736023, + -0.116230309009552, + -0.15782368183135986, + 0.5513763427734375, + 0.36246544122695923, + -0.006529271602630615, + 0.30139195919036865, + -0.29670417308807373, + -0.2976785898208618, + -0.32444489002227783, + 0.34598690271377563, + -0.7123397588729858, + 0.43872594833374023, + 0.03963109850883484, + 0.31046926975250244, + 0.12196505069732666, + -0.33512893319129944, + 0.09289607405662537, + 0.1868581771850586, + 0.03938956558704376, + -0.40351763367652893, + 0.08706776797771454, + -0.2761652171611786, + 0.03764137625694275, + 0.2770655155181885, + -0.30504339933395386, + -0.5113611221313477, + 0.32164108753204346, + 0.4791274070739746, + 0.3147982358932495, + -0.5199076533317566, + -0.2948899567127228, + -0.1639123558998108, + -0.06523321568965912, + 0.43162786960601807, + -0.40982308983802795, + 0.2879153788089752, + 0.29812347888946533, + 0.2701205611228943, + 0.2659931182861328, + -0.05575573444366455, + -0.2339600920677185, + 0.30445247888565063, + -0.40146905183792114, + -0.2462318390607834, + -0.18057778477668762, + -0.14327573776245117, + 0.27460426092147827, + -0.11469507217407227, + -0.004149317741394043, + -0.09371984004974365, + 0.21072831749916077, + 0.21263229846954346, + 0.2634563148021698, + 0.4831527769565582, + 0.3091048300266266, + -0.09065353870391846, + -0.02685225009918213, + 0.05750647187232971, + 0.010227203369140625, + 0.2973973751068115, + -0.19178539514541626, + 0.7224268913269043, + -0.009993486106395721, + 0.3814008831977844, + 0.15019148588180542, + -1.0832548141479492, + -0.23806232213974, + -0.1889823079109192, + -0.6680395603179932, + -0.36800336837768555, + -0.38128066062927246, + -0.0565265417098999, + 0.05947950482368469, + 0.4056544899940491, + 0.05149397253990173, + -0.025540053844451904, + 0.13629740476608276, + 0.21639829874038696, + -0.1505226492881775, + 0.16327112913131714, + -0.11797910928726196, + 0.5401198267936707, + 0.02999669313430786, + -0.12976759672164917, + -0.09029388427734375, + 0.06858766078948975, + 0.09695601463317871, + 0.06565439701080322, + -0.13305234909057617, + 0.03925684094429016, + -1.0001872777938843, + 0.14476794004440308, + -0.05657172203063965, + 0.4541862905025482, + 0.39449310302734375, + 0.35356175899505615, + 0.22365236282348633, + -0.05958697199821472, + 0.20568062365055084, + 0.0931362509727478, + -0.060239940881729126, + 0.2519111931324005, + 0.24059957265853882, + 0.13534203171730042, + -0.11815915256738663, + -0.27066969871520996, + -0.6835147738456726, + -0.6707757711410522, + -0.3959246873855591, + 0.46389251947402954, + -0.39424195885658264, + -0.1687217354774475, + -0.7780053019523621, + -0.00876288115978241, + -0.05033355951309204, + -0.17232906818389893, + 0.4356154203414917, + 0.08162367343902588, + -0.34505724906921387, + -0.47178754210472107, + -0.8188406825065613, + -0.6891050338745117, + -0.18368959426879883, + -0.5449213981628418, + 0.08818322420120239, + 0.76743084192276, + -0.4689319133758545, + 0.34997183084487915, + -0.7225863337516785, + 0.08599275350570679, + -0.480524480342865, + -0.17120087146759033, + -0.392123281955719, + -0.2764310836791992, + -0.2679981589317322, + 0.13675197958946228, + -0.21454060077667236, + -0.6107955574989319, + 0.078838050365448, + -0.11928525567054749, + -0.5606275796890259, + -0.2857966423034668, + 0.05904966592788696, + -0.07882171869277954, + -0.06543852388858795, + -0.3149542212486267, + -0.5475637912750244, + 0.48408395051956177, + 0.15923714637756348, + 0.5789402723312378, + -0.13431894779205322, + 0.6092159152030945, + 0.1553017497062683, + -0.119116872549057, + 0.4388751983642578, + -0.2252470850944519, + 0.3310636878013611, + 0.11194372177124023, + -0.09232556819915771, + 0.3298845887184143, + -0.26006263494491577, + -0.12718483805656433, + -0.066531240940094, + 0.3078949749469757, + -0.6181671023368835, + -0.1285361647605896, + -0.6237896680831909, + -0.4200732707977295, + 0.16529995203018188, + -0.02234351634979248, + -0.28408801555633545, + -0.07624134421348572, + 0.18685686588287354, + -0.11166617274284363, + 0.35787391662597656, + -0.14002478122711182, + 0.8131173253059387, + -0.21169155836105347, + -0.12682461738586426, + -0.2071835696697235, + -0.10440820455551147, + -0.7028913497924805, + -0.10376642644405365, + -0.09354285895824432, + -0.48595887422561646, + 0.44739991426467896, + 0.42445021867752075, + -0.28874582052230835, + 0.3881041407585144, + -1.5404186248779297, + -0.3817025423049927, + 0.09392732381820679, + 0.8080320358276367, + 0.04761695861816406, + 0.2541159391403198, + 0.0016406774520874023, + 0.04901212453842163, + -0.5627837181091309, + 0.713341474533081, + 0.09109389781951904, + 0.07700328528881073, + -0.6769921183586121, + -0.31669437885284424, + -0.16103531420230865, + -0.48517197370529175, + -0.6802726984024048, + -0.17003536224365234, + -0.12634596228599548, + 0.12400951981544495, + -0.4245896339416504, + -0.5892527103424072, + -0.5634528398513794, + 0.3949601650238037, + -0.16900187730789185, + 0.24510902166366577, + -0.5547707676887512, + -0.21151673793792725, + 0.5702129006385803, + -0.1308821439743042, + -0.289159893989563, + -0.8454710245132446, + 0.6160339713096619, + -0.3963244557380676, + 1.0230497121810913, + -0.12238723039627075, + -0.14058852195739746, + -0.10354480147361755, + 0.3316161036491394, + -0.18646538257598877, + -0.08190912008285522, + 1.3899192810058594, + 0.12372627854347229, + -0.091342031955719, + -0.5583999156951904, + -0.1526203155517578, + -0.5307937264442444, + -0.5565009117126465, + -0.29864412546157837, + 0.11823058128356934, + 0.1780042052268982, + -0.1856856346130371, + 0.4312897324562073, + 0.6666153073310852, + 0.052130624651908875, + 0.5368534326553345, + 0.16619804501533508, + -0.021281778812408447, + -0.042758792638778687, + -0.43376368284225464, + 0.3248239755630493, + -0.11265939474105835, + 0.42636948823928833, + 0.5390099883079529, + 0.6902192234992981, + -1.8735127449035645, + 0.7559607625007629, + -0.9060854911804199, + 0.027313590049743652, + -0.0604378879070282, + 0.28672605752944946, + 0.2962426543235779, + -0.549593448638916, + -0.3116392493247986, + -0.010809719562530518, + 0.21023839712142944, + -0.19635963439941406, + 0.21801310777664185, + 0.7656345367431641, + 1.2313138246536255, + -0.12036705017089844, + -0.24238553643226624, + 0.00445219874382019, + 0.9559121131896973, + -0.11882549524307251, + 0.038457244634628296, + -0.022896170616149902, + -0.08511114120483398, + 0.3181639313697815, + -0.12179994583129883, + 0.04574054479598999, + 0.8327448964118958, + -0.338578999042511, + 0.30554696917533875, + -0.29976892471313477, + -0.16855645179748535, + -0.4480396509170532, + 0.6748138666152954, + -0.0027827322483062744, + -0.5335683822631836, + -0.2136973738670349, + -0.2510974705219269, + 0.34605318307876587, + -0.025516510009765625, + -0.06668508052825928, + -0.298659086227417, + 0.4852546155452728, + -0.7004833817481995, + 0.2725985050201416, + -0.13538295030593872, + -0.10577899217605591, + 0.04519408941268921, + 0.21089860796928406, + -0.5702282786369324, + 0.1978476643562317, + -0.14651618897914886, + 0.05747857689857483, + 0.06132709980010986, + -0.2631200850009918, + -0.3604161739349365, + 0.37708836793899536, + 0.18062514066696167, + 0.46632158756256104, + -0.38997986912727356, + -1.2188700437545776, + 0.42780470848083496, + 0.1609417200088501, + -0.21679574251174927, + -0.5624881982803345, + 0.1972099244594574, + 0.4877704381942749, + -0.13707977533340454, + 0.1705763339996338, + -0.05445832014083862, + -0.032298505306243896, + -0.008314579725265503, + -0.15040841698646545, + -0.18225599825382233, + -0.3178260326385498, + 0.18426457047462463, + -0.4745705723762512, + 0.19980022311210632, + 0.17449110746383667, + 0.8983165621757507, + -0.9308613538742065, + -0.18252483010292053, + 0.01174628734588623, + 0.3208296597003937, + -0.28323662281036377, + 1.6713542938232422, + 0.3413114845752716, + 0.13084864616394043, + -0.3592950105667114, + -0.15401679277420044, + -0.741463840007782, + -0.009726375341415405, + 0.6489403247833252, + 0.4005950689315796, + 0.06762677431106567, + 0.0174713134765625, + 0.43878716230392456, + -0.9737200736999512, + 0.45973458886146545, + -0.1757718324661255, + -0.3221069574356079, + -0.42944103479385376, + 0.0118330717086792, + 0.062417685985565186, + -0.2765025496482849, + -0.19845524430274963, + -0.6486549377441406, + 0.5000925660133362, + -0.4522647261619568, + -0.3227900564670563, + 0.05160856246948242, + -0.571439802646637, + -0.7237823009490967, + 0.08235056698322296, + 1.5339808464050293, + -0.4652934670448303, + -0.45438089966773987, + -0.028449594974517822, + 0.33263230323791504, + 0.08709818124771118, + -0.12763625383377075, + -0.09926298260688782, + -0.2928905487060547, + -0.23842337727546692, + 0.3938879370689392, + 0.009008049964904785, + 0.24320155382156372, + 0.5820708274841309, + -0.1739557683467865, + -0.4666321277618408, + 0.18422842025756836, + 0.24088133871555328, + -0.6746652722358704, + 0.3168223202228546, + 0.1285543441772461, + -0.2229585349559784, + 0.3101082444190979, + -0.22669053077697754, + 0.6529186964035034, + -0.41653746366500854, + 0.5779259204864502, + 0.14767926931381226, + -0.07803201675415039, + -0.2232985496520996, + -0.3117768466472626, + 0.5323835611343384, + 0.44964179396629333, + 0.09020748734474182, + -0.04889744520187378, + -0.7493396401405334, + 0.3644365668296814, + -0.5724268555641174, + 0.6716530323028564, + -0.10968640446662903, + 0.16391348838806152, + 0.19996225833892822, + 0.0016263127326965332, + 0.30708029866218567, + -0.5344520807266235, + -0.9539608955383301, + -0.10208168625831604, + 0.07832884788513184, + -0.39737367630004883, + -0.20548659563064575, + -0.10660900175571442, + -0.044224560260772705, + -0.2159062623977661, + 0.07258599996566772, + 0.29612115025520325, + -0.22039926052093506, + -0.1487559676170349, + -0.6757336854934692, + -0.4385688304901123, + 0.5099867582321167, + 0.01731562614440918, + 0.09421730041503906, + 0.700173556804657, + 0.10299617052078247, + -3.8564205169677734e-05, + -0.3810853362083435, + 0.5376816987991333, + 0.510175347328186, + -0.25778377056121826, + -0.39262160658836365, + 0.07729345560073853, + 0.1644883155822754, + 0.11813613772392273, + -0.030772864818572998, + 0.3276505768299103, + -0.2867739200592041, + -0.8327791690826416, + 0.010770797729492188, + 0.10910165309906006, + -0.1317141056060791, + 0.7512712478637695, + 0.09783397614955902, + 0.12964469194412231, + 0.24156638979911804, + -0.17015084624290466, + -0.15182402729988098, + 0.22130677103996277, + -0.4160105884075165, + -0.17100432515144348, + -0.3107830286026001, + 0.007917970418930054, + 0.4511081576347351, + -0.07222139835357666, + -0.26697593927383423, + -0.25786519050598145, + -0.3462260365486145, + 0.45125824213027954, + 0.2068384289741516 + ], + "frame": 22 + }, + { + "score": [ + -0.4033079147338867, + 0.01806628704071045, + -0.0649867132306099, + 0.4078201651573181, + 0.31101229786872864, + 0.368193119764328, + 0.27397942543029785, + -0.1867322325706482, + -0.18040978908538818, + -0.2264007031917572, + -0.08822327852249146, + -0.027363091707229614, + -0.6579627990722656, + -0.5026406049728394, + -0.27927905321121216, + -0.17261599004268646, + -0.09123438596725464, + -0.30253511667251587, + 0.16713500022888184, + 0.05633741617202759, + 0.2012214958667755, + -0.4252270460128784, + 0.033056169748306274, + 0.033862948417663574, + -0.08247462660074234, + -0.24405378103256226, + 0.7224527597427368, + -0.2061753273010254, + 0.24866080284118652, + -0.4088594317436218, + -0.8832998275756836, + -0.27093571424484253, + -0.33172285556793213, + 0.11585491895675659, + -0.3034493923187256, + 0.21217018365859985, + -0.2149624228477478, + 0.4999349117279053, + 0.13638854026794434, + -0.36371976137161255, + 0.08251696825027466, + -0.16016340255737305, + 0.9121831655502319, + -0.11831849813461304, + 0.006032824516296387, + -0.10263967514038086, + 1.1328814029693604, + -0.3055902123451233, + 0.5740628242492676, + -0.28198984265327454, + -0.17696571350097656, + 0.6407074928283691, + -0.7604053020477295, + -0.21971768140792847, + -0.40190771222114563, + 0.08211827278137207, + 0.15381646156311035, + 0.18295973539352417, + 0.44110384583473206, + -0.3503813147544861, + -0.3617976903915405, + 0.10252368450164795, + 0.5186857581138611, + 0.5083633065223694, + -0.2620650827884674, + 0.22805768251419067, + 0.17971503734588623, + -0.13056549429893494, + -0.0008282661437988281, + -0.04342329502105713, + 0.5273947715759277, + 0.01623857021331787, + 0.2204473912715912, + -0.5784653425216675, + 0.0014424920082092285, + -0.20052707195281982, + -0.2387838363647461, + -0.7580273151397705, + 0.7522696256637573, + 0.04426729679107666, + 0.17942768335342407, + 0.22401142120361328, + -0.014647960662841797, + -0.17516404390335083, + -0.12403762340545654, + -0.10066354274749756, + -0.3067077398300171, + 0.4574933648109436, + 0.5539590120315552, + 0.14361047744750977, + 0.6047613620758057, + -0.6030427813529968, + -0.05231809616088867, + -0.3095356225967407, + 0.12854215502738953, + 0.4705755114555359, + -0.15932321548461914, + 0.6764146089553833, + 0.04351663589477539, + 0.03643888235092163, + 0.24847644567489624, + 0.6953738927841187, + 0.09410002827644348, + 0.43481308221817017, + 0.36476290225982666, + -0.14960885047912598, + 0.32150939106941223, + -0.20509105920791626, + -0.09071797132492065, + 0.06672483682632446, + 0.2230348289012909, + 0.0032916665077209473, + -0.33924394845962524, + 0.009296327829360962, + 0.21529677510261536, + 0.15898573398590088, + -0.2333602011203766, + -0.17655518651008606, + 0.409635990858078, + 0.2141914963722229, + 0.005164653062820435, + -0.9529247283935547, + -0.07903379201889038, + -0.3886702358722687, + 0.06367897987365723, + -0.3044824004173279, + 0.010588347911834717, + -0.09328825771808624, + 0.014471471309661865, + -0.45300835371017456, + 0.30652672052383423, + -0.11045461893081665, + 0.01187126338481903, + 0.3820309042930603, + 0.5746873617172241, + -0.13313987851142883, + 0.4880370497703552, + 0.08831244707107544, + 0.038229018449783325, + 0.4045916199684143, + -0.5191148519515991, + -0.34663212299346924, + 0.20870614051818848, + 0.1984245777130127, + -0.022477924823760986, + 0.3072267174720764, + 0.044091612100601196, + 0.0809706449508667, + 0.11324337124824524, + 0.4714796543121338, + -0.41802236437797546, + 0.1163930892944336, + -0.09909209609031677, + -0.4840245544910431, + 0.24474164843559265, + -0.0853060930967331, + 0.16462436318397522, + 0.1163630485534668, + 0.4551388919353485, + -0.015782147645950317, + -0.2878147065639496, + -0.42571091651916504, + -0.5578218698501587, + -0.08053380250930786, + -1.1107232570648193, + -0.294776976108551, + -0.02739846706390381, + -0.4722031354904175, + 0.4100082218647003, + 0.5898927450180054, + 0.04037615656852722, + -0.08253389596939087, + 0.6017327308654785, + 0.4593859910964966, + 0.1946316361427307, + 0.019337177276611328, + 0.5297486186027527, + -0.23436740040779114, + -0.22203290462493896, + -0.303358793258667, + -0.10653772950172424, + -0.6129157543182373, + 0.08921349048614502, + 0.024815648794174194, + 0.18185880780220032, + -0.05856215953826904, + -0.00955289602279663, + -0.03722885251045227, + 0.3500615954399109, + 0.42916879057884216, + -0.10105063021183014, + 0.29432329535484314, + -0.27076810598373413, + 0.7155084013938904, + -1.2266895771026611, + -0.06622934341430664, + 0.37334659695625305, + 0.10210564732551575, + -0.24729710817337036, + 0.24468067288398743, + 0.49809932708740234, + 0.26733726263046265, + 0.12578360736370087, + 0.12571680545806885, + -0.013359546661376953, + -1.2241922616958618, + 0.45969158411026, + -0.03221157193183899, + 0.07577228546142578, + 0.3564688265323639, + 0.0003684014081954956, + -0.39257025718688965, + 0.17720001935958862, + -0.01607567071914673, + -0.07064145803451538, + -0.2009754329919815, + -0.21050751209259033, + -0.6776120662689209, + 0.6628110408782959, + -0.4602574110031128, + 0.6067392826080322, + 0.0043337345123291016, + 0.09630441665649414, + 0.1859326958656311, + 0.45096349716186523, + -0.6228576898574829, + 0.39166170358657837, + 0.4870051145553589, + 0.21244829893112183, + -0.37653446197509766, + -0.2571488320827484, + -0.989677906036377, + -0.20647132396697998, + 0.09826093912124634, + 0.1529940366744995, + -0.11910063028335571, + 0.1016276478767395, + 0.31939077377319336, + -0.3860146403312683, + 0.667952299118042, + 0.06604784727096558, + 0.17621874809265137, + 6.714173316955566, + -0.17918889224529266, + 0.058057427406311035, + -0.09152030944824219, + 0.09792625904083252, + 0.027843646705150604, + -0.285419762134552, + -0.5398213267326355, + 0.2562413215637207, + 0.27354228496551514, + 0.04566460847854614, + 0.45325013995170593, + -0.019330978393554688, + -0.6982457041740417, + 0.11822015047073364, + 0.20623743534088135, + 0.6280699372291565, + 0.2662131190299988, + -0.10005342960357666, + 0.22927144169807434, + -0.2946850657463074, + -0.24445116519927979, + 0.12125134468078613, + 0.19869345426559448, + 0.07175755500793457, + 0.061456888914108276, + -0.07706210017204285, + 0.010776877403259277, + -0.0643678605556488, + 0.17578540742397308, + 0.19059991836547852, + 0.05765300989151001, + -0.15884798765182495, + 0.20129072666168213, + -0.2544768452644348, + 0.12787455320358276, + 0.2760440707206726, + 0.1238965392112732, + -0.25501108169555664, + 0.6814748048782349, + -0.21600744128227234, + -0.11564964056015015, + 0.10455808788537979, + 0.3483007848262787, + -0.28505200147628784, + -0.18635016679763794, + -0.02917620539665222, + 0.31977424025535583, + 0.21728889644145966, + 0.19542759656906128, + 0.06967052817344666, + -0.5737792253494263, + -0.06028187274932861, + -0.05379796028137207, + -0.014844149351119995, + 0.17689961194992065, + -0.07678773999214172, + -0.3309643864631653, + 0.6458881497383118, + -0.08076071739196777, + 0.06547224521636963, + 0.3342709541320801, + -0.10664331912994385, + 0.032274067401885986, + 0.1725609302520752, + -0.3026338219642639, + -0.2101525366306305, + 0.32731738686561584, + 0.17602312564849854, + -0.11724519729614258, + -0.2474573850631714, + 0.6820749640464783, + 0.4140419363975525, + 0.003876209259033203, + -0.3684544563293457, + -0.12196236848831177, + 0.4596290588378906, + -0.30352386832237244, + 0.2149115800857544, + -0.5668013691902161, + 1.281461238861084, + -0.010313957929611206, + -0.23188984394073486, + -0.15087759494781494, + 0.3853214383125305, + -0.1426793932914734, + -0.4226623773574829, + -0.15314698219299316, + 0.03135082125663757, + -0.020735323429107666, + -0.29859471321105957, + -0.4943084716796875, + 0.442237913608551, + 0.5400165319442749, + -0.23032787442207336, + -0.1257544755935669, + 0.05543917417526245, + -0.4752759635448456, + -0.010809443891048431, + -0.19568762183189392, + -0.10142107307910919, + 0.47546911239624023, + -0.49292686581611633, + 0.5105938911437988, + -0.339863657951355, + -0.4186457395553589, + 0.12871059775352478, + -0.3010304570198059, + -0.271337628364563, + 0.7367582321166992, + -0.026428192853927612, + -0.25344961881637573, + -0.2728094756603241, + -0.11872178316116333, + 0.3420000970363617, + 0.18787476420402527, + -0.2204054594039917, + 0.005295455455780029, + -1.857197880744934, + -0.014669209718704224, + 0.60649573802948, + -1.8776977062225342, + -0.4577741324901581, + 0.31694477796554565, + 0.12404978275299072, + 0.44613927602767944, + -0.5534203052520752, + -0.6567402482032776, + 0.02326524257659912, + -0.2602697014808655, + 0.004078805446624756, + 0.2725314497947693, + 0.22800296545028687, + 0.33209314942359924, + -0.5870097875595093, + 0.12207293510437012, + -0.05695623159408569, + 0.0001067817211151123, + 0.17441987991333008, + 0.142690509557724, + -0.012445777654647827, + 0.20860564708709717, + 0.25853416323661804, + -0.7189594507217407, + 0.45163625478744507, + -0.21322184801101685, + -0.6596847772598267, + -0.22221815586090088, + -0.11579769849777222, + -0.332019567489624, + 0.17719656229019165, + -0.4068671762943268, + 0.0832597017288208, + -0.5049305558204651, + -0.4934423565864563, + -0.25627923011779785, + 0.3220243453979492, + -0.7196887731552124, + -0.5755068063735962, + 0.34450963139533997, + 0.07051712274551392, + -0.17850396037101746, + -0.25058797001838684, + -0.2616354823112488, + -0.10668431967496872, + 0.1417640745639801, + -0.06378112733364105, + 0.512252926826477, + 0.07461148500442505, + -0.07496339082717896, + -0.12062835693359375, + -1.1620463132858276, + -0.16713479161262512, + 0.12840157747268677, + 0.41920167207717896, + -0.4785314202308655, + 0.3338976204395294, + -0.43584030866622925, + 0.2061218023300171, + 0.20882195234298706, + 0.12496161460876465, + -0.5123180150985718, + 0.5364810228347778, + 0.1375129520893097, + 0.5198737382888794, + -0.21023589372634888, + 0.07551038265228271, + -0.021442145109176636, + 0.11335712671279907, + 0.34793615341186523, + -1.0270113945007324, + 0.30084073543548584, + -1.1479110717773438, + -0.20836958289146423, + -0.0729694664478302, + -0.19607236981391907, + -0.31957942247390747, + -0.34152495861053467, + 0.32768940925598145, + 0.0125657320022583, + 0.04051622748374939, + 0.14463376998901367, + -0.30658775568008423, + -0.10413792729377747, + -0.016469478607177734, + 0.6542468667030334, + -0.3719077706336975, + 5.834488391876221, + -0.10766476392745972, + -0.09345471858978271, + -0.22909289598464966, + 0.15424513816833496, + -0.14736270904541016, + 0.2745779752731323, + 0.04813550412654877, + 0.01649460196495056, + -0.15730397403240204, + -0.04729631543159485, + -0.2996436059474945, + -0.23530960083007812, + -0.4377819299697876, + -0.30677253007888794, + -0.5634275674819946, + 0.28938376903533936, + 0.41119468212127686, + -0.12783026695251465, + 0.041593074798583984, + -0.0554964542388916, + 0.3274960219860077, + 0.11197495460510254, + -0.0772901177406311, + -0.7194161415100098, + -0.21199458837509155, + -0.270974338054657, + 0.5067715644836426, + 0.2770964503288269, + 0.2697605788707733, + 0.8128920793533325, + 0.49226808547973633, + -0.5589714050292969, + -0.2671661376953125, + 0.08756983280181885, + -0.4592120051383972, + -0.4458884000778198, + 0.5482253432273865, + -0.3523823022842407, + -0.4183429479598999, + 0.14286649227142334, + -0.019095778465270996, + 0.10802662372589111, + 0.08588248491287231, + 0.4260198175907135, + 0.26998448371887207, + 0.04812341928482056, + -0.2808283567428589, + 0.04778945446014404, + 0.17445941269397736, + 0.8046506643295288, + -0.047202855348587036, + 0.37611907720565796, + 0.19324660301208496, + 0.06458505243062973, + -0.20859023928642273, + 0.38110536336898804, + -0.7864852547645569, + -0.6000030040740967, + 0.010615527629852295, + -0.11535152792930603, + -0.16232267022132874, + 0.28465068340301514, + 0.21708549559116364, + -0.31762272119522095, + 0.08739212155342102, + 0.16081160306930542, + -0.1321706771850586, + -0.4740273356437683, + -0.029238641262054443, + -0.4207558035850525, + -0.25185075402259827, + 0.42368918657302856, + 0.32317620515823364, + 0.0598236620426178, + 0.146034836769104, + 0.2633354365825653, + 0.04582813382148743, + -0.2775421142578125, + -0.2518478035926819, + -0.6521772742271423, + 0.013548552989959717, + 0.20505931973457336, + -0.11704067885875702, + 0.5025845766067505, + 0.7731059789657593, + -0.7347133755683899, + -0.44136422872543335, + -0.5105582475662231, + -0.24085299670696259, + -0.0704403817653656, + -0.03806476294994354, + -0.3023187518119812, + -0.1830865740776062, + 0.46468114852905273, + 0.8095459938049316, + 0.2134048044681549, + -0.2532404661178589, + 0.10642814636230469, + -0.11320558190345764, + -0.4871216416358948, + 0.23098647594451904, + -0.09555637836456299, + -0.3051687479019165, + 0.2189706265926361, + -0.05385512113571167, + -0.25465402007102966, + -0.3863455057144165, + -0.15369582176208496, + -0.3241122364997864, + -0.3369109630584717, + -0.29390233755111694, + 0.7643874287605286, + 0.04797786474227905, + 0.02107071876525879, + 0.2753012180328369, + -1.0030003786087036, + 0.2352062165737152, + -0.22105664014816284, + -0.3122505843639374, + -0.4891936480998993, + -0.4061558246612549, + -0.5834595561027527, + -0.05887538194656372, + -0.5820857882499695, + -0.3379921019077301, + 0.3186596632003784, + 0.6243351697921753, + 0.13815897703170776, + -0.2386031150817871, + -0.4901576638221741, + -0.07650622725486755, + 0.46170297265052795, + 0.18821963667869568, + -0.24887800216674805, + -0.126678466796875, + 0.19104748964309692, + 0.03462514281272888, + 0.1180991679430008, + -0.04893556237220764, + -0.23328492045402527, + -0.1490824818611145, + -0.1828204095363617, + 0.3358442783355713, + -0.33309948444366455, + 0.26092278957366943, + 0.20818090438842773, + 0.5412564277648926, + -0.8120841979980469, + -0.4357898235321045, + -0.026975005865097046, + -0.08852922916412354, + -0.36481356620788574, + -0.6792275905609131, + 0.26876354217529297, + 0.06306004524230957, + 0.1561170220375061, + -0.09916836023330688, + 0.4200645089149475, + -0.27150046825408936, + -0.04787719249725342, + -0.09426769614219666, + -0.5023939609527588, + 0.24464631080627441, + 0.2189008891582489, + 0.22945880889892578, + 0.02257668972015381, + -0.38273102045059204, + 0.27060168981552124, + 0.2491511106491089, + -0.593769371509552, + -0.32389867305755615, + 0.45362526178359985, + 0.537826657295227, + -0.39672309160232544, + 0.5606691241264343, + -0.14369487762451172, + -0.3948386311531067, + -0.3763938248157501, + -0.2951742112636566, + -0.46442484855651855, + 0.09866458177566528, + 0.33746710419654846, + -0.15482527017593384, + -0.17196905612945557, + 0.04837408661842346, + -0.23841112852096558, + -0.11434435844421387, + -0.29087209701538086, + -0.2944453954696655, + -0.013045400381088257, + 0.21286605298519135, + 0.619372546672821, + -0.2205841839313507, + -0.18736982345581055, + 0.26503777503967285, + -0.9750792384147644, + -0.17244619131088257, + -0.5193339586257935, + -0.07478183507919312, + 0.13606619834899902, + 0.28506341576576233, + -0.13641905784606934, + 0.05045807361602783, + -0.07135951519012451, + 0.3654361963272095, + -0.013191401958465576, + -0.1164524257183075, + -0.1073605865240097, + -0.2540110945701599, + -0.11862090229988098, + -0.032783716917037964, + -0.14010930061340332, + 0.19437307119369507, + -0.36469119787216187, + 0.042406558990478516, + -0.15339389443397522, + -0.3877786695957184, + 0.06372630596160889, + 0.2526145875453949, + -0.44013890624046326, + -0.2218378186225891, + -0.16843461990356445, + -0.7829485535621643, + -0.04777801036834717, + 0.18172317743301392, + 0.6392794251441956, + -0.08148396015167236, + -0.4733703136444092, + -0.18081839382648468, + 0.20526176691055298, + -0.20076769590377808, + 0.8646308779716492, + 0.5577847957611084, + -0.17533138394355774, + 0.34680211544036865, + -0.001045525074005127, + 0.5515965223312378, + -0.30060213804244995, + 0.24553000926971436, + 0.17277422547340393, + -0.02406570315361023, + 0.22212079167366028, + -0.32057368755340576, + -0.2568560242652893, + -0.26391127705574036, + -0.40435129404067993, + -0.32189083099365234, + 0.1645694375038147, + -0.3027348220348358, + -0.2654111087322235, + -0.07089704275131226, + 0.06966686248779297, + -0.006539821624755859, + -0.07222449779510498, + -0.4778951406478882, + 0.46202462911605835, + 0.017955362796783447, + -0.35899603366851807, + -0.2517423629760742, + 0.23921626806259155, + -0.1088799238204956, + -0.7115492820739746, + -0.14543724060058594, + -0.3159831166267395, + -0.2146540880203247, + -0.33834773302078247, + 0.22528076171875, + -0.06481689214706421, + 0.013427525758743286, + -0.08553174138069153, + 0.5585061311721802, + -0.12262970209121704, + -0.05288955569267273, + 0.10494959354400635, + -0.12280458211898804, + -0.3851390779018402, + -0.22952359914779663, + 0.39924371242523193, + -0.3995276689529419, + -0.2281230092048645, + -0.06816765666007996, + -0.1277662068605423, + 0.018550068140029907, + 0.26972007751464844, + 0.07789576053619385, + -0.21990522742271423, + 0.12803837656974792, + -0.18858548998832703, + 0.03190416097640991, + 0.39208245277404785, + -1.3235032558441162, + 0.16066968441009521, + 0.07743324339389801, + 0.01931387186050415, + 0.15669339895248413, + 0.2767414450645447, + 0.5923201441764832, + 0.059171825647354126, + -0.31823593378067017, + -0.30156636238098145, + 0.46733763813972473, + 0.6445134282112122, + -0.2800251245498657, + -0.3153325915336609, + 0.6390542387962341, + -0.25125592947006226, + -0.03363129496574402, + 0.2994071841239929, + 0.08633953332901001, + -0.02427549660205841, + -0.5777345895767212, + -0.24506953358650208, + -0.10346874594688416, + 0.017649531364440918, + -0.1767423152923584, + -0.5625650882720947, + -0.24270343780517578, + -0.03566788136959076, + -0.36971187591552734, + 0.6829801797866821, + -0.10808178782463074, + -0.030235350131988525, + 0.44843268394470215, + 0.3956551253795624, + -0.30436742305755615, + -0.03203612565994263, + -0.0776931643486023, + -0.33521097898483276, + 0.12214827537536621, + -0.02696135640144348, + 0.6432234644889832, + -0.5068371891975403, + 0.44444477558135986, + 0.08580982685089111, + -0.17536914348602295, + 0.4342515468597412, + -0.3855903148651123, + -0.38478797674179077, + -0.447441041469574, + -0.023810267448425293, + 0.37527838349342346, + 0.13776856660842896, + 0.12327474355697632, + -0.5166213512420654, + -0.09011590480804443, + 0.30892306566238403, + -0.1266964077949524, + 0.17587435245513916, + 0.5210551023483276, + -1.0735487937927246, + 0.5049492716789246, + 0.05111679434776306, + 0.2032201886177063, + -0.39150190353393555, + 0.22225365042686462, + 0.05900081992149353, + 0.059048861265182495, + -0.19297650456428528, + 0.5157353281974792, + 0.26564881205558777, + 0.04785868525505066, + 0.5327861309051514, + 0.3741636872291565, + -1.0609201192855835, + 0.5028948783874512, + -0.7557141184806824, + -0.38594353199005127, + 0.11372828483581543, + 0.08692038059234619, + 0.6357647180557251, + -0.2784535586833954, + -0.1289886236190796, + 0.3208523392677307, + 0.04513734579086304, + -0.20089071989059448, + -0.01345314085483551, + -0.20634636282920837, + 0.5338786840438843, + -0.22577255964279175, + 0.17579296231269836, + -0.14837923645973206, + 0.41122522950172424, + -0.15238560736179352, + 0.2508986294269562, + -0.6917159557342529, + -0.6299856901168823, + -0.3682998716831207, + -0.6003811359405518, + 0.2759989798069, + 0.9415048360824585, + 0.17409861087799072, + 0.06546169519424438, + -0.036202430725097656, + 0.04075932502746582, + -0.003928661346435547, + 0.3452664017677307, + 0.03424239158630371, + -0.10445231199264526, + -0.1582677960395813, + -0.30015888810157776, + 0.11127835512161255, + 0.21290621161460876, + -0.12792134284973145, + -0.2841152846813202, + 0.7024090886116028, + -0.5742930173873901, + -1.3926365375518799, + 0.351924866437912, + -0.04528462886810303, + 0.20962131023406982, + 0.22107528150081635, + -0.2932738959789276, + 0.20569413900375366, + -0.39585816860198975, + -0.3156411647796631, + 0.13736620545387268, + -0.21818974614143372, + -0.424970805644989, + -0.07971256971359253, + -0.31330406665802, + -0.31722742319107056, + -0.003421306610107422, + -0.6633634567260742, + 0.22733408212661743, + -0.14736759662628174, + -0.35547032952308655, + -0.10401898622512817, + -0.1441378891468048, + -0.02946782112121582, + -0.51704341173172, + -0.25391021370887756, + 0.015679925680160522, + -0.3197976350784302, + -0.011334091424942017, + -0.21155980229377747, + 0.061050474643707275, + -0.16059690713882446, + -0.21058312058448792, + 0.015679240226745605, + -0.1665850132703781, + 0.5206348299980164, + -0.11147159337997437, + -0.5591983199119568, + -0.0285373255610466, + -0.13858246803283691, + 0.1491488516330719, + 0.33023959398269653, + -1.805891752243042, + 0.3885383605957031, + 0.32692259550094604, + -0.2680644392967224, + 0.5015283226966858, + -0.09287017583847046, + -0.4232223927974701, + 0.2868432402610779, + -0.14695382118225098, + -0.2767179608345032, + -0.25598883628845215, + 0.1500956416130066, + 0.08566340804100037, + 0.07308951020240784, + -0.08921352028846741, + 0.1829964965581894, + -0.08999067544937134, + 0.0207461416721344, + 0.18462026119232178, + -0.16922488808631897, + -0.27147960662841797, + -0.33028048276901245, + -0.2420908808708191, + -0.006267815828323364, + -0.14235720038414001, + 0.3707440495491028, + -0.40265703201293945, + -0.0894024521112442, + -0.22905845940113068, + 2.5604054927825928, + -0.09793609380722046, + -0.46577614545822144, + 1.1372463703155518, + -0.028275907039642334, + -0.3050854802131653, + -0.3270966708660126, + -0.3505462408065796, + -0.3802856504917145, + -0.7577863335609436, + 0.37237292528152466, + 0.5140324234962463, + 0.3140220046043396, + 0.7448071241378784, + -0.07346853613853455, + -0.3358194828033447, + 0.15646964311599731, + 0.5643494129180908, + -0.5113109350204468, + 0.09182435274124146, + 0.05019658803939819, + -0.2709372639656067, + 0.08769404888153076, + 0.006928861141204834, + 0.4038110375404358, + 0.382205605506897, + -0.36753416061401367, + 0.9570892453193665, + 0.3689279556274414, + -0.4604296088218689, + 0.7194503545761108, + -0.09378767013549805, + 0.44808030128479004, + 0.16193225979804993, + 0.16523021459579468, + 0.23575830459594727, + -0.0853361189365387, + 0.10569220781326294, + -0.031184107065200806, + -0.3757331073284149, + 0.3200500011444092, + -0.04280608892440796, + 0.15024834871292114, + 0.19290679693222046, + -0.6322531700134277, + 0.10307329893112183, + -0.5412877798080444, + -0.15845826268196106, + -0.2908666431903839, + 0.3792681097984314, + -0.12299451231956482, + -0.4009803533554077, + -0.46972373127937317, + 0.06032365560531616, + 0.5531400442123413, + 0.08191978931427002, + 0.35730433464050293, + -0.3274950087070465, + -0.8762872815132141, + -0.0652722716331482, + 0.17472243309020996, + 0.09711390733718872, + -0.015877991914749146, + 0.23186665773391724, + -0.46318721771240234, + -0.4062531888484955, + -0.4639139175415039, + -0.11065134406089783, + 0.31430327892303467, + -0.04672521352767944, + 0.33796459436416626, + 0.2800321578979492, + 0.7317155599594116, + -0.3893280029296875, + -0.01923239231109619, + 0.6612844467163086, + -0.07509750127792358, + -0.5763260126113892, + -0.17813009023666382, + -0.1541816145181656, + -0.06448638439178467, + -0.045908212661743164, + 0.178011953830719, + 0.0879812240600586, + 0.26354238390922546, + 0.30962273478507996, + -0.11436662077903748, + -0.7056156396865845, + 0.26819825172424316, + -0.4104847311973572, + 0.3047512173652649, + 0.26736676692962646, + -0.40870094299316406, + 0.07994222640991211, + 0.1437235176563263, + -0.22293561697006226, + 0.5307409167289734, + 0.14835715293884277 + ], + "frame": 33 + }, + { + "score": [ + -0.15619045495986938, + -0.13892695307731628, + 0.020756036043167114, + -0.07227808237075806, + 0.22061103582382202, + -0.054352641105651855, + 0.5597190260887146, + -0.11174827814102173, + 0.2555648386478424, + -0.35871779918670654, + 0.21539008617401123, + -0.007146954536437988, + -0.2785043716430664, + 0.04973098635673523, + -0.2916256785392761, + -0.3668263554573059, + -0.059435486793518066, + 0.05890849232673645, + 0.36709773540496826, + -0.26524436473846436, + 0.17320165038108826, + 0.07481855154037476, + 0.481586217880249, + 0.06340855360031128, + 0.6789841055870056, + -0.18343520164489746, + -0.18011939525604248, + 0.2217504382133484, + 0.24026566743850708, + -0.1905692219734192, + -0.5417540073394775, + -0.3911566138267517, + -0.10018247365951538, + 0.27274090051651, + -0.3255434036254883, + 0.41576963663101196, + 0.09746551513671875, + -0.02023974061012268, + 0.6359100937843323, + -0.2475147843360901, + 0.5107488036155701, + 0.19285333156585693, + 0.3535483479499817, + -0.09896862506866455, + -0.03887265920639038, + -0.13625234365463257, + 0.12553682923316956, + 0.13321763277053833, + 0.20702630281448364, + -0.24016118049621582, + 0.3398667573928833, + 0.8788340091705322, + -0.07122904062271118, + 0.23079955577850342, + 0.019170492887496948, + 0.16146546602249146, + -0.42610734701156616, + 0.5367714762687683, + -0.18056920170783997, + -0.5860543251037598, + -0.5836256742477417, + -0.3578363060951233, + 0.3310927152633667, + 0.5012653470039368, + 0.46046286821365356, + 0.3200661540031433, + 0.47083401679992676, + -0.13152866065502167, + -0.14607957005500793, + -0.5472536683082581, + 0.6884142160415649, + 0.3432181477546692, + -0.07246029376983643, + -0.23671191930770874, + -0.23645299673080444, + -0.5612683892250061, + 0.0485609769821167, + -0.6061537265777588, + 1.1674721240997314, + -0.03062501549720764, + 0.6557294130325317, + 0.4574279189109802, + -0.4618206024169922, + -0.17669671773910522, + -0.4278269410133362, + 0.25637733936309814, + 0.1905219852924347, + 0.8973167538642883, + 0.17423802614212036, + 0.07142782211303711, + -0.06712505221366882, + 0.18611043691635132, + -0.18983489274978638, + -0.16640883684158325, + 0.21863555908203125, + 0.16557708382606506, + 0.1464838981628418, + 0.16223371028900146, + -0.14728805422782898, + 0.6556416749954224, + -0.28286147117614746, + 0.2967974543571472, + 0.44103431701660156, + 0.5192754864692688, + 0.46061939001083374, + 0.6220009922981262, + -0.2509579360485077, + 0.42378681898117065, + 0.24765735864639282, + 0.23667478561401367, + 0.3704057037830353, + -0.5457254648208618, + -0.46474596858024597, + 0.029299497604370117, + 0.6299943327903748, + 0.5715720653533936, + -0.28589552640914917, + -0.24044084548950195, + 0.2791908383369446, + 0.011580616235733032, + -0.03206321597099304, + -0.9372898936271667, + 0.08316998183727264, + -0.09988510608673096, + -0.1637001633644104, + 0.14652347564697266, + -0.11286887526512146, + -0.38848650455474854, + -0.20256423950195312, + -0.022204041481018066, + -0.04785197973251343, + 0.03211641311645508, + 0.054521337151527405, + 0.04414588212966919, + 0.45019054412841797, + -0.19110828638076782, + -0.05083984136581421, + -0.12009423971176147, + 0.2819543778896332, + -0.2284073531627655, + -0.7718504667282104, + -0.34237056970596313, + 0.4505680203437805, + -0.7262988686561584, + 0.5766010284423828, + 0.5299790501594543, + 0.061491191387176514, + 0.6648918390274048, + 0.12390291690826416, + 0.0971759557723999, + -0.4994344711303711, + 0.01743626594543457, + -0.24849891662597656, + -0.7957115173339844, + -0.17699167132377625, + -0.18568624556064606, + -0.3866463899612427, + 0.09655070304870605, + 0.2753053903579712, + 0.11068221181631088, + -0.13656899333000183, + -0.1672578603029251, + -0.5391247272491455, + 0.1504482626914978, + -1.1316152811050415, + -0.7643713355064392, + 0.42818617820739746, + -0.22315344214439392, + 0.08646425604820251, + 0.5202165246009827, + 0.31973975896835327, + 0.23997730016708374, + -0.2324104905128479, + 0.4323916435241699, + 0.008234590291976929, + 0.0257418155670166, + 0.36247217655181885, + -0.3793601989746094, + -0.05552870035171509, + 0.010245263576507568, + 0.0335807204246521, + -0.0669596791267395, + 0.4408642053604126, + -0.20041391253471375, + -0.14297279715538025, + 0.19706875085830688, + -0.32619208097457886, + 0.039535701274871826, + 1.117700219154358, + 0.45701104402542114, + 0.545612633228302, + 0.294181227684021, + -0.22466996312141418, + 0.35358041524887085, + -1.1467232704162598, + -0.18980371952056885, + -0.18373680114746094, + 0.21841150522232056, + -0.24594667553901672, + 0.09677872061729431, + 0.3704521059989929, + 0.3009296655654907, + -0.10549871623516083, + -0.3518056869506836, + 0.06851089000701904, + -0.8209274411201477, + 0.2823135256767273, + -0.821295976638794, + -0.25750595331192017, + -0.12452215701341629, + 0.08874630928039551, + 0.30042850971221924, + -0.5681672692298889, + -0.6336562633514404, + -0.014180660247802734, + -0.44877201318740845, + -0.2676818370819092, + -0.20627856254577637, + 0.42558252811431885, + -1.3586151599884033, + 0.016838550567626953, + 0.3533766567707062, + 0.09864643216133118, + -0.2054632008075714, + 0.2985377311706543, + 0.0826069712638855, + 0.7346499562263489, + 0.1148039698600769, + 0.2704649567604065, + -0.8132809400558472, + 0.6467186808586121, + -0.9561036825180054, + -0.19378650188446045, + -0.07069766521453857, + 0.5746656656265259, + 0.29265111684799194, + -0.07369732856750488, + -0.24214696884155273, + 0.01695367693901062, + 0.2838755249977112, + -0.3858288526535034, + -0.3037385940551758, + 6.434279441833496, + 0.1547643095254898, + -1.0705504417419434, + -0.20835721492767334, + -0.19621825218200684, + -0.00996813178062439, + -0.4658207893371582, + -0.29047971963882446, + 0.3148660659790039, + -0.6663987636566162, + -0.26864057779312134, + 0.2846006751060486, + 0.24498704075813293, + -0.06410333514213562, + 0.5026750564575195, + 0.21235209703445435, + 0.5339392423629761, + 0.2850484549999237, + 0.11740481853485107, + -0.45825862884521484, + -0.47320958971977234, + 0.020731866359710693, + 0.36824214458465576, + -0.16663092374801636, + 0.1624954342842102, + -0.06841394305229187, + 0.1305200159549713, + 0.37223291397094727, + -0.42268890142440796, + 0.5452037453651428, + -0.7096736431121826, + -0.2152286171913147, + -0.32514941692352295, + -0.1264399290084839, + 0.06584662199020386, + 0.6896576881408691, + -0.5576508641242981, + 0.028511226177215576, + 0.4383218288421631, + 0.019273877143859863, + 0.11987295746803284, + -0.08348643779754639, + -0.3577970564365387, + 0.11598588526248932, + 0.1598190814256668, + -0.08645832538604736, + -0.23581856489181519, + -0.2234971821308136, + 0.468791127204895, + -0.5457961559295654, + 0.4058747887611389, + -0.5103459358215332, + 0.30796313285827637, + 0.6216177940368652, + 0.060438841581344604, + -0.5176776051521301, + 0.25465068221092224, + -0.04983961582183838, + 0.3270142674446106, + -0.6197729706764221, + -0.08907872438430786, + -0.049774616956710815, + -0.2965736389160156, + -0.0354158878326416, + -0.05057913064956665, + -0.2482832372188568, + -0.2507919371128082, + 0.014787375926971436, + -0.2609395384788513, + -0.06408250331878662, + 0.3407672643661499, + 0.25162094831466675, + -0.4253265857696533, + 0.07496237754821777, + -0.008280038833618164, + 0.003782510757446289, + 0.21898037195205688, + 0.07055862247943878, + -0.20635826885700226, + 0.36290478706359863, + 0.11698764562606812, + 0.20889830589294434, + 0.10957813262939453, + -0.01762211322784424, + -0.44966113567352295, + -0.0006121993064880371, + -0.835663914680481, + -0.20534253120422363, + 0.027140557765960693, + 0.03136247396469116, + -0.14962506294250488, + -0.26740193367004395, + 0.24111557006835938, + 0.35639581084251404, + 0.072996586561203, + 0.34315383434295654, + -0.19673076272010803, + -0.8945037126541138, + -0.3021627366542816, + -0.7645365595817566, + -0.03417669236660004, + 0.004349231719970703, + -0.19034656882286072, + 0.20751920342445374, + -0.17879915237426758, + -0.8603139519691467, + 0.15582546591758728, + -0.20668160915374756, + 0.18330174684524536, + 0.20508912205696106, + 0.0734381377696991, + -0.20393085479736328, + -0.1675224006175995, + 0.11848731338977814, + 0.41807910799980164, + 0.061460256576538086, + -0.4553925395011902, + 0.07639667391777039, + -0.2950335144996643, + 0.025324225425720215, + 0.22533831000328064, + -0.45267581939697266, + -0.05157093703746796, + 0.1285419464111328, + 0.22003573179244995, + 0.017388999462127686, + -0.5938767194747925, + -0.5620814561843872, + -0.29837095737457275, + -0.35898417234420776, + 0.49970394372940063, + 0.10954481363296509, + 0.3846926689147949, + -0.4533179700374603, + -0.5943143963813782, + 0.12434816360473633, + 0.19111520051956177, + -0.08880612254142761, + -0.14166930317878723, + -0.0030460357666015625, + 0.1602330505847931, + 0.13847270607948303, + 0.09936711192131042, + 0.021742641925811768, + -0.7236523628234863, + -0.23801100254058838, + -0.567886233329773, + -0.5026117563247681, + -0.1455276608467102, + -0.4087051749229431, + -0.2766593098640442, + -0.2163122296333313, + 0.37916332483291626, + 0.02582252025604248, + 0.054935455322265625, + 0.29872044920921326, + 0.1967984437942505, + -0.2519335150718689, + -0.6016424298286438, + 0.3080672025680542, + -0.14763689041137695, + -0.19125884771347046, + -0.3807830512523651, + -0.22213923931121826, + -0.4694419503211975, + -0.3268650472164154, + -0.447180837392807, + 0.8972191214561462, + -0.0891803503036499, + -0.47403717041015625, + -0.19374248385429382, + 0.4388028383255005, + 0.07211625576019287, + 0.13023805618286133, + 0.7561037540435791, + 0.1388530135154724, + -0.2574664354324341, + 0.11362394690513611, + 0.2916722893714905, + 0.8792153596878052, + -0.5367287397384644, + -0.17380303144454956, + 0.26247483491897583, + 0.46831437945365906, + 0.44114530086517334, + -0.07147296518087387, + -0.3136218190193176, + -0.7018529772758484, + 0.14280763268470764, + -0.7646172642707825, + -1.166593074798584, + 0.3104543089866638, + -1.0726854801177979, + -0.4454137086868286, + -0.039527714252471924, + 0.7741336226463318, + -0.13107067346572876, + 0.44077104330062866, + 0.005295902490615845, + 0.2359049916267395, + -0.8976091146469116, + -0.3410855233669281, + 0.520582914352417, + 0.38279983401298523, + 0.08278578519821167, + 0.6305063366889954, + -0.12609481811523438, + 5.558010578155518, + -0.14398226141929626, + -0.07730668783187866, + -0.06027038395404816, + 0.12202167510986328, + -0.05849018692970276, + -0.021658599376678467, + -0.10940627753734589, + -0.32302069664001465, + 0.20167121291160583, + 0.2582683861255646, + 0.4971252679824829, + -0.23034483194351196, + 0.07068952172994614, + -0.1375444531440735, + -0.31510165333747864, + -0.48481231927871704, + -0.02198636531829834, + -0.05697757005691528, + -0.18105387687683105, + -0.21750539541244507, + -0.0030607283115386963, + -0.1274801790714264, + -0.08181768655776978, + -0.34473419189453125, + 0.07445389032363892, + -0.2932334542274475, + -0.44055992364883423, + 0.022038638591766357, + -0.15514060854911804, + 0.34961265325546265, + 0.6331888437271118, + -1.293857216835022, + 0.06943947076797485, + 0.5637635588645935, + -0.11565271019935608, + -0.028522849082946777, + 0.7935142517089844, + -0.5855275392532349, + -0.6752296090126038, + 0.9024670124053955, + 0.0265752375125885, + 0.07879012823104858, + 0.44504910707473755, + -0.024065017700195312, + -0.14699918031692505, + 0.37055444717407227, + -0.49475157260894775, + -0.4334697723388672, + 0.06441491842269897, + 0.008233308792114258, + -0.2516454756259918, + 0.5709614157676697, + 0.2768345773220062, + 0.28073176741600037, + -0.20819571614265442, + 0.3648783564567566, + -0.03614538908004761, + -0.045728862285614014, + -0.9121381640434265, + -0.4664325714111328, + -0.4217718839645386, + -0.09216469526290894, + 0.1566258668899536, + 0.6167865991592407, + -0.3651929497718811, + 0.3228467106819153, + 0.626462459564209, + -0.45060884952545166, + 0.3586685061454773, + -0.9746217131614685, + -0.3504822254180908, + 0.2806602716445923, + 0.09425190091133118, + -0.06133320927619934, + -0.3342365026473999, + 1.1388920545578003, + 0.3246382772922516, + -0.31931817531585693, + 0.32880115509033203, + -0.04486900568008423, + 0.13380229473114014, + -0.0971229076385498, + 0.4900885820388794, + -0.14594361186027527, + -0.5095350742340088, + 0.027031540870666504, + -0.6454027891159058, + -0.75472491979599, + -0.19463099539279938, + 0.5927841067314148, + -0.34726330637931824, + -0.5759560465812683, + -0.4419468641281128, + 0.2908642292022705, + -0.13299068808555603, + 0.215839684009552, + -0.35597890615463257, + 0.07757705450057983, + 0.38439950346946716, + 0.18802157044410706, + -0.34868893027305603, + -0.040071308612823486, + -0.11627042293548584, + -0.10594671964645386, + 0.11632367968559265, + -0.24434882402420044, + 0.14310961961746216, + 0.6605667471885681, + -0.18994194269180298, + -0.07636696100234985, + -0.3783978223800659, + 0.10046740621328354, + -0.23337548971176147, + 0.15601211786270142, + 0.2686224579811096, + -0.3336763381958008, + -0.5378506779670715, + -0.3815096914768219, + -0.1001213788986206, + -0.17090734839439392, + 0.5221067667007446, + -0.039937347173690796, + -0.6493644714355469, + 0.47920793294906616, + -0.29115134477615356, + 0.39305660128593445, + 0.16891717910766602, + 0.07753077149391174, + -0.31550508737564087, + -0.5345548987388611, + -0.09370815753936768, + -0.9242979288101196, + 0.34397009015083313, + -0.5936892032623291, + -0.6574722528457642, + 0.2898702621459961, + 0.4976472854614258, + 0.7371267676353455, + -0.4117177426815033, + -0.3254002630710602, + -0.039295196533203125, + -0.12433625757694244, + 0.055624574422836304, + 0.042653828859329224, + 0.5975304841995239, + 0.31232333183288574, + -0.039269864559173584, + -0.15340620279312134, + 0.23212671279907227, + 0.12656939029693604, + 0.7474281191825867, + -0.1274421215057373, + -0.10560393333435059, + -0.35560235381126404, + -0.12576818466186523, + 0.4660261869430542, + -0.18415993452072144, + -0.6253849267959595, + 0.3356206715106964, + -0.16359779238700867, + -0.2559356689453125, + 0.11705130338668823, + -0.25563788414001465, + 0.4366741478443146, + 0.07521861791610718, + -0.05295151472091675, + 0.21240000426769257, + -0.24070525169372559, + 0.22269415855407715, + 0.05978337675333023, + 0.020032808184623718, + -0.06761239469051361, + -0.0679059624671936, + -0.6480311155319214, + -0.49935248494148254, + 0.34578394889831543, + -0.10495853424072266, + -0.02315080165863037, + -0.10467320680618286, + 0.11930298805236816, + 0.4793005585670471, + 0.007644623517990112, + -0.3109669089317322, + -0.17928743362426758, + 0.11517563462257385, + -0.12481319904327393, + 0.09655827283859253, + 0.1446613371372223, + 0.8163812160491943, + 0.036105796694755554, + 0.44599854946136475, + -0.08712932467460632, + 0.21426433324813843, + 0.014949142932891846, + 0.319421648979187, + -0.9933310747146606, + -0.11007028818130493, + 0.2812352180480957, + -0.254239946603775, + -0.4825608730316162, + 0.39875155687332153, + -0.05563151836395264, + 0.3583585023880005, + 0.35328060388565063, + 0.05703681707382202, + 0.07381772994995117, + 0.46274083852767944, + 0.3513312041759491, + 0.26064157485961914, + 0.18055826425552368, + 0.6082981824874878, + 0.03238499164581299, + 0.27373605966567993, + -0.37184929847717285, + -0.09556901454925537, + -0.9330095648765564, + -0.4958740770816803, + 0.1947106420993805, + 0.18418392539024353, + -0.26354557275772095, + 0.6958273649215698, + -0.6021386981010437, + -0.046299368143081665, + -0.10769665241241455, + 0.22014904022216797, + 0.4123062789440155, + -0.3448300361633301, + -0.4465150237083435, + 0.04233956336975098, + -0.41700857877731323, + -0.7098779082298279, + 0.7131975889205933, + -0.2468700408935547, + -0.6129324436187744, + 0.17981860041618347, + 0.1841532588005066, + 0.7284193634986877, + -0.6805866956710815, + -0.21789461374282837, + -0.4107617735862732, + -0.40213119983673096, + -0.1535252332687378, + -0.11252439022064209, + -0.5654680132865906, + -0.07605850696563721, + -0.08194713294506073, + -0.7372649312019348, + 0.07426789402961731, + -0.2787601053714752, + -0.6287841796875, + -0.35813868045806885, + -0.24754363298416138, + 0.29546600580215454, + -0.22421488165855408, + -0.6919770836830139, + -0.45667850971221924, + 0.1820685863494873, + 0.6236398220062256, + -0.08473193645477295, + 0.2780630886554718, + 0.07229620218276978, + 0.08922529220581055, + -0.2791293263435364, + -0.07348698377609253, + -0.163246750831604, + 0.42605599761009216, + -0.3825676739215851, + -0.4390560984611511, + -0.346876859664917, + -0.24133490025997162, + 0.4649656414985657, + 0.07788008451461792, + 0.5963274240493774, + -0.23234546184539795, + -0.5660902261734009, + -0.4581008851528168, + -0.17356008291244507, + -0.302388459444046, + -0.19972336292266846, + -0.34235042333602905, + -0.3378756046295166, + 0.316222220659256, + 0.13982468843460083, + -0.3922731280326843, + -0.5133304595947266, + 0.35164183378219604, + 0.4134066104888916, + -0.021577119827270508, + -0.1836724579334259, + 0.108356773853302, + -1.185492992401123, + -0.03053233027458191, + -0.1598382443189621, + -0.324520468711853, + 0.18839657306671143, + 0.4066735506057739, + 0.039259493350982666, + 0.23897552490234375, + -0.6071136593818665, + -0.26073479652404785, + 0.2570101022720337, + 0.4748491048812866, + -0.1829746961593628, + 0.09348320960998535, + 0.03388547897338867, + 0.03114140033721924, + -0.014254510402679443, + 0.4358704388141632, + -0.14977312088012695, + -0.043829694390296936, + -0.30050569772720337, + -0.5762279033660889, + -0.6857428550720215, + -0.45142877101898193, + -0.4898616075515747, + -0.28278881311416626, + -0.13851654529571533, + 0.09231209754943848, + -0.3236117362976074, + 0.11490631103515625, + -0.22002388536930084, + 0.525471031665802, + 0.12594956159591675, + 0.5291509628295898, + -0.16877633333206177, + -0.03793299198150635, + -0.012754559516906738, + 0.11499536037445068, + 0.2042464017868042, + -0.07334399223327637, + 0.11984485387802124, + 0.1333293318748474, + 0.25732898712158203, + 0.0060163140296936035, + 0.09663927555084229, + 0.20040717720985413, + 0.3463156223297119, + -0.3246758282184601, + -0.07951220870018005, + 0.5009049773216248, + -0.052858054637908936, + 0.29942864179611206, + -0.07251161336898804, + 0.18588480353355408, + -0.5521810054779053, + -0.21293506026268005, + -0.2433830201625824, + 0.01969623565673828, + -0.058993011713027954, + -0.5240589380264282, + 0.8358548283576965, + 0.5232747793197632, + 0.06826990842819214, + 0.26557719707489014, + 0.07691925764083862, + -0.5357771515846252, + 0.2466481328010559, + 0.0018012821674346924, + 0.13523757457733154, + -0.021191120147705078, + 0.363308310508728, + -0.038309246301651, + 0.46016550064086914, + -0.8645167946815491, + 0.3412438631057739, + -0.3218519985675812, + -0.4413720369338989, + -0.18992234766483307, + -0.4372117519378662, + 0.14052078127861023, + -0.07090243697166443, + -0.3287285566329956, + 0.233566552400589, + 0.05811077356338501, + -0.259765088558197, + 0.09160053730010986, + 0.3841967284679413, + 0.3543369174003601, + 0.3406900465488434, + 0.008382335305213928, + -0.2213449478149414, + 0.8284770250320435, + -0.037662163376808167, + 0.12023773789405823, + -0.31513574719429016, + -0.1910841464996338, + 0.028992831707000732, + 0.3537994623184204, + 0.41003039479255676, + 0.5728981494903564, + -0.24199038743972778, + -0.07443571090698242, + -0.20435988903045654, + 0.07893902063369751, + -0.39249926805496216, + 1.0796607732772827, + 0.31930387020111084, + -0.0745079517364502, + -0.23231607675552368, + -0.5145049095153809, + -0.052517831325531006, + 0.09838521480560303, + -0.21259841322898865, + -0.3700604736804962, + 0.2858888506889343, + -0.7399570345878601, + -0.3869625926017761, + 0.03668990731239319, + 0.023028045892715454, + -0.16615146398544312, + 0.39893555641174316, + -0.8575843572616577, + 0.13386332988739014, + -0.5510817766189575, + 0.39560896158218384, + -0.04139968752861023, + -0.40199604630470276, + 0.06492435932159424, + -0.04133221507072449, + -0.7118939161300659, + -0.14622443914413452, + -0.30219388008117676, + -1.2043776512145996, + -0.21247607469558716, + 0.2914912700653076, + 0.12035900354385376, + -0.10466575622558594, + 0.07150265574455261, + -0.34388232231140137, + -0.42118406295776367, + -0.318540096282959, + 0.15464484691619873, + 0.11793377995491028, + -0.051766157150268555, + 0.16136887669563293, + -0.5692784786224365, + -0.05147123336791992, + -0.2598783075809479, + 0.18433219194412231, + 0.33114975690841675, + 0.1197006106376648, + 0.32643526792526245, + -0.8794680833816528, + 0.10946263372898102, + -0.3937307596206665, + 0.41295501589775085, + 0.015349209308624268, + -0.1115039587020874, + 0.06386195123195648, + -0.025861263275146484, + -0.3999762535095215, + -0.1705835461616516, + -0.3863595128059387, + 0.1263611614704132, + 0.5932549238204956, + 0.006679341197013855, + 0.6346064805984497, + 0.11961495876312256, + -0.1496928334236145, + -0.5940854549407959, + 0.2921605110168457, + -0.6482818722724915, + -0.0010741204023361206, + 0.027857303619384766, + 0.27977803349494934, + -0.25568604469299316, + -0.014332473278045654, + -0.061485737562179565, + -0.21853232383728027, + -0.07002580165863037, + -0.17972105741500854, + -0.2978963553905487, + -0.04722553491592407, + 0.37517744302749634, + 0.15301887691020966, + 0.15830941498279572, + 1.8283690214157104, + -0.4888561964035034, + 0.46147680282592773, + 1.1541121006011963, + 0.43439602851867676, + 0.19912928342819214, + -0.09147787094116211, + 0.3946942687034607, + -0.1911134123802185, + 0.07565677165985107, + 0.2915096580982208, + -0.19346117973327637, + -0.11261200904846191, + -0.12347406148910522, + -0.2962915301322937, + -0.04809887334704399, + 0.2177722454071045, + 0.12231339514255524, + -0.3258245587348938, + -0.4882850646972656, + 0.22601771354675293, + 0.05223548412322998, + 1.069364309310913, + -0.11450105905532837, + 0.9660530090332031, + 0.12871116399765015, + 0.014867782592773438, + 0.9160289168357849, + 0.37607210874557495, + -0.06256598234176636, + -0.1995447874069214, + 0.5710367560386658, + 0.2523477077484131, + 0.5318816304206848, + 0.45408451557159424, + -0.10653570294380188, + 0.37247806787490845, + -0.22606289386749268, + 0.2148599922657013, + 0.041144996881484985, + 0.43909376859664917, + 0.7371642589569092, + -0.43484604358673096, + -0.034068942070007324, + -0.2911677956581116, + -0.2438986897468567, + 0.2950536608695984, + 0.022038280963897705, + 0.24908554553985596, + 0.043425679206848145, + 0.07166792452335358, + -0.12924742698669434, + -0.4526841342449188, + 0.18298298120498657, + -0.4877299666404724, + 0.45320940017700195, + -0.16775208711624146, + -0.36731091141700745, + -0.31884098052978516, + 0.14390960335731506, + 0.5977127552032471, + -0.011162787675857544, + -0.04043731093406677, + 0.11962932348251343, + -0.3767058253288269, + -0.4982384443283081, + -0.27644044160842896, + 0.41951143741607666, + 0.3437991738319397, + -0.14914904534816742, + 0.09652727842330933, + -0.3413468599319458, + 0.3544425070285797, + -0.011895865201950073, + 0.03743058443069458, + 0.01278272271156311, + -0.2330300509929657, + -0.6208138465881348, + 0.010496318340301514, + -0.08311045169830322, + 0.24950912594795227, + -0.37184807658195496, + -0.3869975805282593, + 0.24757015705108643, + -0.2790960669517517, + -0.12285679578781128, + -0.12907269597053528, + -1.1887056827545166, + 0.33264708518981934, + -0.6037904024124146, + 0.2688310444355011, + 0.16451704502105713, + -0.029760003089904785, + 0.4815290570259094, + -0.0007592439651489258, + 0.05017352104187012, + 0.5853220224380493, + 0.647335946559906 + ], + "frame": 44 + } + ] +} \ No newline at end of file diff --git a/wait_for_new_messages.py b/wait_for_new_messages.py new file mode 100644 index 0000000..4fe275c --- /dev/null +++ b/wait_for_new_messages.py @@ -0,0 +1,168 @@ + +from CommonCode import kwq +import time +import json +import logging +import os +from CommonCode.settings import get_logger, LogColorize +from kafka import TopicPartition +from kafka.structs import OffsetAndMetadata +pfm = LogColorize.score_obj_det_orin +logger = get_logger(__name__,'/var/log/ml_vision_logs/01_score_obj_det_orin', stdout=True, systemd=False) + +os.system("sudo /usr/bin/systemctl restart --now systemd-journal-upload.service") + +logger.info(pfm(f"Starting wait_for_new_messages.py on orin for scoring object detection")) +input_topic = kwq.TOPICS.videos_to_score_detection +producer = kwq.producer +topic_produce = kwq.TOPICS.videos_scored_detection + +client_id = 'obj_detector_orin_3' +group_id = client_id +# %% + + +import json + + +logger.debug("Starting Kafka Consumer") + +from deepstream_obj_det import run_inference, target_width, target_height +import os + +os.environ.pop("DISPLAY",None) + +def run_inference_for_file(file_path): + start_time = time.time() + + end_time = time.time() + + pre_path, _ = os.path.splitext(file_path) + + det_path = pre_path + '.json.orin' + emb_path = pre_path + '.oclip.orin' + if os.path.exists(det_path) and os.path.exists(emb_path): + return "Already scored" + + if not os.path.exists(file_path): + return "Movie does not exist" + +# %% + + cmd = f'/usr/bin/ffprobe -v error -select_streams v:0 -count_packets -show_entries stream=nb_read_packets -of csv=p=0 {file_path}'#/srv/ftp/railing/2025/02/28/railing_00_20250228115800.mp4 + try: + frames = int(os.popen(cmd).read().strip()) + except: + frames = 0 + + logger.info(f"TOTAL_FRAMES: {frames}") + if frames < 30: + logger.info(f"TOTAL_FRAMES_SKIPPING: {file_path}") + return "FAILED, NOT ENOUGH FRAMES" + + while True: + try: + with open(det_path,'w') as ff: + out = ff.write(' '*100) + except OSError as e: + logger.error(f"NO_SPACE :{det_path}:{e}") + else: + break + + time.sleep(5) + + try: + os.remove(det_path) + except: + pass + logger.info(f"ENOUGH SPACE, STARTING INFERENCE") + detector_results, embedder_results = run_inference(file_path) + obj_det_dict = dict() + obj_det_dict['meta'] = {'model_version':'orin_v1'} + obj_det_dict['scoring'] = {'start_time':start_time, 'end_time': end_time} + obj_det_dict['json'] ={'path':det_path} + obj_det_dict['video'] = {'path':file_path, 'target_w': target_width, 'target_h': target_height} + + + + + by_frame_num = dict() + for idx, sc in enumerate(detector_results): + c_res = dict() + c_frame = sc['frame_number'] + c_res['score'] = sc['score'] + c_res['L'] = sc['left'] + c_res['T'] = sc['top'] + c_res['W'] = sc['width'] + c_res['H'] = sc['height'] + c_res['name'] = sc['label'] + c_res['idx'] = sc['class_id'] + if c_frame not in by_frame_num: + by_frame_num[c_frame] = list() + + by_frame_num[c_frame].append(c_res) + + obj_det_dict['scores'] = [{'frame':key, 'detections':val} for key,val in by_frame_num.items()] + + + with open(det_path,'w') as ff: + json.dump(obj_det_dict, ff, indent=4) + + + emb_dict = dict() + emb_dict['meta'] = {'model_version':'ViT-L-16-SigLIP2-512','host':'orin'} + emb_dict['scoring'] = {'start_time':start_time, 'end_time': end_time} + emb_dict['json'] ={'path':det_path} + emb_dict['video'] = {'path':file_path, 'target_w': target_width, 'target_h': target_height} + emb_dict['scores'] = list() + + + for c_score in embedder_results: + fr_num = c_score['frame_number'] + vect = c_score['vector'] + emb_dict['scores'].append({'score':vect, 'frame':fr_num}) + + with open(emb_path,'w') as ff: + json.dump(emb_dict, ff, indent=4) + + return "Success" + +# %% +consumer = kwq.create_consumer(input_topic, group_id = group_id, client_id = client_id) +#consumer.subscribe(input_topic) + +c_part = TopicPartition(input_topic, 0) +consumer.assign([c_part]) + + +c_committed = consumer.committed(c_part) +logger.info(f"KAFKA_POSITION_IS: {str(consumer.position(c_part))}") + +if c_committed is None: + logger.info(f"KAFKA_POSITION_NOT_COMMITTED") +else: + logger.info(f"KAFKA_POSITION_COMMITTED_IS: {c_committed}") + consumer.seek(c_part, c_committed) +logger.info("START POLLING") + +#while True: +# out = consumer.poll(timeout_ms=5000 , update_offsets = False) +# msgs = list() +# logger.info(f"KAFKA_POSITION_COMMITTED_IS: {str(consumer.committed(c_part))}") +# logger.info(f"KAFKA_POSITION_IS: {str(consumer.position(c_part))}") +# +# for k, v in out.items(): +# msgs.extend(v) +# for message in msgs: +for message in consumer: + logger.info(f"KAFKA_POSITION_COMMITTED_IS: {str(consumer.committed(c_part))}") + logger.info(f"KAFKA_POSITION_IS: {str(consumer.position(c_part))}") + + logger.info(f"MSG_RECEIVED :{message}") + logger.info(f"INFERENCE_START: {pfm(message.key)}") + result = run_inference_for_file(message.key) + logger.info(f"INFERENCE_DONE:{pfm(result)} {message.key}") + oandm = OffsetAndMetadata(message.offset,'') + consumer.commit({c_part:oandm}) + producer.send(topic_produce, value=message.value, key=message.key) +