diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/.gitignore b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/.gitignore deleted file mode 100644 index edab6bd..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/.gitignore +++ /dev/null @@ -1,16 +0,0 @@ -.ipynb_checkpoints/ - -evaluation_test/__pycache__ -evaluation_test/gsoc_application.pdf -evaluation_test/data/*.pt* - -pose_extraction/ilya_poses -pose_extraction/.ipynb_checkpoints -pose_extraction/3d_pose_extraction/*.json -pose_extraction/3d_pose_extraction/test/vis/ - -models/.ipynb_checkpoints/ -models/__pycache__/ -models/NRI_particles_test_* -models/graphs -models/best_weights/nri_particles* diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/README.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/README.md deleted file mode 100644 index b3760c9..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/README.md +++ /dev/null @@ -1,64 +0,0 @@ -# AI-Generated Choreography - from Solos to Duets - -This repository is dedicated to the development of the project [AI-Generated Choreography - from Solos to Duets](https://humanai.foundation/gsoc/2024/proposal_ChoreoAI1.html). Here, you will find all the documentation and code for implementing my pipelines. - -Special thanks to my supervisors, [Mariel Pettee](https://marielpettee.com/) and [Ilya Vidrin](https://www.ilyavidrin.com/), for all their guidance, and to my work partner, Zixuan Wang, for developing [her pipeline](https://github.com/humanai-foundation/ChoreoAI/tree/main/ChoreoAI_Zixuan_Wang) alongside mine. - -If you don't want to dive into the code right away but rather want to have an overview of the entire project, check my [blog posts on Medium](https://medium.com/@luisvz). - -## Duet ChorAIgraphy: Using GNNs to Study Duets - -
- -
- -Duet ChorAIgraphy aims to implement a pipeline using Graph Neural Networks (GNNs) to study dance duets. The project focuses on **Interpretability of Movements:** a pipeline that learns about the connection between the dancers' bodies in different dance sequences. - - - -The pipeline is discussed in more detail below, along with a presentation of key results. For a more comprehensive explanation of the model, refer to the `models` directory, which contains its implementations as well as complete documentation on it. - -## Repository Hierarchy - -- The root of the repository naturally provides an overview of the project and showcases sample generations from the developed model. - -- The `evaluation_test` folder contains the application for the contributor position. It includes a `README` file with detailed information on the implementations for the selection process test, along with the results obtained. The folder also contains the notebook with the source code for the developed components. The `README` was later expanded as the project development continued. - -- The `pose_extraction` folder contains details about the pose extraction pipeline used to create the project dataset. It includes an installation process guide, the raw data used, and information on the development and execution of the idea. - -- The `models` folder contains the project's core, including installation instructions, pipelines designs, and running guidelines for the interpretability of movements model. It also has detailed results for a thorough evaluation on the quality of the final agent. - -## Sample Generations - -The project has produced a wide range of results. Its creative and subjective nature offers many opportunities for exploration, even in the most unexpected outputs. However, while this subjectivity allows for different perspectives, it also creates challenges in getting a more precise evaluation of the model. Below are examples of connections (both undirected and directed) computed by the model in various scenarios. For a deeper study about what the model is doing, please check the [documentation under `models`](https://github.com/Luizerko/ai_choreo/blob/master/models/README.md). - -
- -
-
- Example of the sampled edge distribution. The black edges represent connections between the dancers, with darker edges indicating higher confidence in their importance for reconstruction. In this typical case, for 6 particles sampled, 3 edges were selected, two with slightly higher importance, though all show a high confidence level (above 80%). -

-
- -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/multi_edge_part_1.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/multi_edge_part_2.gif)| -|:-:|:-:| -
- Examples of multiple edges connected to the same particle. On the left, an undirected example shows simpler movement for a sampling of 6 particles, while on the right, a directed example features more complex movement for a sampling of 10 particles. It is worth noting that, for the animation on the right, the model recognizes how one dancer's feet motion influence various parts of the other dancer's body, which aligns with the movement being performed, where the dynamic spin of the blue dancer guides the red dancer's response. -

-
- -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/opposition_1.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/opposition_2.gif)| -|:-:|:-:| -
- Examples of connections within opposition tendencies. On the left, the undirected example shows multiple connections between the lower torso of both dancers, first leaning in opposite directions and then gravitating toward each other, illustrating the full range of the stretched-string analogy. This example is notable for the model’s emphasis on opposition by sampling many edges for the reconstruction of these sequences. On the right, in the simpler directed example, one can see that the edges connecting particles moving apart are stronger than those linking particles moving closer together (as seen in the blue dancer's hand). -

-
- -|![](https://github.com/Luizerko/ai_choreo/blob/master/assets/beauty_1.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/assets/beauty_2.gif)| -|:-:|:-:| -
- Two final examples are presented not for specific details, but to highlight and appreciate interesting visualizations generated by the model. -

-
- -For a quick and easy way to generate and explore new visualizations, check out the [Colab Notebook](https://colab.research.google.com/drive/1KhX-Ppn9-BxAO4EX0BtfqPohdA09I6z5?usp=sharing). diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/beauty_1.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/beauty_1.gif deleted file mode 100644 index 93d0515..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/beauty_1.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/beauty_2.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/beauty_2.gif deleted file mode 100644 index 2a00e53..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/beauty_2.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/duet_choraigraphy_logo.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/duet_choraigraphy_logo.png deleted file mode 100644 index 1f1b5fc..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/duet_choraigraphy_logo.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/possible_logo.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/possible_logo.png deleted file mode 100644 index 66e3c2e..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/assets/possible_logo.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/README.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/README.md deleted file mode 100644 index bc2b3f7..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/README.md +++ /dev/null @@ -1,174 +0,0 @@ -# Evaluation Test Report - -This is a file containing all the information regarding the development of the evaluation test. - -## Setup - -Before using the notebook, you should setup your environment: - -``` -conda create -n python=3.10 -``` - -After creating the conda environment, just install all the dependencies by running: - -``` -pip install -r requirements.txt -``` - -Alternatively, if the dependency versions don't match your system (very likely because of the CUDA version), you can manually install all the core packages found in `requirements.in`. They should also require you to install compatible versions of all the packages contained in `requirements.txt`. - -## Loading Data - -This is the pre-test part of the project that consists of replicating [Mariel's code](https://github.com/mariel-pettee/choreo-graph/blob/main/functions/load_data.py) to properly load and preprocess the [provided data](https://github.com/mariel-pettee/choreo-graph/tree/main/data). In here you can find code to load data, put everything in a very handable data structure and format, preprocess the joint positions so that they belong to the same unit cube (since we are interested in relative motion instead of absolute motion), and finally compute the edges. - -## Visualizing Dance - -This is the first part of the test, in which I effectively started developing. In here I instantiated the `MarielDataset` class, experimented for quite a while with the data to understand what each part actually represented, then built up a static visualization scheme to make sure everything was in order and finally animated a sequence from the original dataset. - -Note: I did not include the experimentation parts to this section of the notebook because I didn't want to make it even longer. - -
- -

-

- Visualizing an Original Sequence -
Visualizing a sequence from the original dataset.
-
-

- -## Training Generative Model - -This is the second part of the test and the most difficult one. To make all the descriptions more clear, I separate them into different sections: - - ### Implementation - - I decided to go for the LSTM-VAE model. This decision was based in two main reasons: - -- I wanted to replicate the ideas used in the [provided paper](https://arxiv.org/pdf/1907.05297.pdf). I understood that they resulted in a good model as described in the paper and also that I could try to use the given hyperparameters, making the search space for optimization much easier. Since optimizing NNs can often prove to be quite a challenge, I thought it would be a good idea considering the time schedule. - -- I have much more experience with LSTM than with GNNs, so I thought I should stick to models I'm more familiar with because of time limitations. I figured I could explore more about GNN models within the development of the real project if I get accepted. - -### Architecture and Optimization - -- One encoder with 3 LSTM layers (384 nodes) and 2 separated branches of linear layers (256 nodes each for the latent space), one for the mean and another one for log-variance. - -- One decoder with 1 linear layer (384 nodes) with ReLU activation function for the latent-space sampled data and 3 LSTM layers (159 nodes for the output). - -The model was trained with Adam optimizer for 200 epochs with early stopping at 3 validation losses higher than the best validation loss at that point. I also used the KL-divergence weight provided in the paper (0.0001). Finally, I added 0.2 dropout for the LSTM layers for some more regularization. - -I expanded the dataset using data noise augmentation. I got around 10000 random sequences out of the almost 40000 provided sequences, and added 0.01 scaled Gaussian noise to the joint coordinates to try and make the model a bit more robust. I wanted to do even more augmentation, but due to my GPU limitations, this was the best I could do. Finally, I used 90% of the data for training and 10% for validation, both randomly sampled from the dataset and shuffled afterwards, with a batch sizes of 64. - -### Comments and Results - -Even though I had reduced a lot the hyperparamter space by trying to replicate the provided paper, I still ended up having to train the model multiple times to find out the best hyperparameters. - -Furthermore, I had issues with the validation loss that made me replicate the experiments an enormous amount of times. I had a decreasing validation loss, as expected, but still orders of magnitude larger than the training loss. I think this problem is mostly related to the model being a bit to complex for the amount of data I had ($\frac{2}{3}$ of the data size from the paper with much less augmentation due to GPU limitations). I tried reducing the amount of LSTM layers to make the model simpler, but found out it was not really capable of capturing the complexity of dance sequences, mostly generating sequences in which the figure stands almost still. The image below shows the loss curves for training and validation datasets throughout the training process: - -
- -
- Loss Curves -
- -
- -A better solution I could think of was to reduce the sequence length drastically (64 instead of 128) to both expand the dataset and make the sequences much more simple to learn. It indeed reduced the validation loss quite a lot, but generated very bad sequences (almost random joint positions and movement). In the end I did not have the time to properly evaluate all the hyperparameters possibilities for this reduced sequence model and went back to the original sequence lengths implementation that had much better results at least. - -Even with all these issues, I managed to train the model and come up with some very interesting results. Some sequences from the original dataset are accurately reconstructed by the model. Others, even if not perfectly reconstructed, still clearly show that the model was able to capture the essence of their movements. A sequence that rotates, for example, remains rotating in its reconstructed version, or a sequence that lifts its leg remains with this movement in the reconstruction as well. - -When it comes to generating new sequences, the model is quite sensitive to the standard deviation used. When the latent space is sampled with a normal distribution, the model generates interesting sequences, but with fewer movements than the original sequences. When the latent space is sampled with a higher standard deviation, the sequence tends to be more creative, but it is also common to see joints getting lost in space (many points converging to the same coordinates or points moving shakily). - -Finally, one behavior I did not manage to fix was the initial state of the joints. Even in the best reconstructed/generated sequences, the joints start in weird positions, making the first miliseconds of the animation almost glitch to proper positions and then start a proper sequence of movements. - -In the GIFs below I show some of the obtained results. - -
- - - - - - -
- Original Sequence
-
Orignal sequence.
-
- Reconstructed Sequence
-
Reconstructed sequence.
-
- -
-
- - - - - - -
- Bad Original Sequence
-
Original sequence that doesn't reconstruct well.
-
- Bad Reconstructed Sequence
-
Not so good reconstructed sequence. The core movements are captured by the reconstruction though.
-
- -
-
- - - - - - -
- Generated Sequence
-
Generated sequence.
-
- Interpretation of Generated Sequence
-
My interpretation of the generated sequence.
-
- -
-
- - - - - - -
- Another Generated Sequence
-
Another generated sequence.
-
- Interpretation of Another Generated Sequence
-
My interpretation of another generated sequence.
-
- -
-
- - - - - - -
- Shaky Generated Sequence
-
Generated sequence with a bit larger standard deviation ($1.5\sigma^2$).
-
- 2 Standard Deviation Generated Sequence
-
Generated sequence with even larger standard deviation ($2\sigma^2$).
-
- - -## Why This Project? - -Growing up in the northeast of Brazil, art and communication were central to my life. Surrounded by the richness of Brazilian music and dance from a young age, I quickly connected to the arts. While I'm not as skilled as many dancers, I strongly believe in the power of dance to bring warmth to any environment and I always engage in it with joy. My talents, though, are more related to communication, making me a natural-born chatterbox, always wanting to learn from others, and share parts of my own journey. I think the mixture of my cultural background along with my academic and professional trajectory is exactly what connects me to this project and truly makes me want to be a part of it. - -Now talking about approaches to the project, I would first focus on building the dataset. I would use the same methods employed in the provided paper to preprocess the dance sequences, but now separating the joints of the two dancers into different groups and encoding the interaction between nodes from the two. Focusing on the proposed methods, we could: - -- Draw and edge between joints from different dancers that have some common properties. Very close nodes with either same or opposite velocity vectors, and nodes in symmetric positions are examples of what these properties could be. This form of encoding fits perfectly a GNN and could be used to help the model understand the sequences while capturing the relationship between dancers. - -- Use the same approach for pairs of nodes computation as before, but rather than encoding pairs with an edge, encoding them into a dance sequence by a special connection token. These tokens could be used by a transformer model to capture the relationship between nodes over time, understanding a sequence as combination of interactive joint pairs. \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/bad_original_seq.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/bad_original_seq.gif deleted file mode 100644 index 003127e..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/bad_original_seq.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/bad_recon_seq.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/bad_recon_seq.gif deleted file mode 100644 index 406ed9d..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/bad_recon_seq.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq.gif deleted file mode 100644 index cf8ad3d..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq2.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq2.gif deleted file mode 100644 index dffe7a2..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq2.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq2_me.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq2_me.gif deleted file mode 100644 index c8b8605..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq2_me.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_2std.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_2std.gif deleted file mode 100644 index 28bcc4f..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_2std.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_me.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_me.gif deleted file mode 100644 index 8b796a8..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_me.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_shaky.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_shaky.gif deleted file mode 100644 index 44cb28a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/generated_seq_shaky.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/loss_graphs.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/loss_graphs.png deleted file mode 100644 index fec126a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/loss_graphs.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/original_seq.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/original_seq.gif deleted file mode 100644 index a276cb8..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/original_seq.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/recon_seq.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/recon_seq.gif deleted file mode 100644 index 3bd5d8a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/recon_seq.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/visualizing_sequence.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/visualizing_sequence.gif deleted file mode 100644 index d2bd575..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/assets/visualizing_sequence.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/best_model.pth b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/best_model.pth deleted file mode 100644 index 0f9a809..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/best_model.pth and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_betternot_and_retrograde.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_betternot_and_retrograde.npy deleted file mode 100644 index 29058fc..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_betternot_and_retrograde.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_beyond.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_beyond.npy deleted file mode 100644 index 5a1f829..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_beyond.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_chunli.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_chunli.npy deleted file mode 100644 index d2c23e4..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_chunli.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_honey.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_honey.npy deleted file mode 100644 index a5963b4..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_honey.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_knownbetter.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_knownbetter.npy deleted file mode 100644 index 28d11af..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_knownbetter.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_penelope.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_penelope.npy deleted file mode 100644 index d6f62a9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/data/mariel_penelope.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/evaluation_test.ipynb b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/evaluation_test.ipynb deleted file mode 100644 index d2458a4..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/evaluation_test.ipynb +++ /dev/null @@ -1,460406 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "87397e08-8c81-4d5f-ba76-77fb9d35423d", - "metadata": {}, - "source": [ - "# Loading Data" - ] - }, - { - "cell_type": "markdown", - "id": "73a7892e-e6f6-47c7-b15e-f21ccdb5682f", - "metadata": {}, - "source": [ - "

This is the pre-test part of the project that consists of replicating [Mariel's code](https://github.com/mariel-pettee/choreo-graph/blob/main/functions/load_data.py) to properly load and preprocess the [provided data](https://github.com/mariel-pettee/choreo-graph/tree/main/data). In here you can find code to load data, put everything in a very handable data structure and format, preprocess the joint positions so that they belong to the same unit cube (since we are interested in relative motion instead of absolute motion), and finally compute the edges.

" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "a09d7a1a-638f-4244-87fa-c56420cfd6c3", - "metadata": {}, - "outputs": [], - "source": [ - "import torch\n", - "from torch_geometric.data import Data\n", - "import numpy as np\n", - "from glob import glob\n", - "import os" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "b59d503a-91a3-4c15-9b87-4774e7f19c17", - "metadata": {}, - "outputs": [], - "source": [ - "point_labels = ['ARIEL','C7','CLAV','LANK','LBHD','LBSH','LBWT','LELB','LFHD','LFRM','LFSH','LFWT','LHEL','LIEL','LIHAND','LIWR','LKNE','LKNI','LMT1','LMT5','LOHAND','LOWR','LSHN','LTHI','LTOE','LUPA','MBWT','MFWT','RANK','RBHD','RBSH','RBWT','RELB','RFHD','RFRM','RFSH','RFWT','RHEL','RIEL','RIHAND','RIWR','RKNE','RKNI','RMT1','RMT5','ROHAND','ROWR','RSHN','RTHI','RTOE','RUPA','STRN','T10']\n", - "\n", - "reduced_joint_names = ['ARIEL','CLAV','RFSH','LFSH','RIEL','LIEL','RIWR','LIWR','RKNE','LKNE','RTOE','LTOE','LHEL','RHEL','RFWT','LFWT','LBWT','RBWT']\n", - "\n", - "skeleton_lines = [\n", - "# ( (start group), (end group) ),\n", - " (('LHEL',), ('LTOE',)), # toe to heel\n", - " (('RHEL',), ('RTOE',)),\n", - " (('LMT1',), ('LMT5',)), # horizontal line across foot\n", - " (('RMT1',), ('RMT5',)), \n", - " (('LHEL',), ('LMT1',)), # heel to sides of feet\n", - " (('LHEL',), ('LMT5',)),\n", - " (('RHEL',), ('RMT1',)),\n", - " (('RHEL',), ('RMT5',)),\n", - " (('LTOE',), ('LMT1',)), # toe to sides of feet\n", - " (('LTOE',), ('LMT5',)),\n", - " (('RTOE',), ('RMT1',)),\n", - " (('RTOE',), ('RMT5',)),\n", - " (('LKNE',), ('LHEL',)), # heel to knee\n", - " (('RKNE',), ('RHEL',)),\n", - " (('LFWT',), ('RBWT',)), # connect pelvis\n", - " (('RFWT',), ('LBWT',)), \n", - " (('LFWT',), ('RFWT',)), \n", - " (('LBWT',), ('RBWT',)),\n", - " (('LFWT',), ('LBWT',)), \n", - " (('RFWT',), ('RBWT',)), \n", - " (('LFWT',), ('LTHI',)), # pelvis to thighs\n", - " (('RFWT',), ('RTHI',)), \n", - " (('LBWT',), ('LTHI',)), \n", - " (('RBWT',), ('RTHI',)), \n", - " (('LKNE',), ('LTHI',)), \n", - " (('RKNE',), ('RTHI',)), \n", - " (('CLAV',), ('LFSH',)), # clavicle to shoulders\n", - " (('CLAV',), ('RFSH',)), \n", - " (('STRN',), ('LFSH',)), # sternum & T10 (back sternum) to shoulders\n", - " (('STRN',), ('RFSH',)), \n", - " (('T10',), ('LFSH',)), \n", - " (('T10',), ('RFSH',)), \n", - " (('C7',), ('LBSH',)), # back clavicle to back shoulders\n", - " (('C7',), ('RBSH',)), \n", - " (('LFSH',), ('LBSH',)), # front shoulders to back shoulders\n", - " (('RFSH',), ('RBSH',)), \n", - " (('LFSH',), ('RBSH',)),\n", - " (('RFSH',), ('LBSH',)),\n", - " (('LFSH',), ('LUPA',),), # shoulders to upper arms\n", - " (('RFSH',), ('RUPA',),), \n", - " (('LBSH',), ('LUPA',),), \n", - " (('RBSH',), ('RUPA',),), \n", - " (('LIWR',), ('LIHAND',),), # wrist to hand\n", - " (('RIWR',), ('RIHAND',),),\n", - " (('LOWR',), ('LOHAND',),), \n", - " (('ROWR',), ('ROHAND',),),\n", - " (('LIWR',), ('LOWR',),), # across the wrist \n", - " (('RIWR',), ('ROWR',),), \n", - " (('LIHAND',), ('LOHAND',),), # across the palm \n", - " (('RIHAND',), ('ROHAND',),), \n", - " (('LFHD',), ('LBHD',)), # draw lines around circumference of the head\n", - " (('LBHD',), ('RBHD',)),\n", - " (('RBHD',), ('RFHD',)),\n", - " (('RFHD',), ('LFHD',)),\n", - " (('LFHD',), ('ARIEL',)), # connect circumference points to top of head\n", - " (('LBHD',), ('ARIEL',)),\n", - " (('RBHD',), ('ARIEL',)),\n", - " (('RFHD',), ('ARIEL',)),\n", - "]" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "b6653ad1-51f2-42dc-9760-3c410ccd0632", - "metadata": {}, - "outputs": [], - "source": [ - "class MarielDataset(torch.utils.data.Dataset):\n", - " 'Characterizes a dataset for PyTorch'\n", - " def __init__(self, reduced_joints=False, xy_centering=True, seq_len=128, predicted_timesteps=1, file_path=\"data/mariel_*.npy\", no_overlap=False):\n", - " 'Initialization'\n", - " self.file_path = file_path\n", - " self.seq_len = seq_len\n", - " self.no_overlap = no_overlap\n", - " self.reduced_joints = reduced_joints # use a meaningful subset of joints\n", - " self.data = load_data(pattern=file_path) \n", - " self.xy_centering = xy_centering\n", - " self.n_joints = 53\n", - " self.n_dim = 6\n", - " self.predicted_timesteps = predicted_timesteps\n", - " \n", - " print(\"\")\n", - " \n", - " if self.no_overlap == True:\n", - " print(\"Generating non-overlapping sequences...\") \n", - " else:\n", - " print(\"Generating overlapping sequences...\")\n", - " \n", - " if self.xy_centering == True: \n", - " print(\"Using (x,y)-centering...\")\n", - " else: \n", - " print(\"Not using (x,y)-centering...\")\n", - " \n", - " if self.reduced_joints == True: \n", - " print(\"Reducing joints...\")\n", - " else:\n", - " print(\"Using all joints...\")\n", - "\n", - " def __len__(self):\n", - " 'Denotes the total number of samples'\n", - " if self.xy_centering: \n", - " data = self.data[1] # choose index 1, for the (x,y)-centered phrases\n", - " else: \n", - " data = self.data[0] # choose index 0, for data without (x,y)-centering\n", - " \n", - " if self.no_overlap == True:\n", - " # number of complete non-overlapping phrases\n", - " return int(len(data)/self.seq_len)\n", - " else:\n", - " # number of overlapping phrases up until the final complete phrase\n", - " return len(data)-self.seq_len \n", - "\n", - " def __getitem__(self, index):\n", - " 'Generates one sample of data' \n", - " edge_index, is_skeleton_edge, reduced_joint_indices = edges(reduced_joints=self.reduced_joints, seq_len=self.seq_len)\n", - " \n", - " if self.xy_centering == True: \n", - " data = self.data[1] # choose index 1, for the (x,y)-centered phrases\n", - " else: \n", - " data = self.data[0] # choose index 0, for data without (x,y)-centering\n", - "\n", - " if self.reduced_joints == True: \n", - " data = data[:,reduced_joint_indices,:] # reduce number of joints if desired\n", - " \n", - " if self.no_overlap == True: \n", - " # non-overlapping phrases\n", - " index = index*self.seq_len\n", - " sequence = data[index:index+self.seq_len]\n", - " prediction_target = data[index:index+self.seq_len+self.predicted_timesteps]\n", - " else: \n", - " # overlapping phrases\n", - " sequence = data[index:index+self.seq_len]\n", - " prediction_target = data[index:index+self.seq_len+self.predicted_timesteps]\n", - "\n", - " sequence = np.transpose(sequence, [1,0,2]) # put n_joints first\n", - " sequence = sequence.reshape((data.shape[1],self.n_dim*self.seq_len)) # flatten n_dim*seq_len into one dimension (i.e. node feature)\n", - " prediction_target = np.transpose(prediction_target, [1,0,2]) # put n_joints first\n", - " prediction_target = prediction_target.reshape((data.shape[1],self.n_dim*(self.seq_len+self.predicted_timesteps))) \n", - "\n", - " # Convert to torch objects\n", - " sequence = torch.Tensor(sequence)\n", - " prediction_target = torch.Tensor(prediction_target)\n", - " edge_attr = torch.Tensor(is_skeleton_edge)\n", - " \n", - " return Data(x=sequence, y=prediction_target, edge_index=edge_index.t().contiguous(), edge_attr=edge_attr)\n", - "\n", - "def load_data(pattern=\"data/mariel_*.npy\"):\n", - " # load up the six datasets, performing some minimal preprocessing beforehand\n", - " datasets = {}\n", - " ds_all = []\n", - " \n", - " exclude_points = [26,53]\n", - " point_mask = np.ones(55, dtype=bool)\n", - " point_mask[exclude_points] = 0\n", - " \n", - " for f in sorted(glob(pattern)):\n", - " ds_name = os.path.basename(f)[7:-4]\n", - " ds = np.load(f).transpose((1,0,2))\n", - " ds = ds[500:-500, point_mask]\n", - " ds[:,:,2] *= -1\n", - " datasets[ds_name] = ds\n", - " ds_all.append(ds)\n", - "\n", - " ds_counts = np.array([ds.shape[0] for ds in ds_all])\n", - " ds_offsets = np.zeros_like(ds_counts)\n", - " ds_offsets[1:] = np.cumsum(ds_counts[:-1])\n", - "\n", - " ds_all = np.concatenate(ds_all)\n", - " print(\"Original numpy dataset contains {:,} timesteps of {} joints with {} dimensions each.\".format(ds_all.shape[0], ds_all.shape[1], ds_all.shape[2]))\n", - "\n", - " low,hi = np.quantile(ds_all, [0.01,0.99], axis=(0,1))\n", - " xy_min = min(low[:2])\n", - " xy_max = max(hi[:2])\n", - " xy_range = xy_max-xy_min\n", - " ds_all[:,:,:2] -= xy_min\n", - " ds_all *= 2/xy_range\n", - " ds_all[:,:,:2] -= 1.0\n", - "\n", - " ### It's also useful to have these datasets centered, i.e. with the x and y offsets subtracted from each individual frame:\n", - " ds_all_centered = ds_all.copy()\n", - " ds_all_centered[:,:,:2] -= ds_all_centered[:,:,:2].mean(axis=1,keepdims=True)\n", - "\n", - " datasets_centered = {}\n", - " for ds in datasets:\n", - " datasets[ds][:,:,:2] -= xy_min\n", - " datasets[ds] *= 2/xy_range\n", - " datasets[ds][:,:,:2] -= 1.0\n", - " datasets_centered[ds] = datasets[ds].copy()\n", - " datasets_centered[ds][:,:,:2] -= datasets[ds][:,:,:2].mean(axis=1,keepdims=True)\n", - " \n", - " ### Calculate velocities (first velocity is always 0)\n", - " velocities = np.vstack([np.zeros((1,53,3)),np.array([35*(ds_all[t+1,:,:] - ds_all[t,:,:]) for t in range(len(ds_all)-1)])]) # (delta_x/y/z per frame) * (35 frames/sec)\n", - " \n", - " ### Stack positions above velocities\n", - " ds_all = np.dstack([ds_all,velocities]) # stack along the 3rd dimension, i.e. \"depth-wise\"\n", - " ds_all_centered = np.dstack([ds_all_centered,velocities]) # stack along the 3rd dimension, i.e. \"depth-wise\"\n", - "\n", - " for data in [ds_all, ds_all_centered]:\n", - " # Normalize locations & velocities (separately) to [-1, 1]\n", - " loc_min = np.min(data[:,:,:3])\n", - " loc_max = np.max(data[:,:,:3])\n", - " vel_min = np.min(data[:,:,3:])\n", - " vel_max = np.max(data[:,:,3:])\n", - " print(\"loc_min:\",loc_min,\"loc_max:\",loc_max)\n", - " print(\"vel_min:\",vel_min,\"vel_max:\",vel_max)\n", - " data[:,:,:3] = (data[:,:,:3] - loc_min) * 2 / (loc_max - loc_min) - 1\n", - " data[:,:,3:] = (data[:,:,3:] - vel_min) * 2 / (vel_max - vel_min) - 1\n", - " \n", - " return ds_all, ds_all_centered, datasets, datasets_centered, ds_counts\n", - "\n", - "def edges(reduced_joints, seq_len):\n", - " ### Define a subset of joints if we want to train on fewer joints that still capture meaningful body movement:\n", - " if reduced_joints == True:\n", - " reduced_joint_indices = [point_labels.index(joint_name) for joint_name in reduced_joint_names]\n", - " edge_index = np.array([(i,j) for i in reduced_joint_indices for j in reduced_joint_indices if i!=j])\n", - " else:\n", - " reduced_joint_indices = None\n", - " edge_index = np.array([(i,j) for i in range(53) for j in range(53) if i!=j]) # note: no self-loops!\n", - "\n", - " skeleton_idxs = []\n", - " for g1,g2 in skeleton_lines:\n", - " entry = []\n", - " entry.append([point_labels.index(l) for l in g1][0])\n", - " entry.append([point_labels.index(l) for l in g2][0])\n", - " skeleton_idxs.append(entry)\n", - " \n", - " is_skeleton_edge = [] \n", - " for edge in np.arange(edge_index.shape[0]): \n", - " if [edge_index[edge][0],edge_index[edge][1]] in skeleton_idxs: \n", - " is_skeleton_edge.append(torch.tensor(1.0))\n", - " else:\n", - " is_skeleton_edge.append(torch.tensor(0.0))\n", - " \n", - " is_skeleton_edge = np.array(is_skeleton_edge)\n", - " copies = np.tile(is_skeleton_edge, (seq_len,1)) # create copies of the 1D array for every timestep\n", - " skeleton_edges_over_time = torch.tensor(np.transpose(copies))\n", - " \n", - " if reduced_joints == True: \n", - " ### Need to remake these lists to include only nodes 0-18 now\n", - " edge_index = np.array([(i,j) for i in np.arange(len(reduced_joint_indices)) for j in np.arange(len(reduced_joint_indices)) if i!=j])\n", - " \n", - " return torch.tensor(edge_index, dtype=torch.long), skeleton_edges_over_time, reduced_joint_indices" - ] - }, - { - "cell_type": "markdown", - "id": "09a4c628-6817-499b-bdca-9c15a7b17341", - "metadata": {}, - "source": [ - "# Visualizing Dance" - ] - }, - { - "cell_type": "markdown", - "id": "2d03d608-79b7-4138-b221-eede8ba3c721", - "metadata": {}, - "source": [ - "

This is the first part of the test, in which I effectively started developing. In here I instantiated the `MarielDataset` class, experimented for quite a while with the data to understand what each part actually represented, then built up a static visualization scheme to make sure everything was in order and finally animated a sequence from the original dataset.\n", - "\n", - "Note: I did not include the experimentation parts to this section of the notebook because I didn't want to make it even longer.

" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "244093c6-c1b5-426d-a43c-35a769b778a1", - "metadata": {}, - "outputs": [], - "source": [ - "# Importing required libraries\n", - "import matplotlib.pyplot as plt\n", - "from mpl_toolkits.mplot3d import Axes3D\n", - "from matplotlib.animation import FuncAnimation\n", - "%matplotlib inline\n", - "from IPython.display import HTML" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "00f12de2-47f7-4048-826c-d5548d2b07b4", - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Original numpy dataset contains 38,309 timesteps of 53 joints with 3 dimensions each.\n", - "loc_min: -1.8967371874141707 loc_max: 1.5558704656286815\n", - "vel_min: -45.57506836403084 vel_max: 33.951220235113276\n", - "loc_min: -0.4843721412027978 loc_max: 0.9283637015363149\n", - "vel_min: -45.57506836403084 vel_max: 33.951220235113276\n", - "\n", - "Generating overlapping sequences...\n", - "Using (x,y)-centering...\n", - "Using all joints...\n" - ] - } - ], - "source": [ - "# Creating dancer dataset and computing the number of used joints\n", - "#dancer_data = MarielDataset(reduced_joints=False, file_path='../data/mariel_beyond.npy')\n", - "dancer_data = MarielDataset(reduced_joints=False)\n", - "n_joints = len(reduced_joint_names) if dancer_data.reduced_joints else dancer_data.n_joints" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "0c305cf0-70c3-46f4-bcf9-5f7f6a05b455", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_15487/1008845002.py:50: MatplotlibDeprecationWarning: Setting data with a non sequence type is deprecated since 3.7 and will be remove two minor releases later\n", - " point.set_data(new_x, new_y)\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", - " \n", - "
\n", - " \n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - "
\n", - "\n", - "\n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Animation function for a given sequence start and sequence length. You can also pass your own sequence to animate it,\n", - "# although this part of the function is only becoming useful afterwards.\n", - "def animate_segments(start_segment, sequences, title, color='b', given_sequence=None):\n", - "\n", - " # Animating initial dataset\n", - " if given_sequence is None:\n", - " segment_list = [start_segment + i*dancer_data.seq_len for i in range(sequences)]\n", - " edge_indexes = dancer_data[segment_list[0]].edge_index.numpy()\n", - " joint_positions = []\n", - " edge_attributes = []\n", - " for segment in segment_list:\n", - " try:\n", - " joint_positions = np.concatenate((joint_positions, dancer_data[segment].x.view(n_joints, -1, 6)[:, :, :3].numpy()), axis=1)\n", - " except:\n", - " joint_positions = dancer_data[segment].x.view(n_joints, -1, 6)[:, :, :3].numpy()\n", - " \n", - " try: \n", - " edge_attributes = np.concatenate((edge_attributes, dancer_data[segment].edge_attr.numpy()), axis=1)\n", - " except:\n", - " edge_attributes = dancer_data[segment].edge_attr.numpy()\n", - "\n", - " # Animating generated sequence\n", - " else:\n", - " edge_indexes = dancer_data[0].edge_index.numpy()\n", - " edge_attributes = dancer_data[0].edge_attr.numpy()\n", - " joint_positions = given_sequence\n", - "\n", - " fig = plt.figure(figsize=(8, 8))\n", - " ax = fig.add_subplot(111, projection='3d')\n", - " ax.grid(False)\n", - " ax.set_xticks([])\n", - " ax.set_yticks([])\n", - " ax.set_zticks([])\n", - " ax.set_xlabel('')\n", - " ax.set_ylabel('')\n", - " ax.set_zlabel('')\n", - " ax.set_xlim3d(-1, 0.5)\n", - " ax.set_ylim3d(-1, 0.5)\n", - " ax.set_ylim3d(-1, 0.5)\n", - " ax.set_title(title)\n", - " \n", - " points = [ax.plot(joint_position[0, 0], joint_position[0, 1], \\\n", - " joint_position[0, 2], 'o', color=color)[0] for joint_position in joint_positions]\n", - " edge_lines = []\n", - "\n", - " # Update function to get new joint positions, clear edges and redraw tehm\n", - " def update(num, joint_positions, points, ax, edge_indexes, edge_attributes, edge_lines):\n", - " for joint_position, point in zip(joint_positions, points):\n", - " new_x, new_y = joint_position[num, :2].tolist()\n", - " point.set_data(new_x, new_y)\n", - " point.set_3d_properties(joint_position[num, 2])\n", - " \n", - " for line in edge_lines:\n", - " line.remove()\n", - " edge_lines.clear()\n", - " \n", - " active_edges = np.where(edge_attributes.transpose()[num] == 1)\n", - " for start_joint, end_joint in edge_indexes.transpose()[active_edges]:\n", - " x = [joint_positions[start_joint][num, 0], joint_positions[end_joint][num, 0]]\n", - " y = [joint_positions[start_joint][num, 1], joint_positions[end_joint][num, 1]]\n", - " z = [joint_positions[start_joint][num, 2], joint_positions[end_joint][num, 2]]\n", - " edge_line = ax.plot(x, y, z, color='black', alpha=0.5)[0]\n", - " edge_lines.append(edge_line)\n", - " \n", - " \n", - " animation = FuncAnimation(fig, update, frames=joint_positions.shape[1], fargs=(joint_positions, points, ax, \\\n", - " edge_indexes, edge_attributes, edge_lines), interval=50)\n", - " \n", - " plt.close(fig)\n", - "\n", - " return animation\n", - "\n", - "# Choosing the sequence start and the sequence length and making sure we are computing a sequence within bounds\n", - "start_segment = 3500\n", - "sequences = 2\n", - "while sequences > 0 and start_segment + (sequences-1)*dancer_data.seq_len > len(dancer_data):\n", - " sequences -= 1\n", - "\n", - "if sequences > 0:\n", - " animation = animate_segments(start_segment, sequences, \"Visualizing an Original Sequence\")\n", - "else:\n", - " print('Using previous sequence, because the current sequence is invalid.')\n", - "\n", - "HTML(animation.to_jshtml())" - ] - }, - { - "cell_type": "markdown", - "id": "ecddbf4c-b5fe-40c1-81f8-b2c997c20564", - "metadata": {}, - "source": [ - "# Training Generative Model" - ] - }, - { - "cell_type": "markdown", - "id": "987beaa7-9d9b-4794-805e-2165c91aee47", - "metadata": {}, - "source": [ - "This is the second part of the test and the most difficult one. To make all the descriptions more clear, I separate them into different sections:\n", - "\n", - " ### Implementation\n", - " \n", - " I decided to go for the LSTM-VAE model. This decision was based in two main reasons:\n", - "\n", - "- I wanted to replicate the ideas used in the [provided paper](https://arxiv.org/pdf/1907.05297.pdf). I understood that they resulted in a good model as described in the paper and also that I could try to use the given hyperparameters, making the search space for optimization much easier. Since optimizing NNs can often prove to be quite a challenge, I thought it would be a good idea considering the time schedule.\n", - "\n", - "- I have much more experience with LSTM than with GNNs, so I thought I should stick to models I'm more familiar with because of time limitations. I figured I could explore more about GNN models within the development of the real project if I get accepted.\n", - "\n", - "### Architecture and Optimization\n", - "\n", - "- One encoder with 2 LSTM layers (384 nodes) and 2 separated branches of linear layers (256 nodes each for the latent space), one for the mean and another one for log-variance.\n", - "\n", - "- One decoder with 1 linear layer (384 nodes) with ReLU activation function for the latent-space sampled data and 2 LSTM layers (159 nodes for the output).\n", - "\n", - "The model was trained with Adam optimizer for 200 epochs with early stopping at 3 validation losses higher than the best validation loss at that point. I also used the KL-divergence weight provided in the paper (0.0001). Finally, I added 0.2 dropout for the LSTM layers for some more regularization.\n", - "\n", - "I expanded the dataset using data noise augmentation. I got around 10000 random sequences out of the almost 40000 provided sequences, and added 0.01 scaled Gaussian noise to the joint coordinates to try and make the model a bit more robust. I wanted to do even more augmentation, but due to my GPU limitations, this was the best I could do. Finally, I used 90% of the data for training and 10% for validation, both randomly sampled from the dataset and shuffled afterwards, with a batch sizes of 64.\n", - "\n", - "### Comments and Results\n", - "\n", - "Even though I had reduced a lot the hyperparamter space by trying to replicate the provided paper, I still ended up having to train the model multiple times to find out the best hyperparameters. Not only that, but also I had to modify the number of LSTM layers in the model (from 3 in the original paper to 2) to make it more slightly more adequate to the amount of data/time I had without completly losing the fundamental temporal structure of the model.\n", - "\n", - "Furthermore, I had issues with the validation loss that made me replicate the experiments an enormous amount of times. I had a decreasing validation loss, as expected, but still orders of magnitude larger than the training loss. I think this problem is mostly related to the model being a bit to complex for the amount of data I had ($\\frac{2}{3}$ of the data size from the paper with much less augmentation due to GPU limitations). I tried reducing the amount of LSTM layers even further to make the model simpler, but found out it was not really capable of capturing the complexity of dance sequences, mostly generating sequences in which the figure stands almost still.\n", - "\n", - "A better solution I could think of was to reduce the sequence length drastically (64 instead of 128) to both expand the dataset and make the sequences much more simple to learn. It indeed reduced the validation loss quite a lot, but generated very bad sequences (almost random joint positions and movement). In the end I did not have the time to properly evaluate all the hyperparameters possibilities for this reduced sequence model and went back to the original sequence lengths implementation that had much better results at least.\n", - "\n", - "Even with all these issues, I managed to train the model and come up with some very interesting results. Some sequences from the original dataset are accurately reconstructed by the model. Others, even if not perfectly reconstructed, still clearly show that the model was able to capture the essence of their movements. A sequence that rotates, for example, remains rotating in its reconstructed version, or a sequence that lifts its leg remains with this movement in the reconstruction as well.\n", - "\n", - "When it comes to generating new sequences, the model is quite sensitive to the standard deviation used. When the latent space is sampled with a normal distribution, the model generates interesting sequences, but with fewer movements than the original sequences. When the latent space is sampled with a higher standard deviation, the sequence tends to be more creative, but it is also common to see joints getting lost in space (many points converging to the same coordinates or points moving shakily).\n", - "\n", - "Finally, one behavior I did not manage to fix was the initial state of the joints. Even in the best reconstructed/generated sequences, the joints start in weird positions, making the first miliseconds of the animation almost glitch to proper positions and then start a proper sequence of movements.\n", - "\n", - "In the experiments below I show some of the good and bad results obtained." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "0014a986-f86d-4719-b1f0-6ce3e08bd758", - "metadata": {}, - "outputs": [], - "source": [ - "# Defining the VAE with LSTMs model, reparametrization trick (to be able to properly backpropagate even with sampling), loss function (reconstruction\n", - "# error + distribution similarity) and weight initialization (for proper gradient propagation)\n", - "import torch.nn as nn\n", - "\n", - "class Encoder(nn.Module):\n", - " def __init__(self, in_dim, hid_dim, lat_dim, num_layers):\n", - " super(Encoder, self).__init__()\n", - " self.lstm_enc = nn.LSTM(in_dim, hid_dim, num_layers=num_layers, dropout=0.2, batch_first=True)\n", - " self.hid_mean = nn.Linear(hid_dim, lat_dim)\n", - " self.hid_logvar = nn.Linear(hid_dim, lat_dim)\n", - "\n", - " def forward(self, x):\n", - " _, (final_hid_state, _) = self.lstm_enc(x)\n", - " mean = self.hid_mean(final_hid_state[-1])\n", - " logvar = self.hid_logvar(final_hid_state[-1])\n", - " return mean, logvar\n", - "\n", - "class Decoder(nn.Module):\n", - " def __init__(self, lat_dim, hid_dim, out_dim, num_layers):\n", - " super(Decoder, self).__init__()\n", - " self.lat_to_hid = nn.Sequential(nn.Linear(lat_dim, hid_dim), nn.ReLU())\n", - " self.lstm_dec = nn.LSTM(hid_dim, out_dim, num_layers=num_layers, dropout=0.2, batch_first=True)\n", - "\n", - " def forward(self, z, seq_len):\n", - " hid = self.lat_to_hid(z)\n", - " hid = hid.unsqueeze(1).repeat(1, seq_len, 1)\n", - " outputs, _ = self.lstm_dec(hid)\n", - " return outputs\n", - "\n", - "class VAE(nn.Module):\n", - " def __init__(self, in_dim, hid_dim, lat_dim, seq_len, num_layers):\n", - " super(VAE, self).__init__()\n", - " self.encoder = Encoder(in_dim, hid_dim, lat_dim, num_layers)\n", - " self.decoder = Decoder(lat_dim, hid_dim, in_dim, num_layers)\n", - " self.seq_len = seq_len\n", - " self.device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')\n", - "\n", - " def forward(self, x):\n", - " mean, logvar = self.encoder(x)\n", - " z = reparametrization_trick(mean, logvar).to(self.device)\n", - " return self.decoder(z, self.seq_len), mean, logvar\n", - "\n", - "def reparametrization_trick(mean, logvar):\n", - " std = torch.exp(logvar/2)\n", - " return mean + torch.randn_like(std)*std\n", - "\n", - "def loss_function(x_prime, x, mean, logvar):\n", - " BCE = nn.functional.mse_loss(x_prime, x, reduction='sum')\n", - " KLD = -torch.sum(1 + logvar - mean.pow(2) - logvar.exp())/2\n", - " return BCE + 0.0001*KLD\n", - "\n", - "def weight_initialization(model):\n", - " if isinstance(model, nn.Linear):\n", - " nn.init.xavier_uniform_(model.weight)\n", - " nn.init.constant_(model.bias, 0)\n", - " \n", - " elif isinstance(model, nn.LSTM):\n", - " for param in model.parameters():\n", - " if len(param.shape) >= 2:\n", - " nn.init.orthogonal_(param.data)\n", - " \n", - " else:\n", - " nn.init.normal_(param.data)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "4a175c22-de18-4176-ab0c-f7e3c5a13ffc", - "metadata": {}, - "outputs": [], - "source": [ - "# Code to generate the dataset tensor from the provided data. This cell is commented because you only run it once, save the tensor and start\n", - "# using the local version to avoid processing data for about 10 minutes every run\n", - "# from tqdm import tqdm\n", - "\n", - "# dance_sequences = []\n", - "# try:\n", - "# for dance_seq in tqdm(dancer_data):\n", - "# dance_seq = dance_seq.x.view(n_joints, -1, 6)[:, :, :3]\n", - "# dance_sequences.append(dance_seq)\n", - "# except:\n", - "# print('Value error on the last sequence.')\n", - "\n", - "# dance_sequences = np.array(dance_sequences)\n", - "# ds_shape = dance_sequences.shape\n", - "# dance_sequences = np.swapaxes(dance_sequences, 1, 2).reshape(ds_shape[0],ds_shape[2], n_joints*3)\n", - "# print(dance_sequences.shape)\n", - "\n", - "# dance_sequences = torch.tensor(dance_sequences)\n", - "# torch.save(dance_sequences, 'data/dance_sequences.pt')" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "8bbae4aa-466e-4182-b6bc-2b1294bd9c1e", - "metadata": {}, - "outputs": [], - "source": [ - "# Creating datasets by reading the saved tensor, using augmentation on random sequences and then random splitting data into training (90%) and\n", - "# validation (10%)\n", - "from torch.utils.data import TensorDataset, DataLoader, random_split\n", - "\n", - "# Reading tensor\n", - "device = torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')\n", - "dance_sequences = torch.load('data/dance_sequences.pt', map_location=lambda storage, loc: storage.cuda(0))\n", - "\n", - "# Data augmentation\n", - "s1, s2, s3 = dance_sequences.shape[0], dance_sequences.shape[1], dance_sequences.shape[2]\n", - "noise = (torch.normal(mean=torch.zeros((int(s1/4), s2, s3)), std=torch.rand((int(s1/4), s2, s3)))*0.01).to(device)\n", - "\n", - "random_sequences = torch.randint(0, s1, (int(s1/4),))\n", - "aug_sequences = dance_sequences[random_sequences] + noise\n", - "del noise\n", - "del random_sequences\n", - "torch.cuda.empty_cache()\n", - "\n", - "dance_sequences = torch.vstack((dance_sequences, aug_sequences))\n", - "del aug_sequences\n", - "torch.cuda.empty_cache()\n", - "\n", - "# Experimenting with 64 seq_len instead of 128\n", - "#dance_sequences = dance_sequences.view(-1, int(s2/2), s3)\n", - "\n", - "# Creating training and validation splits\n", - "dataset = TensorDataset(dance_sequences)\n", - "train_size = int(0.9*len(dataset))\n", - "train_dataset, val_dataset = random_split(dataset, [train_size, len(dataset) - train_size])\n", - "\n", - "train_loader = DataLoader(train_dataset, batch_size=64, shuffle=True)\n", - "val_loader = DataLoader(val_dataset, batch_size=64, shuffle=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "7ec46b1d-2d6a-428b-804c-f52b364ccb6b", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - " 0%| | 0/150 [00:00 early_stop_max:\n", - " break" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "id": "627b9039-baac-4535-bdea-afb57d58648b", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABKUAAAJOCAYAAABm7rQwAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAACqH0lEQVR4nOzde5yM5f/H8ffssruWPTjtLjmGcqbksCmnhKISKlIkUqxzSspP4iulE8qpEzpIqVQIOXew5VDkEEUKadchduW07N6/P65m1tjFYmbumd3X8/GYx9w7c8/cnxm0V+/7uj63w7IsSwAAAAAAAIAPBdldAAAAAAAAAPIeQikAAAAAAAD4HKEUAAAAAAAAfI5QCgAAAAAAAD5HKAUAAAAAAACfI5QCAAAAAACAzxFKAQAAAAAAwOcIpQAAAAAAAOBzhFIAAAAAAADwOUIpIA964IEHVK5cuUt67YgRI+RwODxbEALKH3/8IYfDoRdffNHuUgAA8Brn77vp06e7HruYcZDD4dCIESM8WlOTJk3UpEkTj74nAkuTJk1UvXp1u8sAPIZQCvAjDocjR7cVK1bYXaotHnjgARUqVMjuMs5r3759KlKkiJo1a5bluVOnTqlGjRoqV66cjh49es73cA6Cz3V77rnnvPkRAAAIOLfffrvCw8N15MiRc+7TuXNnhYSE6ODBgz6s7OJt2bJFI0aM0B9//GF3KS4rVqyQw+HQxx9/bHcp53XfffcpLCxMv/76a5bnnnvuOTkcDs2bN++879GkSZNzjsEqV67srdKBPCuf3QUAyPTuu++6/fzOO+9o8eLFWR6vUqXKZR3njTfeUEZGxiW9dtiwYXriiScu6/i5WUxMjJ5//nn17NlTM2bMUNeuXV3PvfTSS9q0aZPmzp2rggULXvC9OnXqpFtvvTXL49dcc41HawYAINB17txZc+fO1Zw5c9SlS5cszx87dkyff/65WrVqpaJFi17ycXwxDtqyZYueeeYZNWnSJMvM9q+++sqrxw50L7/8sr788ks98sgjWrZsmevxnTt3auTIkWrfvr3atGlzwfcpVaqUxowZk+XxqKgoj9YLgFAK8Cv33Xef28/ff/+9Fi9enOXxsx07dkzh4eE5Pk7+/PkvqT5Jypcvn/Ll4z8d59OjRw+98847Gjx4sNq0aaOiRYu6BkPt2rXL0WBIkq699toL/tkDAAAzUyoiIkIzZ87MNpT6/PPPdfToUXXu3PmyjmP3OCgkJMS2YweCc50c7N27t/Lnz6/x48fn6H2ioqIYgwE+wvI9IMA415GvW7dOjRo1Unh4uJ588klJZsDVunVrlSxZUqGhoapQoYJGjRql9PR0t/c4u6fUmT2CXn/9dVWoUEGhoaGqW7eu1qxZ4/ba7HopOBwO9enTR5999pmqV6+u0NBQVatWTQsXLsxS/4oVK3TdddcpLCxMFSpU0NSpUz3ep2r27NmqU6eOChQooGLFium+++7TX3/95bZPUlKSunXrplKlSik0NFQlSpTQHXfc4TZVfu3atWrZsqWKFSumAgUKqHz58nrwwQcveHyHw6EpU6YoJSVFgwcPlmQGQ/ny5dOECRM89jklqVy5cmrTpo2++uor1a5dW2FhYapatao+/fTTLPv+/vvvuuuuu1SkSBGFh4erQYMGmj9/fpb9Tpw4oREjRuiqq65SWFiYSpQooXbt2mnHjh1Z9r3Q35ecfM8AAFyuAgUKqF27dlq6dKn27duX5fmZM2cqIiJCt99+u/755x8NHjxYNWrUUKFChRQZGalbbrlFGzZsuOBxshuznDx5UgMHDlTx4sVdx9izZ0+W1/7555/q3bu3rr76ahUoUEBFixbVXXfd5fY7cfr06brrrrskSU2bNs3SuiG7nlL79u1T9+7dFRsbq7CwMNWqVUszZsxw2+dixnqXI6djjVdffVXVqlVTeHi4ChcurOuuu04zZ850PX/kyBENGDBA5cqVU2hoqGJiYnTzzTfrxx9/vGANPXr0UMOGDTV48GAdPHhQs2bN0sKFC/W///1PV1xxhcc+q/PvwtatW3X33XcrMjJSRYsWVf/+/XXixAm3fU+fPq1Ro0a5vvdy5crpySef1MmTJ7O874IFC9S4cWNFREQoMjJSdevWdftunLZs2aKmTZsqPDxcV1xxhcaOHZtlnwt9z4A/YLoDEIAOHjyoW265RR07dtR9992n2NhYSWYgU6hQIQ0aNEiFChXSsmXLNHz4cKWmpuqFF1644PvOnDlTR44c0cMPPyyHw6GxY8eqXbt2+v333y84u+rbb7/Vp59+qt69eysiIkITJkxQ+/bttWvXLtc0+Z9++kmtWrVSiRIl9Mwzzyg9PV0jR45U8eLFL/9L+c/06dPVrVs31a1bV2PGjFFycrLGjx+v7777Tj/99JOio6MlSe3bt9fmzZvVt29flStXTvv27dPixYu1a9cu188tWrRQ8eLF9cQTTyg6Olp//PFHtmFPdqpVq6bBgwdrzJgxioiI0MKFCzV+/PiLGgwdO3ZMBw4cyPJ4dHS021na3377Tffcc48eeeQRde3aVdOmTdNdd92lhQsX6uabb5YkJScn6/rrr9exY8fUr18/FS1aVDNmzNDtt9+ujz/+WHfeeackKT09XW3atNHSpUvVsWNH9e/fX0eOHNHixYu1adMmVahQwXXcnPx9udD3DACAp3Tu3FkzZszQRx99pD59+rge/+eff7Ro0SJ16tRJBQoU0ObNm/XZZ5/prrvuUvny5ZWcnKypU6eqcePG2rJli0qWLHlRx+3Ro4fee+893Xvvvbr++uu1bNkytW7dOst+a9as0apVq9SxY0eVKlVKf/zxhyZPnqwmTZpoy5YtCg8PV6NGjdSvXz9NmDBBTz75pKtlw7laNxw/flxNmjTR9u3b1adPH5UvX16zZ8/WAw88oMOHD6t///5u+1/OWO9CcjrWeOONN9SvXz916NDBFeD8/PPP+uGHH3TvvfdKkh555BF9/PHH6tOnj6pWraqDBw/q22+/1S+//KJrr732vHU4HA5NnTpV11xzjXr16qVvvvlG1113nRISEnL8WdLT07MdgxUoUCBLC4a7775b5cqV05gxY/T9999rwoQJOnTokN555x3XPj169NCMGTPUoUMHPfroo/rhhx80ZswY/fLLL5ozZ45rv+nTp+vBBx9UtWrVNHToUEVHR+unn37SwoULXd+NJB06dEitWrVSu3btdPfdd+vjjz/WkCFDVKNGDd1yyy05/p4Bv2AB8FsJCQnW2f9MGzdubEmypkyZkmX/Y8eOZXns4YcftsLDw60TJ064HuvatatVtmxZ1887d+60JFlFixa1/vnnH9fjn3/+uSXJmjt3ruuxp59+OktNkqyQkBBr+/btrsc2bNhgSbJeffVV12O33XabFR4ebv3111+ux3777TcrX758Wd4zO127drUKFix4zufT0tKsmJgYq3r16tbx48ddj8+bN8+SZA0fPtyyLMs6dOiQJcl64YUXzvlec+bMsSRZa9asuWBd53Ls2DHryiuvtCRZderUsU6fPp2j1zn/PM51S0xMdO1btmxZS5L1ySefuB5LSUmxSpQoYV1zzTWuxwYMGGBJsr755hvXY0eOHLHKly9vlStXzkpPT7csy7LefvttS5L18ssvZ6krIyPDrb4L/X3JyfcMAICnnD592ipRooQVHx/v9viUKVMsSdaiRYssy7KsEydOuH7vOe3cudMKDQ21Ro4c6faYJGvatGmux84eB61fv96SZPXu3dvt/e69915LkvX000+7HstunJaYmGhJst555x3XY7Nnz7YkWcuXL8+yf+PGja3GjRu7fh43bpwlyXrvvfdcj6WlpVnx8fFWoUKFrNTUVLfPkpOxXnaWL19uSbJmz559zn1yOta44447rGrVqp33eFFRUVZCQsJ597mQoUOHWpKs4OBga926dTl+nXOsnd3t4Ycfdu3n/Ltw++23u72+d+/eliRrw4YNlmVl/h3p0aOH236DBw+2JFnLli2zLMuyDh8+bEVERFj169d3G8daVuYY7Mz6zvw7c/LkSSsuLs5q376967GcfM+AP2D5HhCAQkND1a1btyyPFyhQwLV95MgRHThwQDfeeKOOHTumrVu3XvB977nnHhUuXNj184033ijJTMW+kObNm7vNoqlZs6YiIyNdr01PT9eSJUvUtm1btzOQFStWdJ3RuVxr167Vvn371Lt3b4WFhbkeb926tSpXruyaPl6gQAGFhIRoxYoVOnToULbv5ZxRNW/ePJ06deqS6gkJCXE1xLzpppsUHBx8Ua/v2bOnFi9enOVWtWpVt/1KlizpOvsoSZGRkerSpYt++uknJSUlSZK+/PJL1atXTzfccINrv0KFCqlnz576448/tGXLFknSJ598omLFiqlv375Z6jl7ucKF/r7k5HsGAMBTgoOD1bFjRyUmJrotiZs5c6ZiY2N10003STLjqKAg879B6enpOnjwoAoVKqSrr746R8vDzvTll19Kkvr16+f2+IABA7Lse+Y47dSpUzp48KAqVqyo6Ojoiz7umcePi4tTp06dXI/lz59f/fr107///quVK1e67X85Y72c1JKTsUZ0dLT27Nlz3mWD0dHR+uGHH7R3795LrqdYsWKSzDipevXqF/XacuXKZTsGy+7P9ewZWM4xlPPvhvN+0KBBbvs9+uijkuQany5evFhHjhzRE0884TaOlbKOwQoVKuTW8yokJET16tVz+3PMyfcM+ANCKSAAXXHFFdk2uty8ebPuvPNORUVFKTIyUsWLF3f9wkpJSbng+5YpU8btZ+egJSeBwtmvdb7e+dp9+/bp+PHjqlixYpb9snvsUvz555+SpKuvvjrLc5UrV3Y9Hxoaqueff14LFixQbGysGjVqpLFjx7oCHElq3Lix2rdvr2eeeUbFihXTHXfcoWnTpmW79v9cxo8fr59++knVq1fXhAkTtH379ov6PJUqVVLz5s2z3CIjI932q1ixYpbBylVXXSVJrkH5n3/+me334lwO4PxuduzYoauvvjpHTVwv9PclJ98zAACe5Gxk7uybs2fPHn3zzTfq2LGj6+RQRkaGXnnlFVWqVEmhoaEqVqyYihcvrp9//jlH46Uz/fnnnwoKCnI7MSdlPxY5fvy4hg8frtKlS7sd9/Dhwxd93DOPX6lSJVfI5nT273enyxnr5aSWnIw1hgwZokKFCqlevXqqVKmSEhIS9N1337m9ZuzYsdq0aZNKly6tevXqacSIERcVnO3evVtPP/20qlevrt27d2fbb+l8ChYsmO0YrHLlyln2rVSpktvPFSpUUFBQkNsYLCgoKMt4Ny4uTtHR0W5jMEk5CtBKlSqVZex35rhbytn3DPgDQikgAJ15ps3p8OHDaty4sTZs2KCRI0dq7ty5Wrx4sZ5//nlJZgB2IeeayWNZlldfa4cBAwbo119/1ZgxYxQWFqb/+7//U5UqVfTTTz9JMmekPv74YyUmJqpPnz7666+/9OCDD6pOnTr6999/L/j+zsFQ27Zt9dVXXykkJOSiehkEgpz8mV/oewYAwJPq1KmjypUr64MPPpAkffDBB7Isy+2qe88++6wGDRqkRo0a6b333tOiRYu0ePFiVatWLUfjpUvVt29fjR49Wnfffbc++ugjffXVV1q8eLGKFi3q1eOeyR/Ga1WqVNG2bds0a9Ys3XDDDfrkk090ww036Omnn3btc/fdd+v333/Xq6++qpIlS+qFF15QtWrVtGDBghwdw9lTbMGCBbrrrrs0evRoj8wGy4lzXbzHkxf1ycmfY06+Z8AfEEoBucSKFSt08OBBTZ8+Xf3791ebNm3UvHlztynadoqJiVFYWFi2s4UudgbRuZQtW1aStG3btizPbdu2zfW8U4UKFfToo4/qq6++0qZNm5SWlqaXXnrJbZ8GDRpo9OjRWrt2rd5//31t3rxZs2bNumAtzsHQhAkTVKJECY0ePVpfffVVjl57sbZv355lMPnrr79KkquZeNmyZbP9XpzLOp3fTYUKFbRt27ZLXrKYnZx8zwAAeErnzp21adMm/fzzz5o5c6YqVaqkunXrup7/+OOP1bRpU7311lvq2LGjWrRooebNm+vw4cMXfayyZcsqIyMjyxVqs/ud+/HHH6tr16566aWX1KFDB91888264YYbshz3YsKLsmXL6rfffssSap39+90XcjrWkMxMpHvuuUfTpk3Trl271Lp1a40ePdrtqnUlSpRQ79699dlnn2nnzp0qWrSoRo8efcE65syZoy+++EKjRo1SqVKlNG7cOK+eHPztt9/cft6+fbsyMjLcxmAZGRlZ9ktOTtbhw4fdxmCStGnTJo/VlpPvGbAboRSQSzjPmJwZTqSlpWnSpEl2leQmODhYzZs312effebWH2D79u05Put1Idddd51iYmI0ZcoUt2V2CxYs0C+//OK6Es6xY8ey/DKuUKGCIiIiXK87dOhQlqCndu3aknTBJXzOwdDIkSNVunRpSVLv3r1Vp04dDRo0SKmpqZf1Oc+2d+9etyu3pKam6p133lHt2rUVFxcnSbr11lu1evVqJSYmuvY7evSoXn/9dZUrV87Vp6p9+/Y6cOCAXnvttSzHudizqDn5ngEA8DTnrKjhw4dr/fr1brOkJDMmOft32uzZs/XXX39d9LGcfTEnTJjg9vi4ceOy7JvdcV999VWlp6e7Pea8ultOQrJbb71VSUlJ+vDDD12PnT59Wq+++qoKFSqkxo0b5+RjeEROxxoHDx50e11ISIiqVq0qy7J06tQppaenZ1nOGBMTo5IlS15w/HDkyBH169dP11xzjau3U8mSJTVq1CgtXLhQs2fP9sRHdTNx4kS3n1999VVJmX83br31VklZ/068/PLLkuQan7Zo0UIREREaM2ZMlvHTpcxku9D3DPiLCzcNARAQrr/+ehUuXFhdu3ZVv3795HA49O677/rV8rkRI0boq6++UsOGDdWrVy+lp6frtddeU/Xq1bV+/focvcepU6f0v//9L8vjRYoUUe/evfX888+rW7duaty4sTp16qTk5GSNHz9e5cqV08CBAyWZWUQ33XST7r77blWtWlX58uXTnDlzlJycrI4dO0qSZsyYoUmTJunOO+9UhQoVdOTIEb3xxhuKjIx0DS6yc+Zg6Mymp0FBQZoyZYrq16+vp556yjVgOZ8ff/xR7733XpbHK1SooPj4eNfPV111lbp37641a9YoNjZWb7/9tpKTkzVt2jTXPk888YQ++OAD3XLLLerXr5+KFCmiGTNmaOfOnfrkk09cvSi6dOmid955R4MGDdLq1at144036ujRo1qyZIl69+6tO+6444J1O+XkewYAwNPKly+v66+/Xp9//rkkZQml2rRpo5EjR6pbt266/vrrtXHjRr3//vu68sorL/pYtWvXVqdOnTRp0iSlpKTo+uuv19KlS7OdBd6mTRu9++67ioqKUtWqVZWYmKglS5aoaNGiWd4zODhYzz//vFJSUhQaGqpmzZopJiYmy3v27NlTU6dO1QMPPKB169apXLly+vjjj/Xdd99p3LhxioiIuOjPdD6ffPJJthfP6dq1a47HGi1atFBcXJwaNmyo2NhY/fLLL3rttdfUunVrRURE6PDhwypVqpQ6dOigWrVqqVChQlqyZInWrFlzwZnWw4YN0969e/Xpp5+6LXFLSEjQjBkzNGDAALVq1eqC30tKSkq2YzBJbg3GJWnnzp26/fbb1apVKyUmJuq9997Tvffeq1q1akmSatWqpa5du+r11193tdtYvXq1ZsyYobZt26pp06aSzIVqXnnlFfXo0UN169bVvffeq8KFC2vDhg06duyYZsyYcd6az3ah7xnwG76/4B+AnEpISLDO/mfauHHjc17e9bvvvrMaNGhgFShQwCpZsqT1+OOPW4sWLcpyWeGuXbtaZcuWdf3svEzwCy+8kOU9ddbljM++FLJzn+wu21u2bFmra9eubo8tXbrUuuaaa6yQkBCrQoUK1ptvvmk9+uijVlhY2Dm+hUxdu3Y95yV6K1So4Nrvww8/tK655horNDTUKlKkiNW5c2drz549rucPHDhgJSQkWJUrV7YKFixoRUVFWfXr17c++ugj1z4//vij1alTJ6tMmTJWaGioFRMTY7Vp08Zau3bteWvs37+/FRQUZK1evTrb5/v06WMFBQWd932cfx7nup35nZYtW9Zq3bq1tWjRIqtmzZpWaGioVbly5Wwv2bxjxw6rQ4cOVnR0tBUWFmbVq1fPmjdvXpb9jh07Zj311FNW+fLlrfz581txcXFWhw4drB07drjVd6G/Lzn5ngEA8IaJEydakqx69eplee7EiRPWo48+apUoUcIqUKCA1bBhQysxMdFq3Lix1bhxY9d+zt9306ZNcz2W3Tjo+PHjVr9+/ayiRYtaBQsWtG677TZr9+7dWcZQhw4dsrp162YVK1bMKlSokNWyZUtr69at2Y6X3njjDevKK6+0goOD3cZxZ9doWZaVnJzset+QkBCrRo0abjWf+VlyMtbLzvLly887Nvnmm28sy8rZWGPq1KlWo0aNrKJFi1qhoaFWhQoVrMcee8xKSUmxLMuyTp48aT322GNWrVq1rIiICKtgwYJWrVq1rEmTJp23xrVr11rBwcFWnz59sn1+9erVVlBQkNWvX7/zvk/jxo3P+1mdnH8XtmzZYnXo0MGKiIiwChcubPXp08c6fvy423ueOnXKeuaZZ1xjq9KlS1tDhw61Tpw4keX4X3zxhXX99ddbBQoUsCIjI6169epZH3zwgVt92f2/wNnj+wt9z4C/cFiWH02jAJAntW3bVps3b86y1h4XVq5cOVWvXl3z5s2zuxQAAIA8Y8SIEXrmmWe0f/9+FStWzO5ygIBFTykAPnX8+HG3n3/77Td9+eWXatKkiT0FAQAAAABsQU8pAD515ZVX6oEHHtCVV16pP//8U5MnT1ZISIgef/xxu0sDAAAAAPgQoRQAn2rVqpU++OADJSUlKTQ0VPHx8Xr22WdVqVIlu0sDAAAAAPgQPaUAAAAAAADgc/SUAgAAAAAAgM8RSgEAAAAAAMDn6CklKSMjQ3v37lVERIQcDofd5QAAAB+xLEtHjhxRyZIlFRTEuTpPY4wFAEDelNMxFqGUpL1796p06dJ2lwEAAGyye/dulSpVyu4ych3GWAAA5G0XGmMRSkmKiIiQZL6syMhIm6sBAAC+kpqaqtKlS7vGAvAsxlgAAORNOR1jEUpJrunkkZGRDJgAAMiDWFrmHYyxAADI2y40xqJ5AgAAAAAAAHyOUAoAAAAAAAA+RygFAAAAAAAAnyOUAgAAAAAAgM8RSgEAAAAAAMDnCKUAAAAAAADgc4RSAAAAAAAA8DlCKQAAAAAAAPgcoRQAAAAAAAB8jlAKAAAAAAAAPkcoBQAAAAAAAJ8jlAIAAAAAAIDPEUoBAAAAAADA5wilAAAAAAAA4HOEUgAAAAAAAPA5QikAAAAAAAD4HKEUAAAAAAAAfI5QCgAAAAAAAD5HKAUAAAAAAACfI5Tyon/+kRo2lK67TrIsu6sBAADIRe67T6pVS9q40e5KAADAJSKU8qKgIGnVKmndOiktze5qAAAAcpEtW6Sff5Z27bK7EgAAcIkIpbyoQIHM7ePH7asDAAAg1ylRwtz//be9dQAAgEtGKOVFISGSw2G2CaUAAAA8iFAKAICARyjlRQ5H5mwpQikAAAAPIpQCACDgEUp5GaEUAACAFxBKAQAQ8AilvIxQCgAAwAsIpQAACHiEUl5GKAUAAOAFhFIAAAQ8QikvI5QCAADwAmcolZQkWZa9tQAAgEtCKOVlhFIAAABeEBtr7tPSpEOH7K0FAABcEkIpLyOUAgAA8IKwMKlwYbPNEj4AAAISoZSXEUoBAAB4CX2lAAAIaIRSXkYoBQAA4CWEUgAABDRCKS8jlAIAAPASQikAAAIaoZSXEUoBAAB4CaEUAAABjVDKywilAAAAvIRQCgCAgEYo5WWEUgAAAF5CKAUAQEAjlPIyQikAAAAvcYZSSUn21gEAAC4JoZSXEUoBAAB4SVycuWemFAAAAYlQyssIpQAAALzEOVPqyBHp6FF7awEAABeNUMrLCKUAAAC8JCJCCg8328yWAgAg4BBKeRmhFAAAgJc4HDQ7BwAggBFKeRmhFAAAgBcRSgEAELAIpbyMUAoAAMCLCKUAAAhYhFJeRigFAADgRYRSAAAELEIpLyOUAgAA8CJCKQAAAhahlJcRSgEAAHiRM5RKSrK3DgAAcNEIpbyMUAoAAMCL4uLMPTOlAAAIOIRSXkYoBQAA4EUs3wMAIGARSnmZM5Q6dUpKT7e3FgAAgFzHGUodOCClpdlbCwAAuCiEUl7mDKUkZksBAAB4XNGiUr58Zjs52d5aAADARSGU8jJCKQAAAC8KCqKvFAAAAYpQysuCgqSQELNNKAUAAOAF9JUCACAgEUr5AM3OAQAAvIhQCgCAgEQo5QOEUgAAAF7kDKWSkuytAwAAXBRCKR8glAIAAPAiZkoBABCQCKV8gFAKAADAi2h0DgBAQCKU8gFnKHXihL11AAAA5ErMlAIAICARSvkAM6UAAEBOTJ48WTVr1lRkZKQiIyMVHx+vBQsWuJ4/ceKEEhISVLRoURUqVEjt27dXcnKy23vs2rVLrVu3Vnh4uGJiYvTYY4/p9OnTbvusWLFC1157rUJDQ1WxYkVNnz49Sy0TJ05UuXLlFBYWpvr162v16tVe+cweQSgFAEBAIpTyAUIpAACQE6VKldJzzz2ndevWae3atWrWrJnuuOMObd68WZI0cOBAzZ07V7Nnz9bKlSu1d+9etWvXzvX69PR0tW7dWmlpaVq1apVmzJih6dOna/jw4a59du7cqdatW6tp06Zav369BgwYoB49emjRokWufT788EMNGjRITz/9tH788UfVqlVLLVu21L59+3z3ZVwMZyiVnCxlZNhbCwAAyDGHZVmW3UXYLTU1VVFRUUpJSVFkZKTH3/+OO6QvvpBef1166CGPvz0AALhE3h4DeEKRIkX0wgsvqEOHDipevLhmzpypDh06SJK2bt2qKlWqKDExUQ0aNNCCBQvUpk0b7d27V7GxsZKkKVOmaMiQIdq/f79CQkI0ZMgQzZ8/X5s2bXIdo2PHjjp8+LAWLlwoSapfv77q1q2r1157TZKUkZGh0qVLq2/fvnriiSdyXLvPvt9Tp6TQUMmyTDAVE+O9YwEAgAvK6RiAmVI+wEwpAABwsdLT0zVr1iwdPXpU8fHxWrdunU6dOqXmzZu79qlcubLKlCmjxMRESVJiYqJq1KjhCqQkqWXLlkpNTXXNtkpMTHR7D+c+zvdIS0vTunXr3PYJCgpS8+bNXfv4nfz5pWLFzDZL+AAACBiEUj5AKAUAAHJq48aNKlSokEJDQ/XII49ozpw5qlq1qpKSkhQSEqLo6Gi3/WNjY5WUlCRJSkpKcguknM87nzvfPqmpqTp+/LgOHDig9PT0bPdxvse5nDx5UqmpqW43n6GvFAAAAYdQygcIpQAAQE5dffXVWr9+vX744Qf16tVLXbt21ZYtW+wuK0fGjBmjqKgo16106dK+O7gzlLpAcAYAAPwHoZQPEEoBAICcCgkJUcWKFVWnTh2NGTNGtWrV0vjx4xUXF6e0tDQdPnzYbf/k5GTFxcVJkuLi4rJcjc/584X2iYyMVIECBVSsWDEFBwdnu4/zPc5l6NChSklJcd1279590Z//kjlrY6YUAAABg1DKBwilAADApcrIyNDJkydVp04d5c+fX0uXLnU9t23bNu3atUvx8fGSpPj4eG3cuNHtKnmLFy9WZGSkqlat6trnzPdw7uN8j5CQENWpU8dtn4yMDC1dutS1z7mEhoYqMjLS7eYzLN8DACDg5LO7gLyAUAoAAOTE0KFDdcstt6hMmTI6cuSIZs6cqRUrVmjRokWKiopS9+7dNWjQIBUpUkSRkZHq27ev4uPj1aBBA0lSixYtVLVqVd1///0aO3askpKSNGzYMCUkJCg0NFSS9Mgjj+i1117T448/rgcffFDLli3TRx99pPnz57vqGDRokLp27arrrrtO9erV07hx43T06FF169bNlu8lRwilAAAIOIRSPkAoBQAAcmLfvn3q0qWL/v77b0VFRalmzZpatGiRbr75ZknSK6+8oqCgILVv314nT55Uy5YtNWnSJNfrg4ODNW/ePPXq1Uvx8fEqWLCgunbtqpEjR7r2KV++vObPn6+BAwdq/PjxKlWqlN588021bNnStc8999yj/fv3a/jw4UpKSlLt2rW1cOHCLM3P/QqhFAAAAcdhWZZldxF2S01NVVRUlFJSUrwyzXzyZKl3b6ldO+mTTzz+9gAA4BJ5ewyQ1/n0+/32W+nGG6Urr5R27PDusQAAwHnldAxATykfYKYUAACAl505U4pzrgAABARCKR8glAIAAPAyZyh1/LiUmmpvLQAAIEcIpXyAUAoAAMDLwsMl5/IA+koBABAQCKV8gFAKAADAB5yzpZKS7K0DAADkCKGUDxBKAQAA+EBcnLlnphQAAAGBUMoHCKUAAAB84Mxm5wAAwO/ZHkr99ddfuu+++1S0aFEVKFBANWrU0Nq1a13PW5al4cOHq0SJEipQoICaN2+u3377ze09/vnnH3Xu3FmRkZGKjo5W9+7d9e+///r6o5wToRQAAIAPEEoBABBQbA2lDh06pIYNGyp//vxasGCBtmzZopdeekmFCxd27TN27FhNmDBBU6ZM0Q8//KCCBQuqZcuWOnHihGufzp07a/PmzVq8eLHmzZunr7/+Wj179rTjI2WLUAoAAMAHCKUAAAgo+ew8+PPPP6/SpUtr2rRprsfKly/v2rYsS+PGjdOwYcN0xx13SJLeeecdxcbG6rPPPlPHjh31yy+/aOHChVqzZo2uu+46SdKrr76qW2+9VS+++KJKlizp2w+VjTNDKcuSHA576wEAAMiVCKUAAAgots6U+uKLL3TdddfprrvuUkxMjK655hq98cYbrud37typpKQkNW/e3PVYVFSU6tevr8TERElSYmKioqOjXYGUJDVv3lxBQUH64Ycfsj3uyZMnlZqa6nbzJmcoZVlSWppXDwUAAJB3EUoBABBQbA2lfv/9d02ePFmVKlXSokWL1KtXL/Xr108zZsyQJCX9dznf2NhYt9fFxsa6nktKSlJMTIzb8/ny5VORIkVc+5xtzJgxioqKct1Kly7t6Y/mxhlKSSzhAwAA8BpCKQAAAoqtoVRGRoauvfZaPfvss7rmmmvUs2dPPfTQQ5oyZYpXjzt06FClpKS4brt37/bq8fLnl4L++6YJpQAAALzEGUodPsygCwCAAGBrKFWiRAlVrVrV7bEqVapo165dkqS4uDhJUnJysts+ycnJrufi4uK0b98+t+dPnz6tf/75x7XP2UJDQxUZGel28yaHg2bnAAAAXhcdLYWGmu2zxo8AAMD/2BpKNWzYUNu2bXN77Ndff1XZsmUlmabncXFxWrp0qev51NRU/fDDD4qPj5ckxcfH6/Dhw1q3bp1rn2XLlikjI0P169f3wafIGUIpAAAAL3M4JOdJSZbwAQDg92wNpQYOHKjvv/9ezz77rLZv366ZM2fq9ddfV0JCgiTJ4XBowIAB+t///qcvvvhCGzduVJcuXVSyZEm1bdtWkplZ1apVKz300ENavXq1vvvuO/Xp00cdO3b0iyvvORFKAQAA+AB9pQAACBj57Dx43bp1NWfOHA0dOlQjR45U+fLlNW7cOHXu3Nm1z+OPP66jR4+qZ8+eOnz4sG644QYtXLhQYWFhrn3ef/999enTRzfddJOCgoLUvn17TZgwwY6PdE6EUgAAAD5AKAUAQMCwNZSSpDZt2qhNmzbnfN7hcGjkyJEaOXLkOfcpUqSIZs6c6Y3yPMaZoRFKAQAAeBGhFAAAAcPW5Xt5CTOlAAAAfIBQCgCAgEEo5SOEUgAAAD5AKAUAQMAglPIRQikAAAAfIJQCACBgEEr5CKEUAACADxBKAQAQMAilfIRQCgAAwAecodT+/VJ6ur21AACA8yKU8hFCKQAAAB8oXlwKCpIyMqR9++yuBgAAnAehlI8QSgEAAPhAcLAUE2O2WcIHAIBfI5TyEUIpAAAAH6GvFAAAAYFQykcIpQAAAHyEUAoAgIBAKOUjhFIAAAA+QigFAEBAIJTyEUIpAAAAHyGUAgAgIBBK+QihFAAAgI8QSgEAEBAIpXyEUAoAAMBHnKFUUpK9dQAAgPMilPIRQikAAAAfYaYUAAABgVDKRwilAAAAfCQuztz//bdkWfbWAgAAzolQykcIpQAAAHzEGUqlpUmHDtlbCwAAOCdCKR8hlAIAAPCRsDCpcGGzzRI+AAD8FqGUjxBKAQAA+BB9pQAA8HuEUj5CKAUAAOBDhFIAAPg9QikfIZQCAADwIUIpAAD8HqGUjzhDqVOnpPR0e2sBAADI9QilAADwe4RSPuIMpSRmSwEAAHidM5RKSrK3DgAAcE6EUj5CKAUAAOBDzJQCAMDvEUr5SFCQFBJitgmlAAAAvCwuztwTSgEA4LcIpXyIZucAAAA+wkwpAAD8HqGUDxFKAQAA+IgzlDpyRDp61N5aAABAtgilfIhQCgAAwEciIqTwcLPNbCkAAPwSoZQPEUoBAAD4iMPBEj4AAPwcoZQPnSuUGjtWKllS+u0339cEAACQaxFKAQDg1wilfOhcodSsWWasNHeu72sCAADItQilAADwa4RSPnSuUGrXLnO/caNv6wEAAMjVnKFUUpK9dQAAgGwRSvlQdqHU0aPSwYNmm1AKAADAg5gpBQCAXyOU8qHsQinnLClJ2rxZSk/3bU0AAAC5VlycuSeUAgDALxFK+VB2odSff2Zunzgh7djh25oAAAByLWZKAQDg1wilfOhCoZTEEj4AAACPIZQCAMCvEUr50IWW70mEUgAAAB7jDKUOHJDS0uytBQAAZEEo5UPnmynlHDMRSgEAAHhI0aJSvnxmOznZ3loAAEAWhFI+dL6ZUq1bm3tCKQAAAA8JCqLZOQAAfoxQyofON1PKGUpt3y4dO+bbugAAAHIt+koBAOC3CKV86OxQ6vRp6a+/zHa9elKxYpJlSVu22FMfAABAruMMpZKS7K0DAABkQSjlQ2eHUnv3SunpUv78ZmZ5jRrmcZbwAQAAeAgzpQAA8FuEUj50dijlXLpXurRpeUAoBQAA4GH0lAIAwG8RSvnQuUKpsmXNPaEUAACAhzFTCgAAv0Uo5UNnh1LOK++VKWPunaHUzz/7ti4AAIBci1AKAAC/RSjlQxeaKVWtmuRwSPv2mRsAAAAuE6EUAAB+i1DKh841U8oZShUqJF15pdlmCR8AAIAHOEOp5GQpI8PeWgAAgBtCKR8610wp5/I9ib5SAAAAHhUba6ainz4tHThgdzUAAOAMhFI+dGYoZVlZl+9JhFIAAAAelT+/VKyY2U5KsrcWAADghlDKh84MpQ4elI4dMz+XLp25D6EUAACAh9FXCgAAv0Qo5UPOUEqSfvvN3MfGSmFhmY87Q6nNm2l7AAAA4BGEUgAA+CVCKR86M5TautXcn7l0T5IqVpRCQ80sqt9/911tAAAAuVZcnLknlAIAwK8QSvlQ/vxS0H/f+LZt5v7MJueSlC+fVLWq2WYJHwAAgAcwUwoAAL9EKOVDDkfmbKlzzZSS6CsFAADgUYRSAAD4JUIpHzs7lDp7ppREKAUAAOBRhFIAAPglQikfc4ZSO3aYe2ZKAQAAeBmhFAAAfolQysecodTp0+Y+u1CqWjVz/9tvUnq6b+oCAADItc4MpSzL3loAAIALoZSPnXkFPin75XvR0eY+I0M6edLrJQEAAORuzlDq+HHpyBF7awEAAC6EUj52ZihVqJBUuHDWfcLCMrdPnPB+TQAAALlaeLgUGWm2WcIHAIDfIJTysTNDqTJlzBX5zpYvnxT0358MoRQAAIAH0FcKAAC/QyjlY2eGUtn1k3JyzpZi+R4AAIAHxMWZe0IpAAD8BqGUj11sKMVMKQAAAA9gphQAAH6HUMrHzl6+dy6hoeaeUAoAAMADCKUAAPA7hFI+xvI9AAAAGxBKAQDgdwilfCynM6VYvgcAAOBBhFIAAPgdQikfo6cUAACADQilAADwO4RSPuYMpYKDM8dG2aGnFAAAgAc5B15JSfbWAQAAXAilfMwZSpUqJeXLd+796CkFAADgQc5Q6tAhzvoBAOAnCKV8zBlKnW/pnsTyPQAAAI+Kjs6cis5sKQAA/AKhlI/Vq2cCp1tuOf9+LN8DAADwIIdDiosz2/SVAgDAL5xnARm8oX59KSVFCgk5/34s3wMAAPCwEiWkP/8klAIAwE8wU8oGFwqkJJbvAQAAeBxX4AMAwK8QSvkplu8BAAB4GKEUAAB+hVDKT7F8DwAAwMMIpQAA8CuEUn6K5XsAAAAeRigFAIBfIZTyU4RSAADkPWPGjFHdunUVERGhmJgYtW3bVtu2bXPbp0mTJnI4HG63Rx55xG2fXbt2qXXr1goPD1dMTIwee+wxnT592m2fFStW6Nprr1VoaKgqVqyo6dOnZ6ln4sSJKleunMLCwlS/fn2tXr3a45/Zp5yhVFKSvXUAAABJhFJ+y9lTiuV7AADkHStXrlRCQoK+//57LV68WKdOnVKLFi109OhRt/0eeugh/f33367b2LFjXc+lp6erdevWSktL06pVqzRjxgxNnz5dw4cPd+2zc+dOtW7dWk2bNtX69es1YMAA9ejRQ4sWLXLt8+GHH2rQoEF6+umn9eOPP6pWrVpq2bKl9u3b5/0vwluYKQUAgF/JZ3cByB4zpQAAyHsWLlzo9vP06dMVExOjdevWqVGjRq7Hw8PDFRcXl+17fPXVV9qyZYuWLFmi2NhY1a5dW6NGjdKQIUM0YsQIhYSEaMqUKSpfvrxeeuklSVKVKlX07bff6pVXXlHLli0lSS+//LIeeughdevWTZI0ZcoUzZ8/X2+//baeeOIJb3x873OGUvv2SenpUnCwvfUAAJDHMVPKTxFKAQCAlJQUSVKRIkXcHn///fdVrFgxVa9eXUOHDtWxY8dczyUmJqpGjRqKjY11PdayZUulpqZq8+bNrn2aN2/u9p4tW7ZUYmKiJCktLU3r1q1z2ycoKEjNmzd37ROQiheXgoKkjAwTTAEAAFsxU8pPOZfvEUoBAJA3ZWRkaMCAAWrYsKGqV6/uevzee+9V2bJlVbJkSf38888aMmSItm3bpk8//VSSlJSU5BZISXL9nPRfL6Vz7ZOamqrjx4/r0KFDSk9Pz3afrVu3nrPmkydP6uQZvQdSU1Mv4ZN7UXCwFBNjekr9/XfmzCkAAGALQik/5ZwpRU8pAADypoSEBG3atEnffvut2+M9e/Z0bdeoUUMlSpTQTTfdpB07dqhChQq+LtPNmDFj9Mwzz9hawwWVKJEZSgEAAFuxfM9PsXwPAIC8q0+fPpo3b56WL1+uUqVKnXff+vXrS5K2b98uSYqLi1NycrLbPs6fnX2ozrVPZGSkChQooGLFiik4ODjbfc7Vy0qShg4dqpSUFNdt9+7dOfi0PkazcwAA/AahlJ9i+R4AAHmPZVnq06eP5syZo2XLlql8+fIXfM369eslSSX+C1vi4+O1ceNGt6vkLV68WJGRkapataprn6VLl7q9z+LFixUfHy9JCgkJUZ06ddz2ycjI0NKlS137ZCc0NFSRkZFuN79DKAUAgN+wNZQaMWKEHA6H261y5cqu50+cOKGEhAQVLVpUhQoVUvv27bOcsdu1a5dat26t8PBwxcTE6LHHHtPp06d9/VE8juV7AADkPQkJCXrvvfc0c+ZMRUREKCkpSUlJSTp+/LgkaceOHRo1apTWrVunP/74Q1988YW6dOmiRo0aqWbNmpKkFi1aqGrVqrr//vu1YcMGLVq0SMOGDVNCQoJC/zvr9cgjj+j333/X448/rq1bt2rSpEn66KOPNHDgQFctgwYN0htvvKEZM2bol19+Ua9evXT06FHX1fgCljOU+q+/FgAAsI/tPaWqVaumJUuWuH7Oly+zpIEDB2r+/PmaPXu2oqKi1KdPH7Vr107fffedJCk9PV2tW7dWXFycVq1apb///ltdunRR/vz59eyzz/r8s3gSy/cAAMh7Jk+eLElq0qSJ2+PTpk3TAw88oJCQEC1ZskTjxo3T0aNHVbp0abVv317Dhg1z7RscHKx58+apV69eio+PV8GCBdW1a1eNHDnStU/58uU1f/58DRw4UOPHj1epUqX05ptvqmXLlq597rnnHu3fv1/Dhw9XUlKSateurYULF2Zpfh5wmCkFAIDfcFiWZdl18BEjRuizzz5zTTs/U0pKiooXL66ZM2eqQ4cOkqStW7eqSpUqSkxMVIMGDbRgwQK1adNGe/fudQ2QpkyZoiFDhmj//v0KCQnJUR2pqamKiopSSkqK30wzX7tWqltXKl1a2rXL7moAAMid/HEMkJv45fc7Z47Urp3UoIGUmGh3NQAA5Eo5HQPY3lPqt99+U8mSJXXllVeqc+fO2vVfArNu3TqdOnVKzZs3d+1buXJllSlTRon/DSASExNVo0YNtzN2LVu2VGpqqjZv3nzOY548eVKpqaluN3/j7CnF8j0AAAAPcjZqZ6YUAAC2szWUql+/vqZPn66FCxdq8uTJ2rlzp2688UYdOXJESUlJCgkJUXR0tNtrYmNjlfRfD4CkpKQsU8idPyedp0/AmDFjFBUV5bqVLl3asx/MA1i+BwAA4AVnLt+zb8EAAACQzT2lbrnlFtd2zZo1Vb9+fZUtW1YfffSRChQo4LXjDh06VIMGDXL9nJqa6nfBFKEUAACAFzhnSqWlSYcOSUWK2FsPAAB5mO3L984UHR2tq666Stu3b1dcXJzS0tJ0+PBht32Sk5MV999gIi4uLsvV+Jw/O/fJTiBcrti5fC8tjZN4AAAAHhMWJhUubLZZwgcAgK38KpT6999/tWPHDpUoUUJ16tRR/vz5tXTpUtfz27Zt065duxQfHy9Jio+P18aNG7Vv3z7XPosXL1ZkZKSqVq3q8/o9yTlTSqKvFAAAgEdxBT4AAPyCraHU4MGDtXLlSv3xxx9atWqV7rzzTgUHB6tTp06KiopS9+7dNWjQIC1fvlzr1q1Tt27dFB8frwYNGkiSWrRooapVq+r+++/Xhg0btGjRIg0bNkwJCQkKdU41ClBnhlIs4QMAAPAgQikAAPyCrT2l9uzZo06dOungwYMqXry4brjhBn3//fcqXry4JOmVV15RUFCQ2rdvr5MnT6ply5aaNGmS6/XBwcGaN2+eevXqpfj4eBUsWFBdu3bVyJEj7fpIHpM/f+Y2oRQAAIAHOUOp81wYBwAAeJ+todSsWbPO+3xYWJgmTpyoiRMnnnOfsmXL6ssvv/R0abZzOMxsqRMnWL4HAADgUcyUAgDAL/hVTym44wp8AAAAXkAoBQCAXyCU8mOEUgAAAF7gvEozoRQAALYilPJjzl7tLN8DAADwIGZKAQDgFwil/BgzpQAAALyAUAoAAL9AKOXHCKUAAAC8wBlKHTkiHT1qby0AAORhhFJ+jOV7AAAAXhARIYWHm21mSwEAYBtCKT/GTCkAAAAvcDhYwgcAgB8glPJjhFIAAABe4gylkpLsrQMAgDyMUMqPsXwPAADAS5gpBQCA7Qil/BgzpQAAALyEUAoAANsRSvkxQikAAAAviYsz94RSAADYhlDKjxFKAQAAeAkzpQAAsB2hlB+jpxQAAICXEEoBAGA7Qik/xkwpAAAALyGUAgDAdoRSfoxQCgAAwEucodSBA1Jamr21AACQRxFK+TGW7wEAAHhJ0aJSvnxmOznZ3loAAMijCKX8GDOlAAAAvCQoKPMKfElJ9tYCAEAeRSjlxwilAAAAvIi+UgAA2IpQyo+xfA8AAMCLCKUAALAVoZQfY6YUAACAFzmX7xFKAQBgC0IpP0YoBQAA4EXMlAIAwFaEUn6MUAoAAMCLCKUAALAVoZQfo6cUAACAFxFKAQBgK0IpP8ZMKQAAAC8ilAIAwFaEUn6MUAoAAMCLnKFUcrKUkWFvLQAA5EGEUn6M5XsAAABeFBsrORzS6dPSwYN2VwMAQJ5DKOXHmCkFAADgRfnzS8WKmW2W8AEA4HOEUn6MUAoAAMDL6CsFAIBtCKX82JnL9yzL3loAAABypbg4c08oBQCAzxFK+THnTCnLkk6dsrcWAACAXImZUgAA2IZQyo85QymJJXwAAABeQSgFAIBtCKX8mHP5nsQV+AAAALyCUAoAANsQSvkxh0MKCTHbzJQCAADwAkIpAABsQyjl57gCHwAAgBc5Q6mkJHvrAAAgDyKU8nOEUgAAAF505kwpLncMAIBPEUr5OWdfKXpKAQAAeIEzlDp2TDpyxN5aAADIYwil/BwzpQAAALwoPFyKjDTb9JUCAMCnCKX8HKEUAACAl8XFmXtCKQAAfIpQys+xfA8AAMDLuAIfAAC2IJTyc8yUAgAA8DJCKQAAbEEo5ecIpQAAALyMUAoAAFsQSvk5ZyjF8j0AAAAvIZQCAMAWhFJ+ztlTiplSAAAAXuIMpZKS7K0DAIA8hlDKz7F8DwAAwMuYKQUAgC0Ipfwcy/cAAAC8jFAKAABbEEr5OZbvAQAAeJkzlDp0iEEXAAA+RCjl51i+BwAA4GXR0ZlnAukrBQCAzxBK+TlCKQAAAC9zOKS4OLPNEj4AAHyGUMrPOU/a0VMKAADAi+grBQCAzxFK+TlmSgEAAPgAoRQAAD5HKOXnCKUAAAB8gFAKAACfI5Tyc85QiuV7AAAAXuQMpWh0DgCAzxBK+TlnTylmSgEAAHgRM6UAAPA5Qik/x/I9AAAAHyCUAgDA5wil/BzL9wAAAHyAUAoAAJ8jlPJzLN8DAADwgbg4c79vn5Sebm8tAADkEYRSfo7lewAAAD4QEyMFBUkZGSaYAgAAXkco5edYvgcAAOADwcEmmJJYwgcAgI8QSvk5lu8BAAD4CH2lAADwKUIpP8fyPQAAAB8hlAIAwKcuKZTavXu39uzZ4/p59erVGjBggF5//XWPFQaDUAoAgMDA+CgXcIZSSUn21gEAQB5xSaHUvffeq+XLl0uSkpKSdPPNN2v16tV66qmnNHLkSI8WmNfRUwoAgMDA+CgXYKYUAAA+dUmh1KZNm1SvXj1J0kcffaTq1atr1apVev/99zV9+nRP1pfnOXtKpadLp0/bWwsAADg3xke5AKEUAAA+dUmh1KlTpxT6X1qyZMkS3X777ZKkypUr629+iXuUc6aUxBI+AAD8GeOjXIBQCgAAn7qkUKpatWqaMmWKvvnmGy1evFitWrWSJO3du1dFixb1aIF5nXOmlMQSPgAA/Bnjo1wgLs7cE0oBAOATlxRKPf/885o6daqaNGmiTp06qVatWpKkL774wjVtHZ4RHCzly2e2mSkFAID/YnyUC5w5U8qy7K0FAIA8IN+lvKhJkyY6cOCAUlNTVbhwYdfjPXv2VHh4uMeKgxEWJv37L6EUAAD+jPFRLuCcKZWWJh06JBUpYm89AADkcpc0U+r48eM6efKka8D1559/aty4cdq2bZtiYmI8WiC4Ah8AAIGA8VEuEBYmOQNFlvABAOB1lxRK3XHHHXrnnXckSYcPH1b9+vX10ksvqW3btpo8ebJHC0RmXylmSgEA4L8YH+USziV8SUn21gEAQB5wSaHUjz/+qBtvvFGS9PHHHys2NlZ//vmn3nnnHU2YMMGjBSJzphShFAAA/ovxUS7BFfgAAPCZSwqljh07poiICEnSV199pXbt2ikoKEgNGjTQn3/+6dECQSgFAEAgYHyUSxBKAQDgM5cUSlWsWFGfffaZdu/erUWLFqlFixaSpH379ikyMtKjBYKeUgAABALGR7kEoRQAAD5zSaHU8OHDNXjwYJUrV0716tVTfHy8JHNW8JprrvFogaCnFAAAgYDxUS5BKAUAgM/ku5QXdejQQTfccIP+/vtv1apVy/X4TTfdpDvvvNNjxcFg+R4AAP6P8VEuERdn7gmlAADwuksKpSQpLi5OcXFx2rNnjySpVKlSqlevnscKQyaW7wEAEBgYH+UCzJQCAMBnLmn5XkZGhkaOHKmoqCiVLVtWZcuWVXR0tEaNGqWMjAxP15jnsXwPAAD/x/golyCUAgDAZy5pptRTTz2lt956S88995waNmwoSfr22281YsQInThxQqNHj/ZokXkdy/cAAPB/jI9yCWcodeSIdPSoVLCgvfUAAJCLXVIoNWPGDL355pu6/fbbXY/VrFlTV1xxhXr37s2gy8NYvgcAgP9jfJRLRERI4eHSsWNSUpJUoYLdFQEAkGtd0vK9f/75R5UrV87yeOXKlfXPP/9cdlFwx/I9AAD8H+OjXMLhYAkfAAA+ckmhVK1atfTaa69lefy1115TzZo1L7souGP5HgAA/o/xUS5CKAUAgE9c0vK9sWPHqnXr1lqyZIni4+MlSYmJidq9e7e+/PJLjxYIlu8BABAIGB/lIoRSAAD4xCXNlGrcuLF+/fVX3XnnnTp8+LAOHz6sdu3aafPmzXr33XcvqZDnnntODodDAwYMcD124sQJJSQkqGjRoipUqJDat2+v5ORkt9ft2rVLrVu3Vnh4uGJiYvTYY4/p9OnTl1SDv2KmFAAA/s8b4yPYxBlK7d1rbx0AAORylzRTSpJKliyZpWHnhg0b9NZbb+n111+/qPdas2aNpk6dmmVq+8CBAzV//nzNnj1bUVFR6tOnj9q1a6fvvvtOkpSenq7WrVsrLi5Oq1at0t9//60uXboof/78evbZZy/1o/kdekoBABAYPDk+go2qVjX3770n/d//cQU+AAC85JJmSnnSv//+q86dO+uNN95Q4cKFXY+npKTorbfe0ssvv6xmzZqpTp06mjZtmlatWqXvv/9ekvTVV19py5Yteu+991S7dm3dcsstGjVqlCZOnKi0tDS7PpLHMVMKAIC8YcyYMapbt64iIiIUExOjtm3batu2bW77eGom+YoVK3TttdcqNDRUFStW1PTp07PUM3HiRJUrV05hYWGqX7++Vq9e7fHP7Je6dpXKlZP++ksaO9buagAAyLVsD6USEhLUunVrNW/e3O3xdevW6dSpU26PV65cWWXKlFFiYqIk06ehRo0aio2Nde3TsmVLpaamavPmzb75AD5ATykAAPKGlStXKiEhQd9//70WL16sU6dOqUWLFjp69Khrn4EDB2ru3LmaPXu2Vq5cqb1796pdu3au550zydPS0rRq1SrNmDFD06dP1/Dhw1377Ny5U61bt1bTpk21fv16DRgwQD169NCiRYtc+3z44YcaNGiQnn76af3444+qVauWWrZsqX379vnmy7BTWJj04otme+xY6c8/7a0HAIBc6pKX73nCrFmz9OOPP2rNmjVZnktKSlJISIiio6PdHo+NjVVSUpJrnzMDKefzzufO5eTJkzp5RsKTmpp6qR/BJ1i+BwBA3rBw4UK3n6dPn66YmBitW7dOjRo1cs0knzlzppo1ayZJmjZtmqpUqaLvv/9eDRo0cM0kX7JkiWJjY1W7dm2NGjVKQ4YM0YgRIxQSEqIpU6aofPnyeumllyRJVapU0bfffqtXXnlFLVu2lCS9/PLLeuihh9StWzdJ0pQpUzR//ny9/fbbeuKJJ3z4rdikXTupcWNp5UppyBBp1iy7KwIAINe5qFDqzLNw2Tl8+HCO32v37t3q37+/Fi9erDDnVCAfGTNmjJ555hmfHvNysHwPAAD/5cnx0dlSUlIkSUWKFJF04ZnkDRo0OOdM8l69emnz5s265pprlJiYmGWWesuWLV0XnElLS9O6des0dOhQ1/NBQUFq3ry5a8Z6rudwSOPGSddeK334oZSQIN14o91VAQCQq1zU8r2oqKjz3sqWLasuXbrk6L3WrVunffv26dprr1W+fPmUL18+rVy5UhMmTFC+fPkUGxurtLS0LAO55ORkxcXFSZLi4uKy9FBw/uzcJztDhw5VSkqK67Z79+6L+BZ8j+V7AAD4L0+Oj86UkZGhAQMGqGHDhqpevbokz80kP9c+qampOn78uA4cOKD09PRs97nQbPTU1FS3W0CrXVt66CGzPWCAlJFhZzUAAOQ6FzVTatq0aR478E033aSNGze6PdatWzdVrlxZQ4YMUenSpZU/f34tXbpU7du3lyRt27ZNu3btUnx8vCQpPj5eo0eP1r59+xQTEyNJWrx4sSIjI1XVedWUbISGhirUuSYuALB8DwAA/+XJ8dGZEhIStGnTJn377bdeeX9vCLTZ6DkyapRZuvfjj9L06dKDD9pdEQAAuYZtjc4jIiJUvXp1t1vBggVVtGhRVa9eXVFRUerevbsGDRqk5cuXa926derWrZvi4+PVoEEDSVKLFi1UtWpV3X///dqwYYMWLVqkYcOGKSEhIaBCpwth+R4AAHlLnz59NG/ePC1fvlylSpVyPR4XF+eRmeTn2icyMlIFChRQsWLFFBwcnO0+uWk2eo7ExEjOJvFPPikF+uwvAAD8iO1X3zufV155RW3atFH79u3VqFEjxcXF6dNPP3U9HxwcrHnz5ik4OFjx8fG677771KVLF40cOdLGqj2P5XsAAOQNlmWpT58+mjNnjpYtW6by5cu7PV+nTh3XTHKn7GaSb9y40e0qeWfPJI+Pj3d7D+c+zvcICQlRnTp13PbJyMjQ0qVLXftkJzQ0VJGRkW63XKFvX6lSJSk5WXr2WburAQAg13BYlmXZXYTdUlNTFRUVpZSUFL8cPP34o1SnjlSqlJQbTjgCAOAv/G0M0Lt3b82cOVOff/65rr76atfjUVFRKlCggCSpV69e+vLLLzV9+nRFRkaqb9++kqRVq1ZJktLT01W7dm2VLFlSY8eOVVJSku6//3716NFDz/4XqOzcuVPVq1dXQkKCHnzwQS1btkz9+vXT/PnzXVff+/DDD9W1a1dNnTpV9erV07hx4/TRRx9p69atWXpNnYu/fb+XZd486bbbpJAQacsWqUIFuysCAMBv5XQMcFE9pWAPekoBAJA3TJ48WZLUpEkTt8enTZumBx54QJKZSR4UFKT27dvr5MmTatmypSZNmuTa1zmTvFevXoqPj1fBggXVtWtXt5nk5cuX1/z58zVw4ECNHz9epUqV0ptvvukKpCTpnnvu0f79+zV8+HAlJSWpdu3aWrhwYY4DqVyndWupRQvpq6+kwYOlOXPsrggAgIDHTCn5/1m8HTukihWliAjaGAAA4En+PgYIdLnu+92yRapZU0pPl5YskW66ye6KAADwSzkdA/h1TykYNDoHAADwA1WrSr17m+0BA6TTp20tBwCAQEcoFQCcy/dOnTIn5gAAAGCTESOkIkWkTZukN96wuxoAAAIaoVQAcM6UkrgCHwAAgK2KFJGeecZs/9//SYcO2VsPAAABjFAqABBKAQAA+JFHHjFL+Q4elM5oIA8AAC4OoVQAyJdPCvrvT4q+UgAAADbLl08aN85sv/aatHWrreUAABCoCKUCBM3OAQAA/MjNN0u33WaanQ8aZHc1AAAEJEKpAOEMpVi+BwAA4CdeeknKn19asED68ku7qwEAIOAQSgUIZkoBAAD4mUqVpP79zfagQeZSyQAAIMcIpQJEaKi5J5QCAADwI8OGScWLS9u2SRMn2l0NAAABhVAqQLB8DwAAwA9FRUmjR5vtZ56RDhywtx4AAAIIoVSAYPkeAACAn3rwQalWLenwYWn4cLurAQAgYBBKBQiW7wEAAPip4GBp/HizPXWq9PPP9tYDAECAIJQKECzfAwAA8GONG0sdOkgZGdLAgZJl2V0RAAB+j1AqQLB8DwAAwM+98IKZ3r5smfT553ZXAwCA3yOUChAs3wMAAPBz5cpJgweb7UcfZYo7AAAXQCgVIJgpBQAAEACeeEIqUUL6/Xdp3Di7qwEAwK8RSgUIekoBAAAEgEKFpOeeM9v/+5+UlGRvPQAA+DFCqQDBTCkAAIAAcd99Ur160r//Sk89ZXc1AAD4LUKpAEFPKQAAgAARFJS5dG/aNGndOlvLAQDAXxFKBQiW7wEAAASQ+Hipc2fJsqT+/c09AABwQygVIFi+BwAAEGCee04KD5e++0766CO7qwEAwO8QSgUIlu8BAAAEmFKlpCFDzPZjj0nHjtlbDwAAfoZQKkCwfA8AACAADR4slSkj7d4tvfii3dUAAOBXCKUCRHi4ud+71946AAAAcBHCw6WxY832889Le/bYWw8AAH6EUCpANGtm7pctk3791d5aAAAAcBHuvlu64QazfO+JJ+yuBgAAv0EoFSCuukq67Taz7bzCMAAAAAKAw2EGcA6H9P77UmKi3RUBAOAXCKUCyKOPmvvp06WDB20tBQAAABejTh2pWzez3b+/lJFhbz0AAPgBQqkA0qiRdO210vHj0tSpdlcDAACAizJ6tBQRIa1ZI733nt3VAABgO0KpAOJwSIMGme1XX+VKfAAAAAElLk566imz/dRT0unT9tYDAIDNCKUCzF13SVdcISUlSR9+aHc1AAAAuCj9+0vFi5ur8M2da3c1AADYilAqwISESH37mu2XX5Ysy956AAAAcBHCwqQePcz2pEn21gIAgM0IpQJQz55SeLi0YYO0fLnd1QAAAOCiPPyw6cuwZIm0bZvd1QAAYBtCqQBUuLD04INm++WX7a0FAAAAF6lsWalNG7M9ZYq9tQAAYCNCqQDVv785wTZ/vrRxo93VAAAA4KL07m3up02Tjh61txYAAGxCKBWgKlaU2rc32z16nPviLYcPS2PGSGvX+qw0AAAAXEiLFtKVV0opKdKsWXZXAwCALQilAtgrr0hRUdLq1dKLL2Z9/tQp6c47pSeflBo0kJ5+2jwGAAAAmwUFSb16me2JE7l6DQAgTyKUCmClSknjx5vtp5+WNm3KfM6yzFX6VqyQ8uWT0tOlkSOl66+nnyYAAIBf6NZNCg2VfvrJnGUEACCPIZQKcF26mD6ZaWlS166ZM6Fee02aOtX0nZozx8wKj442y/iuuYYTcgAAALYrWlTq2NFsT5pkby0AANiAUCrAORzS66+bK/L9+KP03HPSV19JAwaY58eONaHVPfeYmVQ33ywdPy716WNCKwAAANjI2fD8ww+lgwftrQUAAB8jlMoFSpQwM6Mks0TvrrukjAwzI/zRRzP3u+IKaeFCafhw8/PgwdKOHb6vFwAAAP+pW1e69lrp5ElzJT4AAPIQQqlcolMn09T89GkpNVW64QZp8mQzk+pMQUGm/1STJubqw926mX5TAAAAsIHDkTlbavJkc2YRAIA8glAql3A4pClTpEqVpOrVpU8+MX0zsxMUJL39tlSokPTNN5nN0gEAAGCDTp3MJZV//930YQAAII8glMpFYmKkzZulDRvM9vmULy+9/LLZfvJJ6ZdfvF8fAAAAshEebqavSzQ8BwDkKYRSuUz+/GYmVE706CG1amVaGHTpYpb+AQAAwAaPPGLu582T/vjD1lIAAPAVQqk8zOGQ3nxTio6W1q6VxoyxuyIAAIA86uqrpebNJcsyl1YGACAPIJTK4664IvPKff/7n7Rnj731AAAA5FnOhudvvmmmsgMAkMsRSkH33ivdeKOUlia9+KLd1QAAAORRt91mzhju32+uWgMAQC5HKAU5HNL//Z/Zfv11KTnZ3noAAADypHz5pIcfNts0PAcA5AGEUpBkWhjUqycdP555VT4AAAD4WI8eJpz67jtzSWUAAHIxQilIMrOlhg0z25MmSQcP2lsPAABAnlSihNSundmePNneWgAA8DJCKbi0aSPVqiX9+680YYLd1QAAAORRzobn770npaTYWwsAAF5EKAWXM2dLjR/PGAgAAMAWjRpJVatKR49K775rdzUAAHgNoRTctGsnValiAqmJE+2uBgAAIA9yODJnS02aJFmWvfUAAOAlhFJwExQkPfWU2X75ZXOCDgAAAD52//1SwYLSL79IK1faXQ0AAF5BKIUs7rlHqlDBNDt/9VW7qwEAAMiDIiNNMCWZ2VIAAORChFLIIl++zN5Sw4dLP/xgbz0AAAB5Uq9e5n7OHOnvv+2tBQAALyCUQra6djX9pU6dkjp0kPbvz36/TZukHTt8WxsAAECeULOmdMMN0unT0ptv2l0NAAAeRyiFbDkc0rRp0lVXSXv2SPfeK6WnZz5/+rSZTVWzphQfb8IrAAAAeJhzttTUqWYABgBALkIohXOKjJQ+/VQKD5eWLDFL+SQTUjVrJo0ebS4Gs3+/tGaNvbUCAADkSu3bS8WLS3/9Jc2da3c1AAB4FKEUzqtatczZ4s8+a2ZH1a4tffONFBEhVa1qnlu2zLYSAQAAcq/QUKlHD7NNw3MAQC5DKIUL6tRJ6tvXbI8eba7Kd+210o8/Zj5OKAUAAOAlDz9seissWSJt22Z3NQAAeAyhFHLkxRelRo3Mdt++0qpVUsWKZhmfZH4+fty++gAAAHKtsmWlNm3M9pQp9tYCAIAHEUohR0JCpKVLpV27pAkTzExySapUSbriCunkSSkx0d4aAQAAcq3evc39tGnS0aP21gIAgIcQSiHH8uWTSpd2f8zhyJwtxRI+AAAAL2nRQrrySiklRZo1y+5qAADwCEIpXDZCKQAAAC8LCpJ69TLbEyeaSyADABDgCKVw2Zo2NferV0tHjthbCwAAQK7VrZvpofDTT2bgBQBAgCOUwmUrW1aqUEFKT5e++cbuagAAAHKpokWljh3N9qRJ9tYCAIAHEErBI1jCBwAA4APOhucffigdOGBvLQAAXCZCKXiEM5RautTeOgAAAHK1unWlOnXMpY+nTbO7GgAALguhFDzC2Vdq/Xrp4EFbSwEAAMi9HI7M2VKTJ0sZGfbWAwDAZSCUgkfExkrVqpntFStsLQUAACB369hRio6Wdu6UFi2yuxoAAC4ZoRQ8hr5SAAAAPhAebq7EJ9HwHAAQ0Ail4DGEUgAAAD7yyCPmfv586Y8/bC0FAIBLRSgFj2nc2LQ52LpV2rvX7moAAABysauukm6+WbIs6fXX7a4GAIBLQigFjylcWLr2WrO9fLm9tQAAAOR6zobnb75prsYHAECAIZSCRzmX8C1ebG8dAAAAuV6bNlKpUtL+/dInn9hdDQAAF41QCh7VqpW5nzdPOn3a3loAAABytXz5pJ49zTYNzwEAAYhQCh7VqJFUpIh08KD07bd2VwMAAJDL9ehhwqnvvpM2bLC7GgAALgqhFDwqXz7pjjvM9qef2lsLAABArleihNSundmePNk7xzh9Wlq9WnrhBROC/fqrd44DAMhzCKXgcc5x0aefShkZ9tYCAACQ6zkbnr/3npSScvnvd/KkmfL+7LNSy5ZSdLRUv770+OPSW29JnTpJ6emXfxwAQJ5nayg1efJk1axZU5GRkYqMjFR8fLwWLFjgev7EiRNKSEhQ0aJFVahQIbVv317Jyclu77Fr1y61bt1a4eHhiomJ0WOPPabTNDOyVfPmUqFC0l9/SWvX2l0NAABALteokVS1qnT0qPTuuxf/+uPHzaWTR4wwV62JjpZuvFF66inpq6/M+xYuLN1+uxQVJf34o/TGG57+FACAPMjWUKpUqVJ67rnntG7dOq1du1bNmjXTHXfcoc2bN0uSBg4cqLlz52r27NlauXKl9u7dq3bOaTiS0tPT1bp1a6WlpWnVqlWaMWOGpk+fruHDh9v1kSApLExq3dpss4QPAADAyxyOzNlSkyZJlnX+/f/914RNTz0l3XCDCZqaNZOeecaEUydOSMWLS+3bSxMmmF5VBw5In38u/e9/5j2efNJc9Q8AgMvgsKwL/dbyrSJFiuiFF15Qhw4dVLx4cc2cOVMdOnSQJG3dulVVqlRRYmKiGjRooAULFqhNmzbau3evYmNjJUlTpkzRkCFDtH//foWEhOTomKmpqYqKilJKSooiIyO99tnyko8+ku65R6pY0bQdcDjsrggAgKwYA3gX368PpaZKJUuaWU3Ll0tNmmQ+d/iwWY739dfSypXSunVZl9+VLCk1bmxmXTVuLFWunP0A7vRp6brrTFDVvbv05pve/FQAgACV0zGA3/SUSk9P16xZs3T06FHFx8dr3bp1OnXqlJo3b+7ap3LlyipTpowSExMlSYmJiapRo4YrkJKkli1bKjU11TXbCva45RYpNFTavl3ijwIAAMDLIiOl++832y+/LM2ZIw0YIF17rbk08m23mUblq1ebQKpcOalLF9Mjavt2ac8eaeZM6ZFHpCpVzn1GMV8+aeJEs/3WW9L33/vi0wEAcql8dhewceNGxcfH68SJEypUqJDmzJmjqlWrav369QoJCVF0dLTb/rGxsUpKSpIkJSUluQVSzuedz53LyZMndfLkSdfPqampHvo0cIqIkG6+WZo3zyzhq17d7ooAAAByuV69pClTpLlzze1MlSq5z4QqU+bSj9OwofTAA9L06VJCggm6goMvp3IAQB5l+0ypq6++WuvXr9cPP/ygXr16qWvXrtqyZYtXjzlmzBhFRUW5bqVLl/bq8fKqM6/CBwAAAC+rWdM0I5dM4/NevaRZs8zVZ3791TQnv//+ywuknJ5/nqbnAIDLZnsoFRISoooVK6pOnToaM2aMatWqpfHjxysuLk5paWk6fPiw2/7JycmKi4uTJMXFxWW5Gp/zZ+c+2Rk6dKhSUlJct927d3v2Q0GSmSUeHGxaDuzYYXc1AAAAecCcOdKRI6Z/wqRJpslnyZKeP05MDE3PAQCXzfZQ6mwZGRk6efKk6tSpo/z582vp0qWu57Zt26Zdu3YpPj5ekhQfH6+NGzdq3759rn0WL16syMhIVa1a9ZzHCA0NVWRkpNsNnlesmJkdLpnxEQAAALwsKEgqVMg3x3rkEalWLenQIWnoUN8cEwCQq9gaSg0dOlRff/21/vjjD23cuFFDhw7VihUr1LlzZ0VFRal79+4aNGiQli9frnXr1qlbt26Kj49XgwYNJEktWrRQ1apVdf/992vDhg1atGiRhg0bpoSEBIWGhtr50fAflvABAADkUjQ9BwBcJltDqX379qlLly66+uqrddNNN2nNmjVatGiRbr75ZknSK6+8ojZt2qh9+/Zq1KiR4uLi9OkZ6UZwcLDmzZun4OBgxcfH67777lOXLl00cuRIuz4SztK2rblPTDTtDAAAAJCLOJueS6bpeXq6reUAAAKLw7Isy+4i7JaamqqoqCilpKSwlM8LGjaUVq2SOneW3nvP7moAAMjEGMC7+H7ziH37pKuuklJSpMmTzbI+AECeltMxgN/1lELu8+KLpr3B+++bC8AAAIBz+/rrr3XbbbepZMmScjgc+uyzz9yef+CBB+RwONxurVq1ctvnn3/+UefOnRUZGano6Gh1795d//77r9s+P//8s2688UaFhYWpdOnSGjt2bJZaZs+ercqVKyssLEw1atTQl19+6fHPi1yApucAgEtEKAWvi4+Xhg0z2716SVzsEACAczt69Khq1aqlic5ePdlo1aqV/v77b9ftgw8+cHu+c+fO2rx5sxYvXqx58+bp66+/Vs+ePV3Pp6amqkWLFipbtqzWrVunF154QSNGjNDrr7/u2mfVqlXq1KmTunfvrp9++klt27ZV27ZttWnTJs9/aAQ+mp4DAC4By/fE1HJfOHVKuuEGafVqqWlTackSM3sKAAA7+fsYwOFwaM6cOWrrbNIoM1Pq8OHDWWZQOf3yyy+qWrWq1qxZo+uuu06StHDhQt16663as2ePSpYsqcmTJ+upp55SUlKSQkJCJElPPPGEPvvsM23dulWSdM899+jo0aOaN2+e670bNGig2rVra8qUKTmq39+/X3jYd9+ZAZ9kGor+d3EiAEDew/I9+JX8+U0/qfBwaflyadw4uysCACBwrVixQjExMbr66qvVq1cvHTx40PVcYmKioqOjXYGUJDVv3lxBQUH64YcfXPs0atTIFUhJUsuWLbVt2zYdOnTItU/z5s3djtuyZUslJiZ686MhkNH0HABwkQil4DOVKkmvvGK2hw6Vfv7Z3noAAAhErVq10jvvvKOlS5fq+eef18qVK3XLLbco/b8AICkpSTExMW6vyZcvn4oUKaKkpCTXPrGxsW77OH++0D7O57Nz8uRJpaamut2Qxzz/vBQVJf34o/TGG3ZXAwDwc4RS8KmHHpJuu01KSzNX4zt2zO6KAAAILB07dtTtt9+uGjVqqG3btpo3b57WrFmjFStW2F2axowZo6ioKNetdOnSdpcEX6PpOQDgIhBKwaccDunNN6XYWGnTJqlfP7srAgAgsF155ZUqVqyYtm/fLkmKi4vTvn373PY5ffq0/vnnH8XFxbn2SU5OdtvH+fOF9nE+n52hQ4cqJSXFddvN1U3yJpqeAwByiFAKPhcTI82caQKqt96S3nnH7ooAAAhce/bs0cGDB1WiRAlJUnx8vA4fPqx169a59lm2bJkyMjJUv3591z5ff/21Tp065dpn8eLFuvrqq1W4cGHXPkuXLnU71uLFixUfH3/OWkJDQxUZGel2Qx6UL5/kvHrkW29J339vbz0AAL9FKAVbNGsmjRhhtnv1krZssbUcAAD8xr///qv169dr/fr1kqSdO3dq/fr12rVrl/7991899thj+v777/XHH39o6dKluuOOO1SxYkW1bNlSklSlShW1atVKDz30kFavXq3vvvtOffr0UceOHVWyZElJ0r333quQkBB1795dmzdv1ocffqjx48dr0KBBrjr69++vhQsX6qWXXtLWrVs1YsQIrV27Vn369PH5d4IARNNzAEAOOCzLsuwuwm5crtge6elSq1bSkiVSlSrSmjVSwYJ2VwUAyEv8cQywYsUKNW3aNMvjXbt21eTJk9W2bVv99NNPOnz4sEqWLKkWLVpo1KhRbk3J//nnH/Xp00dz585VUFCQ2rdvrwkTJqhQoUKufX7++WclJCRozZo1KlasmPr27ashQ4a4HXP27NkaNmyY/vjjD1WqVEljx47VrbfemuPP4o/fL3xo3z7pqquklBRp8mSzrA8AkCfkdAxAKCUGTHbat0+qXVv6+2/p/vulGTPMsj4AAHyBMYB38f1Cr70m9e0rFS4sbdsmFS9ud0UAAB/I6RiA5XuwVUyMNGuWFBQkvfuudNNNZtzy2mvS4sUmtAIAAECAeuQRcwaSpucAgGwQSsF2jRpJzz1ntpcvzzyh1qKFVKqU9N579tYHAACAS0TTcwDAeRBKwS889pj044/Sm2+a7dtvlypUkE6dkrp0kaZNs7tCAAAAXJLrr6fpOQAgW/nsLgBwuuYac3PKyJD69DF9MR980ARUPXvaVx8AAAAu0fPPS3PmmLOQb7xB03MAgCRmSsGPBQWZ2d79+5ufH37YLO3zlqFDpZIlpV9+8d4xAAAA8qSYGOl//zPbTz4p7d9vbz0AAL9AKAW/5nBIr7wiDR5sfu7bVxo3zvPHyciQpk41VwE862rYAAAA8ASangMAzkIoBb/ncEhjx5qTapI0aJD03XeePcbPP5vxkSTNnSutWuXZ9wcAAMjzaHoOADgLoRQCgsNhZnx37SpZlrk/etRz7798ufvPQ4ea4wAAAMCDaHoOADgDoRQChsMhjR8vlS4t7dghPf645957xQpz36+fFBoqff21tGiR594fAAAA/3n+eSkqKrPpOQAgzyKUQkCJipLefttsT5okLV58+e+Znm5CKEm67z5z0k4yywUzMi7//QEAAHAGmp4DAP5DKIWA07y51Lu32X7wQSkl5fLe7+efpcOHpYgI6ZprzNK9iAjpp5+kjz++7HIBAABwNpqeAwBEKIUANXasVKGCtGeP1L//5b2Xc+nejTea/pvFikmPPmoe+7//k06fvrz3BwAAwFloeg4AEKEUAlTBgtKMGabP1IwZ0uzZl/5ezlCqSZPMxwYNMuHUr79K06dfRqEAAADIHk3PASDPI5RCwGrYUBo82Gx37nxpwdSZ/aTODKUiIkyLA0l6+mkzsxwAAAAeRtNzAMjTCKUQ0EaPljp1kk6dkjp2zDqrybKkDz+UqlSRWrfOegLu7H5SZ+rVS6pYUdq7N7P5OQAAADyIpucAkKcRSiGg5c8vvfuu1KOHuVJet26Z7QnWrzeznzp2lLZulb78Unr/fffXn91P6kxhYdJ770nBwdIHH5gbAAAAPOzMpuePPWZ3NQAAHyKUQsALDpZefz2z4XmfPlKLFlKdOmZpXoEC0k03mef+7/+kEycyX+sMpZo2zf6969eXhg0z2716Sbt2eeUjAAAA5F3OpufOZqFTp9pdEQDARwilkCs4HNIrr2QGSIsXm5lT99xjZknNnSuVKmVCJedMqnP1kzrbU09J9epJKSmmF2dGhjc/CQAAQB50/fWZy/j69Mk8cwgAyNUIpZBrOBzSqFEmdGrTRlq5Upo1SypTxsyWGjnS7Dd6tJkdvmGD6ScVGWlmjJ9L/vxmGV94uLR8uQm/AAAA4GFDh5pmoadPSx06SL//bndFAAAvI5RCrtO7t5kZ1aiR++NdukjVqplA6rnnzt9P6myVKkkvv2y2n3zSNEgHAACABzkc0ltvSdddJx08KN1xh3TkiN1VAQC8iFAKeUZwsAmjJGn8eDOLSjr/0r0z9expZmClpUn33y+dPOmVMgEAAPKuAgWkzz6TSpSQNm2S7ruP3gkAkIsRSiFPad3azKA6eVJas8Y8ltNQyuGQ3nxTKlbMzJR65hmvlQkAAJB3XXGFNGeOFBoqffGFuVINACBXIpRCnuJwSGPHZv58oX5SZ4uNlaZMMdvPPy8lJnq0PAAAAEjmEshvvmm2n31W+uADe+sBAHgFoRTynPr1Te9MKWf9pM7Wvn3mTPKuXaWjRz1fIwAAQJ53333S44+b7QcfzJzmDgDINQilkCe99pq52vCYMZf2+ldfNTPLf/tNGjLEs7UBAADgP88+a/ovnDghtW0r7d1rd0UAAA8ilEKeFBtrgqUaNS7t9dHR0rRpZnviRGnJEo+VBgAAAKfgYGnmTKlqVRNI3XmndPy43VUBADyEUAq4RDffLPXubbYfeEB65x3p0CFbSwIAAMh9IiNNw/MiRaTVq6WHHpIsy+6qAAAeQCgFXIaxY6VKlaS//jL9pWJipFatpDfekFJS7K4OAAAgl6hQQZo928ycev999yvXAAACFqEUcBkKFpS+/loaPlyqVk06fVpatEjq2VNq2ND8DAAAAA9o1kyaMMFsDx0qzZ1rbz0AgMtGKAVcprg46ZlnpE2bpK1bpdGjTc+pzZulzz+3uzoAAIBcpFcv6eGHzfK9e+81Ay4AQMAilAI86OqrpSefNFf2k8xV/gAAAOAhDoe5Wk3jxtK//0q33y4dPGh3VQCAS0QoBXjBww+blgcrVkgbN9pdDQAAQC6SP7/08cdS+fLS779Ld90lnTplb00nTth7fAAIUIRSgBeUKmWuWCxJEyfaWwsAAECuU6yYuSJfoULS8uXSgAH21LFypdS0qVSggDR5sj01AEAAI5QCvMS5hO/dd6XDh20tBQAAIPepXt1cic/hkCZNkqZM8d2xV6yQmjQxtxUrzGODBkm//uq7GgAgFyCUArykUSMzVjp2TJo+3e5qAAAAcqHbbzdXmZGkvn0zAyJvsCwzK6tJEzM7auVKKSRE6t3b/HzihNS9u5SR4b0aACCXIZQCvMThyJwtNXEi4xMAAACveOIJqVMn6fRpqX1702fKkyxLWrbMhFHNmmWGUQkJ0o4dZqA3fbpZSvjtt1zpBgAuAqEU4EX33SdFRUnbt0uLFtldDQAAQC7kcEhvvSVdd530zz9m9lRq6uW/r2VJS5eaK/3ddJP09dcmjOrTx4RRr71mGolKUpky0gsvmO0nnjDPAwAuiFAK8KKCBaUHHzTbvjxp9v33Urly0kcf+e6YAAAAtilQQPrsM6lECWnzZnNm8FKnqVuWtGSJ6cXQvLn0zTdSaGhmGPXqq5lh1Jl69jQzqY4fZxkfAOQQoRTgZb17m/sFC8yMKV8YN076809p6FDGQwAAII+44goTTIWGSnPnSsOGXdzrLUtavFi68Ubp5pvNUrzQUNOr6nxhlFNQkPTmm+as5MqVXI0PAHKAUArwsooVpVtuMeOcF1/0/vFOnpS+/NJs//679NVX3j8mAACAX6hXzyzlk6QxY6SZMy/8GmcYdcMNUosW0nffmTCqXz8zmJowwQReOVG+vPTcc2Z7yBBp585L+xwAkEcQSgE+MGSIuX/9dbO0zpuWL5eOHMn8mZN0AAAgT+ncOXPw1b27tGZN9vtZljl717ChCaNWrZLCwqT+/U0YNX68VLLkxR+/d2+z9O/oUalHD3Mcf3XggLR1q91VAMjDCKUAH2jcWOrSxYxJHnpIOnXKe8f67DNz36yZuZ83T9q1y3vHAwAA8DujR0tt2kgnTkh33CHt3Zv5nGWZK9Bcf73UsqWUmGjCqAEDTBg1btylhVFOQUFmtlaBAuaqfa+/frmfxju2bZMqV5aqVjV9JgDABoRSgI+89JJUtKi0aZPZ9oaMDOmLL8z2449LTZuax954wzvHAwAA8EvBwdL775vA5e+/pbZtTQPyhQul+HipVSszfT0sTBo40IRRr7xiGqV7QsWK0rPPmu3Bg02zT3+SnGz6Sxw8aEK6+++Xdu+2uyoAeRChFOAjxYqZsY4kPfOMd5qer1ljxl0REVKTJlKvXubxN96Q0tI8f7y8xJ9n3gMAgGxERpqzdUWKmEFS2bImiPnhBzOLadAg0/Pp5Zc9F0adqW9fszTw33/NVHl/GUwcPWpmke3cKVWoIF17rQmn7r6bASMAnyOUAnzovvvMlYVPnJAeecTzYxPn0r1bbzX9Odu2leLizMkw53O4ePPnmxOu771ndyUAAOCiVKggzZ5tfpHv32/CqEcfNYHMSy+ZgZK3BAdLb79tZmMtXmy27Xb6tHTPPdLateaM6YIF0scfS9HRZubYE0/YXSGAPIZQCvAhh0OaMsWMTZYu9XzI4Qye2rY19/nzm/6aEg3PL8cXX5gA0XkxHwAAEECaNZPmzjV9pnbuNJdDjo31zbGvukoaNcpsDxok7dnjm+Nmx7KkhARzti0szHwnlSqZKwbOmGH2eeUV6dNP7asRQJ5DKAX4WIUK0tNPm+2BA81JO0/Yts1cPCV/fjMz3alnT9Nvc8UK6ZdfPHOsvGbHDnP//fdmlhsAAAgwt9wiPfmk78KoMw0cKDVoIKWmmoGZXcv4xowxTdeDgqRZs0xNTrffbnpfSVK3bpmDHwDwMkIpwAaPPirVrGmW73vqSsGff27umzaVoqIyHy9dWrrtNrM9ZcrlHycvco7LTpyQVq+2txYAABBgnMv4QkPNcrl33vF9De++Kz31lNmeMMFckfBszz5remClpkp33cWZOAA+QSgF2CB/fjMeCQkxS8M8caXgs5funcnZ8HzGDNNrEzl36pS0a1fmzytW2FYKAAAIVFWqSCNGmO0BA6S9e3137CVLpAcfNNuPP26W8GUnf34zg6pYMemnn6T+/X1XI4A8i1AKsEmtWtJzz5ntgQNzvrTOsrLOrEpKMkvLJDP7+mw332yuTJySYmZkZ2Rcet15zZ9/un9fhFIAAOCSDB4sXXeddPiwd654k50NG6R27UyD844dzRK+8ylVSpo50zRCff11rvICwOsIpQAb9e9vAqPjx6V775VOnnR/fu1aM2Zp3VqqW1cqV04qWNBcIKV/f2n7drPf3LlmXFO3rnTFFVmPExQkvfmmOQH28cdcWOViOJfuRUSY+8TErH9OAAAAF5QvnzRtmhmQzZ1rwh9v2r3bXJL5yBGpcWNp+nQzKLyQm2+Whg832w8/LG3Z4tUyAeRthFKAjYKCzPigaFFp/Xrp//7PPP7zz9Kdd5qQaepU6csvTUD1558mwEpNNe0ArrrK9ItyLv/LbumeU+PGZhwkSS+8wNX4cur33819kyZSTAx9pQAAwGWoXj3zijd9+5rp7t5w+LBp7r53r1StmunzEBqa89f/3/9JzZtLx45JHTrQ/wGA1xBKATYrWVJ66y2z/cIL5oRWrVpm7BAUJN1/v5nl9MUXZone779LixaZ/SxLmjfPBFbS+UMpSercOfOqxH36mLAL5+ecKVWxogmmJJbwAQCAy/D449I110iHDkm9e3t+Gd/Jk2bJ3ubNZqD55Zdmmv3FCA6W3n9fKlHC9Jjw1XJDAHkOoRTgB+64w8yOlsxFWSTpnnvMWOKdd6Tu3c2MqPr1pfLlpRYtpPnzpa1bTa/KggXNVfeqVLnwsZ56KrOv1N13mz6WODdnKHXllWa2mUQoBQAALkP+/Gb6er580pw50kcfee69MzLMwHH5ctN7YP58qUyZS3uvmBjpww8zA6o33vBcnQDwH0IpwE+89JLUvr0JozZsMBc/qVz5/K+5+mrptddMq4Bly0xPygtxOMySwObNpaNHpTZtvDdzPDdwLt+rUCFzptSqVfSVAgAAl6FWLWnYMLOdkCDt2+eZ933qKRMg5csnffKJVLv25b3fjTdKzz5rtvv1k3788bJLBIAzEUoBfqJgQdOEfNYsqWbNi3ttTsKoMzkbnlepYloNdOggpaVd3HvkBZaVOVOqQgXzfRUvTl8pAADgAUOHmkHfwYOmr8Llmjw589LOb75pGpZ7wuDBZsr+yZPSXXeZyzkDgIcQSgF5VFSU6VsVFSV99500cKDdFfmfffvMbDKHQypb1tw7Z0utXGlraQAAINCFhJhlfMHB0uzZ5ozhpfrii8xga9QoqWtXz9QoZV6Zp2xZM4W8Wzf6SwHwGEIpIA+76iozw9vhkCZNkt5+2+6K/Itz6V7p0pkXrKHZOQAA8JhrrzUzpiTT9PzAgYt/jx9+kDp2NP2kevQwS/g8rUgRE5yFhJg+WOPGef4YF+vwYSk93e4qAFwmQikgj2vdWnrmGbPdq5cZ18A4c+meE32lAACARw0bJlWrJu3fb/o2XYzt283SuuPHzaWZJ0+++L4OOVW3rvTyy2b78celxETvHOdC/vlH6ttXKlZMqldP+vtve+oA4BGEUgD01FNS27amr1S7dpkzhPK6M6+85+TsK3X8uLRmjT11AQCAXCQ01CzjCwqSPvjA9FfIif37pVtuMfd16pgr5eXL59VS1bu3uXzz6dPm/lJmdl2q06eliROlSpXMlX7S003j9euvl7Zt810dADyKUAqAgoKkGTPM1f727jW/62+/XVqwIG/Pij7zyntODofUuLHZpq8UAADwiLp1zewjSXrkETMb6HyOHTODte3bpXLlpHnzpEKFvF6mHA7TRP2qq6Q9e6T77jPLBr1t6VJzJcE+fcx3U6OG6UFRsaL0xx8mmLJr5haAy0IoBUCSFBkpzZ8vNW1qxhZz55pZ4BUrSi+9lDfDqeyW70n0lQIAAF7w9NNmSnZystS//7n3S0+X7r1X+v57qXBhcxYxLs53dUZEmP5SYWHSokXSmDHeO9bvv5tp/M2bS5s3m95WkyaZGVL33mv6KdSrZ4KqZs2kzz/3Xi0AvIJQCoDLlVdKy5ZJv/wiDRggRUebk0+DB0v/9382F2eD7JbvSZmh1HffmSWPAAAAly0szFx1JihIeu89M/vpbJZlAqvPPzfL/r74wkx197WaNU04JEnDh0vLl3v2/Y8ckZ580oR0c+aYKxT26yf99ptpgupcpli8uBm8tm4tnThhAqypUz1bCwCvIpQCkEXlytIrr5ilfC++aB4bM+byrlScnd9/l+65R3r9ddMmwJ8cOyYlJZnts2dKVa2a2Vdq8WLf1wYAAHKpBg2kQYPM9sMPS4cOuT//4oumr5LDYZav3XCD72t06tbN3DIypE6dPNNwPCNDeucd6eqrzeAzLU26+Wbp55+l8ePNTKmzFSxo+nB1725e/8gj5myqZV1+PQC8jlAKwDkVKCA9+qi5SdIDD0ibNnnu/Z94QvroIzPmqlbNhF7+Mn5w9pOKjjYz48/kcEj332+2R4/2n5oBAEAuMHKk6dm0d29mQCWZJujOvlMvvyy1b29PfWd67TXT3yk52QRTl3OW8YcfpPh4qWtXE3BVqGBmhC1aZM4Ink++fNIbb5glkJL0v/+ZkOrUqUuvB4BPEEoBuKDnnpNuukk6etRcpe/sk3aXIinJzMaWzEmvX3+V7rrLtAVYtuzy3/9ynauflNPgwWaWfWKif9QLAAByiQIFzDI+h0OaPt30jFqxwpwdlKSBA02fBX8QHm76SxUqZK4AM3z4xb/H3r1Sly5mltjq1ea9nn/e9JC6/XbzPeSEwyGNGGGm4AcFmSsa3nGH9O+/F18TAJ8hlAJwQfnymasMlytnwppOnUyPzWPHTCjz6qtS375m7JBTb79tTqZdf720c6c5sVWokLR2rQnAJk/22sfJkQuFUiVKSD17mu2RI31TE/K2v/82bTLuvlt69127qwEAeFXDhpnNznv0MGcF09KkDh0yeyv4i6uvNlfkk8ySu/nzc/a6EyfM/lddlfmLrVs30zfq8cdNz6xL8dBDZoZVgQIm0GvaVNq379LeC4DXEUoByJGiRc1y/QIFzCzqChXMFfuuv970nXztNalxY2njxgu/V3q6OYklmWX/kZHmxNaOHdKDD5rHe/c2J7hyautWM6v9fFcJXLJEqlVLWrjwwu/nXL53dpPzMz3+uBQSIn39tTk5CHjaX3+Z8XqDBlLJkubfy+zZZry9a5fd1QEAvGr0aDPg2rtXSkkx/aPefdfMAvI399wjJSSY7fvvl/7889z7WpaZLl+1qmlmfvSoWba3erU5a+mJKwm2aWOarxctas54Xn+9tH375b8vAI/zw/+iAfBXtWqZsYJkxhrp6VJsrPm9X7OmdPCgmeV0oRlTixaZ1xcpYk74OcXEmBNt/fqZn7t3N0HThezda8Yy994rDR2a/T47dpjlgT//bGZ1nS+8cu4vnXumlCRdcYWpUZJGjbpwncDFat7cjNd/+MH8XL++GcOfPCk984y9tXnCgAHSrbeak+UAgLOEh5uBV1iY+Y//55+bbX/10kvSddeZPg/33JP9JYo3bjS/3Nq1M1Plr7jCNGz/7jupbl3P1lO/vrRqlVS+vBnYXX+9Cb4A+BVCKQAXpWNHaelSc4Jrzx6zpGjuXDNTqE4daf9+qVkz6Zdfzv0eU6aY+wceMDOvzuRwSOPGmebnlmVOtn366bnfy7LMrJHDh83PL7xg2i+c6dgx0wvUuc/27abB+vnkJJSSTLP2/PnNd7Jq1fn3BS7G8eNmBqBklsj+9Zf0/ffSW2+Zx6ZPl7Zssa28y3bypPlcCxZ4/kriAJBrNGok/fGHtGFD9lee8yehoWaAFR1tzqY89ljmcwcPmplUtWubZpyhodKwYdK2beasYk77Rl2sq64yA7RrrzWD1KZNpS+/9M6xAFwSQikAF61ZM9Pa4IorMscQ0dHSV1+Zsca+fWafbduyvnbXrsxWA86eTGdzOKRJk8zFV9LTTRA2b172+06fbsYWISGZ/T979pS+/dZsW5ZZ8rRhg5mJ1bu3eXz0aHPV4Oykp5vxn3T+5XuSVKaMqVO69NlSf/1lAgjgTM6/gxERZhxfsqT5uUED8+8vI0N66im7qrt8v/+e+W/wq6/srQUA/FpsrGnwGQjKl5dmzDDbEyZIs2aZHg+VKpnBXUaGmSa/dasZOBUs6P2a4uJMo/iWLc2Zyttvz5z6D8B2toZSY8aMUd26dRUREaGYmBi1bdtW2876v9gTJ04oISFBRYsWVaFChdS+fXslJye77bNr1y61bt1a4eHhiomJ0WOPPabTl3M5UgCXpEgRafFic2XgpCQTTK1d677Pm2+a8UizZqYv5rkEBZkZIffcY67m27atGcucaffuzIvPjBpl9u/Qwex/551mVviUKab9QnCwadb+7LNSVJRZYvjZZ9kfe88e8x7580ulSl34cw8dat5/4cLMWeHp6VJq6oWvVLhunVSxohmrOftYAZL5+yuZ8f3ZJ5Cffdb8G/nsM3OxgUD022+Z24sX21cHAMDDbr89c5ZUp06mb8KhQ6bXw/LlpjliuXK+rSkiwkzt79LFDNK6dzdXqrEs39YBIAtbQ6mVK1cqISFB33//vRYvXqxTp06pRYsWOnr0qGufgQMHau7cuZo9e7ZWrlypvXv3ql27dq7n09PT1bp1a6WlpWnVqlWaMWOGpk+fruGXcjlSAJetWDGzlK1aNdPrqWFD09TcskzQ47w4yyOPXPi9goNNoHT//Wb8kJAg9epl3seyzHgiNdX0k3r0UfM/6TNmmGWEBw5IN9+ceeGa556TmjQxgVTfvuax//0v+7GIc+le+fKmhgu58krpvvvMduPGZklivnzmWEWKnPsiOZZl6jtxwsyWuukmE4gBknsodbYqVTJnBj7xRGCOqc8MpTZvNv+9AADkEqNHm8bskmk2PmWK9OOPZjBml/z5zRT7J580Pz/9tBmQMpkBsJflR/bt22dJslauXGlZlmUdPnzYyp8/vzV79mzXPr/88oslyUpMTLQsy7K+/PJLKygoyEpKSnLtM3nyZCsyMtI6efJkjo6bkpJiSbJSUlI8+GmAvO3QIcu6/XbLMv+7bFldu1rWu++a7dhYy8rhP0/LsiwrI8Oynn/eshwO8/omTSzr2WfNdliYZW3b5r7/nj2WVaJE5rE7dDDv4XTggGUVLGiemz8/6/HeeMM816pVzmv89VfLCg/PPOaZt/z5LWvDhqyvmTXLPB8eblkVKpjtq66yrDP+c+Yzx475/pg4v0cfNX8nBgzI/vlduywrNNTs8+WXvq3NEx5+2P3fyfTp9tTBGMC7+H6BPCwlxbI++MCy/vnH7kqymjgxc2B5222WdfSo3RUBuU5OxwB+1VMqJSVFklTkvyZ+69at06lTp9S8eXPXPpUrV1aZMmWU+N96hcTERNWoUUOxsbGufVq2bKnU1FRtvtAlwAB4TXS0aYb+3HOZM5i6dDHPde9uekDllMMhPf649MUXUqFCpi2A8yTXmDGmh+WZrrjC7Fu4sHTNNaZtwJnLn4oWzewtNWpU1lkmOW1yfqZKlczrNm0yvYAOHDB9ou64w8zseuABc+90/Lj5TJI0ZIjp+VmmjPTrr1KLFtI//+T82JfrnXfMBX5eecV3x8SFnW+mlCSVLi316WO2hw49d480f+WcKVW6tLlnCR8A5DKRkaYxaOHCdleSVe/e0iefmKsZzp1rpqsfOGB3Vf4tJcXMNJs1y+5KkMv4TSiVkZGhAQMGqGHDhqpevbokKSkpSSEhIYqOjnbbNzY2VklJSa59zgyknM87n8vOyZMnlZqa6nYD4HlBQSZwWbLENBm3LBMOPfTQpb1fmzbm6mPO5uONGkn9+mW/73XXmZ5Ta9aYNgJnGzTIjEO+/94EQme6lFBKMn00q1WTypY1wVdYmJmtXqSI9NNPJkBzevFF0/S9dGlp8GATSC1ZYnqZ/vyzdMst0pEjF3f8S+UMox5/nCsl+xNnKHW+ZvtDh5ox/4YN0htv+KYuT3GGUs6lvEuWBOYyRABAgLrzTvPLp3BhMyBs2DDzl683ZWRIZ7Sr8WunT5vL5HbqZAa63bqZ7bMbvQKXwW9CqYSEBG3atEmzfJC8jhkzRlFRUa5baedpWgBe0bSpCWW6dZNeeunyeltWq2aCprffNk2eg87zX7GCBc/dEyouLvPqf6NGuc8ycTYcv9CV93IiLs5cdMZ5nPXrTf+o554zj40da2YpSWa21ZIlJsRavTqzibs3bdpkapLMuKNzZ+nff71/3JzYtcv0DMurLjRTSjLh5//9n9nu1y9wmp4fP25CY8nMoAwPl5KTpY0b7a0LAJDHNGwoffdd5nT1+HjT++pyHDkibdliroDz+uvSsGHmUs1Nm5oznmFhZur/ddeZZuvr1/vfWZkNG0zD1lKlpFtvNbOjTpzIvAJQv37SokX21ohcwy9CqT59+mjevHlavny5Sp1xqau4uDilpaXp8OHDbvsnJycrLi7Otc/ZV+Nz/uzc52xDhw5VSkqK67bbOTIG4DUlS5ogaeDAy3+vIkVMwHW5s8Efe8z0vFy50sxueuwxMw651JlS59Kxo9SunQl9unY1v+OPHTPjoHvucd+3evXMqwJOm3bucdG+fdKNN5pxwuXMMHn/fXPfrJmZtbV9+7lnn/nSL7+YkK5FC/8bp/nCoUOS81ffhULcQYPMyd60NHMfCM3yncFvZKRZbtu4sfn5q6/sqwkAkEdVqWLO6tSqZc6QNG587l9Ip0+bs2bffivNnGnOMiYkSLfdZl5fuLD55Vatmpn2/vDDpun7O++Y/hO//57Zz2HdOtNs/ZprzC/7vn3NWva0NF99cnd//23OHteqJdWuLb38svk+ihUzg8O1a81n79rVXIHo7rvNlUqAy+WjHlfZysjIsBISEqySJUtav/76a5bnnY3OP/74Y9djW7duzbbReXJysmufqVOnWpGRkdaJEydyVAdNOIG8a8oUy4qKyr5B+b//eu44SUmWVbRo5ns7HJa1du2597/3XrNfo0buTdoty/x8xx3utV57rWmcfupUzmtKT7es0qXN62fPtqwVKzJ7fn700SV9TI95/PHMz/btt/bWYod168xnj4nJ2f5HjlhWjRrmNXXq+H+/1jlzMmu1LMt6+WXzc4sWvq+FMYB38f0CCBiHD1tWs2bmF1K+fJb15JNmQNKxo2Vdf71llSplWUFB2Q8az75FR1tWzZqW1aaNZfXubVnPPWdZ779vWd98Y1l//mlZf/1lWW+/bQZ0BQq4vzYiwrLuvtuy3nvPsg4e9O5nPnrU1NWypftnCwmxrLvusqwvvrCstDT315w8aQaokmWVK2dZZ/x/OHCmnI4BbA2levXqZUVFRVkrVqyw/v77b9ft2BmXgXrkkUesMmXKWMuWLbPWrl1rxcfHW/Hx8a7nT58+bVWvXt1q0aKFtX79emvhwoVW8eLFraFDh+a4DgZMQN52/Lhlffqp+d0bFpZ5FTxP+/DDzN/13bqdf99duzLHKGdcgNSyLDOGcV7Vr3t397HMlVea8U5OrFhhXhMZab4DyzLjL+dYateui/+MnnBmWCZZ1v3321OHnT7+2Hz2+vVz/pqdOy2rWDHzuo4ds4aZ/mTs2Mw6LcuyNm3KvJqm8++irzAG8C6+XwAB5eRJy+rU6fyBU0iIGXA1aWJZXbpY1rBhljV1qmUtWGBZmzdbVmrqxR3z2DHLmjvXsh56yLLi4tyPFRxsjvPyy5a1fbtnPmN6umUtX24GoxER7sdr2NB8lgtdMXH//sxLR8fH+/6XNwJCQIRSkrK9TZs2zbXP8ePHrd69e1uFCxe2wsPDrTvvvNP6+++/3d7njz/+sG655RarQIECVrFixaxHH33UOnUR0wUYMAFwSkkxAdXWrd55/759zeyQs/4zlq2nn848CeX8Xf/775ZVqJB5/PnnzWP791vWiBGZM7EKFbKsH3648Pv36GH27979/9u78/goqmwP4L8OIZ2FbIDZWDSOkR1eFIgBFB0ii4jEjQFjXlDeQzQooCgoBtARQUDcBllmXMYZZNNhF+dFYGBwIGAIm0BAYQCBgBCyAgHS5/1xJt1pSKATuquTzu/7+fQn3VXVVbdu1BxP3XuubdvFiyKdOun27t2vfjhmhPXrbTEfIGI2i5w+bXw73GnaNPukjaP+8Q99uAuIvP22a9rmDP/7v9rGtDT9bLGIREXptu++M7YtjAFci/1LRLVOaanIe++JPPaYyMiRIu++q08IMzI0gCstde21MzJExo2zDYEu/2rdWmTsWJFNm6rejn379LzNm9ufMzpag84DB6p+vpAQPcegQTX7aRi5haMxgEmkLlbrsFdQUIDg4GDk5+cjKCjI3c0hIgKgC7O0aKGF0SdP1ppX996rZQzuvhtYt86+kHtREdC/v64mGBqqtbLatav43BcuaBH2/Hw9z7332vYdOKDlDYqLtWbVokVaNN4ow4YBc+Zo3bDt27VI/owZzqlHVlukpurCNq++Crz9dtW+O3eulrAwmbT8wx13OLdtIlq3qmlTvUZ13Hefltb44gsgOVm3paTo51deAd55x2nNvS7GAK7F/iUiugGHDgErVgDLl2tgd/mybV9YmNayeughICHBtnJOeWfOAAsX6h/YjAzb9qAgLWz63/+tRU6r+wd97VqgVy9t14QJwMSJ1TsPeSRHY4AaUeiciIiuFhBgW6Vv0iT9n/WNG3XBlj//+eqVBRs0AJYtA+66Swtl33+/LiRTkZUrNSHVtClwzz32+2JigMWLAT8/4JtvNM45c8b591eRixf12oCuBPjMM/p+zpy6VfDckZX3KjN0qBbXF9EFf5wtNVUXKfryy+qf48AB/RkTY9t2//36Mz29+uclIiLyKNHRWmT8u+90lZsvv9Q/8kFB+vmTT/SJZKNGmpz60590edulS3WVnchI/cOdkaGBY9++mqTKydGnWN26VT8hBehKObNm6fs33rix4IDqLI6UAp/iEVHNZbEAXbrYP9z69FMdRVSZs2d1JMqOHbqi3saNmkQoLzFRE1hjxtgSX1f617+ABx/U87VqpSv/Nmt2w7d0TStX6kO/iAgdjXPunK7cWFR09YguT9aqFbBvnyZoEhKq/v2fftJzXL4MbNigI+uc4csvNVkI6IPRb7+t+jnOnbONvDt9WuNoQOPjyEh9f+oUcNNNN95eRzAGcC32LxGRC1y8CPzznzqCatky4PDhyo+NjdURUYMGAeHhrmnPyy8D06cDZrOOnurSxTXXoVqFI6WIiDyAlxfw/vu2z/37A4MHX/s7oaG6knGLFvqw7L77NG4pc+aMjoACgCefrPw8Xbro95o0Afbu1c8rVwLZ2ZpYcIV58/TnwIH6QC8w0JYEmTPHNdesaUSAf/9b3996a/XOcdttwJAh+v6115wzyuzAAdvINUCn3xUXV/08P/2kP0NDbQkpQBOR7dvr++++q3YziYiIPJ+PD9CjB/DBBzq8eudO4K23gE6ddH9kpCaKdu4Etm0DRo50XUIK0Cec/fsDJSX65LNsyDeRA5iUIiKq4e66C0hL09hj7lzHRlmHhen/2N9yC3DwoE7RGzgQOHJEp8ddugR06AC0bXvt87RpoyOmWrbUkUv9+un7gABNKHTporGOMxQV6cM+AHjiCdv2skTI11/rCBpPl5OjNb+8vG5sZFpaGuDrqyPlqjOiqbySEi09UVSk/yxFR+u2NWuqfq6Kpu6V4RQ+IiKiKjKZtIjouHHAli1AYaE+lZw6tfLios5Wr54+WYyNBX79VYfa5+cbc22q9ZiUIiKqBd58U5NMYWGOf6dpU2DrVlvR64ULNaH0+9/r/muNkiqveXNNbCQn65SwBg10e24usGmTJrtKSqp2PxVZtgw4f15H+XTsaNseGwt07qyJtM8/v/Hr1HQHD+rPZs2A+vWrf54mTYDhw/X9a6/pVNDqevllLTjfqJFO4evbV7evWlX1c10rKdWzp/5cvfrG2ktERFRnNWhwdeFRIwQEaFH2qChgzx5gwAD7wuxElWBSiojIgzVuDMyeraOZ7rlHkz7Hj2uSatAgx8/TqJEu3LJnD1BQAOTlaZIiIkKTDO++e+NtLauNmZR09Wiw8gXPPT1ZcSNFzq80dqxOgdy+Hfjqq+qdY8kS4KOP9P0XX2iyqywp9c03VZ8aeK2k1L33au3WnBxg8+bqtZeIiIjcpEkTTUz5+2stiREj6tZKNVQtTEoREdUB//VfWgNo4ULgjjuAF1/UuKE6TCYgOFjPOX26bnvrLVsdpOr49VctpA5UnCz73e80WXHwoOcv7OLMpFSjRsDo0fo+La3qDyxzcoCnn9b3o0cDDzyg7++9V+PNX37RchVVUVZTqqKklI+PjvgHgL/9rWrnJSIiohrgjjt0Kp/JBHz8se3JFlElmJQiIqojTCYdSZ2ZaUsm3agnngC6d9cRWCNHVv88ixcDpaXAnXdqgfYrBQTYkiPJyXofv/xS/eu5UmGhjii6cKF633dmUgoARo3SEXP79wN//nPVvvvJJzoqLjYWmDTJtt3XV2ucAVWfwnetkVKArmANaFKKD1eJiIhqocRE4J139P2oUdWb7091BpNSRERUbSYTMHMm4O2tNaGqE3OsX29LkpUvcH6lSZN0FLiXlyaxWrbUGp4XL1av7a7y7LNASgrw+uvV+76zk1KBgVpTCtDaUGVJoeuxWIBPP9X3I0fqKKbyqlNXqqgIOHFC3992W8XH9O6tSa+yxYSIiIioFho9WpcCtli0AOmuXe5uEdVQTEoREdENadPGNkrqhRd01JQjDhwAHn5Yp4IdOqRF3JOSKj/e3x94/32tj9W1K1BcDIwZo6N4Dh++wZtwkoMHgfnz9f2f/qRtrCpnJ6UA4LnngLg44OxZnR539uz1v7Nhg95PYCDw2GNX7y+byrd5M3DmjGPtKJu616gREBpa8TEBAUCvXvq+rk7h27BhA/r164eoqCiYTCYsXbrUbr+IYPz48YiMjISfnx8SEhJw4IpsY25uLpKSkhAUFISQkBAMGTIERUVFdsfs3LkTd999N3x9fdGsWTNMnTr1qrYsXrwYLVu2hK+vL9q1a4dvvvnG6fdLREQeqGz63n336VOpBx/UugBEV2BSioiIbtj48brYysGDttHaFRHRB2UjRwKtWwNLl+oCMc89B+zeDYSHX/9aHToA//ynTkULC9Pi63ffbUt4uNO0abZC7Pn5Va9/demSruIMODcpZTZrXzdrptP4Hn9cr3Utn3yiPwcN0oTglZo1A9q31/v99lvH2nG9qXtlyk/hq4uKi4vRoUMHzJw5s8L9U6dOxYcffojZs2cjIyMDAQEB6NWrFy6UmzOalJSEH3/8Eenp6Vi5ciU2bNiAoUOHWvcXFBSgZ8+euPnmm5GZmYlp06Zh4sSJmDt3rvWYf/3rXxg0aBCGDBmCrKwsJCYmIjExEbt373bdzRMRkefw8dGVVm6/HThyRKf1Ofr0kuoOIcnPzxcAkp+f7+6mEBHVWgsXimjaSaRFC5EnnhCZPl1kzRqRTz/Vz+HhtmMAkb59Rfbsqf41f/lFrwWIREbe2Llu1IkTImaztiUxUX926CBisTh+jp9/1u/5+oqUljq/jdu3iwQE6DWGDau8bXl52gZAJCOj8vO9+qoeM2iQY9efNEmPT06+9nFnzoh4e+ux+/c7du7qqukxAABZsmSJ9bPFYpGIiAiZNm2adVteXp6YzWaZP3++iIjs2bNHAMjWrVutx6xevVpMJpMcO3ZMREQ+/vhjCQ0NlZKSEusxY8aMkRYtWlg/DxgwQPr27WvXnri4OHnmmWccbn9N718iIjLA/v0iDRvqH/YBA1wT5NR2FotIUZHIoUMiW7aIrFol8vnnItOmiUyeLLJtW9WCyhrA0RiAI6WIiMgpHn9caykBQHa2jhIaPVoLYj/9tH4+eVJH3fTpoysFr1wJtGpV/Ws2aaI1qdq21VpF3bu7rw7RBx8AJSVAfLyOMvLzA3bsAL7/3vFzlE3du+UWrZ3lbB066PRCkwmYPbvyBXEWLNBC7W3aAJ06VX6+sil8337r2Mp+jo6UathQp3UCwJIl1z9vXXLo0CHk5OQgISHBui04OBhxcXHYtGkTAGDTpk0ICQlBx44drcckJCTAy8sLGRkZ1mPuuece+JQrFtarVy9kZ2fj7H/md27atMnuOmXHlF2HiIjIITExOvy5fn1g0SJgwgR3t8j1RLRewv79GgwuXaq1HSZP1mWwk5O1kOaddwLNm2uA3KCBDpXv3FmLdw4erAVBX31VVzW8/XZg3Dhg+3aPWg3G290NICIiz2AyAZ9/rsXHMzNtrx07dJpdQgJw//3AXXfpdDJnCQ8H1q3TOkTbtmnpgvHjNalz6ZImS/z9tV5VZXWMblR+vpZNAICxYzWp8sQTmpyaORPo1s2x8xw8qD+dOXXvSv366e/o5Zd1QZxbb9UyD+WVTd0bMkR/r5W56y7t07NntbbU9e7T0aQUoFP4vvtOY9hXXrn+8XVFzn/qcYRfMdc1PDzcui8nJwdhYWF2+729vdGwYUO7Y6Kv+Aet7Jw5OTkIDQ1FTk7ONa9TkZKSEpSUlFg/FxQUVOX2iIjIU3XvDsydCzz1FPDWW5pgSU52d6tuXFlB0V27gF9/tb1On3bsid2VzGbgppvsX8XF+gTwp5+At9/WV0yMLkc9YADQrt21A7YajkkpIiJyqrAwHQnVp49x12zcGFizRq+5ebOt8Hp5s2YB6ela+6q6Skt1NNSVNZZmzQIKCnRkUVmCJzVVkztffQXMmAFERl7//K4ocl6Rl14C9u3T9g0YoMmfLl10365dwNatuqLik09e+zze3vqQb/58XYXPmUmpxETtw4wM4NgxHRVHNd/kyZPxxhtvuLsZRERUEw0erMPpp0wB/ud/NOBx9MldTXL6tI74+utfgeuNHg4M1ED1ykRTRa/GjXW0VEUJpqIinWKwaBGwerUGVZMm6atFC52yMGCATh+oZQkqTt8jIiKPEBKiUwJffFFH2QwYoKOjUlI0EVVWEL0s8VMVIjpi57bbNF54/XWgsFD3nT8PvPeevh8zxjbtLjZWp/Jdvgz88Y9Xn2/LFo1pyjMqKWUyaSLtgQe0/Q8+qP0DAJ9+qj8fekjjo+vp21d/rlp17eMKCoBTp/S9I0mpyEgdiQXoiHdSERERAICTJ0/abT958qR1X0REBE6VdfZ/XL58Gbm5uXbHVHSO8teo7Jiy/RV59dVXkZ+fb30dLavcT0REBGgS5dFHgYsX9QnUzz+7u0WOOX9eE0IPPaRBSmqqJqS8vHQqwLvvapLq73/XoftHj+p3Cgp0NFVGhiaVPvvMNmR98GANpDp31uAvMLDyhFKDBsDAgRqQnjqldTESE3VkVXa2jj5r315XEpowAfjxRyN754YwKUVERB4jMFBjgq+/BhYu1Njg88+BjRt1mtrBg/pAriwB44i9e4GePTV++ve/Nb6YNEkTVLNmacLp1Cng5ps1Vihv+HD9OWeObbW7o0c1nomLAzp2BM6csR1vVFIKsJV1uOsunX7Xq5fGhX/5i+4fMsSx8/TurfHYrl22aX8VKRslFRYGBAU5du66vgpfRaKjoxEREYE1a9ZYtxUUFCAjIwPx8fEAgPj4eOTl5SEzM9N6zNq1a2GxWBAXF2c9ZsOGDbhUbhnG9PR0tGjRAqH/mecaHx9vd52yY8quUxGz2YygoCC7FxERkZWXF/DFF7Yg6MEHgbw8d7eqYqWlOhT/qae0XsTvfgesWKFPHO+4Q4fC//KL7aloUpIGjbGxQNOmgK+va9oVGKjLIy9ZokHovHlA//662uG+fcCbb+qIqdatgYkTqxb4uoNBhddrNK4MQ0Tk+Y4dE2nTRhd+adRI5Icfrn18fr7ISy/ZVoEzm0Vef11k8WKRmBj7VQQBkY8+uvocFy6IhIXp/kWLRD7+WCQw0P57DzxgW4Sm7NjMTOfff2VOnxZp1UqvGxysP6OiRC5dcvwcL7xgu58336x4cZgFC3R/166On/enn/Q79eppO12hJsYAhYWFkpWVJVlZWQJAZsyYIVlZWXL48GEREZkyZYqEhITIsmXLZOfOndK/f3+Jjo6W8+fPW8/Ru3dviY2NlYyMDNm4caPExMTIoHLLJObl5Ul4eLgkJyfL7t27ZcGCBeLv7y9z5syxHvP999+Lt7e3TJ8+Xfbu3SsTJkyQ+vXry65duxy+l5rYv0REVAMcPy7StKn+oU9IELl40d0tUhaLSFaWyOjRGhCVD9puvlnktddEfvzR3a2sWF6eyF/+ItKvn4iPj33b27QRmTjR0KWqHY0BmJQSBkxERHXF6dMinTrp32Z/f5Hx4zX5VJ7FIvLFFyIREba/4w89JPLzz7ZjLl4U+cMfRBo31v033SRSXFzxNceN02PKxwbx8SILF4r4+urnt97SVYDL9ufmuq4PKnLkiC0uBDTeqgqLxXafgMiwYSKXL9v25+WJDBmi+wYPrtq527fX7332WdW+56iaGAOsW7dOAFz1SklJERERi8UiaWlpEh4eLmazWXr06CHZ2dl25zhz5owMGjRIGjRoIEFBQfLUU09JYWGh3TE7duyQbt26idlsliZNmsiUKVOuasuiRYvk9ttvFx8fH2nTpo2sWrWqSvdSE/uXiIhqiO3bRQIC9A/9M89U/FTLKIcPi0yebHuCWfYKDdW2bdhge4pYG+TlaUD74IMi9evb31PbtvoUce9elzbB0RjAJOJBawlWU0FBAYKDg5Gfn89h5kREHq6w0LayG6A1otLSgGee0al6w4fryr2A1j764IPKi7YXFOiI6bg4HcVdkaNHdTpeaSkQEKALpqSmAvXqaf2mIUN0JPv77wMvvAAEB7tnFHtZza2iIn3/m99U/RwzZwLPP68RT2KirvT39dfa1xcv6jHTpgGjRzt+zjfe0D57/XX9PTkbYwDXYv8SEdE1rVihU89EdDrcqFHGXfvsWV2RZt48YP1623YfHw1innxSg0BnLhvtDnl5wPLlWrfh//7PVlMC0JX7nnhCl492MkdjACalwICJiKiuEdFkybhxwP79ui0yEjh5ErBYdHW9tDSNi5wRh8yZozUvX3tNa0+V9/TTWvPSZNJ2xcbqse5w/DiQnw+0alX9c3z9tZZUKCmx3162MMwrr2gpBEfl5uoqf67688wYwLXYv0REdF3vvac1mQB9Wtiokf3rWtsaNtQkkqNKSoBvvtHCoytX2p6aAcC992oQ89hjuoKOJzp7Fli2TBNU6elaH6tnTy3Q7mRMSlUBAyYiorrp0iVNCE2cCJw4odsGDACmTweaNTOmDefPa7HxnTv18yOPaGKnNtuwQWO6xo21QPwjj2itzZqIMYBrsX+JiOi6RICXXrItZ1xVgYGVJ6/Ktvv5aTJq0SL7Ielt2gDJyVo4vHlzp9xOrZGbqwmqqChd8cbJmJSqAgZMRER127lz+sCsZUvgnnuMv/6BA7oITUGBxmTTpxvfhrqKMYBrsX+JiMhhv/6qw9bPnNHX6dO29xV9zs3VhFZVRUXplLUnnwTat9fh6uR0jsYA3ga2iYiIqEby9weGDnXf9WNitKTBlCnA4MHuawcRERGR29x0k74cVVqqo54cSWLl5WmNhORkoHt3Le5JNQKTUkRERDXA/ffri4iIiIgcUK+ebYoe1Vpe7m4AERERERERERHVPUxKERERERERERGR4ZiUIiIiIiIiIiIiwzEpRUREREREREREhmNSioiIiIiIiIiIDMekFBERERERERERGY5JKSIiIiIiIiIiMhyTUkREREREREREZDgmpYiIiIiIiIiIyHBMShERERERERERkeGYlCIiIiIiIiIiIsMxKUVERERERERERIZjUoqIiIiIiIiIiAzHpBQRERERERERERmOSSkiIiIiIiIiIjIck1JERERERERERGQ4JqWIiIiIiIiIiMhwTEoREREREREREZHhmJQiIiIiIiIiIiLDMSlFRERERERERESG83Z3A2oCEQEAFBQUuLklREREZKSyv/1lsQA5F2MsIiKiusnRGItJKQCFhYUAgGbNmrm5JUREROQOhYWFCA4OdnczPA5jLCIiorrtejGWSfhoEBaLBcePH0dgYCBMJpNTz11QUIBmzZrh6NGjCAoKcuq5qWLsc/dgvxuPfW489rnxXN3nIoLCwkJERUXBy4tVDZyNMZbnYb8bj31uPPa58djn7uHKfnc0xuJIKQBeXl5o2rSpS68RFBTEf7kMxj53D/a78djnxmOfG8+Vfc4RUq7DGMtzsd+Nxz43HvvceOxz93BVvzsSY/GRIBERERERERERGY5JKSIiIiIiIiIiMhyTUi5mNpsxYcIEmM1mdzelzmCfuwf73Xjsc+Oxz43HPqfK8J8N92C/G499bjz2ufHY5+5RE/qdhc6JiIiIiIiIiMhwHClFRERERERERESGY1KKiIiIiIiIiIgMx6QUEREREREREREZjkkpF5o5cyZuueUW+Pr6Ii4uDlu2bHF3kzzK5MmT0alTJwQGBiIsLAyJiYnIzs62O+bChQtITU1Fo0aN0KBBAzz66KM4efKkm1rsWaZMmQKTyYSRI0dat7G/XePYsWN48skn0ahRI/j5+aFdu3b44YcfrPtFBOPHj0dkZCT8/PyQkJCAAwcOuLHFtVtpaSnS0tIQHR0NPz8//OY3v8Hvf/97lC/ByD6/cRs2bEC/fv0QFRUFk8mEpUuX2u13pI9zc3ORlJSEoKAghISEYMiQISgqKjLwLsidGGe5DmMs92OcZQzGWMZjnOV6tS3GYlLKRRYuXIgXX3wREyZMwLZt29ChQwf06tULp06dcnfTPMb69euRmpqKzZs3Iz09HZcuXULPnj1RXFxsPWbUqFFYsWIFFi9ejPXr1+P48eN45JFH3Nhqz7B161bMmTMH7du3t9vO/na+s2fPomvXrqhfvz5Wr16NPXv24N1330VoaKj1mKlTp+LDDz/E7NmzkZGRgYCAAPTq1QsXLlxwY8trr3feeQezZs3CH/7wB+zduxfvvPMOpk6dio8++sh6DPv8xhUXF6NDhw6YOXNmhfsd6eOkpCT8+OOPSE9Px8qVK7FhwwYMHTrUqFsgN2Kc5VqMsdyLcZYxGGO5B+Ms16t1MZaQS3Tu3FlSU1Otn0tLSyUqKkomT57sxlZ5tlOnTgkAWb9+vYiI5OXlSf369WXx4sXWY/bu3SsAZNOmTe5qZq1XWFgoMTExkp6eLt27d5cRI0aICPvbVcaMGSPdunWrdL/FYpGIiAiZNm2adVteXp6YzWaZP3++EU30OH379pWnn37abtsjjzwiSUlJIsI+dwUAsmTJEutnR/p4z549AkC2bt1qPWb16tViMpnk2LFjhrWd3INxlrEYYxmHcZZxGGO5B+MsY9WGGIsjpVzg4sWLyMzMREJCgnWbl5cXEhISsGnTJje2zLPl5+cDABo2bAgAyMzMxKVLl+x+Dy1btkTz5s35e7gBqamp6Nu3r12/AuxvV1m+fDk6duyIxx9/HGFhYYiNjcUf//hH6/5Dhw4hJyfHrt+Dg4MRFxfHfq+mLl26YM2aNdi/fz8AYMeOHdi4cSP69OkDgH1uBEf6eNOmTQgJCUHHjh2txyQkJMDLywsZGRmGt5mMwzjLeIyxjMM4yziMsdyDcZZ71cQYy9vpZyScPn0apaWlCA8Pt9seHh6Offv2ualVns1isWDkyJHo2rUr2rZtCwDIycmBj48PQkJC7I4NDw9HTk6OG1pZ+y1YsADbtm3D1q1br9rH/naNgwcPYtasWXjxxRfx2muvYevWrXjhhRfg4+ODlJQUa99W9N8b9nv1jB07FgUFBWjZsiXq1auH0tJSTJo0CUlJSQDAPjeAI32ck5ODsLAwu/3e3t5o2LAhfw8ejnGWsRhjGYdxlrEYY7kH4yz3qokxFpNS5BFSU1Oxe/dubNy40d1N8VhHjx7FiBEjkJ6eDl9fX3c3p86wWCzo2LEj3n77bQBAbGwsdu/ejdmzZyMlJcXNrfNMixYtwrx58/Dll1+iTZs22L59O0aOHImoqCj2ORHVOYyxjME4y3iMsdyDcRZdidP3XKBx48aoV6/eVathnDx5EhEREW5qlecaPnw4Vq5ciXXr1qFp06bW7REREbh48SLy8vLsjufvoXoyMzNx6tQp3HHHHfD29oa3tzfWr1+PDz/8EN7e3ggPD2d/u0BkZCRat25tt61Vq1Y4cuQIAFj7lv+9cZ6XX34ZY8eOxcCBA9GuXTskJydj1KhRmDx5MgD2uREc6eOIiIirilpfvnwZubm5/D14OMZZxmGMZRzGWcZjjOUejLPcqybGWExKuYCPjw/uvPNOrFmzxrrNYrFgzZo1iI+Pd2PLPIuIYPjw4ViyZAnWrl2L6Ohou/133nkn6tevb/d7yM7OxpEjR/h7qIYePXpg165d2L59u/XVsWNHJCUlWd+zv52va9euVy3DvX//ftx8880AgOjoaERERNj1e0FBATIyMtjv1XTu3Dl4edn/eaxXrx4sFgsA9rkRHOnj+Ph45OXlITMz03rM2rVrYbFYEBcXZ3ibyTiMs1yPMZbxGGcZjzGWezDOcq8aGWM5vXQ6iYjIggULxGw2y+effy579uyRoUOHSkhIiOTk5Li7aR7j2WefleDgYPnHP/4hJ06csL7OnTtnPWbYsGHSvHlzWbt2rfzwww8SHx8v8fHxbmy1Zym/KowI+9sVtmzZIt7e3jJp0iQ5cOCAzJs3T/z9/eWvf/2r9ZgpU6ZISEiILFu2THbu3Cn9+/eX6OhoOX/+vBtbXnulpKRIkyZNZOXKlXLo0CH529/+Jo0bN5ZXXnnFegz7/MYVFhZKVlaWZGVlCQCZMWOGZGVlyeHDh0XEsT7u3bu3xMbGSkZGhmzcuFFiYmJk0KBB7rolMhDjLNdijFUzMM5yLcZY7sE4y/VqW4zFpJQLffTRR9K8eXPx8fGRzp07y+bNm93dJI8CoMLXZ599Zj3m/Pnz8txzz0loaKj4+/vLww8/LCdOnHBfoz3MlcES+9s1VqxYIW3bthWz2SwtW7aUuXPn2u23WCySlpYm4eHhYjabpUePHpKdne2m1tZ+BQUFMmLECGnevLn4+vrKrbfeKuPGjZOSkhLrMezzG7du3boK/xuekpIiIo718ZkzZ2TQoEHSoEEDCQoKkqeeekoKCwvdcDfkDoyzXIcxVs3AOMv1GGMZj3GW69W2GMskIuL88VdERERERERERESVY00pIiIiIiIiIiIyHJNSRERERERERERkOCaliIiIiIiIiIjIcExKERERERERERGR4ZiUIiIiIiIiIiIiwzEpRUREREREREREhmNSioiIiIiIiIiIDMekFBERERERERERGY5JKSKiajCZTFi6dKm7m0FERETkcRhnEdUdTEoRUa0zePBgmEymq169e/d2d9OIiIiIajXGWURkJG93N4CIqDp69+6Nzz77zG6b2Wx2U2uIiIiIPAfjLCIyCkdKEVGtZDabERERYfcKDQ0FoEO+Z82ahT59+sDPzw+33norvvrqK7vv79q1C7/97W/h5+eHRo0aYejQoSgqKrI75tNPP0WbNm1gNpsRGRmJ4cOH2+0/ffo0Hn74Yfj7+yMmJgbLly937U0TERERGYBxFhEZhUkpIvJIaWlpePTRR7Fjxw4kJSVh4MCB2Lt3LwCguLgYvXr1QmhoKLZu3YrFixfju+++swuGZs2ahdTUVAwdOhS7du3C8uXLcdttt9ld44033sCAAQOwc+dOPPDAA0hKSkJubq6h90lERERkNMZZROQ0QkRUy6SkpEi9evUkICDA7jVp0iQREQEgw4YNs/tOXFycPPvssyIiMnfuXAkNDZWioiLr/lWrVomXl5fk5OSIiEhUVJSMGzeu0jYAkNdff936uaioSADI6tWrnXafREREREZjnEVERmJNKSKqle677z7MmjXLblvDhg2t7+Pj4+32xcfHY/v27QCAvXv3okOHDggICLDu79q1KywWC7Kzs2EymXD8+HH06NHjmm1o37699X1AQACCgoJw6tSp6t4SERERUY3AOIuIjMKkFBHVSgEBAVcN83YWPz8/h46rX7++3WeTyQSLxeKKJhEREREZhnEWERmFNaWIyCNt3rz5qs+tWrUCALRq1Qo7duxAcXGxdf/3338PLy8vtGjRAoGBgbjllluwZs0aQ9tMREREVBswziIiZ+FIKSKqlUpKSpCTk2O3zdvbG40bNwYALF68GB07dkS3bt0wb948bNmyBZ988gkAICkpCRMmTEBKSgomTpyIX3/9Fc8//zySk5MRHh4OAJg4cSKGDRuGsLAw9OnTB4WFhfj+++/x/PPPG3ujRERERAZjnEVERmFSiohqpW+//RaRkZF221q0aIF9+/YB0BVbFixYgOeeew6RkZGYP38+WrduDQDw9/fH3//+d4wYMQKdOnWCv78/Hn30UcyYMcN6rpSUFFy4cAHvvfceRo8ejcaNG+Oxxx4z7gaJiIiI3IRxFhEZxSQi4u5GEBE5k8lkwpIlS5CYmOjuphARERF5FMZZRORMrClFRERERERERESGY1KKiIiIiIiIiIgMx+l7RERERERERERkOI6UIiIiIiIiIiIiwzEpRUREREREREREhmNSioiIiIiIiIiIDMekFBERERERERERGY5JKSIiIiIiIiIiMhyTUkREREREREREZDgmpYiIiIiIiIiIyHBMShERERERERERkeGYlCIiIiIiIiIiIsP9P4UXIg/OWsAvAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# Plotting training and validation loss curves\n", - "fig, axs = plt.subplots(1, 2, figsize=(12, 6)) # 1 row, 2 columns of graphs\n", - "\n", - "axs[0].plot(train_loss_series, label='Training Loss', color='blue')\n", - "axs[0].set_title('Training Loss X Epochs')\n", - "axs[0].set_xlabel('Epoch')\n", - "axs[0].set_ylabel('Loss')\n", - "\n", - "val_epochs = [i*5 for i in range(len(val_loss_series))]\n", - "axs[1].plot(val_epochs, val_loss_series, label='Validation Loss', color='red')\n", - "axs[1].set_title('Validation Loss X Epochs')\n", - "axs[1].set_xlabel('Epoch')\n", - "axs[1].set_ylabel('Loss')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "id": "8ccc57f4-6232-45db-bb72-693e7047c4e3", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_15487/1008845002.py:50: MatplotlibDeprecationWarning: Setting data with a non sequence type is deprecated since 3.7 and will be remove two minor releases later\n", - " point.set_data(new_x, new_y)\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", - " \n", - "
\n", - " \n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - "
\n", - "\n", - "\n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Animating original sequence to be reconstructed\n", - "animation = animate_segments(10000, 1, \"Visualizing Original Sequence\")\n", - "HTML(animation.to_jshtml())" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "cceb7dce-342b-499f-8f14-4bf3ecbbff42", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_15487/1008845002.py:50: MatplotlibDeprecationWarning: Setting data with a non sequence type is deprecated since 3.7 and will be remove two minor releases later\n", - " point.set_data(new_x, new_y)\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", - " \n", - "
\n", - " \n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - "
\n", - "\n", - "\n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Animating reconstructed sequence based on the above original sequence\n", - "best_model_path = 'best_model.pth'\n", - "model.load_state_dict(torch.load(best_model_path))\n", - "model.eval()\n", - "with torch.no_grad():\n", - " sequence_prime, _, _ = model(dance_sequences[10000].unsqueeze(0))\n", - "\n", - "sequence_prime = np.array(sequence_prime.squeeze(0).cpu()).reshape(seq_len, n_joints, 3)\n", - "sequence_prime = np.swapaxes(sequence_prime, 0, 1)\n", - "\n", - "animation = animate_segments(None, None, \"Visualizing Reconstructed Sequence\", \"r\", sequence_prime)\n", - "HTML(animation.to_jshtml())" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "480cc424-ca7a-4df5-8eee-d4035c4f7128", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_15487/1008845002.py:50: MatplotlibDeprecationWarning: Setting data with a non sequence type is deprecated since 3.7 and will be remove two minor releases later\n", - " point.set_data(new_x, new_y)\n" - ] - }, - { - "data": { - "text/html": [ - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "
\n", - " \n", - "
\n", - " \n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
\n", - "
\n", - "\n", - "\n", - "\n" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 14, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Generating and animating new sequence - either sampling from a normal gaussian distribution or sampling with slightly modified standard\n", - "# deviations to make sequences a bit more crazy and test limits.\n", - "torch.manual_seed(0)\n", - "sample = torch.randn(1, lat_dim).to(device)\n", - "#sample = torch.normal(mean=torch.rand(lat_dim), std=(torch.rand(lat_dim))*1.2).unsqueeze(0).to(device)\n", - "\n", - "model.load_state_dict(torch.load(best_model_path))\n", - "model.eval()\n", - "with torch.no_grad():\n", - " generated_sequence = model.decoder(sample, seq_len)\n", - "\n", - "generated_sequence = np.array(generated_sequence.squeeze(0).cpu()).reshape(seq_len, n_joints, 3)\n", - "generated_sequence = np.swapaxes(generated_sequence, 0, 1)\n", - "\n", - "animation = animate_segments(None, None, \"Visualizing Generated Sequence\", \"r\", generated_sequence)\n", - "HTML(animation.to_jshtml())" - ] - }, - { - "cell_type": "markdown", - "id": "f315501c-7832-48e0-9db7-91a5c282760b", - "metadata": {}, - "source": [ - "# Why this Project?" - ] - }, - { - "cell_type": "markdown", - "id": "adc4dea3-a8a2-4d09-8cab-814d1a823e1b", - "metadata": {}, - "source": [ - "

Growing up in the northeast of Brazil, art and communication were central to my life. Surrounded by the richness of Brazilian music and dance from a young age, I quickly connected to the arts. While I'm not as skilled as many dancers, I strongly believe in the power of dance to bring warmth to any environment and I always engage in it with joy. My talents, though, are more related to communication, making me a natural-born chatterbox, always wanting to learn from others, and share parts of my own journey. I think the mixture of my cultural background along with my academic and professional trajectory is exactly what connects me to this project and truly makes me want to be a part of it.\n", - "\n", - "Now talking about approaches to the project, I would first focus on building the dataset. I would use the same methods employed in the provided paper to preprocess the dance sequences, but now separating the joints of the two dancers into different groups and encoding the interaction between nodes from the two. Focusing on the proposed methods, we could:\n", - "\n", - "- Draw and edge between joints from different dancers that have some common properties. Very close nodes with either same or opposite velocity vectors, and nodes in symmetric positions are examples of what these properties could be. This form of encoding fits perfectly a GNN and could be used to help the model understand the sequences while capturing the relationship between dancers.\n", - "\n", - "- Use the same approach for pairs of nodes computation as before, but rather than encoding pairs with an edge, encoding them into a dance sequence by a special connection token. These tokens could be used by a transformer model to capture the relationship between nodes over time, understanding a sequence as combination of interactive joint pairs.

" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.13" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/evaluation_test.pdf b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/evaluation_test.pdf deleted file mode 100644 index df30142..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/evaluation_test.pdf and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/requirements.in b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/requirements.in deleted file mode 100644 index 2a9b642..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/requirements.in +++ /dev/null @@ -1,7 +0,0 @@ -torch==2.2.1 -torch_geometric==2.5.0 -numpy==1.26.4 -matplotlib==3.8.3 -mpl-tools==0.4.0 -ipython==8.22.1 -tqdm==4.66.2 diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/requirements.txt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/requirements.txt deleted file mode 100644 index 0e30824..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/evaluation_test/requirements.txt +++ /dev/null @@ -1,181 +0,0 @@ -# -# This file is autogenerated by pip-compile with Python 3.10 -# by the following command: -# -# pip-compile requirements.in -# -aiohttp==3.9.3 - # via torch-geometric -aiosignal==1.3.1 - # via aiohttp -asttokens==2.4.1 - # via stack-data -async-timeout==4.0.3 - # via aiohttp -attrs==23.2.0 - # via aiohttp -certifi==2024.2.2 - # via requests -charset-normalizer==3.3.2 - # via requests -contourpy==1.2.0 - # via matplotlib -cycler==0.12.1 - # via matplotlib -decorator==5.1.1 - # via ipython -exceptiongroup==1.2.0 - # via ipython -executing==2.0.1 - # via stack-data -filelock==3.13.1 - # via - # torch - # triton -fonttools==4.49.0 - # via matplotlib -frozenlist==1.4.1 - # via - # aiohttp - # aiosignal -fsspec==2024.2.0 - # via - # torch - # torch-geometric -idna==3.6 - # via - # requests - # yarl -ipython==8.22.1 - # via -r requirements.in -jedi==0.19.1 - # via ipython -jinja2==3.1.3 - # via - # torch - # torch-geometric -joblib==1.3.2 - # via scikit-learn -kiwisolver==1.4.5 - # via matplotlib -markupsafe==2.1.5 - # via jinja2 -matplotlib==3.8.3 - # via - # -r requirements.in - # mpl-tools -matplotlib-inline==0.1.6 - # via ipython -mpl-tools==0.4.0 - # via -r requirements.in -mpmath==1.3.0 - # via sympy -multidict==6.0.5 - # via - # aiohttp - # yarl -networkx==3.2.1 - # via torch -numpy==1.26.4 - # via - # -r requirements.in - # contourpy - # matplotlib - # scikit-learn - # scipy - # torch-geometric -nvidia-cublas-cu12==12.1.3.1 - # via - # nvidia-cudnn-cu12 - # nvidia-cusolver-cu12 - # torch -nvidia-cuda-cupti-cu12==12.1.105 - # via torch -nvidia-cuda-nvrtc-cu12==12.1.105 - # via torch -nvidia-cuda-runtime-cu12==12.1.105 - # via torch -nvidia-cudnn-cu12==8.9.2.26 - # via torch -nvidia-cufft-cu12==11.0.2.54 - # via torch -nvidia-curand-cu12==10.3.2.106 - # via torch -nvidia-cusolver-cu12==11.4.5.107 - # via torch -nvidia-cusparse-cu12==12.1.0.106 - # via - # nvidia-cusolver-cu12 - # torch -nvidia-nccl-cu12==2.19.3 - # via torch -nvidia-nvjitlink-cu12==12.4.99 - # via - # nvidia-cusolver-cu12 - # nvidia-cusparse-cu12 -nvidia-nvtx-cu12==12.1.105 - # via torch -packaging==23.2 - # via matplotlib -parso==0.8.3 - # via jedi -pexpect==4.9.0 - # via ipython -pillow==10.2.0 - # via matplotlib -prompt-toolkit==3.0.43 - # via ipython -psutil==5.9.8 - # via torch-geometric -ptyprocess==0.7.0 - # via pexpect -pure-eval==0.2.2 - # via stack-data -pygments==2.17.2 - # via ipython -pyparsing==3.1.2 - # via - # matplotlib - # torch-geometric -python-dateutil==2.9.0.post0 - # via matplotlib -requests==2.31.0 - # via torch-geometric -scikit-learn==1.4.1.post1 - # via torch-geometric -scipy==1.12.0 - # via - # scikit-learn - # torch-geometric -six==1.16.0 - # via - # asttokens - # python-dateutil -stack-data==0.6.3 - # via ipython -sympy==1.12 - # via torch -threadpoolctl==3.3.0 - # via scikit-learn -torch==2.2.1 - # via -r requirements.in -torch-geometric==2.5.0 - # via -r requirements.in -tqdm==4.66.2 - # via - # -r requirements.in - # torch-geometric -traitlets==5.14.1 - # via - # ipython - # matplotlib-inline -triton==2.2.0 - # via torch -typing-extensions==4.10.0 - # via torch -urllib3==2.2.1 - # via requests -wcwidth==0.2.13 - # via prompt-toolkit -yarl==1.9.4 - # via aiohttp diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/ARCH_EXPERIMENT.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/ARCH_EXPERIMENT.md deleted file mode 100644 index dacd584..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/ARCH_EXPERIMENT.md +++ /dev/null @@ -1,165 +0,0 @@ -# Addressing a Simpler Problem - -During the development of the model for the dance scenario, challenges arose in reconstructing frames and predicting edges. These issues, along with extensive model iterations, data augmentations, and various experiments, led to questioning the architecture's ability to learn the desired dynamics, prompting further testing. - -To better assess the model's capabilities, the decision was made to revisit the [original NRI paper](https://arxiv.org/abs/1802.04687) and use their charged particles dataset. The original problem was much simpler — featuring ten times fewer particles, hundreds of times fewer edges, a 2D environment and a greater availability of data — providing a clearer benchmark for evaluating the NRI variant's performance on a less complex task. - -The experiment provided valuable insights. Even in a simplified version with significantly reduced hidden dimensions, the model showed the ability to produce reasonable reconstructions and edge predictions. Although the results are not perfect, the model's potential to address the graph dynamics problem became clear. - -These findings have shifted the focus to refining the architecture and adjusting parameters within the simpler problem's framework. The goal is to identify a version that can be scaled up to effectively tackle the more complex dance setting. Simultaneously, the goal is to simplify the choreography dataset by selectively sampling dancers, aligning both experiments more closely and better exploiting the architecture. - -## Generating Data - -The data generation process involved using the `data/generate_dataset.py` script with the default settings from the [original project repository](https://github.com/ethanfetaya/NRI), but with the option to simulate charged particles in motion. This resulted in a training dataset of 50000 simulations, each simulation including 5 particles with 2D coordinates and 2D velocities, moving over 49 frames. The interactions between charges are defined by a random undirected graph, which controls the particles' accelerations, affecting their speed and position in each frame. - -
- -
-
- On the left, you can see a complete simulation, where the paths of different particles are shown in various colors, starting their trajectories with lighter shades and ending with darker ones. On the right, you see the interaction graph between the particles, where the edges between vertices indicate bidirectional interactions between the respective particles. -

-
- -To prepare the model input, the original sequence of 49 frames is first reduced to 48 frames to simplify testing different sequence splits. Subdivisions are then tested using sub-trajectories of 8, 12, 16, or 24 frames. To ensure the training process remains within a reasonable time frame (under 24 hours), non-overlapping sequences are used, meaning each simulation is divided into non-overlapping segments of $\frac{48}{sequence\_size}$. The next section provides additional visualizations and detailed information on the performance of the models tested for each sequence size. - -In addition, the input needs to be prepared from the graph's perspective. The approach, similar to the original choreography model, involves using a fully connected undirected graph. This allows the model to later sample edges based on the input sequence and retain only those relevant for reconstructing the trajectory. The image below illustrates an example of the input graph from a random frame in a random sequence. - -
- -
-
- The image shows a fully connected graph used as the model's input. In this example, a random frame from a simulation is chosen, and all points are connected. -

-
- -## Testing Architecture - -Using samples from the data described above, different architectures were tested to assess the model's ability to reconstruct sequences. In an autoencoder and for a self-supervised task, it's important not only to look at loss curves but also to observe the model's outputs. In this type of architecture, and particularly in a subjective context like duet choreography, the sampled edges in the latent space may seem reasonable even when the model is completely off track. Since the reconstruction heavily relies on the sampled edges, evaluating the quality of the reconstructions helps to better judge the quality of the interactions suggested by those edges. - -This effect is evident in some experimental results shown below. Usually, when a particle has no sampled interactions, it stays still in the center. Also, particle movement is naturally linked to the particles they interact with, so good edge sampling is crucial for accurate reconstructions. - -
- -
-
- The image illustrates the reconstruction of a 6-frame sequence, where only the particles connected by an edge are in motion. This edge sample and reconstruction come from a trained compact architecture model. -

-
- -For the following experiments, these were the original trajectories and graph considered: - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/original_trajectories_6seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/original_trajectories_12seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/original_graph.png)| -|:-:|:-:|:-:| - -
- On the left, the trajectory for the 6-frame sequence; in the middle, the trajectory for the 12-frame sequence; and on the right, the interaction graph for both trajectories. -

-
- -### Compact Architecture - -This architecture is a simplified version of the originally implemented encoder. The goal was to reduce the complexity of the architecture to see if the model could still capture the relationships between particles and to determine if the problem could be solved with fewer data transformations. - -Key differences between this model and the original: - -- It uses only one transformation from nodes to edges representation. -- It removes an MLP layer, dropout, and batch normalization (which were part of the processing pipeline for the first transformation from nodes to edges). -- Skip connections are not used due to the shorter network. - -For this architecture, four models were trained, and their example reconstructions and loss curves are presented below: - -1. **Model with 6-frame sequences** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_small_6seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_small_6seq.png)| -|:-:|:-:| - -
- In the left image, the reconstruction loss curve looks healthy, showing positive signs for continuing training the model. In the right image, the reconstruction is quite interesting. While it doesn't fully capture the movement of all the particles, the model does a good job of accurately locating the particles, especially in their relative positions to each other, and capturing some of the direction and shape of the movement. Not all particles behave this way - like the red particle, which stayed still in the center - but this is still a big improvement compared to earlier results. -

-
- -2. **Model with 6-frame sequences, but with more edge types (4 instead of binary)** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_small_6seq_4edges.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_small_6seq_4edges.png)| -|:-:|:-:| - -
- Once again, the left image shows healthy reconstruction loss curves, although the validation loss is a bit more unstable. As for the reconstruction itself, this was likely one of the best results. The model almost perfectly captured the movement and location of three particles (green, black, and blue) and managed to get the shape of the movement for another particle (orange), though the location wasn't as accurate. The remaining particle (red) was reasonably well-located but had no movement captured. This promising result supports the idea of using more edge types, allowing the model to better determine the strength of interactions and improve reconstructions. -

-
- -3. **Model with 12-frame sequences** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_small_12seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_small_12seq.png)| -|:-:|:-:| - -
- Although the reconstruction loss curves for this model, shown on the left, are still reasonable, the reconstruction on the right reveals more significant shortcomings compared to previous models. Not only do more particles fail to move (both the orange and red particles remain stationary in the center), but the movement of the captured particles quickly deteriorates after a certain number of frames. For instance, the green and black particles, which start off well-reconstructed, lose their trajectory completely after the first 6 predicted frames. The model shows a clear limitation in maintaining coherence over extended sequences. Additionally, the movement of the blue particle is reconstructed in the opposite direction of its actual movement. It becomes clear that, for this compact model, longer motion sequences are much more difficult to interpret. -

-
- -4. **Model with 12-frame sequences with recurrent encoder** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_small_12seq_recurrent.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_small_12seq_recurrent.png)| -|:-:|:-:| - -
- To reduce the hallucination effects in long sequences seen with the previous model, a recurrent encoder was introduced. However, the results show reconstruction loss curves (left) very similar to the previous one, and the reconstruction quality (right) might even be worse. For example, the black particle's movement is incorrectly reconstructed from the first frame. This suggests that the compact version of the model is really not able to handle the complexity of longer sequences. Despite this, there is a possible qualitative improvement in intra-sequence coherence thanks to the recurrent encoder. The movements of the black and blue particles were reconstructed more smoothly, and the green particle showed a less severe deviation compared to earlier results. -

-
- -### Standard Architecture - -This is the originally implemented architecture, without any modifications to the one already introduced in the [README](https://github.com/Luizerko/ai_choreo/blob/master/models/README.md), only varying the length of the input sequences used. - -1. **Model with 6-frame sequences** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_standard_6seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_standard_6seq.png)| -|:-:|:-:| - -
- Once again, the left image shows healthy reconstruction loss curves, indicating the potential for continuing the training process. On the right, there is an intriguing reconstruction. Despite the visual impact caused by the scale - since the green and blue particles did not have their movements predicted - the model provides a much more realistic reconstruction for the orange and red particles. In these cases, both the location and the movement shape are well predicted, with an interesting anticipation of their speeds, as if the future movement was predicted. For the black particle, the approximation of both location and movement is somewhat rough but still reasonable. -

-
- -2. **Model with 12-frame sequences** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_standard_12seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_standard_12seq.png)| -|:-:|:-:| - -
- In this case, even though the left image shows healthy reconstruction loss curves, indicating the potential for continuing the training process, the reconstruction on the right is entirely ineffective. The model trained on 6-frame sequences already showed some difficulty, possibly indicating the need for more data, but the 12-frame sequence model failed completely. Three particles (red, blue, and black) had no movement captured, and the two that did (green and orange) exhibited almost random, uncoordinated, and incoherent movement. -

-
- -### Big Architecture - -Similar to the previous architecture, this one is the same as the original, with the only difference being an increase in the hidden dimensions from 32 to 64. This change was made to give the model more capacity to handle complex adaptations. - -1. **Model with 6-frame sequences** - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/lc_big_6seq.png)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/rec_big_6seq.png)| -|:-:|:-:| - -
- This model continues to show healthy reconstruction loss curves (left) but struggles with reconstruction (right). Two particles (black and blue) had no movement captured, while the remaining three (green, orange, and red) displayed poor movement predictions, despite being well-localized. Overall, it seems that more data and training time might be needed for this model to produce better predictions. -

-
- -2. **Model with 12-frame sequences** - -
- -
-
- The image shows the reconstruction generated by this model, which demonstrates decent particle localization but fails to provide coherent movement predictions. This issue becomes more pronounced with longer sequences. -

-
- -### Conclusion - -In the end, it becomes clearer that the implemented architecture shows potential for addressing such a task effectively. In a simplified scenario with more abundant data, it was observed that after just a few iterations (between 10 and 20 epochs, depending on the model's training time), the reconstruction loss curves displayed typical and more controlled behavior. Furthermore, these curves mostly indicated the model's potential for further improvement with more iterations, and no signs of overfitting yet. - -The rapid convergence of the KL Divergence is attributed to a slightly high beta coefficient during the autoencoder training process. Since beta was adjusted based on the number of epochs, when the model was trained for fewer epochs, beta increased more quickly. Thus this kind of behavior in the KL loss was expected. Although not ideal, the quick convergence did not lead to one of its common side effects: the failure to optimize reconstruction error, which allowed for smooth training overall. - -Additionally, it became clear that the more simplified models, particularly those using shorter frame sequences and giving the architecture more freedom to choose the impact of an edge (more edge types), produced some promising reconstruction results. Naturally these are the versions carried out to the original duet setting for training. \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/INSTALL.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/INSTALL.md deleted file mode 100644 index abb67bf..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/INSTALL.md +++ /dev/null @@ -1,19 +0,0 @@ -# Duet ChorAIgraphy Set Up - -## Environment Installation - -Despite the complexities involved in setting up the pose extraction pipeline, the process of setting up the environment to run the models themselves is quite simple. You just need to create your Anaconda environment using the `environment.yml` file with the following command: - -``` -conda env create -f environment.yml -n ai_choreo -``` - -It is encouraged, however, to use Mamba for this task due to its superior ability to handle potential package incompatibilities and its significantly faster environment creation process. To do this, simply [install Mamba](https://mamba.readthedocs.io/en/latest/installation/mamba-installation.html) and replace `conda` with `mamba` in the above command. - -## Training Your Model - -For training a model, two main options are available: - -- The more interactive approach via the `NRI_variant_test.ipynb` notebook, where every pipeline parameter can be adjusted for a personalized experience. Simply open the notebook and start exploring. - -- The more modular approach through the `train_nri.py` Python script, which utilizes other scripts in the folder. This version is ideal for longer training sessions or use in computing clusters. With this use case in mind, the `creating_jobs.py` file is provided as an example for setting up and submitting grid jobs on SLURM clusters, enabling the exploration of various hyperparameters. \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/NRI_particles_test.ipynb b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/NRI_particles_test.ipynb deleted file mode 100644 index 4696fb3..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/NRI_particles_test.ipynb +++ /dev/null @@ -1,1212 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "5b093c44-6eb7-484e-bb31-6203cf3d5b3b", - "metadata": {}, - "source": [ - "## Exploring Particles Data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0c7b6a3f-6fcd-4248-a6f6-94af1d481d68", - "metadata": {}, - "outputs": [], - "source": [ - "import numpy as np\n", - "\n", - "# Loading data\n", - "loc_train = np.load('../../NRI/data/loc_train_charged5.npy')\n", - "vel_train = np.load('../../NRI/data/vel_train_charged5.npy')\n", - "edges_train = np.load('../../NRI/data/edges_train_charged5.npy')\n", - "\n", - "# Sampling data for testing\n", - "sample_percentage = 0.2\n", - "loc_train = loc_train[:int(sample_percentage*loc_train.shape[0]), :-1]\n", - "vel_train = vel_train[:int(sample_percentage*vel_train.shape[0]), :-1]\n", - "edges_train = edges_train[:int(sample_percentage*edges_train.shape[0])]\n", - "\n", - "print('Location shape: {}'.format(loc_train.shape))\n", - "print('Velocity shape: {}'.format(vel_train.shape))\n", - "print('Edges shape: {}'.format(edges_train.shape))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d64aa1f2-60cd-425e-ae7b-4533cd172e5b", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "%matplotlib inline\n", - "\n", - "import matplotlib.colors as mcolors\n", - "\n", - "color_scales = [\n", - " mcolors.LinearSegmentedColormap.from_list(\"red_scale\", [\"#FFCCCC\", \"#CC0000\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"blue_scale\", [\"#CCCCFF\", \"#0000CC\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"green_scale\", [\"#CCFFCC\", \"#006600\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"orange_scale\", [\"#FFE5CC\", \"#FF6600\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"black_scale\", [\"#CCCCCC\", \"#000000\"])\n", - "]\n", - "\n", - "# Visualizing particles' trajectories\n", - "fig = plt.figure(figsize=(12, 4))\n", - "\n", - "ax1 = fig.add_subplot(121)\n", - "ax1.set_title('Trajectories')\n", - "ax1.set_xlabel('X coordinate')\n", - "ax1.set_ylabel('Y coordinate')\n", - "ax1.set_xticklabels([])\n", - "ax1.set_yticklabels([])\n", - "\n", - "ax2 = fig.add_subplot(122)\n", - "ax2.set_title('Graph Structure')\n", - "ax2.set_xticklabels([])\n", - "ax2.set_yticklabels([])\n", - "\n", - "rand_seq = np.random.randint(0, loc_train.shape[0])\n", - "colors = ['red', 'blue', 'green', 'orange', 'black']\n", - "edge_pos = [(0, 0), (2, 0), (-0.5, 1), (1, 2), (2.5, 1)]\n", - "seq_len = loc_train.shape[1]\n", - "for i, e, c, cs in zip(range(len(edge_pos)), edge_pos, colors, color_scales):\n", - " for seq_idx in range(seq_len):\n", - " intensity = seq_idx / (seq_len - 1)\n", - " ax1.scatter(loc_train[rand_seq, seq_idx, 0, i], loc_train[rand_seq, seq_idx, 1, i], color=cs(intensity), s=50)\n", - " \n", - " ax2.scatter(e[0], e[1], color=c, s=100)\n", - " for j in range(len(edge_pos)):\n", - " if edges_train[rand_seq][i, j] == 1:\n", - " ax2.plot([edge_pos[i][0], edge_pos[j][0]], [edge_pos[i][1], edge_pos[j][1]], color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "96dde200-14eb-4b04-b1f0-2587a641ee46", - "metadata": {}, - "outputs": [], - "source": [ - "# Generating initial transposed edge index (adjacencies)\n", - "edge_index_t = [[i, j] for i in range(5) for j in range(5)]\n", - "\n", - "# Visualizing connections for a random frame\n", - "fig = plt.figure(figsize=(6, 4))\n", - "\n", - "ax1 = fig.add_subplot(111)\n", - "ax1.set_title('Frame with connections')\n", - "ax1.set_xlabel('X coordinate')\n", - "ax1.set_ylabel('Y coordinate')\n", - "ax1.set_xticklabels([])\n", - "ax1.set_yticklabels([])\n", - "\n", - "rand_seq = np.random.randint(0, loc_train.shape[0])\n", - "rand_frame = np.random.randint(0, loc_train.shape[1])\n", - "colors = ['red', 'blue', 'green', 'orange', 'black']\n", - "for p, c in zip(loc_train.swapaxes(0, 3), colors):\n", - " ax1.scatter(p[rand_frame, 0, rand_seq], p[rand_frame, 1, rand_seq], color=c)\n", - " \n", - "for i, j in edge_index_t:\n", - " p_ini = [loc_train[rand_seq, rand_frame, 0, i], loc_train[rand_seq, rand_frame, 0, j]]\n", - " p_end = [loc_train[rand_seq, rand_frame, 1, i], loc_train[rand_seq, rand_frame, 1, j]]\n", - " ax1.plot(p_ini, p_end, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "cac39636-0f5d-4c45-b9d5-eea032bfd25c", - "metadata": {}, - "outputs": [], - "source": [ - "import torch\n", - "\n", - "# Adjusting training shapes for our current architecture\n", - "train_batches = torch.cat([torch.tensor(loc_train.swapaxes(3, 2), dtype=torch.float32), \\\n", - " torch.tensor(vel_train.swapaxes(3, 2), dtype=torch.float32)], axis=-1)\n", - "\n", - "sim_len = train_batches.size(1)\n", - "seq_len = 6\n", - "train_batches = train_batches.view(-1, seq_len, train_batches.size(2), train_batches.size(3))\n", - "\n", - "print('Final shape of training data: {}'.format(train_batches.shape))\n", - "\n", - "# Repeating data loading process for validation data\n", - "loc_val = np.load('../../NRI/data/loc_valid_charged5.npy')\n", - "loc_val = loc_val[:int(sample_percentage*loc_val.shape[0]), :-1]\n", - "\n", - "vel_val = np.load('../../NRI/data/vel_valid_charged5.npy')\n", - "vel_val = vel_val[:int(sample_percentage*vel_val.shape[0]), :-1]\n", - "\n", - "edges_val = np.load('../../NRI/data/edges_valid_charged5.npy')\n", - "edge_val = edges_val[:int(sample_percentage*edges_val.shape[0])]\n", - "\n", - "val_batches = torch.cat([torch.tensor(loc_val.swapaxes(3, 2), dtype=torch.float32), \\\n", - " torch.tensor(vel_val.swapaxes(3, 2), dtype=torch.float32)], axis=-1)\n", - "val_batches = val_batches.view(-1, seq_len, val_batches.size(2), val_batches.size(3))\n", - "print('Final shape of validation data: {}'.format(val_batches.shape))\n", - "\n", - "batches = torch.cat([train_batches, val_batches], axis=0)\n", - "print('Final shape of entire data: {}'.format(batches.shape))\n", - "\n", - "# Sending everything to the device\n", - "device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\n", - "train_batches = train_batches.to(device)\n", - "val_batches = val_batches.to(device)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "b773865e-c717-4606-863a-1bcafaf1cd54", - "metadata": {}, - "outputs": [], - "source": [ - "# Building overlapping sequences dataset\n", - "train_batches_ovlp = torch.cat([torch.tensor(loc_train.swapaxes(3, 2), dtype=torch.float32), \\\n", - " torch.tensor(vel_train.swapaxes(3, 2), dtype=torch.float32)], axis=-1)\n", - "train_batches_ovlp_aux = []\n", - "for sample in train_batches_ovlp:\n", - " \n", - " train_batches_ovlp_aux2 = []\n", - " for start in range(sample.shape[0]-seq_len):\n", - " train_batches_ovlp_aux2.append(sample[start:start+seq_len])\n", - "\n", - " train_batches_ovlp_aux.append(torch.stack(train_batches_ovlp_aux2))\n", - "\n", - "train_batches_ovlp = torch.cat(train_batches_ovlp_aux, dim=0)\n", - "print('Final shape of training data for overlapping sequences: {}'.format(train_batches_ovlp.shape))\n", - "\n", - "val_batches_ovlp = torch.cat([torch.tensor(loc_val.swapaxes(3, 2), dtype=torch.float32), \\\n", - " torch.tensor(vel_val.swapaxes(3, 2), dtype=torch.float32)], axis=-1)\n", - "val_batches_ovlp_aux = []\n", - "for sample in val_batches_ovlp:\n", - " \n", - " val_batches_ovlp_aux2 = []\n", - " for start in range(sample.shape[0]-seq_len):\n", - " val_batches_ovlp_aux2.append(sample[start:start+seq_len])\n", - "\n", - " val_batches_ovlp_aux.append(torch.stack(val_batches_ovlp_aux2))\n", - "\n", - "val_batches_ovlp = torch.cat(val_batches_ovlp_aux, dim=0)\n", - "print('Final shape of validation data for overlapping sequences: {}'.format(val_batches_ovlp.shape))\n", - "\n", - "batches_ovlp = torch.cat([train_batches_ovlp, val_batches_ovlp], axis=0)\n", - "print('Final shape of entire data for overlapping sequencecs: {}'.format(batches_ovlp.shape))\n", - "\n", - "train_batches_ovlp = train_batches_ovlp.to(device)\n", - "val_batches_ovlp = val_batches_ovlp.to(device)" - ] - }, - { - "cell_type": "markdown", - "id": "8a578da3-009d-47df-a306-fa262a091b41", - "metadata": {}, - "source": [ - "## Testing NRI Variant Architecture" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ef3c4246-9ee0-45cf-a62e-5878f17e6088", - "metadata": {}, - "outputs": [], - "source": [ - "import torch.nn as nn\n", - "import torch.nn.functional as F\n", - "\n", - "# Creating message passing matrices for receivers and senders - shape R^(E x N)\n", - "def message_passing_matrices(n_joints, edge_index):\n", - " message_passing_in = torch.zeros((edge_index.size(1), n_joints))\n", - " message_passing_out = torch.zeros((edge_index.size(1), n_joints))\n", - "\n", - " # Vectorizing message_passing matrices creation\n", - " edge_indices = torch.arange(edge_index.size(1))\n", - " message_passing_out[edge_indices, edge_index[0]] = 1.\n", - " message_passing_in[edge_indices, edge_index[1]] = 1.\n", - "\n", - " return message_passing_in, message_passing_out\n", - "\n", - "\n", - "# NRI VAE auxiliar functions to change between nodes and edges\n", - "def node2edge(x, m_in, m_out): \n", - " receivers = torch.matmul(m_in, x)\n", - " senders = torch.matmul(m_out, x)\n", - " edges = torch.cat([senders, receivers], dim=1)\n", - " \n", - " return edges\n", - "\n", - "def edge2node(x, m_in):\n", - " incoming = torch.matmul(m_in.t(), x)\n", - " \n", - " return incoming / incoming.size(0)\n", - "\n", - "\n", - "# Gumbel-Softmax sampling function to allow for backpropagation with categorical distributions\n", - "def gumbel_softmax_sample(logits, temp, hard=False):\n", - " y = F.gumbel_softmax(logits, tau=temp, hard=hard)\n", - " \n", - " return y\n", - "\n", - "\n", - "# Computing KL Divergence for categorical distribution\n", - "def gumbel_softmax_kl_divergence(logits, log_prior, batch_size):\n", - " q_y = F.softmax(logits, dim=-1)\n", - " kl_div = q_y * (F.log_softmax(logits, dim=-1) - log_prior)\n", - "\n", - " # Normalizing by the batch size and number of edges\n", - " return kl_div.sum() / (batch_size * logits.size(0))\n", - "\n", - "\n", - "# Initializing reconstruction losses\n", - "nll_gaussian = nn.GaussianNLLLoss(reduction='mean') # Gaussian NLL\n", - "mse = nn.MSELoss(reduction='mean') # MSE\n", - "\n", - "\n", - "# Implementing LSTM variant with GCN layers\n", - "class gcn_lstm_cell(nn.Module):\n", - " def __init__(self, n_in, n_out):\n", - " super(gcn_lstm_cell, self).__init__()\n", - "\n", - " self.n_in = n_in\n", - " self.n_out = n_out\n", - " \n", - " # Rebuilding LSTM cell with GCN layers\n", - " self.gcn_i = GCNConv(n_in + n_out, n_out)\n", - " self.gcn_f = GCNConv(n_in + n_out, n_out)\n", - " self.gcn_o = GCNConv(n_in + n_out, n_out)\n", - " self.gcn_g = GCNConv(n_in + n_out, n_out)\n", - "\n", - " def forward(self, x, h, c, edge_index):\n", - " # Concatenate input and hidden state\n", - " combined = torch.cat([x, h], dim=-1)\n", - " \n", - " # Compute gates\n", - " i = torch.sigmoid(self.gcn_i(combined, edge_index))\n", - " f = torch.sigmoid(self.gcn_f(combined, edge_index))\n", - " o = torch.sigmoid(self.gcn_o(combined, edge_index))\n", - " g = torch.tanh(self.gcn_g(combined, edge_index))\n", - " \n", - " # Compute new cell and hidden states\n", - " c_new = f*c + i*g\n", - " h_new = o*torch.tanh(c_new)\n", - " \n", - " return h_new, c_new" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "e7170b4a-0581-45c9-8e7f-87d9dd973a73", - "metadata": {}, - "outputs": [], - "source": [ - "import torch_geometric.nn as geo_nn\n", - "from torch_geometric.nn import GCNConv\n", - "from torch.nn import Linear, BatchNorm1d, Dropout\n", - "\n", - "# Defining NRI encoder\n", - "class nri_encoder(nn.Module):\n", - " def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_encoder, self).__init__()\n", - "\n", - " # Computing edge index given transposed edge index\n", - " self.edge_index = torch.Tensor(edge_index_t).t().long().to(device)\n", - "\n", - " # Computing the message passing matrices\n", - " self.m_in, self.m_out = message_passing_matrices(n_joints, self.edge_index)\n", - " self.m_in = self.m_in.to(device)\n", - " self.m_out = self.m_out.to(device)\n", - "\n", - " # Defining the network itself interleaving GCN and MLP layers\n", - " self.conv1 = GCNConv(n_in, n_hid, node_dim=1).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.bnorm1 = BatchNorm1d(n_hid).to(device)\n", - " self.dropout1 = Dropout(do_prob).to(device)\n", - " \n", - " self.conv2 = GCNConv(n_hid, n_hid, node_dim=1).to(device)\n", - " \n", - " # self.mlp2 = Linear(n_hid*3, n_hid).to(device)\n", - " self.mlp2 = Linear(n_hid*2, n_hid).to(device)\n", - " self.bnorm2 = BatchNorm1d(n_hid).to(device)\n", - " \n", - " self.fc_out = Linear(n_hid, n_out).to(device)\n", - " \n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x):\n", - " # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims] -> [num_seqs, num_atoms, num_timesteps*num_dims]\n", - " x = x.view(x.size(0), x.size(2), -1)\n", - "\n", - " # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers\n", - " x = self.conv1(x, self.edge_index)\n", - " x = F.relu(x)\n", - "\n", - " # edge_x = [node2edge(x_samp, self.m_in, self.m_out) for x_samp in x]\n", - " # x = torch.stack(edge_x)\n", - " \n", - " # x = self.mlp1(x)\n", - " # x = F.relu(x)\n", - "\n", - " # x = x.permute(0, 2, 1)\n", - " # x = self.bnorm1(x)\n", - " # x = x.permute(0, 2, 1)\n", - " \n", - " # x = self.dropout1(x)\n", - "\n", - " # # Skip connection\n", - " # x_skip = x.clone()\n", - "\n", - " # node_x = [edge2node(x_samp, self.m_in) for x_samp in x]\n", - " # x = torch.stack(node_x)\n", - " \n", - " x = self.conv2(x, self.edge_index)\n", - " x = F.relu(x)\n", - " \n", - " edge_x = [node2edge(x_samp, self.m_in, self.m_out) for x_samp in x]\n", - " x = torch.stack(edge_x)\n", - " \n", - " # x = torch.cat((x, x_skip), dim=2)\n", - " x = self.mlp2(x)\n", - " x = F.relu(x)\n", - "\n", - " x = x.permute(0, 2, 1)\n", - " x = self.bnorm2(x)\n", - " x = x.permute(0, 2, 1)\n", - "\n", - " return self.fc_out(x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c461155d-7ba0-4c99-b7f3-3ab3c5014924", - "metadata": {}, - "outputs": [], - "source": [ - "# NRI recurrent encoder\n", - "class nri_rec_encoder(nn.Module):\n", - " def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_rec_encoder, self).__init__()\n", - " self.device = device\n", - "\n", - " # Computing edge index given transposed edge index\n", - " self.edge_index = torch.Tensor(edge_index_t).t().long().to(device)\n", - "\n", - " # Computing the message passing matrices\n", - " self.m_in, self.m_out = message_passing_matrices(n_joints, self.edge_index)\n", - " self.m_in = self.m_in.to(device)\n", - " self.m_out = self.m_out.to(device)\n", - "\n", - " # Defining the network itself starting with GRNN and then MLP layers\n", - " self.grnn = gcn_lstm_cell(n_in, n_hid).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.fc_out = Linear(n_hid, n_out).to(device)\n", - " \n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x):\n", - " # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims]\n", - " num_seqs, num_timesteps, num_atoms, num_dims = x.shape\n", - "\n", - " # Iterating through samples in the batch\n", - " h_batch = []\n", - " for x_b in x:\n", - " # Initializing cell and hidden states\n", - " h = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " c = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " \n", - " # Iterating through GRNN\n", - " for x_t in x_b:\n", - " h, c = self.grnn(x_t, h, c, self.edge_index)\n", - "\n", - " h_batch.append(h)\n", - " h = torch.stack(h_batch)\n", - " \n", - " # Forward pass with an operation to switch from nodes to edges and MLP layers\n", - " edge_x = [node2edge(h_samp, self.m_in, self.m_out) for h_samp in h]\n", - " x = torch.stack(edge_x)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " return self.fc_out(x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2ff8ea88-9a4a-4844-bd56-0de3381369f5", - "metadata": {}, - "outputs": [], - "source": [ - "# Defining NRI decoder\n", - "class nri_decoder(nn.Module):\n", - " def __init__(self, device, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_decoder, self).__init__()\n", - "\n", - " # Defining the network itself interleaving GCN and MLP layers\n", - " self.conv1 = GCNConv(n_in, n_hid).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.dropout1 = Dropout(do_prob).to(device)\n", - " \n", - " self.conv2 = GCNConv(n_hid, n_out).to(device)\n", - "\n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x, edge_index, m_in, m_out):\n", - " # Rearranging shapes: [num_timesteps, num_atoms, num_dims] -> [num_atoms, num_timesteps*num_dims]\n", - " x = x.view(x.size(0), x.size(2), -1)\n", - "\n", - " # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers\n", - " x = self.conv1(x, edge_index)\n", - " x = F.relu(x)\n", - "\n", - " x = node2edge(x, m_in, m_out)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " x = self.dropout1(x)\n", - "\n", - " x = edge2node(x, m_in)\n", - " \n", - " x = self.conv2(x, edge_index)\n", - "\n", - " return x" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ab4fbeee-5e28-4ca6-8893-ae1713de3480", - "metadata": {}, - "outputs": [], - "source": [ - "# NRI recurrent decoder\n", - "class nri_rec_decoder(nn.Module):\n", - " def __init__(self, device, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_rec_decoder, self).__init__()\n", - " self.device = device\n", - " \n", - " # Defining the network itself starting with GRNN and then interleaving MLP and GCN layers\n", - " self.grnn = gcn_lstm_cell(n_in, n_hid).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.dropout1 = Dropout(do_prob).to(device)\n", - " \n", - " self.conv1 = GCNConv(n_hid, n_out).to(device)\n", - "\n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x, edge_index, m_in, m_out):\n", - " # [num_timesteps, num_atoms, num_dims]\n", - " num_timesteps, num_atoms, num_dims = x.shape\n", - " \n", - " # Initializing cell and hidden states\n", - " h = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " c = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " \n", - " # Iterating through GRNN\n", - " for x_t in x:\n", - " h, c = self.grnn(x_t, h, c, edge_index)\n", - "\n", - " # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers\n", - " x = node2edge(h, m_in, m_out)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " x = self.dropout1(x)\n", - "\n", - " x = edge2node(x, m_in)\n", - " \n", - " x = self.conv1(x, edge_index)\n", - "\n", - " return x" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "fd11ec8d-0843-41cf-bb24-40bb2e0bc688", - "metadata": {}, - "outputs": [], - "source": [ - "# Defining NRI VAE\n", - "class nri_vae(nn.Module):\n", - " def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, edge_types, n_out, tau, hard, do_prob=0., n_dims=6, num_cells=None):\n", - " super(nri_vae, self).__init__()\n", - "\n", - " # Initializing encoder and decoder\n", - " if num_cells is None:\n", - " self.encoder = nri_encoder(device, n_joints, edge_index_t, n_in, n_hid, edge_types, do_prob)\n", - " self.decoder = nri_decoder(device, n_in, n_hid, n_out, do_prob)\n", - " else:\n", - " self.encoder = nri_encoder(device, n_joints, edge_index_t, n_in, n_hid, edge_types, do_prob)\n", - " # self.encoder = nri_rec_encoder(device, n_joints, edge_index_t, n_dims, n_hid, edge_types, do_prob)\n", - " self.decoder = nri_rec_decoder(device, n_dims, n_hid, n_out, do_prob)\n", - "\n", - " # Saving variables that will be used by the forward pass\n", - " self.device = device\n", - " self.n_joints = n_joints\n", - " \n", - " self.tau = tau\n", - " self.hard = hard\n", - "\n", - " self.edge_index_t = torch.Tensor(edge_index_t).to(device)\n", - " \n", - " def forward(self, x):\n", - " # Computing logits for edges with encoder\n", - " logits = self.encoder(x)\n", - "\n", - " # Sampling edge index classes using Gumbel-Softmax\n", - " y = gumbel_softmax_sample(logits, tau, hard)\n", - "\n", - " # Getting sampled edges for every element in the batch\n", - " edge_index_dict = {i: [] for i in range(logits.size(0))}\n", - " edge_index_classes = torch.nonzero(y[:, :, -1])\n", - " for batch_element, edge in edge_index_classes:\n", - " edge_index_dict[batch_element.item()].append(edge.item())\n", - "\n", - " recon_output = []\n", - " for k, v in edge_index_dict.items():\n", - " # Building edge_index for sampled edges\n", - " edge_index_samp = self.edge_index_t[v].t().long()\n", - "\n", - " # Creating message passing matrices for decoder newly sampled edge index\n", - " decoder_m_in, decoder_m_out = message_passing_matrices(self.n_joints, edge_index_samp)\n", - " decoder_m_in = decoder_m_in.to(self.device)\n", - " decoder_m_out = decoder_m_out.to(self.device)\n", - "\n", - " # Reconstructing sequences using decoder\n", - " recon_output.append(self.decoder(x[k], edge_index_samp, decoder_m_in, decoder_m_out))\n", - " \n", - " recon_output = torch.stack(recon_output)\n", - "\n", - " return logits, recon_output" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "b39acb31-0ebf-4199-bd75-1c15c95ee6c9", - "metadata": {}, - "outputs": [], - "source": [ - "# Parallel implementation of NRI VAE, but not used because it barely helped\n", - "# import concurrent.futures as cf\n", - "# from threading import Lock\n", - "\n", - "# class nri_vae_parallel(nn.Module):\n", - "# def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, edge_types, n_out, tau, hard, do_prob=0., n_dims=6, num_cells=None):\n", - "# super(nri_vae_parallel, self).__init__()\n", - "\n", - "# # Initializing encoder and decoder\n", - "# self.encoder = nri_encoder(device, n_joints, edge_index_t, n_in, n_hid, edge_types, do_prob)\n", - " \n", - "# if num_cells is None:\n", - "# self.decoder = nri_decoder(device, n_in, n_hid, n_out, do_prob)\n", - "# else:\n", - "# self.decoder = nri_rec_decoder(device, n_dims, n_hid, n_out, do_prob)\n", - "\n", - "# # Saving variables that will be used by the forward pass\n", - "# self.device = device\n", - "# self.n_joints = n_joints\n", - " \n", - "# self.tau = tau\n", - "# self.hard = hard\n", - "\n", - "# self.edge_index_t = torch.Tensor(edge_index_t).to(device)\n", - "\n", - "# def individual_reconstruction(self, k, v, edge_index_t, n_joints, device, decoder, x):\n", - "# # Building edge_index for sampled edges\n", - "# edge_index_samp = self.edge_index_t[v].t().long()\n", - "\n", - "# # Creating message passing matrices for decoder newly sampled edge index\n", - "# decoder_m_in, decoder_m_out = message_passing_matrices(self.n_joints, edge_index_samp)\n", - "# decoder_m_in = decoder_m_in.to(self.device)\n", - "# decoder_m_out = decoder_m_out.to(self.device)\n", - "\n", - "# # Reconstructing sequences using decoder\n", - "# return k, decoder(x[k], edge_index_samp, decoder_m_in, decoder_m_out)\n", - " \n", - "# def forward(self, x):\n", - "# # Computing logits for edges with encoder\n", - "# logits = self.encoder(x)\n", - "\n", - "# # Sampling edge index classes using Gumbel-Softmax\n", - "# y = gumbel_softmax_sample(logits, tau, hard)\n", - "\n", - "# # Getting sampled edges for every element in the batch\n", - "# edge_index_dict = {i: [] for i in range(logits.size(0))}\n", - "# edge_index_classes = torch.nonzero(y[:, :, 1])\n", - "# for batch_element, edge in edge_index_classes:\n", - "# edge_index_dict[batch_element.item()].append(edge.item())\n", - "\n", - "# recon_output = {}\n", - "# lock = Lock()\n", - "\n", - "# with cf.ThreadPoolExecutor() as executor:\n", - "# future_to_key = {executor.submit(self.individual_reconstruction, k, v, self.edge_index_t, self.n_joints, \\\n", - "# self.device, self.decoder, x): k for k, v in edge_index_dict.items()}\n", - " \n", - "# for future in cf.as_completed(future_to_key):\n", - "# k, result = future.result()\n", - "# with lock:\n", - "# recon_output[k] = result\n", - "\n", - "# # Sorting by key to maintain the original order\n", - "# recon_output_ordered = [recon_output[k] for k in sorted(recon_output.keys())]\n", - "# recon_output = torch.stack(recon_output_ordered)\n", - " \n", - "# return logits, recon_output" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4bdf5833-dd62-416d-b3c7-e832de398a5f", - "metadata": {}, - "outputs": [], - "source": [ - "import time\n", - "from tqdm import tqdm\n", - "import torch.optim as optim\n", - "from torch.optim import lr_scheduler\n", - "\n", - "# Initializing all the hyperparameters\n", - "batch_size = batches.size(1)\n", - "seq_len_in = batches.size(1)\n", - "seq_len_out = 1\n", - "n_joints = batches.size(2)\n", - "dims = batches.size(3)\n", - "\n", - "hidden_dims = 32\n", - "edge_types = 4\n", - "\n", - "tau = 0.5\n", - "hard = True\n", - "dropout = 0.1\n", - "out_var = 5e-5\n", - "\n", - "prior = [0.4, 0.3, 0.2, 0.1]\n", - "log_prior = torch.FloatTensor(np.log(prior)).unsqueeze(0).unsqueeze(0).to(device)\n", - "\n", - "epochs = 20\n", - "lr = 5e-4\n", - "lr_decay = 6\n", - "gamma = 0.5\n", - "\n", - "# Initializing model\n", - "model = nri_vae(device, n_joints, edge_index_t, seq_len_in*dims, hidden_dims, edge_types, seq_len_out*int(dims/2), \\\n", - " tau, hard, dropout, dims, seq_len_in)\n", - "\n", - "# model = nri_vae_parallel(device, n_joints, edge_index_t, seq_len_in*dims, hidden_dims, edge_types, seq_len_out*int(dims/2), \\\n", - "# tau, hard, dropout, dims, seq_len_in)\n", - "\n", - "# Counting number of trainable parameters to compare to the dataset size\n", - "print('Total number of trainable parameters: {}\\n'.format(sum(p.numel() for p in model.parameters() if p.requires_grad)))\n", - "\n", - "for n, p in model.named_parameters():\n", - " if p.requires_grad:\n", - " print('Layer {} has {} trainbale parameters'.format(n, p.numel()))\n", - "\n", - "# Initializing optimizer and scheduler\n", - "optimizer = optim.Adam(model.parameters(), lr=lr)\n", - "scheduler = lr_scheduler.StepLR(optimizer, step_size=lr_decay, gamma=gamma)\n", - "\n", - "# Initializing lists to save losses across iterations\n", - "kl_train = []\n", - "recon_train = []\n", - "loss_train = []\n", - "kl_val = []\n", - "recon_val = []\n", - "loss_val = []\n", - "\n", - "# Initializing variables to save best model\n", - "best_val_loss = torch.inf\n", - "best_epoch = 0\n", - "\n", - "# Model iteration function\n", - "def model_iteration(model, optimizer, scheduler, batches, beta, mode='train', recon_mode='nll'):\n", - " t = time.time()\n", - " \n", - " kl_aux = []\n", - " recon_aux = []\n", - " loss_aux = []\n", - "\n", - " if mode == 'train':\n", - " model.train()\n", - " elif mode == 'val':\n", - " model.eval()\n", - " \n", - " progress = 0.\n", - " for idx in range(batches.size(0)//batch_size - batch_size):\n", - " if idx > progress*batches.size(0)//batch_size:\n", - " print('Progress of training epoch: {:.1f}% in {:.2f}s'.format(progress*100, time.time()-t))\n", - " progress += 0.1\n", - "\n", - " # Skipping last sequence of a simulation \n", - " if idx%(sim_len/seq_len) == seq_len-1:\n", - " continue\n", - " \n", - " if mode == 'train':\n", - " optimizer.zero_grad()\n", - " \n", - " batch = batches[idx*batch_size:(idx+1)*batch_size]\n", - " \n", - " # Non-overlapping sequences\n", - " next_batch = batches[idx*batch_size+1:(idx+1)*batch_size+1]\n", - " \n", - " # # Overlapping sequences\n", - " # next_batch = batches[(idx+1)*batch_size:(idx+2)*batch_size]\n", - "\n", - " logits, recon_output = model(batch)\n", - " kl_loss = gumbel_softmax_kl_divergence(logits, log_prior, batch_size)\n", - " recon_output = recon_output.view(batch_size, seq_len_out, n_joints, int(dims/2))\n", - "\n", - " if recon_mode == 'nll':\n", - " var_tensor = torch.full(recon_output.shape, out_var, device=device)\n", - " recon_loss = nll_gaussian(recon_output, next_batch[:, :seq_len_out, :, :int(dims/2)], var_tensor)\n", - " \n", - " elif recon_mode == 'mse':\n", - " recon_loss = mse(recon_output, next_batch[:, :seq_len_out, :, :int(dims/2)])\n", - " \n", - " recon_loss = recon_loss / (recon_output.size(0) * recon_output.size(1) * recon_output.size(2))\n", - "\n", - " if recon_mode == 'nll':\n", - " recon_coef = 0.001\n", - " elif recon_mode == 'mse':\n", - " recon_coef = 1\n", - " \n", - " loss = beta*kl_loss + recon_coef*recon_loss\n", - " # loss = recon_coef*recon_loss\n", - "\n", - " if mode == 'train':\n", - " loss.backward()\n", - " optimizer.step()\n", - " \n", - " kl_aux.append(kl_loss.item())\n", - " recon_aux.append(recon_coef*recon_loss.item()) \n", - " loss_aux.append(loss.data.item())\n", - " \n", - " del batch, next_batch, logits, kl_loss, recon_loss\n", - "\n", - " kl_aux = torch.Tensor(kl_aux)\n", - " recon_aux = torch.Tensor(recon_aux)\n", - " loss_aux = torch.Tensor(loss_aux)\n", - " tqdm.write(f'Epoch: {epoch + 1:04d}, '\n", - " f'KL Loss ({mode}): {torch.mean(kl_aux):.4f}, '\n", - " f'Reconstruction Loss ({mode}): {torch.mean(recon_aux):.4f}, '\n", - " f'Combined Loss ({mode}): {torch.mean(loss_aux):.4f}, '\n", - " f'time: {time.time() - t:.4f}s')\n", - "\n", - " if mode == 'train':\n", - " scheduler.step()\n", - "\n", - " if mode == 'val':\n", - " global best_val_loss\n", - " global best_epoch\n", - " \n", - " if best_val_loss is torch.inf or torch.mean(loss_aux) < best_val_loss: \n", - " best_val_loss = torch.mean(loss_aux)\n", - " best_epoch = epoch\n", - " \n", - " torch.save(model.state_dict(), 'best_weights/nri_particles_parameters.pt')\n", - " tqdm.write(f'Epoch: {epoch + 1:04d}, Saving best parameters!')\n", - "\n", - " if recon_mode == 'nll':\n", - " del var_tensor\n", - " \n", - " torch.cuda.empty_cache()\n", - "\n", - " return kl_aux, recon_aux, loss_aux\n", - "\n", - "# Training loop\n", - "for epoch in tqdm(range(epochs), desc='Training Epochs'):\n", - " # Beta coefficient to handle KL-Divergence vanishing gradients and balance reconstruction loss\n", - " beta = epoch % int(epochs) / (epochs)\n", - "\n", - " kl_aux, recon_aux, loss_aux = model_iteration(model, optimizer, scheduler, train_batches, beta, 'train', 'nll')\n", - " \n", - " kl_train.append(torch.mean(kl_aux))\n", - " recon_train.append(torch.mean(recon_aux))\n", - " loss_train.append(torch.mean(loss_aux))\n", - "\n", - " del kl_aux, recon_aux, loss_aux\n", - "\n", - " with torch.no_grad():\n", - " kl_aux, recon_aux, loss_aux = model_iteration(model, optimizer, scheduler, val_batches, beta, 'val', 'nll')\n", - " \n", - " kl_val.append(torch.mean(kl_aux))\n", - " recon_val.append(torch.mean(recon_aux))\n", - " loss_val.append(torch.mean(loss_aux))\n", - "\n", - " del kl_aux, recon_aux, loss_aux\n", - "\n", - "print(\"Optimization Finished!\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bce88999-9a5c-42f5-b84e-fb4464bce55f", - "metadata": {}, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(12, 6))\n", - "\n", - "# Plotting training losses\n", - "ax1 = fig.add_subplot(231)\n", - "ax1.plot(kl_train, color='blue')\n", - "\n", - "ax1 = fig.add_subplot(232)\n", - "ax1.plot(recon_train, color='blue')\n", - "\n", - "ax1 = fig.add_subplot(233)\n", - "ax1.plot(loss_train, color='blue')\n", - "\n", - "# Plotting validation losses\n", - "ax1 = fig.add_subplot(234)\n", - "ax1.plot(kl_val, color='orange')\n", - "\n", - "ax1 = fig.add_subplot(235)\n", - "ax1.plot(recon_val, color='orange')\n", - "\n", - "ax1 = fig.add_subplot(236)\n", - "ax1.plot(loss_val, color='orange')\n", - "\n", - "# Adding column labels\n", - "fig.text(0.22, 0.96, 'KL Loss', ha='center', fontsize=14)\n", - "fig.text(0.53, 0.96, 'Reconstruction Loss', ha='center', fontsize=14)\n", - "fig.text(0.85, 0.96, 'Combined Loss', ha='center', fontsize=14)\n", - "\n", - "# Adding row labels\n", - "fig.text(0.02, 0.73, 'Training', va='center', rotation='vertical', fontsize=14)\n", - "fig.text(0.02, 0.30, 'Validation', va='center', rotation='vertical', fontsize=14)\n", - "\n", - "plt.tight_layout(rect=[0.05, 0.05, 1, 0.95])\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "0642762d-5921-431e-97aa-b5e9dccc6220", - "metadata": {}, - "source": [ - "## Visualizing Results" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "73d07db7-35cc-45b5-b070-2e67ec388d24", - "metadata": {}, - "outputs": [], - "source": [ - "# Loading best model\n", - "model.load_state_dict(torch.load('best_weights/nri_particles_parameters.pt'))\n", - "\n", - "# Getting predicted edges from a chosen simulation and chosen sequence\n", - "sim_idx = 0\n", - "seq_idx = 0\n", - "idx = int(sim_len/seq_len)*sim_idx + seq_idx\n", - "\n", - "n_joints = train_batches.size(2)\n", - "\n", - "logits = model.encoder(train_batches[idx].unsqueeze(0)).squeeze(0)\n", - "\n", - "y = gumbel_softmax_sample(logits, tau, False)\n", - "\n", - "# Confidence threshold\n", - "confidence = 0.95\n", - "edge_index_classes = torch.where(y[:, -1] > confidence)[0]\n", - "\n", - "# Top % edges\n", - "# percentage = 0.01\n", - "# k = int(len(edge_index_t)*percentage)\n", - "# edge_index_classes = torch.topk(y[:, -1], k)[1]\n", - "\n", - "edge_index_samp = torch.Tensor(edge_index_t).to(device)[edge_index_classes].t().long()\n", - "print('Amount of edges sampled with confidence {}%: {}'.format(int(confidence*100), len(edge_index_classes)))\n", - "# print('Top {}% edges: {}'.format(int(percentage*100), len(edge_index_classes)))\n", - "\n", - "# Getting reconstructed frame\n", - "decoder_m_in, decoder_m_out = message_passing_matrices(n_joints, edge_index_samp)\n", - "decoder_m_in = decoder_m_in.to(device)\n", - "decoder_m_out = decoder_m_out.to(device)\n", - "\n", - "recon_output = model.decoder(train_batches[idx], \\\n", - " edge_index_samp, decoder_m_in, decoder_m_out)\n", - "recon_output = recon_output.view(seq_len_out, n_joints, int(dims/2)).cpu().detach().numpy()\n", - "\n", - "if seq_len_out == 1:\n", - " recon_output = recon_output.squeeze(0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "78118dee-0e7c-4eab-9974-f21487471f12", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.colors as mcolors\n", - "\n", - "color_scales = [\n", - " mcolors.LinearSegmentedColormap.from_list(\"red_scale\", [\"#FFCCCC\", \"#CC0000\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"blue_scale\", [\"#CCCCFF\", \"#0000CC\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"green_scale\", [\"#CCFFCC\", \"#006600\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"orange_scale\", [\"#FFE5CC\", \"#FF6600\"]),\n", - " mcolors.LinearSegmentedColormap.from_list(\"black_scale\", [\"#CCCCCC\", \"#000000\"])\n", - "]\n", - "\n", - "if seq_len_out == 1:\n", - " fig = plt.figure(figsize=(12, 8))\n", - "\n", - " ax1 = fig.add_subplot(321)\n", - " ax1.set_title('Original Trajectory')\n", - " ax1.set_xlabel('X coordinate')\n", - " ax1.set_ylabel('Y coordinate')\n", - " \n", - " ax2 = fig.add_subplot(322)\n", - " ax2.set_title('Original Subsequent Trajectory')\n", - " ax2.set_xlabel('X coordinate')\n", - " ax2.set_ylabel('Y coordinate')\n", - " \n", - " ax3 = fig.add_subplot(323)\n", - " ax3.set_title('Original Subsequent Frame')\n", - " ax3.set_xlabel('X coordinate')\n", - " ax3.set_ylabel('Y coordinate')\n", - " \n", - " ax4 = fig.add_subplot(324)\n", - " ax4.set_title('Reconstructed Subsequent Frame')\n", - " ax4.set_xlabel('X coordinate')\n", - " ax4.set_ylabel('Y coordinate')\n", - " \n", - " ax5 = fig.add_subplot(325)\n", - " ax5.set_title('Original Graph Structure')\n", - " ax5.set_xticks([])\n", - " ax5.set_yticks([])\n", - "\n", - " ax6 = fig.add_subplot(326)\n", - " ax6.set_title('Predicted Graph Structure')\n", - " ax6.set_xticks([])\n", - " ax6.set_yticks([])\n", - "\n", - " # Plotting trajectories and frames\n", - " for p, e, c, cs in zip(range(n_joints), edge_pos, colors, color_scales):\n", - " for i in range(seq_len):\n", - " intensity = i / (seq_len - 1)\n", - " ax1.scatter(train_batches[idx, i, p, 0].detach().cpu(), train_batches[idx, i, p, 1].detach().cpu(), \n", - " color=cs(intensity), s=50)\n", - " ax2.scatter(train_batches[idx+1, i, p, 0].detach().cpu(), train_batches[idx+1, i, p, 1].detach().cpu(), \n", - " color=cs(intensity), s=50)\n", - "\n", - " ax3.scatter(train_batches[idx+1, 0, p, 0].detach().cpu(), train_batches[idx+1, 0, p, 1].detach().cpu(), color=c)\n", - " ax4.scatter(recon_output[p, 0], recon_output[p, 1], color=c)\n", - "\n", - " ax5.scatter(e[0], e[1], color=c, s=100)\n", - " ax6.scatter(e[0], e[1], color=c, s=100)\n", - " \n", - " for j in range(n_joints):\n", - " if edges_train[sim_idx][p, j] == 1:\n", - " ax5.plot([edge_pos[p][0], edge_pos[j][0]], [edge_pos[p][1], edge_pos[j][1]], color='grey')\n", - "\n", - " # Plotting predicted edges\n", - " for e in edge_index_samp.t():\n", - " ax6.plot([edge_pos[e[0]][0], edge_pos[e[1]][0]], [edge_pos[e[0]][1], edge_pos[e[1]][1]], color='grey')\n", - "\n", - " # Highlighting points of frame to be reconstructed\n", - " xlim = ax2.get_xlim()\n", - " ylim = ax2.get_ylim()\n", - " width = (xlim[1] - xlim[0]) * 0.025\n", - " height = (ylim[1] - ylim[0]) * 0.055\n", - " for p in range(n_joints):\n", - " first_x = train_batches[idx+1, 0, p, 0].detach().cpu()\n", - " first_y = train_batches[idx+1, 0, p, 1].detach().cpu()\n", - " circle = plt.Circle((first_x, first_y), radius=1, color='purple', fill=False, linewidth=2, \n", - " transform=ax2.transData)\n", - " circle.set_width(width)\n", - " circle.set_height(height)\n", - " ax2.add_patch(circle)\n", - " \n", - " plt.tight_layout()\n", - " plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1ff093cf-74dd-42af-a0c1-c6530a7b6a82", - "metadata": {}, - "outputs": [], - "source": [ - "# Visualizing full sequence of predictions\n", - "logits = model.encoder(train_batches[idx].unsqueeze(0)).squeeze(0)\n", - "\n", - "y = gumbel_softmax_sample(logits, tau, False)\n", - "\n", - "# Confidence threshold\n", - "confidence = 0.95\n", - "edge_index_classes = torch.where(y[:, 1] > confidence)[0]\n", - "\n", - "# Top % edges\n", - "# percentage = 0.01\n", - "# k = int(len(edge_index_t)*percentage)\n", - "# edge_index_classes = torch.topk(y[:, 1], k)[1]\n", - "\n", - "edge_index_samp = torch.Tensor(edge_index_t).to(device)[edge_index_classes].t().long()\n", - "print('Amount of edges sampled with confidence {}%: {}'.format(int(confidence*100), len(edge_index_classes)))\n", - "# print('Top {}% edges: {}'.format(int(percentage*100), len(edge_index_classes)))\n", - "\n", - "# Getting reconstructed frame\n", - "decoder_m_in, decoder_m_out = message_passing_matrices(n_joints, edge_index_samp)\n", - "decoder_m_in = decoder_m_in.to(device)\n", - "decoder_m_out = decoder_m_out.to(device)\n", - "\n", - "recon_outputs = []\n", - "for i in range(seq_len):\n", - " recon_output = model.decoder(train_batches_ovlp[idx+i], \\\n", - " edge_index_samp, decoder_m_in, decoder_m_out)\n", - " recon_output = recon_output.view(seq_len_out, n_joints, int(dims/2))\n", - " \n", - " if seq_len_out == 1:\n", - " recon_output = recon_output.squeeze(0)\n", - "\n", - " recon_outputs.append(recon_output)\n", - "\n", - "recon_outputs = torch.stack(recon_outputs).cpu().detach().numpy()\n", - "\n", - "# Visualizing predicted particles' trajectories and graph structure\n", - "fig = plt.figure(figsize=(12, 6))\n", - "\n", - "ax1 = fig.add_subplot(221)\n", - "ax1.set_title('Original Trajectories')\n", - "ax1.set_xlabel('X coordinate')\n", - "ax1.set_ylabel('Y coordinate')\n", - "\n", - "ax2 = fig.add_subplot(222)\n", - "ax2.set_title('Predicted Trajectories')\n", - "ax2.set_xlabel('X coordinate')\n", - "ax2.set_ylabel('Y coordinate')\n", - "\n", - "ax3 = fig.add_subplot(223)\n", - "ax3.set_title('Original Graph Structure')\n", - "ax3.set_xticklabels([])\n", - "ax3.set_yticklabels([])\n", - "\n", - "ax4 = fig.add_subplot(224)\n", - "ax4.set_title('Predicted Graph Structure')\n", - "ax4.set_xticklabels([])\n", - "ax4.set_yticklabels([])\n", - "\n", - "# Plotting trajectories\n", - "for p, e, c, cs in zip(range(n_joints), edge_pos, colors, color_scales):\n", - " for i in range(seq_len):\n", - " intensity = i / (seq_len - 1)\n", - " ax1.scatter(train_batches_ovlp[idx, i, p, 0].cpu().detach(), train_batches_ovlp[idx, i, p, 1].cpu().detach(), \\\n", - " color=cs(intensity), s=50)\n", - " ax2.scatter(recon_outputs[i, p, 0], recon_outputs[i, p, 1], color=cs(intensity), s=50)\n", - "\n", - "\n", - " ax3.scatter(e[0], e[1], color=c, s=100)\n", - " ax4.scatter(e[0], e[1], color=c, s=100)\n", - "\n", - " for j in range(n_joints):\n", - " if edges_train[sim_idx][p, j] == 1:\n", - " ax3.plot([edge_pos[p][0], edge_pos[j][0]], [edge_pos[p][1], edge_pos[j][1]], color='grey')\n", - " \n", - "# Plotting predicted edges\n", - "for e in edge_index_samp.t():\n", - " ax4.plot([edge_pos[e[0]][0], edge_pos[e[1]][0]], [edge_pos[e[0]][1], edge_pos[e[1]][1]], color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "4f9879ab-2901-4afa-a494-17ca1055c883", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "NERSC Python", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/NRI_variant_test.ipynb b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/NRI_variant_test.ipynb deleted file mode 100644 index ec4562f..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/NRI_variant_test.ipynb +++ /dev/null @@ -1,1581 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "9461899a-08ba-47f1-9032-2d3fd78893d7", - "metadata": {}, - "source": [ - "

\n", - " This is a testing notebook for trying the NRI variant model before commiting to properly training it. Not only that, it allows for easier and more interactive visualizations once we have the trained weights.\n", - "

\n", - "

\n", - " It is divided into 3 main parts:\n", - "

    \n", - "
  • Data Preparation: Loading data, visualizing it to better understand the inputs, preparing it with the appropriate shape and data structure for the models, and finally augmenting it for better training.
  • \n", - "
  • Building Models: Defining the model and testing small training instances to check if the pipeline is working
  • \n", - "
  • Visualizations: Implementing various types of visualizations given the trained model to benefit from their insights
  • \n", - "
\n", - "

" - ] - }, - { - "cell_type": "markdown", - "id": "c7c1c080-d09d-4ac9-abc9-1484ece30faa", - "metadata": {}, - "source": [ - "# Data Preparation" - ] - }, - { - "cell_type": "markdown", - "id": "270b3671-83d3-468a-92b8-3e5822ff334c", - "metadata": {}, - "source": [ - "
    \n", - "
  • Reading preprocessed data in an interleaved manner to extract data from both dancers separately. For better movement prediction and velocity estimation, we only read every 5th frame
  • \n", - "
  • Creating adjacencies by:\n", - "
      \n", - "
    1. Initializing default skeleton for 29 joints
    2. \n", - "
    3. Repeating the process for the second dancer
    4. \n", - "
    5. Connecting every joint of a dancer to all joints on the other dancer (these are the ones we want to classify as existing or non-existing with the NRI model)
    6. \n", - "
    7. Duplicating the edges to make graph undirected
    8. \n", - "
    \n", - "
  • \n", - "
  • Visualizing both dancers with their default skeletons and also with the connecting edges
  • \n", - "
  • Estimating velocities based on 3D positions of consecutive frames
  • \n", - "
  • Preparing batches with PyTorch tensors of shape (batches, length_of_sequences, number_of_joints_from_both_dancers, 6D (position + velocity))
  • \n", - "
  • Creating training-validation split
  • \n", - "
  • To simplify the problem even further and better utilize the potential of the proposed architecture, in light of the amount of data available, a final sampling step of the dancers' joints is applied, resulting in fewer particles to be tracked
  • \n", - "
" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5088fe34-38ab-47c3-9b2e-6ee4de2e6685", - "metadata": {}, - "outputs": [], - "source": [ - "from IPython.core.debugger import set_trace\n", - "from glob import glob\n", - "import numpy as np\n", - "\n", - "# Reading data coming from the pre-processing pipeline and creating both dancers\n", - "joint_poses = []\n", - "for file in glob('./data/*.npy'):\n", - " interleaved_poses = np.load(file)\n", - " poses_1 = interleaved_poses[0::2]\n", - " poses_2 = interleaved_poses[1::2]\n", - "\n", - " # Sampling frames for movement smoothness\n", - " joint_poses.append(np.concatenate((poses_1, poses_2), axis=1)[::5])\n", - " print('Joint poses {} shape: {}\\n'.format(file.split('/')[-1], joint_poses[-1].shape))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ed87f939-9f62-4029-a7f6-042d65c82131", - "metadata": {}, - "outputs": [], - "source": [ - "# Building initial transposed edge index (adjacencies)\n", - "edge_index_t = [[0, 1], [0, 2], [0, 3], [1, 4], [2, 5], [3, 6], [4, 7], [5, 8], [6, 9], [7, 10], [7, 27], [8, 11],\n", - " [8, 28], [9, 12], [9, 13], [9, 14], [12, 15], [13, 16], [14, 17], [15, 24], [16, 18], [17, 19],\n", - " [18, 20], [19, 21], [20, 22], [21, 23], [22, 25], [23, 26]]\n", - "\n", - "# Getting second person skeleton\n", - "n_joints = int(joint_poses[0].shape[1]/2)\n", - "init_skeleton_len = len(edge_index_t)\n", - "for edge_index in range(init_skeleton_len):\n", - " edge_index_t.append([edge_index_t[edge_index][0]+n_joints, edge_index_t[edge_index][1]+n_joints])\n", - "\n", - "# Saving skeletons for visualization\n", - "skeletons = edge_index_t.copy()\n", - "\n", - "# Fully connecting the two people\n", - "for joint_1 in range(interleaved_poses.shape[1]):\n", - " for joint_2 in range(interleaved_poses.shape[1]):\n", - " edge_index_t.append([joint_1, joint_2+n_joints])\n", - "\n", - "# Making graph undirected\n", - "full_skeleton_len = len(edge_index_t)\n", - "for edge_index in range(full_skeleton_len):\n", - " edge_index_t.append([edge_index_t[edge_index][1], edge_index_t[edge_index][0]])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "dc562866-f5ff-4b72-8359-2e96af00c10b", - "metadata": {}, - "outputs": [], - "source": [ - "# Visualizing joint skeletons for random frame\n", - "import matplotlib.pyplot as plt\n", - "from mpl_toolkits.mplot3d import Axes3D\n", - "\n", - "%matplotlib inline\n", - "\n", - "fig = plt.figure(figsize=(12, 4))\n", - "\n", - "# Plotting dancers\n", - "ax1 = fig.add_subplot(121, projection=\"3d\")\n", - "ax1.set_xlim([-1, 1])\n", - "ax1.set_ylim([-1, 1])\n", - "ax1.set_zlim([-1, 1])\n", - "\n", - "rand_frame = 0\n", - "ax1.scatter(joint_poses[0][rand_frame, :n_joints, 2], joint_poses[0][rand_frame, :n_joints, 0], \\\n", - " -joint_poses[0][rand_frame, :n_joints, 1], color='red')\n", - "ax1.scatter(joint_poses[0][rand_frame, n_joints:, 2], joint_poses[0][rand_frame, n_joints:, 0], \\\n", - " -joint_poses[0][rand_frame, n_joints:, 1], color='blue')\n", - "\n", - "for (start, end) in skeletons:\n", - " xs = [joint_poses[0][rand_frame, start, 2], joint_poses[0][rand_frame, end, 2]]\n", - " ys = [joint_poses[0][rand_frame, start, 0], joint_poses[0][rand_frame, end, 0]]\n", - " zs = [-joint_poses[0][rand_frame, start, 1], -joint_poses[0][rand_frame, end, 1]]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - "\n", - "# Plotting dancers with fully connected joints\n", - "ax2 = fig.add_subplot(122, projection=\"3d\")\n", - "ax2.set_xlim([-1, 1])\n", - "ax2.set_ylim([-1, 1])\n", - "ax2.set_zlim([-1, 1])\n", - "\n", - "ax2.scatter(joint_poses[0][rand_frame, :n_joints, 2], joint_poses[0][rand_frame, :n_joints, 0], \\\n", - " -joint_poses[0][rand_frame, :n_joints, 1], color='red')\n", - "ax2.scatter(joint_poses[0][rand_frame, n_joints:, 2], joint_poses[0][rand_frame, n_joints:, 0], \\\n", - " -joint_poses[0][rand_frame, n_joints:, 1], color='blue')\n", - "\n", - "for (start, end) in edge_index_t[:int(len(edge_index_t)/2)]:\n", - " xs = [joint_poses[0][rand_frame, start, 2], joint_poses[0][rand_frame, end, 2]]\n", - " ys = [joint_poses[0][rand_frame, start, 0], joint_poses[0][rand_frame, end, 0]]\n", - " zs = [-joint_poses[0][rand_frame, start, 1], -joint_poses[0][rand_frame, end, 1]]\n", - " ax2.plot(xs, ys, zs, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "af157f1e", - "metadata": {}, - "outputs": [], - "source": [ - "#################### Removed piece of code because now we rotate randomly on the fly while training ####################\n", - "\n", - "# # Defining rotation functions\n", - "# def rotation_matrix_x(angle):\n", - "# c, s = np.cos(angle), np.sin(angle)\n", - " \n", - "# return np.array([[1, 0, 0],\n", - "# [0, c, -s],\n", - "# [0, s, c]])\n", - "\n", - "# def rotation_matrix_y(angle):\n", - "# c, s = np.cos(angle), np.sin(angle)\n", - " \n", - "# return np.array([[c, 0, s],\n", - "# [0, 1, 0],\n", - "# [-s, 0, c]])\n", - "\n", - "# def rotation_matrix_z(angle):\n", - "# c, s = np.cos(angle), np.sin(angle)\n", - " \n", - "# return np.array([[c, -s, 0],\n", - "# [s, c, 0],\n", - "# [0, 0, 1]])\n", - "\n", - "# def rotate_points(points, angle_x, angle_y, angle_z):\n", - "# Rx = rotation_matrix_x(angle_x)\n", - "# Ry = rotation_matrix_y(angle_y)\n", - "# Rz = rotation_matrix_z(angle_z)\n", - " \n", - "# rotation_matrix = Rz @ Ry @ Rx\n", - "# rotated_points = points @ rotation_matrix.T\n", - " \n", - "# return rotated_points\n", - "\n", - "# # Augmenting poses by adding random rotations (around Z-axis only)\n", - "# rand_rot_num = 0\n", - "# joint_poses_augmented = [joint_poses]\n", - "# for r in range(rand_rot_num):\n", - "# joint_poses_rot = []\n", - " \n", - "# angle_x = 0 # 2*np.random.rand(1)[0]*np.pi\n", - "# angle_y = 2*np.random.rand(1)[0]*np.pi\n", - "# angle_z = 0 # 2*np.random.rand(1)[0]*np.pi\n", - " \n", - "# for choreo in joint_poses:\n", - "# choreo_aux = []\n", - " \n", - "# for frame in choreo:\n", - "# rotated_points = rotate_points(frame, angle_x, angle_y, angle_z) \n", - "# choreo_aux.append(rotated_points)\n", - " \n", - "# joint_poses_rot.append(np.array(choreo_aux))\n", - "\n", - "# joint_poses_augmented.append(joint_poses_rot)\n", - "\n", - "# # Visualizing rotated frame\n", - "# fig = plt.figure(figsize=(12, 4))\n", - "\n", - "# ax1 = fig.add_subplot(131, projection=\"3d\")\n", - "# ax1.set_xlim([-1, 1])\n", - "# ax1.set_ylim([-1, 1])\n", - "# ax1.set_zlim([-1, 1])\n", - "\n", - "# ax2 = fig.add_subplot(132, projection=\"3d\")\n", - "# ax2.set_xlim([-1, 1])\n", - "# ax2.set_ylim([-1, 1])\n", - "# ax2.set_zlim([-1, 1])\n", - "\n", - "# ax3 = fig.add_subplot(133, projection=\"3d\")\n", - "# ax3.set_xlim([-1, 1])\n", - "# ax3.set_ylim([-1, 1])\n", - "# ax3.set_zlim([-1, 1])\n", - "\n", - "# ax1.scatter(joint_poses[0][0, :n_joints, 2], joint_poses[0][0, :n_joints, 0], -joint_poses[0][0, :n_joints, 1], color='red')\n", - "# ax1.scatter(joint_poses[0][0, n_joints:, 2], joint_poses[0][0, n_joints:, 0], -joint_poses[0][0, n_joints:, 1], color='blue')\n", - "\n", - "# ax2.scatter(joint_poses_augmented[1][0][0, :n_joints, 2], joint_poses_augmented[1][0][0, :n_joints, 0], \\\n", - "# -joint_poses_augmented[1][0][0, :n_joints, 1], color='red')\n", - "# ax2.scatter(joint_poses_augmented[1][0][0, n_joints:, 2], joint_poses_augmented[1][0][0, n_joints:, 0], \\\n", - "# -joint_poses_augmented[1][0][0, n_joints:, 1], color='blue')\n", - "\n", - "# ax3.scatter(joint_poses_augmented[2][0][0, :n_joints, 2], joint_poses_augmented[2][0][0, :n_joints, 0], \\\n", - "# -joint_poses_augmented[2][0][0, :n_joints, 1], color='red')\n", - "# ax3.scatter(joint_poses_augmented[2][0][0, n_joints:, 2], joint_poses_augmented[2][0][0, n_joints:, 0], \\\n", - "# -joint_poses_augmented[2][0][0, n_joints:, 1], color='blue')\n", - "\n", - "# plt.tight_layout()\n", - "# plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "43c0e341", - "metadata": {}, - "outputs": [], - "source": [ - "import torch\n", - "\n", - "# Defining velocity function\n", - "def compute_velocities(data, frame_gap=2):\n", - " velocities = data[frame_gap:] - data[:-frame_gap]\n", - "\n", - " # Repeating velocity for final frames\n", - " padding = velocities[-1, :, :].repeat(frame_gap, 1, 1)\n", - "\n", - " velocities = torch.cat((velocities, padding), dim=0)\n", - " \n", - " # Fixing velocity configuration\n", - " velocities = velocities[:, :, [2, 0, 1]]\n", - " velocities[:, :, 2] = -velocities[:, :, 2]\n", - " \n", - " return velocities\n", - "\n", - "# Estimating velocity of points\n", - "frame_gap = 1\n", - "velocities = []\n", - "joint_poses_velo = []\n", - "for joint_pose in [joint_poses]:\n", - " velocities_aux = []\n", - " joint_poses_velo_aux = []\n", - " \n", - " for choreo in joint_pose:\n", - " choreo = torch.Tensor(choreo)\n", - " \n", - " velocity_choreo = compute_velocities(choreo, frame_gap)\n", - " velocities_aux.append(velocity_choreo)\n", - " \n", - " joint_poses_velo_aux.append(torch.cat((choreo, velocity_choreo), dim=-1))\n", - "\n", - " velocities.append(velocities_aux)\n", - " joint_poses_velo.append(joint_poses_velo_aux)\n", - "\n", - "# Visualizing velocity of points\n", - "fig = plt.figure(figsize=(12, 6))\n", - "\n", - "ax1 = fig.add_subplot(121, projection=\"3d\")\n", - "ax1.set_xlim([-1, 1])\n", - "ax1.set_ylim([-1, 1])\n", - "ax1.set_zlim([-1, 1])\n", - "\n", - "ax2 = fig.add_subplot(122, projection=\"3d\")\n", - "ax2.set_xlim([-1, 1])\n", - "ax2.set_ylim([-1, 1])\n", - "ax2.set_zlim([-1, 1])\n", - "\n", - "rand_frame = 250\n", - "ax1.scatter(joint_poses[1][rand_frame, :n_joints, 2], joint_poses[1][rand_frame, :n_joints, 0], \\\n", - " -joint_poses[1][rand_frame, :n_joints, 1], color='red')\n", - "ax1.scatter(joint_poses[1][rand_frame+frame_gap, :n_joints, 2], joint_poses[1][rand_frame+frame_gap, :n_joints, 0], \\\n", - " -joint_poses[1][rand_frame+frame_gap, :n_joints, 1], color='orange')\n", - "\n", - "ax2.scatter(joint_poses[1][rand_frame, n_joints:, 2], joint_poses[1][rand_frame, n_joints:, 0], \\\n", - " -joint_poses[1][rand_frame, n_joints:, 1], color='blue')\n", - "ax2.scatter(joint_poses[1][rand_frame+frame_gap, n_joints:, 2], joint_poses[1][rand_frame+frame_gap, n_joints:, 0], \\\n", - " -joint_poses[1][rand_frame+frame_gap, n_joints:, 1], color='purple')\n", - "\n", - "for point in range(2*n_joints):\n", - " x_start = joint_poses[1][rand_frame, point, 2]\n", - " y_start = joint_poses[1][rand_frame, point, 0]\n", - " z_start = -joint_poses[1][rand_frame, point, 1]\n", - "\n", - " vx = velocities[0][1][rand_frame, point, 0]\n", - " vy = velocities[0][1][rand_frame, point, 1]\n", - " vz = velocities[0][1][rand_frame, point, 2]\n", - " \n", - " if point < n_joints:\n", - " ax1.quiver(x_start, y_start, z_start, vx, vy, vz, color='grey')\n", - " else:\n", - " ax2.quiver(x_start, y_start, z_start, vx, vy, vz, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "22feb2e4-ecf0-4dc7-b6ed-fa6e8116f440", - "metadata": {}, - "outputs": [], - "source": [ - "import torch\n", - "\n", - "seq_len = 16\n", - "batches = []\n", - "choreo_lens = []\n", - "\n", - "# Building non-overlapping sequences\n", - "for joint_pose_velo in joint_poses_velo:\n", - " for choreo in joint_pose_velo:\n", - " choreo = torch.Tensor(choreo)\n", - " \n", - " num_seqs = choreo.shape[0] // seq_len\n", - " batches.append(torch.stack([choreo[i*seq_len:(i+1)*seq_len] for i in range(num_seqs)]))\n", - " choreo_lens.append(batches[-1].size(0))\n", - "\n", - "# # Building overlapping sequences\n", - "# for joint_pose_velo in joint_poses_velo:\n", - "# for choreo in joint_pose_velo:\n", - "# choreo = torch.Tensor(choreo)\n", - " \n", - "# batches.append(torch.stack([choreo[i:i+seq_len] for i in range(len(choreo)-seq_len)]))\n", - "# choreo_lens.append(batches[-1].size(0))\n", - "\n", - "batches = torch.cat(batches, dim=0)\n", - "\n", - "# Fixing x, y, z configuration\n", - "batches[:, :, :, [0, 1, 2]] = batches[:, :, :, [2, 0, 1]]\n", - "batches[:, :, :, 2] = -batches[:, :, :, 2]\n", - "\n", - "# Balanced training-validation split\n", - "train_split = []\n", - "val_split = []\n", - "train_batches = []\n", - "val_batches = []\n", - "split_percentage = 0.85\n", - "next_choreo = 0\n", - "for choreo_len in choreo_lens:\n", - " \n", - " train_split.append(int(split_percentage*choreo_len))\n", - " val_split.append(choreo_len - train_split[-1])\n", - " \n", - " train_batches.append(batches[next_choreo : next_choreo + train_split[-1]])\n", - " val_batches.append(batches[next_choreo + train_split[-1] : next_choreo + choreo_len])\n", - " \n", - " next_choreo += choreo_len\n", - "\n", - "train_batches = torch.cat(train_batches, dim=0)\n", - "val_batches = torch.cat(val_batches, dim=0)\n", - "\n", - "# Printing all the data structures created\n", - "print('Shape of tensor with all sequences: {}'.format(batches.shape))\n", - "print('Length of each choreography: {}\\n'.format(choreo_lens))\n", - "\n", - "print('Shape of training data with all sequences: {}'.format(train_batches.shape))\n", - "print('Length of each choreography in training dataset: {}\\n'.format(train_split))\n", - "\n", - "print('Shape of validation data with all sequences: {}'.format(val_batches.shape))\n", - "print('Length of each choreography in validation dataset: {}\\n'.format(val_split))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0a1c4ed9-2a66-484b-ad3e-d1019def1f07", - "metadata": {}, - "outputs": [], - "source": [ - "# Sampling dancers joints to simplify problem\n", - "n_joints_sampled = 5\n", - "sampled_joints_1 = np.random.choice(n_joints, n_joints_sampled)\n", - "sampled_joints_2 = np.random.choice(n_joints, n_joints_sampled) + n_joints\n", - "sampled_joints = np.concatenate([sampled_joints_1, sampled_joints_2])\n", - "print(\"Sampled joints for dancer 1: {}, and dancer 2: {}\".format(sampled_joints_1, sampled_joints_2))\n", - "\n", - "sampled_batches = batches[:, :, sampled_joints, :]\n", - "sampled_train_batches = train_batches[:, :, sampled_joints, :]\n", - "sampled_val_batches = val_batches[:, :, sampled_joints, :]\n", - "\n", - "sampled_edge_index_t = []\n", - "for (start, end) in edge_index_t[:len(edge_index_t)]:\n", - " if (start not in sampled_joints) or (end not in sampled_joints):\n", - " continue\n", - "\n", - " sampled_edge_index_t.append([start, end])\n", - "\n", - "\n", - "print('Shape of sampled data with all sequences: {}'.format(sampled_batches.shape))\n", - "print('Shape of sampled training data with all sequences: {}'.format(sampled_train_batches.shape))\n", - "print('Shape of sampled validation data with all sequences: {}'.format(sampled_val_batches.shape))\n", - "\n", - "# Plotting sampled dancers\n", - "fig = plt.figure(figsize=(12, 4))\n", - "ax1 = fig.add_subplot(121, projection=\"3d\")\n", - "ax1.set_xlim([-1, 1])\n", - "ax1.set_ylim([-1, 1])\n", - "ax1.set_zlim([-1, 1])\n", - "\n", - "rand_frame = 0\n", - "ax1.scatter(joint_poses[0][rand_frame, sampled_joints_1, 2], joint_poses[0][rand_frame, sampled_joints_1, 0], \\\n", - " -joint_poses[0][rand_frame, sampled_joints_1, 1], color='red')\n", - "ax1.scatter(joint_poses[0][rand_frame, sampled_joints_2, 2], joint_poses[0][rand_frame, sampled_joints_2, 0], \\\n", - " -joint_poses[0][rand_frame, sampled_joints_2, 1], color='blue')\n", - "\n", - "for (start, end) in skeletons:\n", - " if (start not in sampled_joints) or (end not in sampled_joints):\n", - " continue\n", - " \n", - " xs = [joint_poses[0][rand_frame, start, 2], joint_poses[0][rand_frame, end, 2]]\n", - " ys = [joint_poses[0][rand_frame, start, 0], joint_poses[0][rand_frame, end, 0]]\n", - " zs = [-joint_poses[0][rand_frame, start, 1], -joint_poses[0][rand_frame, end, 1]]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - "\n", - "# Plotting sampled dancers with fully connected joints\n", - "ax2 = fig.add_subplot(122, projection=\"3d\")\n", - "ax2.set_xlim([-1, 1])\n", - "ax2.set_ylim([-1, 1])\n", - "ax2.set_zlim([-1, 1])\n", - "\n", - "ax2.scatter(joint_poses[0][rand_frame, sampled_joints_1, 2], joint_poses[0][rand_frame, sampled_joints_1, 0], \\\n", - " -joint_poses[0][rand_frame, sampled_joints_1, 1], color='red')\n", - "ax2.scatter(joint_poses[0][rand_frame, sampled_joints_2, 2], joint_poses[0][rand_frame, sampled_joints_2, 0], \\\n", - " -joint_poses[0][rand_frame, sampled_joints_2, 1], color='blue')\n", - "\n", - "for (start, end) in edge_index_t[:int(len(edge_index_t)/2)]:\n", - " if (start not in sampled_joints) or (end not in sampled_joints):\n", - " continue\n", - " \n", - " xs = [joint_poses[0][rand_frame, start, 2], joint_poses[0][rand_frame, end, 2]]\n", - " ys = [joint_poses[0][rand_frame, start, 0], joint_poses[0][rand_frame, end, 0]]\n", - " zs = [-joint_poses[0][rand_frame, start, 1], -joint_poses[0][rand_frame, end, 1]]\n", - " ax2.plot(xs, ys, zs, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "c0b5080e-da7a-4d45-b129-410975ab7d39", - "metadata": {}, - "source": [ - "# Bulding Model" - ] - }, - { - "cell_type": "markdown", - "id": "8930ee11-5b75-4fcf-b66c-9105dfd664ea", - "metadata": {}, - "source": [ - "

Developed model:

\n", - "
    \n", - "
  • NRI Variant: Building a variation of the Neural Relational Inference (NRI) model for the task of graph structure learning given sequences of movement (interactions of joints)
  • \n", - "
" - ] - }, - { - "cell_type": "markdown", - "id": "f2cc9966-a797-4254-9343-3f59895d5849", - "metadata": {}, - "source": [ - "## NRI Variant" - ] - }, - { - "cell_type": "markdown", - "id": "c508fbd8-1ebc-4da8-b71b-a38a3155d31b", - "metadata": {}, - "source": [ - "

\n", - " This model is a variant of the Neural Relational Inference (NRI) model, which itself is an extension of the traditional Variational Autoencoder (VAE). The primary objective of the original model is to study particles that move together in a system without prior knowledge of their underlying relationships. By analyzing their movements, the model aims to estimate a graph structure that connects these particles. In our context, the particles are represented by the joints of dancers. Although we know the physical connections between joints within a dancer's body, this information is insufficient to understand the artistic relationships between two dancers, such as how their joints move together or in opposition.\n", - "

\n", - "\n", - "

\n", - "Since we lack a target graph structure that correctly identifies which joints are virtually connected during a dance performance, and given that this graph can change over time even within a performance (focusing on different body parts at different times), we employ self-supervising techniques.\n", - "

\n", - "\n", - "Model Overview\n", - "\n", - "

\n", - "The model consists of an encoder and a decoder, which play around with transforming node representations into edge representations and vice versa. This approach focuses on the dynamics of movements rather than fixed node embeddings. Since the encoder outputs edges (specifically, samples edges from the generated latent space), it is crucial to switch between these representations.\n", - "

\n", - "\n", - "

\n", - "Our implementation is similar to the NRI MLP-Encoder MLP-Decoder model, but with a few modifications:\n", - "

\n", - "\n", - "
    \n", - "
  • Graph Convolutional Network (GCN): We replaced some MLP layers with GCN layers to leverage the graph structure, improving the model's ability to capture relationships between joints. This change also helps us focus on a subset of edges that connect both dancers, rather than studying all particle relationships as in the original implementation. Additionally GCNs provide local feature aggregation and parameter sharing, important inductive biases for our context that could lead in enhanced generalization in a scenario with a \"dynamic\" (unknown) graph structure
  • \n", - "
  • GCN LSTM cells: To utilize the recurrent structure crucial for sequence processing while maintaining graph information and GNN architecture, the classic LSTM cell has been reimplemented with GCN nodes. Currently only the decoder incorporates the recurrent component, which generates a final sequence embedding that the model uses to reconstruct the next frame
  • \n", - "
  • Use of Modern Libraries: We utilize PyTorch Geometric for its advanced features and ease of use
  • \n", - "
\n", - "\n", - "

\n", - "By incorporating these modifications, our model maintains the core principles of the original NRI model while theoretically enhancing its ability to generalize and adapt to the dynamic nature of dance performances.\n", - "

\n", - "\n", - "

\n", - "Note: To include data augmentation and improve model generalization, the training pipeline incorporates a data processing step that involves rotating batches of data. Each batch is rotated along the Z-axis by a randomly selected angle while maintaining the original X and Y-axis orientations for physical consistency. This approach helps prevent the model from overfitting to the dancers' absolute positions.\n", - "

\n", - "\n", - "Final Architecture\n", - "\n", - "
    \n", - "
  • \n", - " Encoder\n", - "
      \n", - "
    1. The encoder includes a GCN layer followed by a transformation of node representations into edge representations
    2. \n", - "
    3. We then use an MLP layer, batch normalization and dropout
    4. \n", - "
    5. After that, we convert edges back to nodes and apply another GCN layer
    6. \n", - "
    7. Nodes are then transformed back into edges, followed by another MLP with a skip connection from the dropout layer
    8. \n", - "
    9. And a final MLP layer outputs logits with (currently two) features representing the edge types (existing or non-existing)
    10. \n", - "
    \n", - "
  • \n", - "
  • \n", - " Decoder\n", - "
      \n", - "
    1. Using the logits produced by the encoder, we sample a Gumbel-Softmax distribution. The idea is to approximate sampling in a continuous distribution and use Softmax to deal with the reparametrization trick, making the pipeline fully differentiable.
    2. \n", - "
    3. With the newly sampled edge index in hand, the decoder starts by passing data into a GRNN composed of our modified LSTM nodes with GCN layers, followed by a transformation of the final sequence embedding into edge representations
    4. \n", - "
    5. We then also use an MLP layer, batch normalization and dropout
    6. \n", - "
    7. After that, we convert edges back to nodes and apply a GCN layer to get a reconstructed frame
    8. \n", - "
    \n", - "
  • \n", - "
\n", - "\n", - "

" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "de215173-f94b-4cf1-a6d9-9d08df62147f", - "metadata": {}, - "outputs": [], - "source": [ - "import torch.nn as nn\n", - "import torch.nn.functional as F\n", - "\n", - "# Creating message passing matrices for receivers and senders - shape R^(E x N)\n", - "def message_passing_matrices(n_joints, edge_index):\n", - " message_passing_in = torch.zeros((edge_index.size(1), n_joints))\n", - " message_passing_out = torch.zeros((edge_index.size(1), n_joints))\n", - "\n", - " # Vectorizing message_passing matrices creation\n", - " edge_indices = torch.arange(edge_index.size(1))\n", - " message_passing_out[edge_indices, edge_index[0]] = 1.\n", - " message_passing_in[edge_indices, edge_index[1]] = 1.\n", - "\n", - " return message_passing_in, message_passing_out\n", - "\n", - "\n", - "# NRI VAE auxiliar functions to change between nodes and edges\n", - "def node2edge(x, m_in, m_out): \n", - " receivers = torch.matmul(m_in, x)\n", - " senders = torch.matmul(m_out, x)\n", - " edges = torch.cat([senders, receivers], dim=1)\n", - " \n", - " return edges\n", - "\n", - "def edge2node(x, m_in):\n", - " incoming = torch.matmul(m_in.t(), x)\n", - " \n", - " return incoming / incoming.size(0)\n", - "\n", - "\n", - "# Gumbel-Softmax sampling function to allow for backpropagation with categorical distributions\n", - "def gumbel_softmax_sample(logits, temp, hard=False):\n", - " y = F.gumbel_softmax(logits, tau=temp, hard=hard)\n", - " \n", - " return y\n", - "\n", - "\n", - "# Computing KL Divergence for categorical distribution\n", - "def gumbel_softmax_kl_divergence(logits, log_prior, batch_size):\n", - " q_y = F.softmax(logits, dim=-1)\n", - " kl_div = q_y * (F.log_softmax(logits, dim=-1) - log_prior)\n", - "\n", - " # Normalizing by the batch size and number of edges\n", - " return kl_div.sum() / (batch_size * logits.size(0))\n", - "\n", - "\n", - "# Initializing reconstruction losses\n", - "nll_gaussian = nn.GaussianNLLLoss(reduction='mean') # Gaussian NLL\n", - "mse = nn.MSELoss(reduction='mean') # MSE\n", - "\n", - "# Implementing LSTM variant with GCN layers\n", - "class gcn_lstm_cell(nn.Module):\n", - " def __init__(self, n_in, n_out):\n", - " super(gcn_lstm_cell, self).__init__()\n", - "\n", - " self.n_in = n_in\n", - " self.n_out = n_out\n", - " \n", - " # Rebuilding LSTM cell with GCN layers\n", - " self.gcn_i = GCNConv(n_in + n_out, n_out)\n", - " self.gcn_f = GCNConv(n_in + n_out, n_out)\n", - " self.gcn_o = GCNConv(n_in + n_out, n_out)\n", - " self.gcn_g = GCNConv(n_in + n_out, n_out)\n", - "\n", - " def forward(self, x, h, c, edge_index):\n", - " # Concatenate input and hidden state\n", - " combined = torch.cat([x, h], dim=-1)\n", - " \n", - " # Compute gates\n", - " i = torch.sigmoid(self.gcn_i(combined, edge_index))\n", - " f = torch.sigmoid(self.gcn_f(combined, edge_index))\n", - " o = torch.sigmoid(self.gcn_o(combined, edge_index))\n", - " g = torch.tanh(self.gcn_g(combined, edge_index))\n", - " \n", - " # Compute new cell and hidden states\n", - " c_new = f*c + i*g\n", - " h_new = o*torch.tanh(c_new)\n", - " \n", - " return h_new, c_new" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f3d867d5-daba-4937-a72c-54d7d57ba967", - "metadata": {}, - "outputs": [], - "source": [ - "import torch_geometric.nn as geo_nn\n", - "from torch_geometric.nn import GCNConv\n", - "from torch.nn import Linear, BatchNorm1d, Dropout\n", - "\n", - "# Defining NRI encoder\n", - "class nri_encoder(nn.Module):\n", - " def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_encoder, self).__init__()\n", - "\n", - " # Computing edge index given transposed edge index\n", - " self.edge_index = torch.Tensor(edge_index_t).t().long().to(device)\n", - "\n", - " # Computing the message passing matrices\n", - " self.m_in, self.m_out = message_passing_matrices(n_joints, self.edge_index)\n", - " self.m_in = self.m_in.to(device)\n", - " self.m_out = self.m_out.to(device)\n", - "\n", - " # Defining the network itself interleaving GCN and MLP layers\n", - " self.conv1 = GCNConv(n_in, n_hid, node_dim=1).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.bnorm1 = BatchNorm1d(n_hid).to(device)\n", - " self.dropout1 = Dropout(do_prob).to(device)\n", - " \n", - " self.conv2 = GCNConv(n_hid, n_hid, node_dim=1).to(device)\n", - " \n", - " self.mlp2 = Linear(n_hid*3, n_hid).to(device)\n", - " self.bnorm2 = BatchNorm1d(n_hid).to(device)\n", - " \n", - " self.fc_out = Linear(n_hid, n_out).to(device)\n", - " \n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x):\n", - " # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims] -> [num_seqs, num_atoms, num_timesteps*num_dims]\n", - " x = x.view(x.size(0), x.size(2), -1)\n", - "\n", - " # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers\n", - " x = self.conv1(x, self.edge_index)\n", - " x = F.relu(x)\n", - "\n", - " edge_x = [node2edge(x_samp, self.m_in, self.m_out) for x_samp in x]\n", - " x = torch.stack(edge_x)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " x = x.permute(0, 2, 1)\n", - " x = self.bnorm1(x)\n", - " x = x.permute(0, 2, 1)\n", - " \n", - " x = self.dropout1(x)\n", - "\n", - " # Skip connection\n", - " x_skip = x.clone()\n", - "\n", - " node_x = [edge2node(x_samp, self.m_in) for x_samp in x]\n", - " x = torch.stack(node_x)\n", - " \n", - " x = self.conv2(x, self.edge_index)\n", - " x = F.relu(x)\n", - " \n", - " edge_x = [node2edge(x_samp, self.m_in, self.m_out) for x_samp in x]\n", - " x = torch.stack(edge_x)\n", - " \n", - " x = torch.cat((x, x_skip), dim=2)\n", - " x = self.mlp2(x)\n", - " x = F.relu(x)\n", - "\n", - " x = x.permute(0, 2, 1)\n", - " x = self.bnorm2(x)\n", - " x = x.permute(0, 2, 1)\n", - "\n", - " return self.fc_out(x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "73f6022c", - "metadata": {}, - "outputs": [], - "source": [ - "# NRI recurrent encoder\n", - "class nri_rec_encoder(nn.Module):\n", - " def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_rec_encoder, self).__init__()\n", - " self.device = device\n", - "\n", - " # Computing edge index given transposed edge index\n", - " self.edge_index = torch.Tensor(edge_index_t).t().long().to(device)\n", - "\n", - " # Computing the message passing matrices\n", - " self.m_in, self.m_out = message_passing_matrices(n_joints, self.edge_index)\n", - " self.m_in = self.m_in.to(device)\n", - " self.m_out = self.m_out.to(device)\n", - "\n", - " # Defining the network itself starting with GRNN and then MLP layers\n", - " self.grnn = gcn_lstm_cell(n_in, n_hid).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.fc_out = Linear(n_hid, n_out).to(device)\n", - " \n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x):\n", - " # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims]\n", - " num_seqs, num_timesteps, num_atoms, num_dims = x.shape\n", - "\n", - " # Iterating through samples in the batch\n", - " h_batch = []\n", - " for x_b in x:\n", - " # Initializing cell and hidden states\n", - " h = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " c = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " \n", - " # Iterating through GRNN\n", - " for x_t in x_b:\n", - " h, c = self.grnn(x_t, h, c, self.edge_index)\n", - "\n", - " h_batch.append(h)\n", - " h = torch.stack(h_batch)\n", - " \n", - " # Forward pass with an operation to switch from nodes to edges and MLP layers\n", - " edge_x = [node2edge(h_samp, self.m_in, self.m_out) for h_samp in h]\n", - " x = torch.stack(edge_x)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " return self.fc_out(x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "085bea43-dc37-4e9d-88b3-a5abfd98af75", - "metadata": {}, - "outputs": [], - "source": [ - "# Defining NRI decoder\n", - "class nri_decoder(nn.Module):\n", - " def __init__(self, device, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_decoder, self).__init__()\n", - "\n", - " # Defining the network itself interleaving GCN and MLP layers\n", - " self.conv1 = GCNConv(n_in, n_hid).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " # self.bnorm1 = BatchNorm1d(n_hid).to(device)\n", - " self.dropout1 = Dropout(do_prob).to(device)\n", - " \n", - " self.conv2 = GCNConv(n_hid, n_out).to(device)\n", - "\n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x, edge_index, m_in, m_out):\n", - " # Rearranging shapes: [num_timesteps, num_atoms, num_dims] -> [num_atoms, num_timesteps*num_dims]\n", - " x = x.view(x.size(0), x.size(2), -1)\n", - "\n", - " # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers\n", - " x = self.conv1(x, edge_index)\n", - " x = F.relu(x)\n", - "\n", - " x = node2edge(x, m_in, m_out)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " # x = x.permute(0, 2, 1)\n", - " # x = self.bnorm1(x)\n", - " # x = x.permute(0, 2, 1)\n", - " \n", - " x = self.dropout1(x)\n", - "\n", - " x = edge2node(x, m_in)\n", - " \n", - " x = self.conv2(x, edge_index)\n", - "\n", - " return x" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f7707a3c", - "metadata": {}, - "outputs": [], - "source": [ - "# NRI recurrent decoder\n", - "class nri_rec_decoder(nn.Module):\n", - " def __init__(self, device, n_in, n_hid, n_out, do_prob=0.):\n", - " super(nri_rec_decoder, self).__init__()\n", - " self.device = device\n", - " \n", - " # Defining the network itself starting with GRNN and then interleaving MLP and GCN layers\n", - " self.grnn = gcn_lstm_cell(n_in, n_hid).to(device)\n", - " \n", - " self.mlp1 = Linear(n_hid*2, n_hid).to(device)\n", - " self.dropout1 = Dropout(do_prob).to(device)\n", - " \n", - " self.conv1 = GCNConv(n_hid, n_out).to(device)\n", - "\n", - " self.init_weights()\n", - "\n", - " def init_weights(self):\n", - " for m in self.modules():\n", - " if isinstance(m, Linear):\n", - " nn.init.xavier_normal_(m.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " elif isinstance(m, GCNConv):\n", - " nn.init.xavier_normal_(m.lin.weight)\n", - " m.bias.data.fill_(0.1)\n", - "\n", - " def forward(self, x, edge_index, m_in, m_out):\n", - " # [num_timesteps, num_atoms, num_dims]\n", - " num_timesteps, num_atoms, num_dims = x.shape\n", - " \n", - " # Initializing cell and hidden states\n", - " h = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " c = torch.zeros(num_atoms, self.grnn.n_out).to(self.device)\n", - " \n", - " # Iterating through GRNN\n", - " for x_t in x:\n", - " h, c = self.grnn(x_t, h, c, edge_index)\n", - "\n", - " # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers\n", - " x = node2edge(h, m_in, m_out)\n", - " \n", - " x = self.mlp1(x)\n", - " x = F.relu(x)\n", - "\n", - " x = self.dropout1(x)\n", - "\n", - " x = edge2node(x, m_in)\n", - " \n", - " x = self.conv1(x, edge_index)\n", - "\n", - " return x" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5a0d757e-f97c-4d54-83bc-602b1008d17a", - "metadata": {}, - "outputs": [], - "source": [ - "# Defining NRI VAE\n", - "class nri_vae(nn.Module):\n", - " def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, edge_types, n_out, tau, hard, do_prob=0., n_dims=6, num_cells=None):\n", - " super(nri_vae, self).__init__()\n", - "\n", - " # Initializing encoder and decoder\n", - " if num_cells is None:\n", - " self.encoder = nri_encoder(device, n_joints, edge_index_t, n_in, n_hid, edge_types, do_prob)\n", - " self.decoder = nri_decoder(device, n_in, n_hid, n_out, do_prob)\n", - " else:\n", - " self.encoder = nri_encoder(device, n_joints, edge_index_t, n_in, n_hid, edge_types, do_prob)\n", - " # self.encoder = nri_rec_encoder(device, n_joints, edge_index_t, n_dims, n_hid, edge_types, do_prob)\n", - " self.decoder = nri_rec_decoder(device, n_dims, n_hid, n_out, do_prob)\n", - "\n", - " # Saving variables that will be used by the forward pass\n", - " self.device = device\n", - " self.n_joints = n_joints\n", - " \n", - " self.tau = tau\n", - " self.hard = hard\n", - "\n", - " self.edge_index_t = torch.Tensor(edge_index_t).to(device)\n", - " \n", - " def forward(self, x):\n", - " # Computing logits for edges with encoder\n", - " logits = self.encoder(x)\n", - "\n", - " # Sampling edge index classes using Gumbel-Softmax\n", - " y = gumbel_softmax_sample(logits, tau, hard)\n", - "\n", - " # Getting sampled edges for every element in the batch\n", - " edge_index_dict = {i: [] for i in range(logits.size(0))}\n", - " edge_index_classes = torch.nonzero(y[:, :, -1])\n", - " for batch_element, edge in edge_index_classes:\n", - " edge_index_dict[batch_element.item()].append(edge.item())\n", - "\n", - " recon_output = []\n", - " for k, v in edge_index_dict.items():\n", - " # Building edge_index for sampled edges\n", - " edge_index_samp = self.edge_index_t[v].t().long()\n", - "\n", - " # Creating message passing matrices for decoder newly sampled edge index\n", - " decoder_m_in, decoder_m_out = message_passing_matrices(self.n_joints, edge_index_samp)\n", - " decoder_m_in = decoder_m_in.to(self.device)\n", - " decoder_m_out = decoder_m_out.to(self.device)\n", - "\n", - " # Reconstructing sequences using decoder\n", - " recon_output.append(self.decoder(x[k], edge_index_samp, decoder_m_in, decoder_m_out))\n", - " \n", - " recon_output = torch.stack(recon_output)\n", - "\n", - " return logits, recon_output" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "58c8b60a-bbca-4525-aeee-59a5be482c70", - "metadata": {}, - "outputs": [], - "source": [ - "# Testing rotation function for fast rotation on full batch of data\n", - "def rotation_matrix_z(angle):\n", - " c, s = torch.cos(angle), torch.sin(angle)\n", - " \n", - " return torch.tensor([[c, -s, 0],\n", - " [s, c, 0],\n", - " [0, 0, 1]], dtype=torch.float32)\n", - "\n", - "rotation = rotation_matrix_z(torch.tensor(2*np.random.rand(1)[0]*np.pi))\n", - "rotated_batches_pos = torch.einsum('...ij,jk->...ik', train_batches[:16, :, :, :3], rotation)\n", - "rotated_batches_vel = torch.einsum('...ij,jk->...ik', train_batches[:16, :, :, 3:], rotation)\n", - "\n", - "# Visualizing rotated frame\n", - "fig = plt.figure(figsize=(12, 4))\n", - "\n", - "ax1 = fig.add_subplot(121, projection=\"3d\")\n", - "ax1.set_xlim([-1, 1])\n", - "ax1.set_ylim([-1, 1])\n", - "ax1.set_zlim([-1, 1])\n", - "\n", - "ax2 = fig.add_subplot(122, projection=\"3d\")\n", - "ax2.set_xlim([-1, 1])\n", - "ax2.set_ylim([-1, 1])\n", - "ax2.set_zlim([-1, 1])\n", - "\n", - "rand_seq = 1\n", - "rand_frame = 1\n", - "ax1.scatter(train_batches[rand_seq, rand_frame, :n_joints, 0], train_batches[rand_seq, rand_frame, :n_joints, 1], \\\n", - " train_batches[rand_seq, rand_frame, :n_joints, 2], color='red')\n", - "ax1.scatter(train_batches[rand_seq, rand_frame, n_joints:, 0], train_batches[rand_seq, rand_frame, n_joints:, 1], \\\n", - " train_batches[rand_seq, rand_frame, n_joints:, 2], color='blue')\n", - "\n", - "ax2.scatter(rotated_batches_pos[rand_seq, rand_frame, :n_joints, 0], rotated_batches_pos[rand_seq, rand_frame, :n_joints, 1], \\\n", - " rotated_batches_pos[rand_seq, rand_frame, :n_joints, 2], color='red')\n", - "ax2.scatter(rotated_batches_pos[rand_seq, rand_frame+1, :n_joints, 0], rotated_batches_pos[rand_seq, rand_frame+1, :n_joints, 1], \\\n", - " rotated_batches_pos[rand_seq, rand_frame+1, :n_joints, 2], color='orange')\n", - "\n", - "ax2.scatter(rotated_batches_pos[rand_seq, rand_frame, n_joints:, 0], rotated_batches_pos[rand_seq, rand_frame, n_joints:, 1], \\\n", - " rotated_batches_pos[rand_seq, rand_frame, n_joints:, 2], color='blue')\n", - "ax2.scatter(rotated_batches_pos[rand_seq, rand_frame+1, n_joints:, 0], rotated_batches_pos[rand_seq, rand_frame+1, n_joints:, 1], \\\n", - " rotated_batches_pos[rand_seq, rand_frame+1, n_joints:, 2], color='purple')\n", - "\n", - "for point in range(2*n_joints):\n", - " x_start = rotated_batches_pos[rand_seq, rand_frame, point, 0]\n", - " y_start = rotated_batches_pos[rand_seq, rand_frame, point, 1]\n", - " z_start = rotated_batches_pos[rand_seq, rand_frame, point, 2]\n", - "\n", - " vx = rotated_batches_vel[rand_seq, rand_frame, point, 0]\n", - " vy = rotated_batches_vel[rand_seq, rand_frame, point, 1]\n", - " vz = rotated_batches_vel[rand_seq, rand_frame, point, 2]\n", - " \n", - " ax2.quiver(x_start, y_start, z_start, vx, vy, vz, color='grey')\n", - " ax2.quiver(x_start, y_start, z_start, vx, vy, vz, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "240fc398-4390-4244-8ad3-d6ceca421a16", - "metadata": {}, - "outputs": [], - "source": [ - "import time\n", - "from tqdm import tqdm\n", - "import torch.optim as optim\n", - "from torch.optim import lr_scheduler\n", - "\n", - "# Initializing all the hyperparameters and moving the required ones to device\n", - "device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\n", - "train_batches = train_batches.to(device)\n", - "val_batches = val_batches.to(device)\n", - "\n", - "batch_size = batches.size(1)\n", - "train_batches_cumsum = np.cumsum(np.array(train_split) // batch_size)\n", - "val_batches_cumsum = np.cumsum(np.array(val_split) // batch_size)\n", - "\n", - "seq_len_in = batches.size(1)\n", - "seq_len_out = 1\n", - "n_joints = batches.size(2)\n", - "dims = batches.size(3)\n", - "\n", - "hidden_dims = 32\n", - "edge_types = 2\n", - "\n", - "tau = 0.5\n", - "hard = True\n", - "dropout = 0.1\n", - "out_var = 5e-5\n", - "\n", - "prior = [0.7, 0.3]\n", - "log_prior = torch.FloatTensor(np.log(prior)).unsqueeze(0).unsqueeze(0).to(device)\n", - "\n", - "epochs = 10\n", - "lr = 3e-4\n", - "lr_decay = 5\n", - "gamma = 0.5\n", - "\n", - "# Initializing model\n", - "model = nri_vae(device, n_joints, edge_index_t, seq_len_in*dims, hidden_dims, edge_types, seq_len_out*int(dims/2), \\\n", - " tau, hard, dropout, dims, seq_len_in)\n", - "\n", - "# Counting number of trainable parameters to compare to the dataset size\n", - "print('Total number of trainable parameters: {}\\n'.format(sum(p.numel() for p in model.parameters() if p.requires_grad)))\n", - "\n", - "for n, p in model.named_parameters():\n", - " if p.requires_grad:\n", - " print('Layer {} has {} trainbale parameters'.format(n, p.numel()))\n", - "\n", - "# Initializing optimizer and scheduler\n", - "optimizer = optim.Adam(model.parameters(), lr=lr)\n", - "scheduler = lr_scheduler.StepLR(optimizer, step_size=lr_decay, gamma=gamma)\n", - "\n", - "# Initializing lists to save losses across iterations\n", - "kl_train = []\n", - "recon_train = []\n", - "loss_train = []\n", - "kl_val = []\n", - "recon_val = []\n", - "loss_val = []\n", - "\n", - "# Initializing variables to save best model\n", - "best_val_loss = torch.inf\n", - "best_epoch = 0\n", - "\n", - "# Model iteration function\n", - "def model_iteration(model, optimizer, scheduler, batches, batches_cumsum, beta, mode='train', recon_mode='nll'):\n", - " t = time.time()\n", - " \n", - " kl_aux = []\n", - " recon_aux = []\n", - " loss_aux = []\n", - "\n", - " if mode == 'train':\n", - " model.train()\n", - " elif mode == 'val':\n", - " model.eval()\n", - "\n", - " progress = 0.\n", - " choreo_cumsum_idx = 0\n", - " for idx in range(batches_cumsum[-1]):\n", - " if idx > progress*batches_cumsum[-1]:\n", - " print('Progress of training epoch: {:.1f}%'.format(progress*100))\n", - " progress += 0.1\n", - " \n", - " # Skipping last batch of a video, since the next batch belongs to the next video, not a delta_t of the movement\n", - " if idx == batches_cumsum[choreo_cumsum_idx]:\n", - " choreo_cumsum_idx += 1\n", - " continue\n", - "\n", - " if mode == 'train':\n", - " optimizer.zero_grad()\n", - " \n", - " batch = batches[idx*batch_size:(idx+1)*batch_size]\n", - "\n", - " rotation = rotation_matrix_z(torch.tensor(2*np.random.rand(1)[0]*np.pi)).to(device)\n", - " rotated_batches_pos = torch.einsum('...ij,jk->...ik', batch[:, :, :, :3], rotation)\n", - " rotated_batches_vel = torch.einsum('...ij,jk->...ik', batch[:, :, :, 3:], rotation)\n", - " batch = torch.cat([rotated_batches_pos, rotated_batches_vel], dim=-1)\n", - " \n", - " # Non-overlapping sequences\n", - " # next_batch = batches[idx*batch_size+1:(idx+1)*batch_size+1]\n", - " \n", - " # Overlapping sequences\n", - " next_batch = batches[(idx+1)*batch_size:(idx+2)*batch_size]\n", - "\n", - " rotated_batches_pos = torch.einsum('...ij,jk->...ik', next_batch[:, :, :, :3], rotation)\n", - " rotated_batches_vel = torch.einsum('...ij,jk->...ik', next_batch[:, :, :, 3:], rotation)\n", - " next_batch = torch.cat([rotated_batches_pos, rotated_batches_vel], dim=-1)\n", - " \n", - " logits, recon_output = model(batch)\n", - "\n", - " kl_loss = gumbel_softmax_kl_divergence(logits, log_prior, batch_size)\n", - " \n", - " recon_output = recon_output.view(batch_size, seq_len_out, n_joints, int(dims/2))\n", - "\n", - " if recon_mode == 'nll':\n", - " var_tensor = torch.full(recon_output.shape, out_var, device=device)\n", - " recon_loss = nll_gaussian(recon_output, next_batch[:, \\\n", - " frame_gap-1:frame_gap-1+seq_len_out, :, :int(dims/2)], var_tensor)\n", - " \n", - " elif recon_mode == 'mse':\n", - " recon_loss = mse(recon_output, next_batch[:, \\\n", - " frame_gap-1:frame_gap-1+seq_len_out, :, :int(dims/2)])\n", - " \n", - " recon_loss = recon_loss / (recon_output.size(0) * recon_output.size(1) * recon_output.size(2))\n", - "\n", - " if recon_mode == 'nll':\n", - " recon_coef = 0.0001\n", - " elif recon_mode == 'mse':\n", - " recon_coef = 1\n", - " \n", - " loss = beta*0.01*kl_loss + recon_coef*recon_loss\n", - " # loss = recon_coef*recon_loss\n", - "\n", - " if mode == 'train':\n", - " loss.backward()\n", - " optimizer.step()\n", - "\n", - " kl_aux.append(0.01*kl_loss.item())\n", - " recon_aux.append(recon_coef*recon_loss.item()) \n", - " loss_aux.append(loss.data.item())\n", - "\n", - " del batch, next_batch, logits, kl_loss, recon_loss\n", - " \n", - " kl_aux = torch.Tensor(kl_aux)\n", - " recon_aux = torch.Tensor(recon_aux)\n", - " loss_aux = torch.Tensor(loss_aux)\n", - " tqdm.write(f'Epoch: {epoch + 1:04d}, '\n", - " f'KL Loss ({mode}): {torch.mean(kl_aux):.4f}, '\n", - " f'Reconstruction Loss ({mode}): {torch.mean(recon_aux):.4f}, '\n", - " f'Combined Loss ({mode}): {torch.mean(loss_aux):.4f}, '\n", - " f'time: {time.time() - t:.4f}s')\n", - "\n", - " if mode == 'train':\n", - " scheduler.step()\n", - "\n", - " if mode == 'val':\n", - " global best_val_loss\n", - " global best_epoch\n", - " \n", - " if best_val_loss is torch.inf or torch.mean(loss_aux) < best_val_loss: \n", - " best_val_loss = torch.mean(loss_aux)\n", - " best_epoch = epoch\n", - " \n", - " torch.save(model.state_dict(), 'best_weights/nri_parameters.pt')\n", - " tqdm.write(f'Epoch: {epoch + 1:04d}, Saving best parameters!')\n", - "\n", - " if recon_mode == 'nll':\n", - " del var_tensor\n", - " \n", - " torch.cuda.empty_cache()\n", - "\n", - " return kl_aux, recon_aux, loss_aux\n", - "\n", - "# Training loop\n", - "for epoch in tqdm(range(epochs), desc='Training Epochs'):\n", - " # Beta coefficient to handle KL-Divergence vanishing gradients and balance reconstruction loss\n", - " beta = epoch % int(epochs*0.2) / (epochs*0.2)\n", - "\n", - " kl_aux, recon_aux, loss_aux = model_iteration(model, optimizer, scheduler, train_batches, train_batches_cumsum, beta, 'train', 'nll')\n", - " \n", - " kl_train.append(torch.mean(kl_aux))\n", - " recon_train.append(torch.mean(recon_aux))\n", - " loss_train.append(torch.mean(loss_aux))\n", - "\n", - " del kl_aux, recon_aux, loss_aux\n", - "\n", - " with torch.no_grad():\n", - " kl_aux, recon_aux, loss_aux = model_iteration(model, optimizer, scheduler, val_batches, val_batches_cumsum, beta, 'val', 'nll')\n", - " \n", - " kl_val.append(torch.mean(kl_aux))\n", - " recon_val.append(torch.mean(recon_aux))\n", - " loss_val.append(torch.mean(loss_aux))\n", - "\n", - " del kl_aux, recon_aux, loss_aux\n", - "\n", - "print(\"Optimization Finished!\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "fae68e12-880b-4578-8fb9-35fc7b6e9fe4", - "metadata": {}, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(12, 6))\n", - "\n", - "# Plotting training losses\n", - "ax1 = fig.add_subplot(231)\n", - "ax1.plot(kl_train, color='blue')\n", - "\n", - "ax1 = fig.add_subplot(232)\n", - "ax1.plot(recon_train, color='blue')\n", - "\n", - "ax1 = fig.add_subplot(233)\n", - "ax1.plot(loss_train, color='blue')\n", - "\n", - "# Plotting validation losses\n", - "ax1 = fig.add_subplot(234)\n", - "ax1.plot(kl_val, color='orange')\n", - "\n", - "ax1 = fig.add_subplot(235)\n", - "ax1.plot(recon_val, color='orange')\n", - "\n", - "ax1 = fig.add_subplot(236)\n", - "ax1.plot(loss_val, color='orange')\n", - "\n", - "# Adding column labels\n", - "fig.text(0.22, 0.96, 'KL Loss', ha='center', fontsize=14)\n", - "fig.text(0.53, 0.96, 'Reconstruction Loss', ha='center', fontsize=14)\n", - "fig.text(0.85, 0.96, 'Combined Loss', ha='center', fontsize=14)\n", - "\n", - "# Adding row labels\n", - "fig.text(0.02, 0.73, 'Training', va='center', rotation='vertical', fontsize=14)\n", - "fig.text(0.02, 0.30, 'Validation', va='center', rotation='vertical', fontsize=14)\n", - "\n", - "plt.tight_layout(rect=[0.05, 0.05, 1, 0.95])\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "5da38150-3db7-4d19-a40f-15849bf50b85", - "metadata": {}, - "source": [ - "# Visualizations" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c0ddf755-602b-45fb-8216-bb989bf85473", - "metadata": {}, - "outputs": [], - "source": [ - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML\n", - "\n", - "# Increasing animation memory limit\n", - "from matplotlib import rcParams\n", - "rcParams['animation.embed_limit'] = 100\n", - "\n", - "# Animation function\n", - "def animation(sequence, skeleton=None, interval=100):\n", - " fig = plt.figure(figsize=(16, 12))\n", - " \n", - " ax = fig.add_subplot(111, projection=\"3d\")\n", - " ax.set_xlim([-1, 1])\n", - " ax.set_ylim([-1, 1])\n", - " ax.set_zlim([-1, 1])\n", - " ax.set_xticks([])\n", - " ax.set_yticks([])\n", - " ax.set_zticks([])\n", - "\n", - " ms = 70\n", - " scatt1 = ax.scatter([], [], [], color='red', s=ms)\n", - " scatt2 = ax.scatter([], [], [], color='blue', s=ms)\n", - "\n", - " if skeleton is not None:\n", - " lw = 4\n", - " lines = [ax.plot([], [], [], 'gray', linewidth=lw)[0] for _ in skeleton]\n", - "\n", - " # sequence_x = sequence[:, :, 2]\n", - " # sequence_y = sequence[:, :, 0]\n", - " # sequence_z = -sequence[:, :, 1]\n", - " \n", - " def update(frame):\n", - " \n", - " scatt1._offsets3d = (sequence_x[frame, :n_joints], sequence_y[frame, :n_joints], sequence_z[frame, :n_joints])\n", - " scatt2._offsets3d = (sequence_x[frame, n_joints:], sequence_y[frame, n_joints:], sequence_z[frame, n_joints:])\n", - " \n", - " if skeleton is not None:\n", - " for line, (start, end) in zip(lines, skeleton):\n", - " line.set_data([sequence_x[frame, start], sequence_x[frame, end]], [sequence_y[frame, start], sequence_y[frame, end]])\n", - " line.set_3d_properties([sequence_z[frame, start], sequence_z[frame, end]])\n", - " \n", - " return scatt1, scatt2, *lines\n", - "\n", - " return scatt1, scatt2\n", - "\n", - " plt.close(fig)\n", - " return FuncAnimation(fig, update, frames=range(len(sequence_x)), interval=interval, blit=False)\n", - "\n", - "# ani = animation(train_batches[sequence], skeletons, interval=100)\n", - "# HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6f880668-b607-4ad7-b669-a37038bdd49e", - "metadata": {}, - "outputs": [], - "source": [ - "# Loading best model\n", - "model.load_state_dict(torch.load('best_weights/nri_parameters.pt'))\n", - "\n", - "# Choosing sequence based on the selected video and frame, and preparing n_joints for plotting\n", - "choreo_idx = 0\n", - "offset = 0\n", - "if choreo_idx != 0:\n", - " offset = np.cumsum(train_split)[choreo_idx-1]\n", - "\n", - "frame = 0\n", - "sequence = frame // seq_len_in\n", - "\n", - "n_joints = int(batches.size(2)/2)\n", - "\n", - "# Getting predicted edges from a sequence\n", - "logits = model.encoder(train_batches[offset + sequence].unsqueeze(0)).squeeze(0)\n", - "\n", - "y = gumbel_softmax_sample(logits, tau, False)\n", - "\n", - "# # Confidence threshold\n", - "# confidence = 0.95\n", - "# edge_index_classes = torch.where(y[:, 1] > confidence)[0]\n", - "\n", - "# Top % edges\n", - "percentage = 0.01\n", - "k = int(len(edge_index_t)*percentage)\n", - "edge_index_classes = torch.topk(y[:, 1], k)[1]\n", - "\n", - "edge_index_samp = torch.Tensor(edge_index_t).to(device)[edge_index_classes].t().long()\n", - "# print('Amount of edges sampled with confidence {}%: {}'.format(int(confidence*100), len(edge_index_classes)))\n", - "print('Top {}% edges: {}'.format(int(percentage*100), len(edge_index_classes)))\n", - "\n", - "# Getting reconstructed frame\n", - "decoder_m_in, decoder_m_out = message_passing_matrices(n_joints*2, edge_index_samp)\n", - "decoder_m_in = decoder_m_in.to(device)\n", - "decoder_m_out = decoder_m_out.to(device)\n", - "\n", - "recon_output = model.decoder(train_batches[offset + sequence], \\\n", - " edge_index_samp, decoder_m_in, decoder_m_out)\n", - "recon_output = recon_output.view(seq_len_out, n_joints*2, int(dims/2)).cpu().detach().numpy()\n", - "\n", - "if seq_len_out == 1:\n", - " recon_output = recon_output.squeeze(0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d61ee5b3-6005-47c6-8c84-9b00b2a065f6", - "metadata": {}, - "outputs": [], - "source": [ - "# Plotting dancers\n", - "fig = plt.figure(figsize=(12, 4))\n", - "\n", - "ax1 = fig.add_subplot(121, projection=\"3d\")\n", - "ax1.set_xlim([-1, 1])\n", - "ax1.set_ylim([-1, 1])\n", - "ax1.set_zlim([-1, 1])\n", - "ax1.set_xticks([])\n", - "ax1.set_yticks([])\n", - "ax1.set_zticks([])\n", - "\n", - "ax1.scatter(joint_poses[choreo_idx][frame, :n_joints, 2], joint_poses[choreo_idx][frame, :n_joints, 0], \\\n", - " -joint_poses[choreo_idx][frame, :n_joints, 1], color='red')\n", - "ax1.scatter(joint_poses[choreo_idx][frame, n_joints:, 2], joint_poses[choreo_idx][frame, n_joints:, 0], \\\n", - " -joint_poses[choreo_idx][frame, n_joints:, 1], color='blue')\n", - "\n", - "for (start, end) in skeletons:\n", - " xs = [joint_poses[choreo_idx][frame, start, 2], joint_poses[choreo_idx][frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame, start, 0], joint_poses[choreo_idx][frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame, start, 1], -joint_poses[choreo_idx][frame, end, 1]]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - "\n", - "# Plotting dancers with sampled edges\n", - "ax2 = fig.add_subplot(122, projection=\"3d\")\n", - "ax2.set_xlim([-1, 1])\n", - "ax2.set_ylim([-1, 1])\n", - "ax2.set_zlim([-1, 1])\n", - "ax2.set_xticks([])\n", - "ax2.set_yticks([])\n", - "ax2.set_zticks([])\n", - "\n", - "ax2.scatter(joint_poses[choreo_idx][frame, :n_joints, 2], joint_poses[choreo_idx][frame, :n_joints, 0], \\\n", - " -joint_poses[choreo_idx][frame, :n_joints, 1], color='red')\n", - "ax2.scatter(joint_poses[choreo_idx][frame, n_joints:, 2], joint_poses[choreo_idx][frame, n_joints:, 0], \\\n", - " -joint_poses[choreo_idx][frame, n_joints:, 1], color='blue')\n", - "\n", - "for (start, end) in edge_index_samp.t():\n", - " xs = [joint_poses[choreo_idx][frame, start, 2], joint_poses[choreo_idx][frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame, start, 0], joint_poses[choreo_idx][frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame, start, 1], -joint_poses[choreo_idx][frame, end, 1]]\n", - " ax2.plot(xs, ys, zs, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "5e8a4a72-cb55-4abf-a150-f621976b5aec", - "metadata": {}, - "outputs": [], - "source": [ - "# Plotting reconstructed frame, if frame was reconstructed instead of sequence\n", - "if seq_len_out == 1:\n", - " fig = plt.figure(figsize=(12, 4))\n", - " ax1 = fig.add_subplot(111, projection=\"3d\")\n", - " ax1.set_xlim([-0.5, 0.5])\n", - " ax1.set_ylim([-0.5, 0.5])\n", - " ax1.set_zlim([-0.5, 0.5])\n", - " ax1.set_xticks([])\n", - " ax1.set_yticks([])\n", - " ax1.set_zticks([])\n", - " \n", - " ax1.scatter(recon_output[:n_joints, 0], recon_output[:n_joints, 1], recon_output[:n_joints, 2], color='red')\n", - " ax1.scatter(recon_output[n_joints:, 0], recon_output[n_joints:, 1], recon_output[n_joints:, 2], color='blue')\n", - " \n", - " plt.tight_layout()\n", - " plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "aa502d9c-c36f-440c-8fb8-afd57aac0444", - "metadata": {}, - "outputs": [], - "source": [ - "from IPython.display import Video, display\n", - "\n", - "# Getting dataset back to CPU\n", - "train_batches = train_batches.cpu()\n", - "\n", - "# Evaluating the edge prediction by watching the dance sequence with and without the connections\n", - "ani = animation(train_batches[offset + sequence], skeletons, interval=100)\n", - "ani_html_no_edge_pred = ani.to_jshtml()\n", - "\n", - "ani = animation(train_batches[offset + sequence], edge_index_samp, interval=100)\n", - "ani_html_edge_pred = ani.to_jshtml()\n", - "\n", - "# Evaluating reconstruction by watching next dance sequence and the predicted one\n", - "ani = animation(train_batches[offset + sequence + 1], skeletons, interval=100)\n", - "ani_html_no_mov_pred = ani.to_jshtml()\n", - "\n", - "ani = animation(recon_output, skeletons, interval=100)\n", - "ani_html_mov_pred = ani.to_jshtml()\n", - "\n", - "display(HTML(f\"\"\"\n", - "
\n", - "
\n", - " {ani_html_no_edge_pred}\n", - "
\n", - "
\n", - " {ani_html_edge_pred}\n", - "
\n", - "
\n", - "
\n", - "
\n", - " {ani_html_no_mov_pred}\n", - "
\n", - "
\n", - " {ani_html_mov_pred}\n", - "
\n", - "
\n", - "\"\"\"))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.13" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/README.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/README.md deleted file mode 100644 index c552a8c..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/README.md +++ /dev/null @@ -1,189 +0,0 @@ -# Models - -After extensive data processing, attention was turned to developing a model. The use of AI in dance allows for a wide range of creative possibilities. Many different tasks can be explored, but one stands out in this project: dance interpretability to help in the generation of new phrases. - -The task involves studying the hidden movements of a duet, extracting information that is not visually evident. For example, it might not be immediately clear that the movement of one dancer's right foot is directly connected to the movement of the other dancer's hip or left hand. The objective thus is to model and tackle a **Graph Structure Learning** problem, uncovering the connections (or different types of connections) between the dancers' joints. More specific technical details are described in a dedicated section below. - - - -Before getting into the setup and implementation details though, if the goal is simply to run one of the trained models and visualize the results, this can be done using the following [Colab Notebook](https://colab.research.google.com/drive/1KhX-Ppn9-BxAO4EX0BtfqPohdA09I6z5?usp=sharing). - -## Set Up - -Refer to the [installation document](https://github.com/Luizerko/ai_choreo/blob/master/models/INSTALL.md) to set up your own version of the project. - -## Loading Data - -The next step in the project involves loading the dance data for AI modeling. First, the preprocessed data is read in an interleaved manner to separately extract data from both dancers. Adjacencies are then created by initializing a default skeleton with 29 joints for each dancer and connecting every joint of one dancer to all joints of the other. - -
- -
-
- Plot of the two dancers with only their skeletons (left) and fully connected to their partner (right). -

-
- -The purpose of mapping both dancers' skeletons in this way is to ensure the model focuses on the connections between them, rather than the connections within each individual dancer. While a dancer's joint movements can often be predicted by analyzing their other joints, the aim here is to highlight the interactions between the dancers, identifying which joints of one dancer influence the other and vice versa. Additionally, both directions of the edges are considered, allowing the model to assess the direction of influence between each joint of the two dancers. - -These connections are what the graph structure learning model will classify categorically by the degree of influence in the movement, ranging from non-existing to core connections. The data is then prepared for model training by creating batches with PyTorch tensors. The tensors are structured with dimensions representing the total number of sequences, the sequence length, the number of joints from both dancers, and 3D coordinates + 3D velocity estimates. Finally, a training-validation split is created to allow for proper model hyperparameter tuning. - -
- -
-
- Plot of velocity estimations for the joints of both dancers (left and right). In each image, the arrows starts at the dancer's initial position and end at their position after a set number of frames, showing the velocity estimation for a given frame rate. In this experiment, a frame gap of 5 was used. -

-
- -To include data augmentation and improve model generalization, the training pipeline incorporates a data processing step that involves rotating batches of data. Each batch is rotated along the Z-axis by a randomly selected angle while maintaining the original X and Y-axis orientations for physical consistency. This approach helps prevent the model from overfitting to the dancers' absolute positions. - -Due to the high complexity of the problem, both in the number of moving particles and the number of edges in the graph, data simplification was implemented to achieve reasonable reconstruction performance and improve reliability during the sampling of influential edges. Random sampling of joints is applied, and only the subproblem of connecting the sampled joints is studied. This approach led to interesting results and a proof of concept that can be further explored to understand how to scale it. - -
- -
-
- Plot showing an example of sampled joints, five for each dancer in this case. On the left, only the joints are displayed, while on the right, the joints are fully connected between the dancers (but not within a single dancer). Note that if there was already an edge connecting two joints within a dancer (from the skeleton), this edge is preserved as well. -

-
- -## Neural Relational Inference Variant - -As the title suggests, this model is a variant of the [Neural Relational Inference (NRI)](https://arxiv.org/abs/1802.04687) model, which itself is an extension of the traditional [Variational Autoencoder (VAE)](https://arxiv.org/abs/1312.6114). The primary objective of the original model is to study particles moving together in a system without prior knowledge of their underlying relationships. By analyzing their movement (position and velocity), the model estimates a graph structure that connects these particles, aiming to reveal which particles exert force on the others. For a dedicated study on the architecture's efficacy, refer to the [architecture experiment document](https://github.com/Luizerko/ai_choreo/blob/master/models/ARCH_EXPERIMENT.md), which discusses results based on a charged particles simulation dataset from the original paper. - -In the context of this project, the particles are represented by the joints of dancers. While the physical connections between joints within a dancer's body are known, this information alone is insufficient to understand the partnering relationships between two dancers. - -Since a target graph structure correctly identifying which joints are virtually connected during a dance performance is unavailable, and considering that this graph can change over time even within a performance, self-supervising techniques are employed - one of the reasons for choosing an autoencoder framework. - -The model consists of an encoder and a decoder, both playing around with transforming node representations into edge representations and vice versa. This approach emphasizes the dynamics of movements rather than fixed node embeddings. Not only that, but the encoder specifically outputs edges, sampling these from the generated latent space, making it essential to switch between representations. - -This project's implementation, even though very similar to the NRI MLP-Encoder MLP-Decoder model, includes a few important modifications: - -- **Graph Convolutional Network (GCN):** Some Linear layers are replaced with GCN layers to leverage the graph structure, improving the model's ability to capture relationships between joints. This change focuses on a subset of edges connecting both dancers rather than studying all particle relationships as in the original implementation. Additionally, GCNs provide local feature aggregation and parameter sharing, important inductive biases for this context, resulting in enhanced generalization in a scenario with dynamic (and unknown) graph structures. - -- **Graph Recurrent Neural Network (GRNN) Decoder:** To make better use of sequential information and achieve a more suitable final embedding for predicting (or reconstructing) the next frame, beyond just spatial information from the graphs, it is essential to use a recurrent network. The decoder is therefore implemented with LSTM nodes in the original sequence, while also using the graph structure sampled from the latent space generated by the encoder. - -- **Custom GCN-LSTM Cells:** To utilize the recurrent structure crucial for sequence processing while maintaining graph information and GNN architecture, the classic LSTM cell has been reimplemented with GCN nodes. In the final version of the architecture, only the decoder incorporates the recurrent component, which generates a final sequence embedding that the model uses to reconstruct the next frame. - -By incorporating these modifications, the model maintains the core principles of the original NRI model while theoretically enhancing its ability to generalize and adapt to the dynamic nature of dance performances. - -
- -
-
- Schematic of the final model architecture, including the GCN nodes and the GRNN adapatation, inspired by the one found in the original NRI paper. -

-
- -### Final Architecture - -**Encoder:** - -- The encoder begins with a GCN layer, which transforms node representations into edge representations. - -- This is followed by a Linear layer, batch normalization, and dropout. - -- Next, the edge representations are converted back into nodes, and another GCN layer is applied. - -- The nodes are then transformed back into edges, followed by another Linear layer with a skip connection from the previous dropout layer. - -- Finally, a Linear layer generates logits that represent edge types, ranging from non-existent edges to those most critical for the movement being analyzed. - -**Decoder:** - -- The decoder starts by sampling a Gumbel-Softmax distribution using the logits generated by the encoder. This approach approximates sampling in a continuous distribution and employs Softmax to handle the reparameterization trick, ensuring the pipeline remains fully differentiable. - -- With the newly sampled edge index, the decoder processes the data through a GRNN composed of modified LSTM nodes with GCN layers, followed by a transformation of the final sequence embedding into edge representations. - -- This is followed by a Linear layer, batch normalization, and dropout. - -- Finally, the edge representations are converted back into nodes, and a GCN layer is applied to predict (or reconstruct) the next frame. - -## Results - -Getting this model to work was quite a challenge. The inherent complexity of Variational Autoencoders alone introduces numerous training difficulties. When combined with the complexity of the problem itself, the nuances of working on graph neural networks with dynamic graphs, and the task of generating a latent space that approximates a discrete distribution, it becomes a recipe for confusion. Understanding each part that needed adjustment, up to the challenge of training the neural network itself, was a long and involved journey. Still, in the end, some interesting results were achieved. - -Given the subjective nature of the problem, it's hard to definitively evaluate the quality of the sampled edges. As such, the best analyses focus on the loss curves and the reconstructions obtained. The reasonableness of these two elements serves as a proxy for evaluating the sampled edges. In addition, some observations about patterns in edge sampling and a personal evaluation of the predicted relationships are included. - -Due to the slow training process, the models discussed here were trained for 20 epochs. The resulting loss curves show healthy reconstruction error, and when looking at the validation dataset, there is no evidence of overfitting. However, the stagnation of the loss in the validation set suggests that the potential for significant model improvement with further training is uncertain. This could only be better explored by continuing training for more epochs. - -On the other hand, the loss from the KL-Divergence is less nice than expected. It decreases sharply in the first few epochs and then plateaus. This is an unwanted effect, which can affect the quality of the latent space. Even though the phenomenon is reduced by training with beta coefficients, it is less effective in short training runs since these coefficients depend on the number of epochs. - -
- -
-
- Loss curve of one of the best-performing models. Six particles were sampled, three from each dancer, with data augmentation applied through dancer rotation, expanding the dataset by 10 times. The full encoder was used, with input sequences of 8 frames, hidden dimensions of 64 across all layers, and 4 types of edges. The model was trained using mean squared error for 20 epochs over 18 hours. -

-
- -Regarding the reconstructions, there is significant variability. They are extremely sensitive to the sampled edges, which makes sense because, in a graph network, information spreads through neighboring nodes. If a joint is not connected to others by an edge, its reconstruction degenerates, and the particle stays stationary at the origin of the coordinate frame. It's common to find some of these in the reconstructions because the focus is on a specific category of edges among all edge types - those considered essential to the dancers' interactions. This limits the sampling, especially due to the prior distributions, which assumes the interaction being targeted is rare. - -For the better reconstructions, it's clear that the particles are well positioned. The sampled dancers’ particles are positioned accurately in space, particularly in relation to the rest of the body. Additionally, the particles move in the same direction as the overall body movement, supporting good relative positioning. Given that the sampled connections only link particles between the dancers, it's impressive to see the valuable interaction captured in predicting their movement. It’s evident, however, that the best reconstructions occur when a particle has more than one connection, allowing information to propagate from a dancer to the other one and back through two hops. - -Still, noticeable shaking in these particles is present and likely caused by two main factors: the inaccuracy in particle location and velocity in the original sequence, which already shows significant jitter, and the fact that the reconstructions are generated independently, although with the same sampled graph. This is because the best model version only predicts the next frame of a sequence. The impact of using this reconstructed frame as part of the input sequence to predict the next future frames in a chain was not explored. - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/good_reconstruction_1.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/good_reconstruction_2.gif)| -|:-:|:-:| -
- Here are two examples of better reconstructions: on the left, a scenario with more movement, and on the right, a more static scenario. The reconstructed sampled particles are colored differently for clarity, with purple for the blue dancer and orange for the red dancer. -

-
- -Bad reconstructions unfortunately occur in several cases. First, as mentioned before, the reconstructions are highly sensitive to the sampled edges, and depending on the graph, they can be very poor, with the sampled joints barely moving. The model also struggles with sequences where the dancers switch sides, causing the reconstructed joints to remain in the initial position where the dancers started. - -In more extreme cases, when the dancers move away from the center of the coordinate frame, the reconstructions tend to stay near the center. This issue comes from a normalization issue in the data processing pipeline that was identified later. The normalization of both dancers was removed to capture their relative movements, but a layer that normalized their combined movement was overlooked. As a result, the model faces more difficulty learning and dealing with these corner cases. - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/stuck_particles.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/far_from_center.gif)| -|:-:|:-:| -
- Two examples of poor reconstructions: on the left, an example where edge sampling resulted in the reconstruction focusing on only 3 particles, despite 6 being sampled, while the other 3 remain static in the center of the coordinate frame. On the right, an example showing the model’s difficulty with reconstructions when the dancers are farther from the center, with the reconstructed particles either stationary or moving but inaccurately positioned. -

-
- -Despite the challenges, the results achieved are still quite interesting. The loss curve shows a much more normal behavior, and the reconstruction results, while still facing significant issues, are becoming more reasonable. Given that each frame is reconstructed individually, making it difficult to maintain consistency between sequential frames, the particle positioning finally moved in the right direction. This made it possible to examine the learned edge distribution and the sampled edges across different examples to better understand how the model perceives the connections between particles, which, in turn, aids in reconstructing the frames. - -It's also evident that the number of edges sampled with a confidence above 80% is consistently small, roughly matching the percentage of core edges in the prior distribution (both for 3 or 4 edge types). This indicates that the learned latent space indeed reflects the initial suggested distribution. - -Now regarding the edges specifically, a few clear patterns emerge. First, among the core edges, most have the same confidence, with normally only one or two edges standing out less. This suggests a low hierarchy among the sampled edges, meaning that once an edge is part of the core group, it has a significant role in information propagation. - -
- -
-
- Example of the sampled edge distribution. The black edges represent connections between the dancers, with darker edges indicating higher confidence in their importance for reconstruction. In this typical case, for 6 particles sampled, 3 edges were selected, two with slightly higher importance, though all show a high confidence level (above 80%). -

-
- -Additionally, it's common to find a particle connected by multiple edges. This likely relates to the earlier observation that information spreads more effectively within a dancer when there is a path that leaves and returns to the same particle within two hops. - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/multi_edge_part_1.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/multi_edge_part_2.gif)| -|:-:|:-:| -
- Examples of multiple edges connected to the same particle. On the left, an undirected example shows simpler movement for a sampling of 6 particles, while on the right, a directed example features more complex movement for a sampling of 10 particles. It is worth noting that, for the animation on the right, the model recognizes how one dancer's feet motion influence various parts of the other dancer's body, which aligns with the movement being performed, where the dynamic spin of the blue dancer guides the red dancer's response. -

-
- -Another important pattern, though more subjective, is the connection between particles that are pending in opposition, like a string either being stretched or pulled between them. It seems that connections are more easily formed when particles are in this state of tension. This is intriguing because it reflects a key element of many movements in the choreography dataset, aligning with the project's core goal: to help dancers recognize the subtle dynamics in their partnering relationships. - -|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/opposition_1.gif)|![](https://github.com/Luizerko/ai_choreo/blob/master/models/assets/opposition_2.gif)| -|:-:|:-:| -
- Examples of connections within opposition tendencies. On the left, the undirected example shows multiple connections between the lower torso of both dancers, first leaning in opposite directions and then gravitating toward each other, illustrating the full range of the stretched-string analogy. This example is notable for the model’s emphasis on opposition by sampling many edges for the reconstruction of these sequences. On the right, in the simpler directed example, one can see that the edges connecting particles moving apart are stronger than those linking particles moving closer together (as seen in the blue dancer's hand). -

-
- -## Future of the Project - -Despite the interesting results, there is clearly room for improvement. The main issues are the reconstructions, which remain unreliable and overly sensitive to the sampled edges, and the fact that only sampled joints are analyzed, not the dancers as a whole. However, there are many other challenges still to be addressed. Considering all of this, several next steps are suggested for further development of this project: - -- **Data collection**: Regardless of the use of data augmentation through duet rotation, the small dataset size made it difficult to train a complex network, especially given the difficulty of the problem. - -- **Data quality**: The pipeline used to extract 3D poses from video, though functional, has room for improvement. Even in the original sequences, the dancers’ particles are shaky and often poorly approximated, leading to extreme and random movements (unrealistic). Moreover, normalization of both dancers was removed to preserve relative movement, but it was realized too late that a new layer normalizing their joint movement should have been added. Having dancers in different parts of space caused confusion for the model. - -- **Architecture exploration**: While **many** versions of the NRI variant were implemented and tested, the final version is still far from being ideal, and there hasn't been a true breakthrough moment. There is still significant potential in this architecture, especially given the strong results achieved by the original version. - -- **Processing speed**: Several parts of the final architecture are custom implementations, so they are far from optimized. Batches are replaced with sequential operations at several points in the pipeline: in transformations between node and edge representations, in the decoder, since a new set of edges is sampled for each sequence in a batch, and in the GRNN due to its sequential nature. As a result, a training cycle with just a few dozen epochs can take an entire day. Optimizing this process is crucial to the project scaling. - -- **Interaction with dancers**: Since this project sits at the intersection of art and technology, direct interaction with artists is essential. In a more refined version of the model with consistent results, it would be ideal to present the tool to the dance community, share its concept, demonstrate the results, and observe how dancers use the tool in their own partnering studies. \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/far_from_center.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/far_from_center.gif deleted file mode 100644 index 6bb705d..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/far_from_center.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/final_arch.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/final_arch.png deleted file mode 100644 index 720048a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/final_arch.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/final_loss_curve.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/final_loss_curve.png deleted file mode 100644 index 016e147..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/final_loss_curve.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/fully_connected_graph.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/fully_connected_graph.png deleted file mode 100644 index c8d3664..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/fully_connected_graph.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/good_reconstruction_1.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/good_reconstruction_1.gif deleted file mode 100644 index 7172c91..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/good_reconstruction_1.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/good_reconstruction_2.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/good_reconstruction_2.gif deleted file mode 100644 index 8188f7b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/good_reconstruction_2.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_big_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_big_6seq.png deleted file mode 100644 index 0e94b7e..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_big_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_12seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_12seq.png deleted file mode 100644 index 8bef85e..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_12seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_12seq_recurrent.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_12seq_recurrent.png deleted file mode 100644 index 3b4574a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_12seq_recurrent.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_6seq.png deleted file mode 100644 index 256a7bc..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_6seq_4edges.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_6seq_4edges.png deleted file mode 100644 index e49ec13..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_small_6seq_4edges.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_standard_12seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_standard_12seq.png deleted file mode 100644 index c1ebfd9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_standard_12seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_standard_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_standard_6seq.png deleted file mode 100644 index 697db27..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/lc_standard_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/loss_graphs.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/loss_graphs.png deleted file mode 100644 index 97250ac..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/loss_graphs.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/low_hierarchy_edges.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/low_hierarchy_edges.gif deleted file mode 100644 index 7409ca6..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/low_hierarchy_edges.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/mov_part_edges.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/mov_part_edges.png deleted file mode 100644 index 6196616..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/mov_part_edges.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/multi_edge_part_1.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/multi_edge_part_1.gif deleted file mode 100644 index 12d1eb6..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/multi_edge_part_1.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/multi_edge_part_2.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/multi_edge_part_2.gif deleted file mode 100644 index 7f14a7b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/multi_edge_part_2.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/opposition_1.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/opposition_1.gif deleted file mode 100644 index d4607a9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/opposition_1.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/opposition_2.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/opposition_2.gif deleted file mode 100644 index 820da98..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/opposition_2.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_graph.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_graph.png deleted file mode 100644 index 2406eac..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_graph.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_trajectories_12seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_trajectories_12seq.png deleted file mode 100644 index b3dfb27..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_trajectories_12seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_trajectories_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_trajectories_6seq.png deleted file mode 100644 index 6d4e093..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/original_trajectories_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_big_12seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_big_12seq.png deleted file mode 100644 index 8ee06c8..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_big_12seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_big_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_big_6seq.png deleted file mode 100644 index 1d33bf0..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_big_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_12seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_12seq.png deleted file mode 100644 index f3411da..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_12seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_12seq_recurrent.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_12seq_recurrent.png deleted file mode 100644 index c02dc05..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_12seq_recurrent.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_6seq.png deleted file mode 100644 index 3f4c7b0..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_6seq_4edges.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_6seq_4edges.png deleted file mode 100644 index 8909ac2..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_small_6seq_4edges.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_standard_12seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_standard_12seq.png deleted file mode 100644 index 8169ccf..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_standard_12seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_standard_6seq.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_standard_6seq.png deleted file mode 100644 index 8963c1b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/rec_standard_6seq.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/sampled_dancers.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/sampled_dancers.png deleted file mode 100644 index 7c7db07..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/sampled_dancers.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/skeleton_and_connections.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/skeleton_and_connections.png deleted file mode 100644 index 55415b8..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/skeleton_and_connections.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/stuck_particles.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/stuck_particles.gif deleted file mode 100644 index 811718c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/stuck_particles.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/trajectories_and_graph.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/trajectories_and_graph.png deleted file mode 100644 index eb0a6c9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/trajectories_and_graph.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/velocity_estimation.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/velocity_estimation.png deleted file mode 100644 index 2bb46de..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/assets/velocity_estimation.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 8cbf273..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 1124744..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 76ffd3d..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 73c09cc..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index d5e02db..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index a0ce33a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 20482cb..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 0a53baf..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index a6270e0..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index b38d8a9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 256619a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index f05df93..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index a004de3..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index c3cb977..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 0477c3b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 9912dd5..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index bccf030..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 6a87977..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 674ff6c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 89d70c3..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 1c68a1a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index be14089..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 03831bf..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 3bb1ac0..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 50d5f8a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 33cc56d..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 480e01f..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index d30ad07..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index cdb7033..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 0f11459..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 28a1bd3..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 782475a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index a506950..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 141c3f3..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 5a36c1c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index d6bcc07..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_10_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 8e6893c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index d330145..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 41e54da..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index b58c894..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 51a8eb2..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 0fa7468..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index d5a2a12..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 136d53a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 8f6842c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index ae6655c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index d185b00..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 695d4fb..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index c7a90e2..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index e7a7789..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index f270dbf..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 222aa94..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 2366bd9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index f35ae12..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 8ae6632..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index a5cddd5..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 50407cb..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 1f6510b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 53b46c6..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 3c3780b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index cc22b4a..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 7cf910e..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 2b63eaf..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index ca0c41b..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index a14c3ad..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index ec0aadf..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index b530c3c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 7532f44..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_32_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index 2b267e3..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index c3d957d..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt deleted file mode 100644 index abf4d26..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt deleted file mode 100644 index 0f71cee..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_nll.pt and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/training_outputs/param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.out b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/training_outputs/param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.out deleted file mode 100644 index de52a9e..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/best_weights/all_trained_models/training_outputs/param_grid_n-sample-dancers_3_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_4_seq-len-out_1_hidden-dim_32_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.out +++ /dev/null @@ -1,80 +0,0 @@ -######## Array Information Coming From Original Videos ######## -Joint poses pose_extraction_img_9085.npy shape: (6406, 58, 3) - -Joint poses pose_extraction_ilya_hannah_dyads.npy shape: (4520, 58, 3) - -Joint poses pose_extraction_dyads_rehearsal_leah.npy shape: (7141, 58, 3) - -Joint poses pose_extraction_hannah_cassie.npy shape: (6522, 58, 3) - -######## Total Number of Edges: 1794 ######## - -Sampled joints for dancer 1: [6 2 0], and dancer 2: [40 44 56] - -######## Total Number of Sampled Edges: 20 ######## - -######## Data Structures Created For Training ######## - -Shape of tensor with all sequences: torch.Size([24573, 4, 6, 6]) -Length of each choreography: [6402, 4516, 7137, 6518] - -Shape of training data with all sequences: torch.Size([20885, 4, 6, 6]) -Length of each choreography in training dataset: [5441, 3838, 6066, 5540] - -Shape of validation data with all sequences: torch.Size([3688, 4, 6, 6]) -Length of each choreography in validation dataset: [961, 678, 1071, 978] - - Training Epochs: 0%| | 0/20 [00:00 -#SBATCH --output={output_file} - -# Loading modules, activating environment and navigating to script directory -module load conda -mamba activate ai_choreo -cd //models/ - -# Running job -srun {command} -''' - - with open(script_name, 'w') as file: - file.write(script_content) - -# Submit a SLURM job script using sbatch -def submit_slurm_job(script_name): - try: - subprocess.run(['sbatch', script_name], check=True) - except subprocess.CalledProcessError as e: - print(f"Error submitting job: {e}") - -# Generate all combinations of parameters from a dictionary -def generate_param_combinations(params_dict): - keys, values = zip(*params_dict.items()) - - return [dict(zip(keys, v)) for v in product(*values)] - -# Tested hyperparameters: -""" -n-sample-dancers = [3, 5], -dataset-multiplier = [10], -compact-encoder = [False, True], -recurrent-encoder = [False], -seq-len-in = [4, 8], -seq-len-out = [1], -hidden-dim = [32, 64], -edge_types = [3, 4], -epochs = [10, 20], -lr = [0.0003], -lr-cycle = [5], -loss-mode = ['nll', 'mse'] -""" - -# Hyperparameters to test -param_list = { - 'n-sample-dancers': [3, 5], - 'dataset-multiplier': [10], - 'compact-encoder': [False, True], - 'recurrent-encoder': [False], - 'seq-len-in': [4, 8], - 'seq-len-out': [1], - 'hidden-dim': [32, 64], - 'edge-types': [3, 4], - 'epochs': [20], - 'lr': [0.0003], - 'lr-cycle': [5], - 'loss-mode': ['nll', 'mse'] -} -param_combinations = generate_param_combinations(param_list) - -# General variables -script_name = 'train_nri_param_grid.sh' -booleans_list = ['compact-encoder', 'recurrent-encoder'] - -for d in param_combinations: - # Using parameters to create different job variables - job_name = 'param_grid_' - command = 'python train_nri.py ' - for k, v in d.items(): - job_name += k + '_' + str(v) + '_' - - # Treating boolean flags - if k in booleans_list: - if v is False: - continue - else: - command += '--' + k + ' ' - - else: - command += '--' + k + ' ' + str(v) + ' ' - - job_name = job_name[:-1] - command += '--save-path best_weights/nri_parameters_' + job_name + '.pt ' - command += '--visual assets/' + job_name + '.png' - - output_file = job_name + '.out' - - create_slurm_script(script_name, job_name, command, output_file) - submit_slurm_job(script_name) \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/data/sample_dance.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/data/sample_dance.npy deleted file mode 100644 index fcda57e..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/data/sample_dance.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/data/test/pose_extraction_video_1.npy b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/data/test/pose_extraction_video_1.npy deleted file mode 100644 index 7c371f1..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/data/test/pose_extraction_video_1.npy and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/environment.yml b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/environment.yml deleted file mode 100644 index edc8b40..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/environment.yml +++ /dev/null @@ -1,222 +0,0 @@ -name: ai_choreo -channels: - - pytorch - - nvidia - - defaults -dependencies: - - _libgcc_mutex=0.1=main - - _openmp_mutex=5.1=1_gnu - - blas=1.0=mkl - - bzip2=1.0.8=h5eee18b_5 - - ca-certificates=2023.12.12=h06a4308_0 - - certifi=2024.2.2=py310h06a4308_0 - - cuda-cudart=12.1.105=0 - - cuda-cupti=12.1.105=0 - - cuda-libraries=12.1.0=0 - - cuda-nvrtc=12.1.105=0 - - cuda-nvtx=12.1.105=0 - - cuda-opencl=12.3.101=0 - - cuda-runtime=12.1.0=0 - - ffmpeg=4.3=hf484d3e_0 - - filelock=3.13.1=py310h06a4308_0 - - freetype=2.12.1=h4a9f257_0 - - gmp=6.2.1=h295c915_3 - - gmpy2=2.1.2=py310heeb90bb_0 - - gnutls=3.6.15=he1e5248_0 - - intel-openmp=2023.1.0=hdb19cb5_46306 - - jinja2=3.1.3=py310h06a4308_0 - - jpeg=9e=h5eee18b_1 - - lame=3.100=h7b6447c_0 - - lcms2=2.12=h3be6417_0 - - ld_impl_linux-64=2.38=h1181459_1 - - lerc=3.0=h295c915_0 - - libcublas=12.1.0.26=0 - - libcufft=11.0.2.4=0 - - libcufile=1.8.1.2=0 - - libcurand=10.3.4.107=0 - - libcusolver=11.4.4.55=0 - - libcusparse=12.0.2.55=0 - - libdeflate=1.17=h5eee18b_1 - - libffi=3.4.4=h6a678d5_0 - - libgcc-ng=11.2.0=h1234567_1 - - libgomp=11.2.0=h1234567_1 - - libiconv=1.16=h7f8727e_2 - - libidn2=2.3.4=h5eee18b_0 - - libjpeg-turbo=2.0.0=h9bf148f_0 - - libnpp=12.0.2.50=0 - - libnvjitlink=12.1.105=0 - - libnvjpeg=12.1.1.14=0 - - libpng=1.6.39=h5eee18b_0 - - libstdcxx-ng=11.2.0=h1234567_1 - - libtasn1=4.19.0=h5eee18b_0 - - libtiff=4.5.1=h6a678d5_0 - - libunistring=0.9.10=h27cfd23_0 - - libuuid=1.41.5=h5eee18b_0 - - libwebp-base=1.3.2=h5eee18b_0 - - llvm-openmp=14.0.6=h9e868ea_0 - - lz4-c=1.9.4=h6a678d5_0 - - mkl=2023.1.0=h213fc3f_46344 - - mkl-service=2.4.0=py310h5eee18b_1 - - mkl_fft=1.3.8=py310h5eee18b_0 - - mkl_random=1.2.4=py310hdb19cb5_0 - - mpc=1.1.0=h10f8cd9_1 - - mpfr=4.0.2=hb69a4c5_1 - - mpmath=1.3.0=py310h06a4308_0 - - ncurses=6.4=h6a678d5_0 - - nettle=3.7.3=hbbd107a_1 - - networkx=3.1=py310h06a4308_0 - - numpy=1.26.4=py310h5f9d8c6_0 - - numpy-base=1.26.4=py310hb5e798b_0 - - openh264=2.1.1=h4ff587b_0 - - openjpeg=2.4.0=h3ad879b_0 - - openssl=3.0.13=h7f8727e_0 - - pillow=10.2.0=py310h5eee18b_0 - - pip=23.3.1=py310h06a4308_0 - - python=3.10.13=h955ad1f_0 - - pytorch=2.2.1=py3.10_cuda12.1_cudnn8.9.2_0 - - pytorch-cuda=12.1=ha16c6d3_5 - - pytorch-mutex=1.0=cuda - - pyyaml=6.0.1=py310h5eee18b_0 - - readline=8.2=h5eee18b_0 - - requests=2.31.0=py310h06a4308_1 - - setuptools=68.2.2=py310h06a4308_0 - - sqlite=3.41.2=h5eee18b_0 - - sympy=1.12=py310h06a4308_0 - - tbb=2021.8.0=hdb19cb5_0 - - tk=8.6.12=h1ccaba5_0 - - torchaudio=2.2.1=py310_cu121 - - torchtriton=2.2.0=py310 - - torchvision=0.17.1=py310_cu121 - - typing_extensions=4.9.0=py310h06a4308_1 - - tzdata=2024a=h04d1e81_0 - - wheel=0.41.2=py310h06a4308_0 - - xz=5.4.6=h5eee18b_0 - - yaml=0.2.5=h7b6447c_0 - - zlib=1.2.13=h5eee18b_0 - - zstd=1.5.5=hc292b87_0 - - pip: - - aiohttp==3.9.3 - - aiosignal==1.3.1 - - anyio==4.3.0 - - argon2-cffi==23.1.0 - - argon2-cffi-bindings==21.2.0 - - arrow==1.3.0 - - asttokens==2.4.1 - - async-lru==2.0.4 - - async-timeout==4.0.3 - - attrs==23.2.0 - - babel==2.14.0 - - beautifulsoup4==4.12.3 - - bleach==6.1.0 - - build==1.1.1 - - cffi==1.16.0 - - chardet==5.2.0 - - charset-normalizer==3.3.2 - - click==8.1.7 - - comm==0.2.1 - - contourpy==1.2.0 - - cycler==0.12.1 - - debugpy==1.8.1 - - decorator==5.1.1 - - defusedxml==0.7.1 - - exceptiongroup==1.2.0 - - executing==2.0.1 - - fastjsonschema==2.19.1 - - fonttools==4.49.0 - - fqdn==1.5.1 - - frozenlist==1.4.1 - - fsspec==2024.2.0 - - h11==0.14.0 - - httpcore==1.0.4 - - httpx==0.27.0 - - idna==3.6 - - ipdb==0.13.13 - - ipykernel==6.29.3 - - ipympl==0.9.3 - - ipython==8.22.1 - - ipython-genutils==0.2.0 - - ipywidgets==8.1.2 - - isoduration==20.11.0 - - jedi==0.19.1 - - joblib==1.3.2 - - json5==0.9.17 - - jsonpointer==2.4 - - jsonschema==4.21.1 - - jsonschema-specifications==2023.12.1 - - jupyter==1.0.0 - - jupyter-client==8.6.0 - - jupyter-console==6.6.3 - - jupyter-core==5.7.1 - - jupyter-events==0.9.0 - - jupyter-lsp==2.2.3 - - jupyter-server==2.12.5 - - jupyter-server-terminals==0.5.2 - - jupyterlab==4.1.2 - - jupyterlab-pygments==0.3.0 - - jupyterlab-server==2.25.3 - - jupyterlab-widgets==3.0.10 - - kiwisolver==1.4.5 - - markupsafe==2.1.5 - - matplotlib==3.8.3 - - matplotlib-inline==0.1.6 - - mistune==3.0.2 - - mpl-tools==0.4.0 - - multidict==6.0.5 - - nbclient==0.9.0 - - nbconvert==7.16.1 - - nbformat==5.9.2 - - nest-asyncio==1.6.0 - - nodejs-bin==18.4.0a4 - - notebook==7.1.1 - - notebook-shim==0.2.4 - - overrides==7.7.0 - - packaging==23.2 - - pandocfilters==1.5.1 - - parso==0.8.3 - - pexpect==4.9.0 - - pip-tools==7.4.1 - - platformdirs==4.2.0 - - prometheus-client==0.20.0 - - prompt-toolkit==3.0.43 - - psutil==5.9.8 - - ptyprocess==0.7.0 - - pure-eval==0.2.2 - - pycparser==2.21 - - pygments==2.17.2 - - pyparsing==3.1.1 - - pyproject-hooks==1.0.0 - - python-dateutil==2.8.2 - - python-json-logger==2.0.7 - - pyzmq==25.1.2 - - qtconsole==5.5.1 - - qtpy==2.4.1 - - referencing==0.33.0 - - rfc3339-validator==0.1.4 - - rfc3986-validator==0.1.1 - - rpds-py==0.18.0 - - scikit-learn==1.4.1.post1 - - scipy==1.12.0 - - send2trash==1.8.2 - - six==1.16.0 - - sniffio==1.3.1 - - soupsieve==2.5 - - stack-data==0.6.3 - - terminado==0.18.0 - - threadpoolctl==3.3.0 - - tinycss2==1.2.1 - - tomli==2.0.1 - - torch-geometric==2.5.0 - - tornado==6.4 - - tqdm==4.66.2 - - traitlets==5.14.1 - - types-python-dateutil==2.8.19.20240106 - - typing-extensions==4.10.0 - - uri-template==1.3.0 - - urllib3==2.2.1 - - wcwidth==0.2.13 - - webcolors==1.13 - - webencodings==0.5.1 - - websocket-client==1.7.0 - - widgetsnbextension==4.0.10 - - yarl==1.9.4 -prefix: /home/lui/anaconda3/envs/ai_choreo diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/inference.ipynb b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/inference.ipynb deleted file mode 100644 index bd85c6a..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/inference.ipynb +++ /dev/null @@ -1,698 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "8f62a10e-1059-475f-8a24-bbd209449208", - "metadata": {}, - "source": [ - "# Inference Notebook" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "c02b3f5a-2047-45d6-8698-b4ef52349757", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "from IPython.core.debugger import set_trace\n", - "from glob import glob\n", - "import numpy as np\n", - "\n", - "# Reading data coming from the pre-processing pipeline and creating both dancers\n", - "joint_poses = []\n", - "for file in glob('./data/*.npy'):\n", - " interleaved_poses = np.load(file)\n", - " poses_1 = interleaved_poses[0::2]\n", - " poses_2 = interleaved_poses[1::2]\n", - "\n", - " # Sampling frames for movement smoothness\n", - " joint_poses.append(np.concatenate((poses_1, poses_2), axis=1)[::3])\n", - " print('Joint poses {} shape: {}\\n'.format(file.split('/')[-1], joint_poses[-1].shape))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "b9fb5544-15a2-445d-89cc-d4817d7ad5b1", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "# Building initial transposed edge index (adjacencies)\n", - "edge_index_t = [[0, 1], [0, 2], [0, 3], [1, 4], [2, 5], [3, 6], [4, 7], [5, 8], [6, 9], [7, 10], [7, 27], [8, 11],\n", - " [8, 28], [9, 12], [9, 13], [9, 14], [12, 15], [13, 16], [14, 17], [15, 24], [16, 18], [17, 19],\n", - " [18, 20], [19, 21], [20, 22], [21, 23], [22, 25], [23, 26]]\n", - "\n", - "# Getting second person skeleton\n", - "n_joints = int(joint_poses[0].shape[1]/2)\n", - "init_skeleton_len = len(edge_index_t)\n", - "for edge_index in range(init_skeleton_len):\n", - " edge_index_t.append([edge_index_t[edge_index][0]+n_joints, edge_index_t[edge_index][1]+n_joints])\n", - "\n", - "# Saving skeletons for visualization\n", - "skeletons = edge_index_t.copy()\n", - "\n", - "# Fully connecting the two people\n", - "for joint_1 in range(interleaved_poses.shape[1]):\n", - " for joint_2 in range(interleaved_poses.shape[1]):\n", - " edge_index_t.append([joint_1, joint_2+n_joints])\n", - "\n", - "# Making graph undirected\n", - "full_skeleton_len = len(edge_index_t)\n", - "for edge_index in range(full_skeleton_len):\n", - " edge_index_t.append([edge_index_t[edge_index][1], edge_index_t[edge_index][0]])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "cf6732d4-851a-4aa4-9ca6-3bbc68a52525", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import torch\n", - "from utils import *\n", - "\n", - "# Estimating velocity of points\n", - "frame_gap = 1\n", - "velocities = []\n", - "joint_poses_velo = []\n", - "for joint_pose in [joint_poses]:\n", - " velocities_aux = []\n", - " joint_poses_velo_aux = []\n", - " \n", - " for choreo in joint_pose:\n", - " choreo = torch.Tensor(choreo)\n", - " \n", - " velocity_choreo = compute_velocities(choreo, frame_gap)\n", - " velocities_aux.append(velocity_choreo)\n", - " \n", - " joint_poses_velo_aux.append(torch.cat((choreo, velocity_choreo), dim=-1))\n", - "\n", - " velocities.append(velocities_aux)\n", - " joint_poses_velo.append(joint_poses_velo_aux)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "86400886-0ec0-4b9a-bc2c-67cfc8c1ddbe", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "path = 'param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_False_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_3_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse'\n", - "\n", - "seq_len = int(path.split('seq-len-in_')[1].split('_')[0])\n", - "batches = []\n", - "choreo_lens = []\n", - "\n", - "# # Building non-overlapping sequences\n", - "# for joint_poses_rot_velo in joint_poses_velo:\n", - "# for choreo in joint_poses_rot_velo:\n", - "# choreo = torch.Tensor(choreo)\n", - " \n", - "# num_seqs = choreo.shape[0] // seq_len\n", - "# batches.append(torch.stack([choreo[i*seq_len:(i+1)*seq_len] for i in range(num_seqs)]))\n", - "# choreo_lens.append(batches[-1].size(0))\n", - "\n", - "# Building overlapping sequences\n", - "for joint_poses_rot_velo in joint_poses_velo:\n", - " for choreo in joint_poses_rot_velo:\n", - " choreo = torch.Tensor(choreo)\n", - " \n", - " batches.append(torch.stack([choreo[i:i+seq_len] for i in range(len(choreo)-seq_len)]))\n", - " choreo_lens.append(batches[-1].size(0))\n", - "\n", - "batches = torch.cat(batches, dim=0)\n", - "\n", - "# Fixing x, y, z configuration\n", - "batches[:, :, :, [0, 1, 2]] = batches[:, :, :, [2, 0, 1]]\n", - "batches[:, :, :, 2] = -batches[:, :, :, 2]\n", - "\n", - "# Balanced training-validation split\n", - "train_split = []\n", - "val_split = []\n", - "train_batches = []\n", - "val_batches = []\n", - "next_choreo = 0\n", - "for choreo_len in choreo_lens:\n", - " \n", - " train_split.append(int(0.85*choreo_len))\n", - " val_split.append(choreo_len - train_split[-1])\n", - " \n", - " train_batches.append(batches[next_choreo : next_choreo + train_split[-1]])\n", - " val_batches.append(batches[next_choreo + train_split[-1] : next_choreo + choreo_len])\n", - " \n", - " next_choreo += choreo_len\n", - "\n", - "train_batches = torch.cat(train_batches, dim=0)\n", - "val_batches = torch.cat(val_batches, dim=0)\n", - "\n", - "# Printing all the data structures created\n", - "print('Shape of tensor with all sequences: {}'.format(batches.shape))\n", - "print('Length of each choreography: {}\\n'.format(choreo_lens))\n", - "\n", - "print('Shape of training data with all sequences: {}'.format(train_batches.shape))\n", - "print('Length of each choreography in training dataset: {}\\n'.format(train_split))\n", - "\n", - "print('Shape of validation data with all sequences: {}'.format(val_batches.shape))\n", - "print('Length of each choreography in validation dataset: {}\\n'.format(val_split))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "bc23e0d9-4dd6-462c-8f0a-b6ab8a2806be", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import ast\n", - "\n", - "# Sampling dancers joints to simplify problem\n", - "output_path = 'outputs/' + path + '.out'\n", - "output_file = open(output_path, 'r')\n", - "dancer_joints = output_file.read().split('dancer 1: ')[1]\n", - "\n", - "first_list = dancer_joints.split(',')[0].replace(' ', ',')\n", - "if ',,' in first_list:\n", - " first_list = first_list.replace(',,', ',')\n", - "if '[,' in first_list:\n", - " first_list = first_list.replace('[,', '[')\n", - "\n", - "second_list = dancer_joints.split('dancer 2: ')[1].split('\\n')[0].replace(' ', ',')\n", - "if ',,' in first_list:\n", - " second_list = second_list.replace(',,', ',')\n", - "if '[,' in second_list:\n", - " second_list = second_list.replace('[,', '[')\n", - "\n", - "sampled_joints_1 = ast.literal_eval(first_list)\n", - "sampled_joints_2 = ast.literal_eval(second_list)\n", - "\n", - "sampled_joints = np.concatenate([sampled_joints_1, sampled_joints_2])\n", - "n_joints_sampled = len(sampled_joints)\n", - "print(\"Sampled joints for dancer 1: {}, and dancer 2: {}\".format(sampled_joints_1, sampled_joints_2))\n", - "\n", - "# Mapping sampled joints to new indices for the message passing matrices\n", - "edge_mapping = {e: c for c, e in zip(range(len(sampled_joints)), sampled_joints)}\n", - "inverse_edge_mapping = {c: e for c, e in zip(range(len(sampled_joints)), sampled_joints)}\n", - "\n", - "sampled_batches = batches[:, :, sampled_joints, :]\n", - "sampled_train_batches = train_batches[:, :, sampled_joints, :]\n", - "sampled_val_batches = val_batches[:, :, sampled_joints, :]\n", - "\n", - "print('Shape of sampled data with all sequences: {}'.format(sampled_batches.shape))\n", - "print('Shape of sampled training data with all sequences: {}'.format(sampled_train_batches.shape))\n", - "print('Shape of sampled validation data with all sequences: {}'.format(sampled_val_batches.shape))\n", - "\n", - "sampled_edge_index_t = []\n", - "for (start, end) in edge_index_t[:len(edge_index_t)]:\n", - " if (start not in sampled_joints) or (end not in sampled_joints):\n", - " continue\n", - "\n", - " sampled_edge_index_t.append([edge_mapping[start], edge_mapping[end]])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "0b73c757-62e0-4ab0-abbd-c5f3379a605b", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "from modules import *\n", - "\n", - "# Defining standard parameters\n", - "device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\n", - "sampled_train_batches = sampled_train_batches.to(device)\n", - "sampled_val_batches = sampled_val_batches.to(device)\n", - "batch_size = seq_len\n", - "\n", - "train_batches_cumsum = np.cumsum(np.array(train_split) // batch_size)\n", - "val_batches_cumsum = np.cumsum(np.array(val_split) // batch_size)\n", - "\n", - "weights_path = 'best_weights/nri_parameters_' + path + '.pt'\n", - "\n", - "seq_len_in = seq_len\n", - "seq_len_out = 1\n", - "n_joints = sampled_batches.size(2)\n", - "dims = batches.size(3)\n", - "\n", - "hidden_dim = int(weights_path.split('hidden-dim_')[1].split('_')[0])\n", - "edge_types = int(weights_path.split('edge-types_')[1].split('_')[0])\n", - "tau = 0.5\n", - "hard = True\n", - "dropout = 0.1\n", - "out_var = 5e-5\n", - "\n", - "if edge_types == 3:\n", - " prior = [0.4, 0.3, 0.3]\n", - "else:\n", - " prior = [0.35, 0.25, 0.15, 0.25]\n", - "log_prior = torch.FloatTensor(np.log(prior)).unsqueeze(0).unsqueeze(0).to(device)\n", - "\n", - "compact_encoder = True if weights_path.split('compact-encoder_')[1].split('_')[0] == 'True' else False\n", - "recurrent_encoder = True if weights_path.split('recurrent-encoder_')[1].split('_')[0] == 'True' else False\n", - "recurrent_decoder = True\n", - "\n", - "# Loading model\n", - "model = nri_vae(device, n_joints, sampled_edge_index_t, seq_len_in*dims, hidden_dim, edge_types, seq_len_out*int(dims/2), \\\n", - " tau, hard, dropout, dims, compact_encoder, recurrent_encoder, recurrent_decoder)\n", - "\n", - "model.load_state_dict(torch.load(weights_path))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "6cd9ae82-d034-4232-b36e-26e210975016", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "# Choosing sequence based on the selected video and frame, and preparing n_joints for plotting\n", - "choreo_idx = np.random.randint(len(joint_poses))\n", - "# choreo_idx = 1\n", - "offset = 0\n", - "if choreo_idx != 0:\n", - " offset = np.cumsum(train_split)[choreo_idx-1]\n", - " # offset = np.cumsum(val_split)[choreo_idx-1]\n", - "\n", - "frame = np.random.randint(joint_poses[choreo_idx].shape[0])\n", - "# frame = np.random.randint(sampled_val_batches.shape[0])\n", - "# frame = 50\n", - "sequence = frame // seq_len_in\n", - "\n", - "n_joints = int(sampled_batches.size(2)/2)\n", - "\n", - "# Getting predicted edges from a sequence\n", - "logits = model.encoder(sampled_train_batches[offset + sequence].unsqueeze(0)).squeeze(0)\n", - "# logits = model.encoder(sampled_val_batches[offset + sequence].unsqueeze(0)).squeeze(0)\n", - "\n", - "# Confidence threshold\n", - "confidence = 0.8\n", - "chosen_edge_type = -1\n", - "edge_index_classes = []\n", - "while len(edge_index_classes) <= 2:\n", - " y = gumbel_softmax_sample(logits, tau, False)\n", - " edge_index_classes = torch.where(y[:, chosen_edge_type] > confidence)[0]\n", - "\n", - "# # Top % edges\n", - "# percentage = 0.01\n", - "# chosen_edge_type = -1\n", - "# k = int(len(edge_index_t)*percentage)\n", - "# edge_index_classes = torch.topk(y[:, chosen_edge_type], k)[1]\n", - "\n", - "edge_index_samp = torch.Tensor(sampled_edge_index_t).to(device)[edge_index_classes].t().long()\n", - "print('Amount of edges sampled with confidence {}%: {}'.format(int(confidence*100), len(edge_index_classes)))\n", - "# print('Top {}% edges: {}'.format(int(percentage*100), len(edge_index_classes)))\n", - "\n", - "# Getting reconstructed frame\n", - "decoder_m_in, decoder_m_out = message_passing_matrices(n_joints*2, edge_index_samp)\n", - "decoder_m_in = decoder_m_in.to(device)\n", - "decoder_m_out = decoder_m_out.to(device)\n", - "\n", - "recon_list = []\n", - "for i in range(4*seq_len_in):\n", - " recon_output = model.decoder(sampled_train_batches[offset + sequence], \\\n", - " edge_index_samp, decoder_m_in, decoder_m_out)\n", - " recon_output = recon_output.view(seq_len_out, n_joints*2, int(dims/2)).cpu().detach().numpy()\n", - "\n", - " if seq_len_out == 1:\n", - " recon_output = recon_output.squeeze(0)\n", - " \n", - " recon_list.append(recon_output)\n", - " \n", - "edge_index_samp = torch.Tensor([[inverse_edge_mapping[e[0].item()], inverse_edge_mapping[e[1].item()]] for e in edge_index_samp.t().cpu().detach()]).to(device).t().long()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "484f7a0f-5a62-48d3-af8f-999626825b9c", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(14, 6))\n", - "\n", - "# Plotting reconstructed frame\n", - "ax1 = fig.add_subplot(131, projection=\"3d\")\n", - "ax1.set_title('Reconstructed Frame')\n", - "ax1.set_xlim([-1, 1])\n", - "ax1.set_ylim([-1, 1])\n", - "ax1.set_zlim([-1, 1])\n", - "ax1.set_xticks([])\n", - "ax1.set_yticks([])\n", - "ax1.set_zticks([])\n", - "\n", - "ax1.scatter(recon_output[:n_joints, 0], recon_output[:n_joints, 1], recon_output[:n_joints, 2], color='orange', s=60, alpha=0.9)\n", - "ax1.scatter(recon_output[n_joints:, 0], recon_output[n_joints:, 1], recon_output[n_joints:, 2], color='purple', s=60, alpha=0.9)\n", - "\n", - "dancers_no_rec = np.array(list(set(np.arange(joint_poses[0].shape[1])) - set(sampled_joints)))\n", - "ax1.scatter(joint_poses[choreo_idx][frame, dancers_no_rec[:int(len(dancers_no_rec)/2)], 2], joint_poses[choreo_idx][frame, dancers_no_rec[:int(len(dancers_no_rec)/2)], 0], \\\n", - " -joint_poses[choreo_idx][frame, dancers_no_rec[:int(len(dancers_no_rec)/2)], 1], color='red')\n", - "ax1.scatter(joint_poses[choreo_idx][frame, dancers_no_rec[int(len(dancers_no_rec)/2):], 2], joint_poses[choreo_idx][frame, dancers_no_rec[int(len(dancers_no_rec)/2):], 0], \\\n", - " -joint_poses[choreo_idx][frame, dancers_no_rec[int(len(dancers_no_rec)/2):], 1], color='blue')\n", - "\n", - "for (start, end) in skeletons:\n", - " if start in sampled_joints:\n", - " xs_0 = recon_output[edge_mapping[start], 0]\n", - " ys_0 = recon_output[edge_mapping[start], 1]\n", - " zs_0 = recon_output[edge_mapping[start], 2]\n", - " else:\n", - " xs_0 = joint_poses[choreo_idx][frame, start, 2]\n", - " ys_0 = joint_poses[choreo_idx][frame, start, 0]\n", - " zs_0 = -joint_poses[choreo_idx][frame, start, 1]\n", - " \n", - " if end in sampled_joints:\n", - " xs_1 = recon_output[edge_mapping[end], 0]\n", - " ys_1 = recon_output[edge_mapping[end], 1]\n", - " zs_1 = recon_output[edge_mapping[end], 2]\n", - " else:\n", - " xs_1 = joint_poses[choreo_idx][frame, end, 2]\n", - " ys_1 = joint_poses[choreo_idx][frame, end, 0]\n", - " zs_1 = -joint_poses[choreo_idx][frame, end, 1]\n", - " \n", - " xs = [xs_0, xs_1]\n", - " ys = [ys_0, ys_1]\n", - " zs = [zs_0, zs_1]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - "\n", - "# Plotting sampled edges\n", - "ax2 = fig.add_subplot(132, projection=\"3d\")\n", - "ax2.set_title('Sampled Edges')\n", - "ax2.set_xlim([-1, 1])\n", - "ax2.set_ylim([-1, 1])\n", - "ax2.set_zlim([-1, 1])\n", - "ax2.set_xticks([])\n", - "ax2.set_yticks([])\n", - "ax2.set_zticks([])\n", - "\n", - "ax2.scatter(joint_poses[choreo_idx][frame, :int(joint_poses[0].shape[1]/2), 2], joint_poses[choreo_idx][frame, :int(joint_poses[0].shape[1]/2), 0], \\\n", - " -joint_poses[choreo_idx][frame, :int(joint_poses[0].shape[1]/2), 1], color='red')\n", - "ax2.scatter(joint_poses[choreo_idx][frame, int(joint_poses[0].shape[1]/2):, 2], joint_poses[choreo_idx][frame, int(joint_poses[0].shape[1]/2):, 0], \\\n", - " -joint_poses[choreo_idx][frame, int(joint_poses[0].shape[1]/2):, 1], color='blue')\n", - "\n", - "for (start, end) in skeletons:\n", - " xs = [joint_poses[choreo_idx][frame, start, 2], joint_poses[choreo_idx][frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame, start, 0], joint_poses[choreo_idx][frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame, start, 1], -joint_poses[choreo_idx][frame, end, 1]]\n", - " ax2.plot(xs, ys, zs, color='grey')\n", - "\n", - "y_min = torch.min(y[edge_index_classes, chosen_edge_type])\n", - "y_max = torch.max(y[edge_index_classes, chosen_edge_type])\n", - "alphas = 0.4 + 0.6 * (y[edge_index_classes, chosen_edge_type] - y_min)/(y_max - y_min)\n", - "for i, a in enumerate(alphas):\n", - " if a > 1:\n", - " alphas[i] = 1.\n", - "for i, (start, end) in enumerate(edge_index_samp.t()):\n", - " alpha = alphas[i].cpu().detach().item()\n", - " \n", - " xs = [joint_poses[choreo_idx][frame, start, 2], joint_poses[choreo_idx][frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame, start, 0], joint_poses[choreo_idx][frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame, start, 1], -joint_poses[choreo_idx][frame, end, 1]]\n", - " \n", - " ax2.plot(xs, ys, zs, color='black', alpha=alpha)\n", - " \n", - "# Plotting directed sampled edges\n", - "ax3 = fig.add_subplot(133, projection=\"3d\")\n", - "ax3.set_title('Directed Sampled Edges')\n", - "ax3.set_xlim([-1, 1])\n", - "ax3.set_ylim([-1, 1])\n", - "ax3.set_zlim([-1, 1])\n", - "ax3.set_xticks([])\n", - "ax3.set_yticks([])\n", - "ax3.set_zticks([])\n", - "\n", - "ax3.scatter(joint_poses[choreo_idx][frame, :int(joint_poses[0].shape[1]/2), 2], joint_poses[choreo_idx][frame, :int(joint_poses[0].shape[1]/2), 0], \\\n", - " -joint_poses[choreo_idx][frame, :int(joint_poses[0].shape[1]/2), 1], color='red')\n", - "ax3.scatter(joint_poses[choreo_idx][frame, int(joint_poses[0].shape[1]/2):, 2], joint_poses[choreo_idx][frame, int(joint_poses[0].shape[1]/2):, 0], \\\n", - " -joint_poses[choreo_idx][frame, int(joint_poses[0].shape[1]/2):, 1], color='blue')\n", - "\n", - "for (start, end) in skeletons:\n", - " xs = [joint_poses[choreo_idx][frame, start, 2], joint_poses[choreo_idx][frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame, start, 0], joint_poses[choreo_idx][frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame, start, 1], -joint_poses[choreo_idx][frame, end, 1]]\n", - " ax3.plot(xs, ys, zs, color='grey')\n", - "\n", - "for i, (start, end) in enumerate(edge_index_samp.t()):\n", - " alpha = alphas[i].cpu().detach().item()\n", - " \n", - " direction_vector = joint_poses[choreo_idx][frame, end] - joint_poses[choreo_idx][frame, start]\n", - " \n", - " ax3.quiver(joint_poses[choreo_idx][frame, start, 2], joint_poses[choreo_idx][frame, start, 0], -joint_poses[choreo_idx][frame, start, 1], \\\n", - " direction_vector[2], direction_vector[0], -direction_vector[1], color='black', alpha=alpha, arrow_length_ratio=0.2)\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7ca54069-7725-4709-b551-04cb7678b2b0", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML, Video, display\n", - "\n", - "# Define the update function for animation\n", - "def update(ani_frame):\n", - " ax1.cla()\n", - " \n", - " # Original sequence\n", - " ax1.set_title('Original Sequence')\n", - " ax1.set_xlim([-1, 1])\n", - " ax1.set_ylim([-1, 1])\n", - " ax1.set_zlim([-1, 1])\n", - " ax1.set_xticks([])\n", - " ax1.set_yticks([])\n", - " ax1.set_zticks([])\n", - " \n", - " recon_output = recon_list[ani_frame]\n", - " \n", - " ax1.scatter(recon_output[:n_joints, 0], recon_output[:n_joints, 1], recon_output[:n_joints, 2], color='orange', s=60, alpha=0.9)\n", - " ax1.scatter(recon_output[n_joints:, 0], recon_output[n_joints:, 1], recon_output[n_joints:, 2], color='purple', s=60, alpha=0.9)\n", - " \n", - " dancers_no_rec = np.array(list(set(np.arange(joint_poses[0].shape[1])) - set(sampled_joints)))\n", - " ax1.scatter(joint_poses[choreo_idx][frame+ani_frame, dancers_no_rec[:int(len(dancers_no_rec)/2)], 2], \n", - " joint_poses[choreo_idx][frame+ani_frame, dancers_no_rec[:int(len(dancers_no_rec)/2)], 0], \n", - " -joint_poses[choreo_idx][frame+ani_frame, dancers_no_rec[:int(len(dancers_no_rec)/2)], 1], color='red')\n", - " ax1.scatter(joint_poses[choreo_idx][frame+ani_frame, dancers_no_rec[int(len(dancers_no_rec)/2):], 2], \n", - " joint_poses[choreo_idx][frame+ani_frame, dancers_no_rec[int(len(dancers_no_rec)/2):], 0], \n", - " -joint_poses[choreo_idx][frame+ani_frame, dancers_no_rec[int(len(dancers_no_rec)/2):], 1], color='blue')\n", - " \n", - " for (start, end) in skeletons:\n", - " if start in sampled_joints:\n", - " xs_0 = recon_output[edge_mapping[start], 0]\n", - " ys_0 = recon_output[edge_mapping[start], 1]\n", - " zs_0 = recon_output[edge_mapping[start], 2]\n", - " else:\n", - " xs_0 = joint_poses[choreo_idx][frame+ani_frame, start, 2]\n", - " ys_0 = joint_poses[choreo_idx][frame+ani_frame, start, 0]\n", - " zs_0 = -joint_poses[choreo_idx][frame+ani_frame, start, 1]\n", - " \n", - " if end in sampled_joints:\n", - " xs_1 = recon_output[edge_mapping[end], 0]\n", - " ys_1 = recon_output[edge_mapping[end], 1]\n", - " zs_1 = recon_output[edge_mapping[end], 2]\n", - " else:\n", - " xs_1 = joint_poses[choreo_idx][frame+ani_frame, end, 2]\n", - " ys_1 = joint_poses[choreo_idx][frame+ani_frame, end, 0]\n", - " zs_1 = -joint_poses[choreo_idx][frame+ani_frame, end, 1]\n", - " \n", - " xs = [xs_0, xs_1]\n", - " ys = [ys_0, ys_1]\n", - " zs = [zs_0, zs_1]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - "\n", - "\n", - "fig = plt.figure(figsize=(10, 6))\n", - "ax1 = fig.add_subplot(111, projection=\"3d\")\n", - "\n", - "# Create animation\n", - "ani = FuncAnimation(fig, update, frames=len(recon_list), repeat=True, interval=100)\n", - "ani = ani.to_jshtml()\n", - "\n", - "display(HTML(f\"\"\"\n", - "
\n", - "
\n", - " {ani}\n", - "
\n", - "
\n", - "\"\"\"))\n", - "\n", - "plt.close()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "7299143d-3e29-4aad-b023-24776e97e734", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML, Video, display\n", - "\n", - "# Define the update function for animation\n", - "def update(ani_frame):\n", - " ax1.cla()\n", - " \n", - " # Sampled edges\n", - " ax1.set_title('Sampled Edges')\n", - " ax1.set_xlim([-1, 1])\n", - " ax1.set_ylim([-1, 1])\n", - " ax1.set_zlim([-1, 1])\n", - " ax1.set_xticks([])\n", - " ax1.set_yticks([])\n", - " ax1.set_zticks([])\n", - "\n", - " ax1.scatter(joint_poses[choreo_idx][frame+ani_frame, :int(joint_poses[0].shape[1]/2), 2], \n", - " joint_poses[choreo_idx][frame+ani_frame, :int(joint_poses[0].shape[1]/2), 0], \n", - " -joint_poses[choreo_idx][frame+ani_frame, :int(joint_poses[0].shape[1]/2), 1], color='red')\n", - " ax1.scatter(joint_poses[choreo_idx][frame+ani_frame, int(joint_poses[0].shape[1]/2):, 2], \n", - " joint_poses[choreo_idx][frame+ani_frame, int(joint_poses[0].shape[1]/2):, 0], \n", - " -joint_poses[choreo_idx][frame+ani_frame, int(joint_poses[0].shape[1]/2):, 1], color='blue')\n", - "\n", - " for (start, end) in skeletons:\n", - " xs = [joint_poses[choreo_idx][frame+ani_frame, start, 2], joint_poses[choreo_idx][frame+ani_frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame+ani_frame, start, 0], joint_poses[choreo_idx][frame+ani_frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame+ani_frame, start, 1], -joint_poses[choreo_idx][frame+ani_frame, end, 1]]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - "\n", - " for i, (start, end) in enumerate(edge_index_samp.t()):\n", - " alpha = alphas[i].cpu().detach().item()\n", - " \n", - " xs = [joint_poses[choreo_idx][frame+ani_frame, start, 2], joint_poses[choreo_idx][frame+ani_frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame+ani_frame, start, 0], joint_poses[choreo_idx][frame+ani_frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame+ani_frame, start, 1], -joint_poses[choreo_idx][frame+ani_frame, end, 1]]\n", - " \n", - " ax1.plot(xs, ys, zs, color='black', alpha=alpha)\n", - "\n", - "\n", - "fig = plt.figure(figsize=(10, 6))\n", - "ax1 = fig.add_subplot(111, projection=\"3d\")\n", - "\n", - "# Create animation\n", - "ani = FuncAnimation(fig, update, frames=len(recon_list), repeat=True, interval=100)\n", - "ani = ani.to_jshtml()\n", - "\n", - "display(HTML(f\"\"\"\n", - "
\n", - "
\n", - " {ani}\n", - "
\n", - "
\n", - "\"\"\"))\n", - "\n", - "plt.close()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3b2c41e2-3071-483b-8292-3a92d8387fe6", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML, Video, display\n", - "\n", - "# Define the update function for animation\n", - "def update(ani_frame):\n", - " ax1.cla()\n", - " \n", - " # Directed sampled edges\n", - " ax1.set_title('Directed Sampled Edges')\n", - " ax1.set_xlim([-1, 1])\n", - " ax1.set_ylim([-1, 1])\n", - " ax1.set_zlim([-1, 1])\n", - " ax1.set_xticks([])\n", - " ax1.set_yticks([])\n", - " ax1.set_zticks([])\n", - " \n", - " ax1.scatter(joint_poses[choreo_idx][frame+ani_frame, :int(joint_poses[0].shape[1]/2), 2], joint_poses[choreo_idx][frame+ani_frame, :int(joint_poses[0].shape[1]/2), 0], \\\n", - " -joint_poses[choreo_idx][frame+ani_frame, :int(joint_poses[0].shape[1]/2), 1], color='red')\n", - " ax1.scatter(joint_poses[choreo_idx][frame+ani_frame, int(joint_poses[0].shape[1]/2):, 2], joint_poses[choreo_idx][frame+ani_frame, int(joint_poses[0].shape[1]/2):, 0], \\\n", - " -joint_poses[choreo_idx][frame+ani_frame, int(joint_poses[0].shape[1]/2):, 1], color='blue')\n", - " \n", - " for (start, end) in skeletons:\n", - " xs = [joint_poses[choreo_idx][frame+ani_frame, start, 2], joint_poses[choreo_idx][frame+ani_frame, end, 2]]\n", - " ys = [joint_poses[choreo_idx][frame+ani_frame, start, 0], joint_poses[choreo_idx][frame+ani_frame, end, 0]]\n", - " zs = [-joint_poses[choreo_idx][frame+ani_frame, start, 1], -joint_poses[choreo_idx][frame+ani_frame, end, 1]]\n", - " ax1.plot(xs, ys, zs, color='grey')\n", - " \n", - " for i, (start, end) in enumerate(edge_index_samp.t()):\n", - " alpha = alphas[i].cpu().detach().item()\n", - " \n", - " direction_vector = joint_poses[choreo_idx][frame+ani_frame, end] - joint_poses[choreo_idx][frame+ani_frame, start]\n", - " \n", - " ax1.quiver(joint_poses[choreo_idx][frame+ani_frame, start, 2], joint_poses[choreo_idx][frame+ani_frame, start, 0], -joint_poses[choreo_idx][frame+ani_frame, start, 1], \\\n", - " direction_vector[2], direction_vector[0], -direction_vector[1], color='black', alpha=alpha, arrow_length_ratio=0.2)\n", - "\n", - "\n", - "fig = plt.figure(figsize=(10, 6))\n", - "ax1 = fig.add_subplot(111, projection=\"3d\")\n", - "\n", - "# Create animation\n", - "ani = FuncAnimation(fig, update, frames=len(recon_list), repeat=True, interval=100)\n", - "ani = ani.to_jshtml()\n", - "\n", - "display(HTML(f\"\"\"\n", - "
\n", - "
\n", - " {ani}\n", - "
\n", - "
\n", - "\"\"\"))\n", - "\n", - "plt.close()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.13" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/modules.py b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/modules.py deleted file mode 100644 index ebd362f..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/modules.py +++ /dev/null @@ -1,341 +0,0 @@ -import torch_geometric.nn as geo_nn -from torch_geometric.nn import GCNConv -from torch.nn import Linear, BatchNorm1d, Dropout - -from utils import * - -# Implementing LSTM variant with GCN layers -class gcn_lstm_cell(nn.Module): - def __init__(self, n_in, n_out): - super(gcn_lstm_cell, self).__init__() - - self.n_in = n_in - self.n_out = n_out - - # Rebuilding LSTM cell with GCN layers - self.gcn_i = GCNConv(n_in + n_out, n_out) - self.gcn_f = GCNConv(n_in + n_out, n_out) - self.gcn_o = GCNConv(n_in + n_out, n_out) - self.gcn_g = GCNConv(n_in + n_out, n_out) - - def forward(self, x, h, c, edge_index): - # Concatenate input and hidden state - combined = torch.cat([x, h], dim=-1) - - # Compute gates - i = torch.sigmoid(self.gcn_i(combined, edge_index)) - f = torch.sigmoid(self.gcn_f(combined, edge_index)) - o = torch.sigmoid(self.gcn_o(combined, edge_index)) - g = torch.tanh(self.gcn_g(combined, edge_index)) - - # Compute new cell and hidden states - c_new = f*c + i*g - h_new = o*torch.tanh(c_new) - - return h_new, c_new - -# Defining NRI encoder -class nri_encoder(nn.Module): - def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, n_out, do_prob=0., compact=False): - super(nri_encoder, self).__init__() - - # Computing edge index given transposed edge index - self.edge_index = torch.Tensor(edge_index_t).t().long().to(device) - self.compact = compact - - # Computing the message passing matrices - self.m_in, self.m_out = message_passing_matrices(n_joints, self.edge_index) - self.m_in = self.m_in.to(device) - self.m_out = self.m_out.to(device) - - # Defining the network itself interleaving GCN and MLP layers - self.conv1 = GCNConv(n_in, n_hid).to(device) - - self.mlp1 = Linear(n_hid*2, n_hid).to(device) - self.bnorm1 = BatchNorm1d(n_hid).to(device) - self.dropout1 = Dropout(do_prob).to(device) - - self.conv2 = GCNConv(n_hid, n_hid).to(device) - - if compact: - self.mlp2 = Linear(n_hid*2, n_hid).to(device) - else: - self.mlp2 = Linear(n_hid*3, n_hid).to(device) - - self.bnorm2 = BatchNorm1d(n_hid).to(device) - self.fc_out = Linear(n_hid, n_out).to(device) - - self.init_weights() - - def init_weights(self): - for m in self.modules(): - if isinstance(m, Linear): - nn.init.xavier_normal_(m.weight) - m.bias.data.fill_(0.1) - - elif isinstance(m, GCNConv): - nn.init.xavier_normal_(m.lin.weight) - m.bias.data.fill_(0.1) - - def forward(self, x): - # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims] -> [num_seqs, num_atoms, num_timesteps*num_dims] - x = x.view(x.size(0), x.size(2), -1) - - # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers - x = self.conv1(x, self.edge_index) - x = F.relu(x) - - if not self.compact: - edge_x = [node2edge(x_samp, self.m_in, self.m_out) for x_samp in x] - x = torch.stack(edge_x) - - x = self.mlp1(x) - x = F.relu(x) - - x = x.permute(0, 2, 1) - x = self.bnorm1(x) - x = x.permute(0, 2, 1) - - x = self.dropout1(x) - - # Skip connection - x_skip = x.clone() - - node_x = [edge2node(x_samp, self.m_in) for x_samp in x] - x = torch.stack(node_x) - - x = self.conv2(x, self.edge_index) - x = F.relu(x) - - edge_x = [node2edge(x_samp, self.m_in, self.m_out) for x_samp in x] - x = torch.stack(edge_x) - - if not self.compact: - x = torch.cat((x, x_skip), dim=2) - - x = self.mlp2(x) - x = F.relu(x) - - x = x.permute(0, 2, 1) - x = self.bnorm2(x) - x = x.permute(0, 2, 1) - - return self.fc_out(x) - - -# NRI recurrent encoder -class nri_rec_encoder(nn.Module): - def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, n_out): - super(nri_rec_encoder, self).__init__() - self.device = device - - # Computing edge index given transposed edge index - self.edge_index = torch.Tensor(edge_index_t).t().long().to(device) - - # Computing the message passing matrices - self.m_in, self.m_out = message_passing_matrices(n_joints, self.edge_index) - self.m_in = self.m_in.to(device) - self.m_out = self.m_out.to(device) - - # Defining the network itself starting with GRNN and then MLP layers - self.grnn = gcn_lstm_cell(n_in, n_hid).to(device) - - self.mlp1 = Linear(n_hid*2, n_hid).to(device) - self.fc_out = Linear(n_hid, n_out).to(device) - - self.init_weights() - - def init_weights(self): - for m in self.modules(): - if isinstance(m, Linear): - nn.init.xavier_normal_(m.weight) - m.bias.data.fill_(0.1) - - elif isinstance(m, GCNConv): - nn.init.xavier_normal_(m.lin.weight) - m.bias.data.fill_(0.1) - - def forward(self, x): - # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims] - num_seqs, num_timesteps, num_atoms, num_dims = x.shape - - # Iterating through samples in the batch - h_batch = [] - for x_b in x: - # Initializing cell and hidden states - h = torch.zeros(num_atoms, self.grnn.n_out).to(self.device) - c = torch.zeros(num_atoms, self.grnn.n_out).to(self.device) - - # Iterating through GRNN - for x_t in x_b: - h, c = self.grnn(x_t, h, c, self.edge_index) - - h_batch.append(h) - h = torch.stack(h_batch) - - # Forward pass with an operation to switch from nodes to edges and MLP layers - edge_x = [node2edge(h_samp, self.m_in, self.m_out) for h_samp in h] - x = torch.stack(edge_x) - - x = self.mlp1(x) - x = F.relu(x) - - return self.fc_out(x) - - -# Defining NRI decoder -class nri_decoder(nn.Module): - def __init__(self, device, n_in, n_hid, n_out, do_prob=0.): - super(nri_decoder, self).__init__() - - # Defining the network itself interleaving GCN and MLP layers - self.conv1 = GCNConv(n_in, n_hid).to(device) - - self.mlp1 = Linear(n_hid*2, n_hid).to(device) - self.dropout1 = Dropout(do_prob).to(device) - - self.conv2 = GCNConv(n_hid, n_out).to(device) - - self.init_weights() - - def init_weights(self): - for m in self.modules(): - if isinstance(m, Linear): - nn.init.xavier_normal_(m.weight) - m.bias.data.fill_(0.1) - - elif isinstance(m, GCNConv): - nn.init.xavier_normal_(m.lin.weight) - m.bias.data.fill_(0.1) - - def forward(self, x, edge_index, m_in, m_out): - # Rearranging shapes: [num_seqs, num_timesteps, num_atoms, num_dims] -> [num_seqs, num_atoms, num_timesteps*num_dims] - x = x.view(x.size(0), x.size(2), -1) - - # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers - x = self.conv1(x, edge_index) - x = F.relu(x) - - edge_x = [node2edge(x_samp, m_in, m_out) for x_samp in x] - x = torch.stack(edge_x) - - x = self.mlp1(x) - x = F.relu(x) - - x = self.dropout1(x) - - node_x = [edge2node(x_samp, m_in) for x_samp in x] - x = torch.stack(node_x) - - x = self.conv2(x, edge_index) - - return x - - -# NRI recurrent decoder -class nri_rec_decoder(nn.Module): - def __init__(self, device, n_in, n_hid, n_out, do_prob=0.): - super(nri_rec_decoder, self).__init__() - self.device = device - - # Defining the network itself starting with GRNN and then interleaving MLP and GCN layers - self.grnn = gcn_lstm_cell(n_in, n_hid).to(device) - - self.mlp1 = Linear(n_hid*2, n_hid).to(device) - self.dropout1 = Dropout(do_prob).to(device) - - self.conv1 = GCNConv(n_hid, n_out).to(device) - - self.init_weights() - - def init_weights(self): - for m in self.modules(): - if isinstance(m, Linear): - nn.init.xavier_normal_(m.weight) - m.bias.data.fill_(0.1) - - elif isinstance(m, GCNConv): - nn.init.xavier_normal_(m.lin.weight) - m.bias.data.fill_(0.1) - - def forward(self, x, edge_index, m_in, m_out): - # [num_timesteps, num_atoms, num_dims] - num_timesteps, num_atoms, num_dims = x.shape - - # Initializing cell and hidden states - h = torch.zeros(num_atoms, self.grnn.n_out).to(self.device) - c = torch.zeros(num_atoms, self.grnn.n_out).to(self.device) - - # Iterating through GRNN - for x_t in x: - h, c = self.grnn(x_t, h, c, edge_index) - - # Forward pass interleaving GCN layers, operations to switch from nodes to edges or vice-versa, and MLP layers - x = node2edge(h, m_in, m_out) - - x = self.mlp1(x) - x = F.relu(x) - - x = self.dropout1(x) - - x = edge2node(x, m_in) - - x = self.conv1(x, edge_index) - - return x - - -# Defining NRI VAE -class nri_vae(nn.Module): - def __init__(self, device, n_joints, edge_index_t, n_in, n_hid, edge_types, n_out, tau, hard, do_prob=0., n_dims=6, compact_enc=False, rec_enc=False, rec_dec=True): - super(nri_vae, self).__init__() - - # Initializing encoder and decoder - if rec_enc: - self.encoder = nri_rec_encoder(device, n_joints, edge_index_t, n_dims, n_hid, edge_types) - else: - self.encoder = nri_encoder(device, n_joints, edge_index_t, n_in, n_hid, edge_types, do_prob, compact_enc) - - if rec_dec: - self.decoder = nri_rec_decoder(device, n_dims, n_hid, n_out, do_prob) - else: - self.decoder = nri_decoder(device, n_in, n_hid, n_out, do_prob) - - # Saving variables that will be used by the forward pass - self.device = device - self.n_joints = n_joints - - self.tau = tau - self.hard = hard - - self.edge_index_t = torch.Tensor(edge_index_t).to(device) - - def forward(self, x): - # Computing logits for edges with encoder - logits = self.encoder(x) - - # Sampling edge index classes using Gumbel-Softmax - y = gumbel_softmax_sample(logits, self.tau, self.hard) - - # Getting sampled edges for every element in the batch - edge_index_dict = {i: [] for i in range(logits.size(0))} - edge_index_classes = torch.nonzero(y[:, :, -1]) - for batch_element, edge in edge_index_classes: - edge_index_dict[batch_element.item()].append(edge.item()) - - recon_output = [] - for k, v in edge_index_dict.items(): - # Building edge_index for sampled edges - edge_index_samp = self.edge_index_t[v].t().long() - - # Creating message passing matrices for decoder newly sampled edge index - decoder_m_in, decoder_m_out = message_passing_matrices(self.n_joints, edge_index_samp) - decoder_m_in = decoder_m_in.to(self.device) - decoder_m_out = decoder_m_out.to(self.device) - - # Reconstructing sequences using decoder - recon_output.append(self.decoder(x[k], edge_index_samp, decoder_m_in, decoder_m_out)) - - recon_output = torch.stack(recon_output) - - return logits, recon_output \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/prepare_data.py b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/prepare_data.py deleted file mode 100644 index 3c7b374..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/prepare_data.py +++ /dev/null @@ -1,185 +0,0 @@ -from glob import glob - -import numpy as np -import torch - -from utils import * - - -def load_data(seq_len, frame_gap=1, n_sample_dancers=None): - print('######## Array Information Coming From Original Videos ########') - - # Reading data coming from the pre-processing pipeline and creating both dancers - joint_poses = [] - for file in glob('./data/*.npy'): - interleaved_poses = np.load(file) - poses_1 = interleaved_poses[0::2] - poses_2 = interleaved_poses[1::2] - - # Sampling frames for movement smoothness - joint_poses.append(np.concatenate((poses_1, poses_2), axis=1)[::3]) - print('Joint poses {} shape: {}\n'.format(file.split('/')[-1], joint_poses[-1].shape)) - - # Building initial transposed edge index (adjacencies) - edge_index_t = [[0, 1], [0, 2], [0, 3], [1, 4], [2, 5], [3, 6], [4, 7], [5, 8], [6, 9], [7, 10], [7, 27], [8, 11], - [8, 28], [9, 12], [9, 13], [9, 14], [12, 15], [13, 16], [14, 17], [15, 24], [16, 18], [17, 19], - [18, 20], [19, 21], [20, 22], [21, 23], [22, 25], [23, 26]] - - # Getting second person skeleton - n_joints = int(joint_poses[0].shape[1]/2) - init_skeleton_len = len(edge_index_t) - for edge_index in range(init_skeleton_len): - edge_index_t.append([edge_index_t[edge_index][0]+n_joints, edge_index_t[edge_index][1]+n_joints]) - - # Saving skeletons for visualization - skeletons = edge_index_t.copy() - - # Fully connecting the two people - for joint_1 in range(interleaved_poses.shape[1]): - for joint_2 in range(interleaved_poses.shape[1]): - edge_index_t.append([joint_1, joint_2+n_joints]) - - # Making graph undirected - full_skeleton_len = len(edge_index_t) - for edge_index in range(full_skeleton_len): - edge_index_t.append([edge_index_t[edge_index][1], edge_index_t[edge_index][0]]) - - print(f'######## Total Number of Edges: {len(edge_index_t)} ########\n') - - ########## REMOVED PIECE OF CODE. NOW WE IMPLEMENT ROTATION WITHIN BATCH PROCESSING ########## - # # Augmenting poses by adding random rotations - # rand_rot_num = 4 - # joint_poses_augmented = [joint_poses] - # for r in range(rand_rot_num): - # joint_poses_rot = [] - - # angle_x = 2*np.random.rand(1)[0]*np.pi - # angle_y = 2*np.random.rand(1)[0]*np.pi - # angle_z = 2*np.random.rand(1)[0]*np.pi - - # for choreo in joint_poses: - # choreo_aux = [] - - # for frame in choreo: - # rotated_points = rotate_points(frame, angle_x, angle_y, angle_z) - # choreo_aux.append(rotated_points) - - # joint_poses_rot.append(np.array(choreo_aux)) - - # joint_poses_augmented.append(joint_poses_rot) - - - # Estimating velocity of points - velocities = [] - joint_poses_velo = [] - for joint_pose in [joint_poses]: - velocities_aux = [] - joint_poses_velo_aux = [] - - for choreo in joint_pose: - choreo = torch.Tensor(choreo) - - velocity_choreo = compute_velocities(choreo, frame_gap) - velocities_aux.append(velocity_choreo) - - joint_poses_velo_aux.append(torch.cat((choreo, velocity_choreo), dim=-1)) - - velocities.append(velocities_aux) - joint_poses_velo.append(joint_poses_velo_aux) - - batches = [] - choreo_lens = [] - - # # Building non-overlapping sequences - # for joint_pose_velo in joint_poses_velo: - # for choreo in joint_pose_velo: - # choreo = torch.Tensor(choreo) - - # num_seqs = choreo.shape[0] // seq_len - # batches.append(torch.stack([choreo[i*seq_len:(i+1)*seq_len] for i in range(num_seqs)])) - # choreo_lens.append(batches[-1].size(0)) - - # Building overlapping sequences - for joint_pose_velo in joint_poses_velo: - for choreo in joint_pose_velo: - choreo = torch.Tensor(choreo) - - batches.append(torch.stack([choreo[i:i+seq_len] for i in range(len(choreo)-seq_len)])) - choreo_lens.append(batches[-1].size(0)) - - batches = torch.cat(batches, dim=0) - - # Fixing x, y, z configuration - batches[:, :, :, [0, 1, 2]] = batches[:, :, :, [2, 0, 1]] - batches[:, :, :, 2] = -batches[:, :, :, 2] - - # Balanced training-validation split - train_split = [] - val_split = [] - train_batches = [] - val_batches = [] - split_percentage = 0.85 - next_choreo = 0 - for choreo_len in choreo_lens: - - train_split.append(int(split_percentage*choreo_len)) - val_split.append(choreo_len - train_split[-1]) - - train_batches.append(batches[next_choreo : next_choreo + train_split[-1]]) - val_batches.append(batches[next_choreo + train_split[-1] : next_choreo + choreo_len]) - - next_choreo += choreo_len - - train_batches = torch.cat(train_batches, dim=0) - val_batches = torch.cat(val_batches, dim=0) - - # Sampling joints and selecting edges connected to these joints if duet simplification requested - if n_sample_dancers is not None: - sampled_joints_1 = np.random.choice(n_joints, n_sample_dancers) - sampled_joints_2 = np.random.choice(n_joints, n_sample_dancers) + n_joints - sampled_joints = np.concatenate([sampled_joints_1, sampled_joints_2]) - print("Sampled joints for dancer 1: {}, and dancer 2: {}\n".format(sampled_joints_1, sampled_joints_2)) - - # Mapping sampled joints to new indices for the message passing matrices - edge_mapping = {e: c for c, e in zip(range(len(sampled_joints)), sampled_joints)} - - sampled_batches = batches[:, :, sampled_joints, :] - sampled_train_batches = train_batches[:, :, sampled_joints, :] - sampled_val_batches = val_batches[:, :, sampled_joints, :] - - sampled_edge_index_t = [] - for (start, end) in edge_index_t[:len(edge_index_t)]: - if (start not in sampled_joints) or (end not in sampled_joints): - continue - - sampled_edge_index_t.append([edge_mapping[start], edge_mapping[end]]) - - print(f'######## Total Number of Sampled Edges: {len(sampled_edge_index_t)} ########\n') - - print('######## Data Structures Created For Training ########\n') - - # Printing all the data structures created - print('Shape of tensor with all sequences: {}'.format(sampled_batches.shape)) - print('Length of each choreography: {}\n'.format(choreo_lens)) - - print('Shape of training data with all sequences: {}'.format(sampled_train_batches.shape)) - print('Length of each choreography in training dataset: {}\n'.format(train_split)) - - print('Shape of validation data with all sequences: {}'.format(sampled_val_batches.shape)) - print('Length of each choreography in validation dataset: {}\n'.format(val_split)) - - return joint_poses, sampled_edge_index_t, sampled_batches, choreo_lens, sampled_train_batches, train_split, sampled_val_batches, val_split - - print('######## Data Structures Created For Training ########\n') - - # Printing all the data structures created - print('Shape of tensor with all sequences: {}'.format(batches.shape)) - print('Length of each choreography: {}\n'.format(choreo_lens)) - - print('Shape of training data with all sequences: {}'.format(train_batches.shape)) - print('Length of each choreography in training dataset: {}\n'.format(train_split)) - - print('Shape of validation data with all sequences: {}'.format(val_batches.shape)) - print('Length of each choreography in validation dataset: {}\n'.format(val_split)) - - return joint_poses, edge_index_t, batches, choreo_lens, train_batches, train_split, val_batches, val_split \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/train_nri.py b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/train_nri.py deleted file mode 100644 index ec28154..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/train_nri.py +++ /dev/null @@ -1,296 +0,0 @@ -import time -from tqdm import tqdm -import argparse - -import matplotlib.pyplot as plt -import torch -import torch.optim as optim -from torch.optim import lr_scheduler - -from prepare_data import * -from modules import * -from utils import * - -# Model iteration function -def model_iteration(model, optimizer, scheduler, batches, batches_cumsum, beta, frame_gap, dataset_multiplier, \ - mode='train', recon_mode='nll', save_path='best_weights/nri_parameters.pt'): - t = time.time() - - kl_aux = [] - recon_aux = [] - loss_aux = [] - - if mode == 'train': - model.train() - elif mode == 'val': - model.eval() - - for dsm in range(dataset_multiplier): - choreo_cumsum_idx = 0 - for idx in range(batches_cumsum[-1]): - # Skipping last batch of a video, since the next batch belongs to the next video, not a delta_t of the movement - if idx == batches_cumsum[choreo_cumsum_idx]: - choreo_cumsum_idx += 1 - continue - - if mode == 'train': - optimizer.zero_grad() - - batch = batches[idx*batch_size:(idx+1)*batch_size] - - rotation = rotation_matrix_z(torch.tensor(2*np.random.rand(1)[0]*np.pi)).to(device) - rotated_batches_pos = torch.einsum('...ij,jk->...ik', batch[:, :, :, :3], rotation) - rotated_batches_vel = torch.einsum('...ij,jk->...ik', batch[:, :, :, 3:], rotation) - batch = torch.cat([rotated_batches_pos, rotated_batches_vel], dim=-1) - - # Non-overlapping sequences - # next_batch = batches[idx*batch_size+1:(idx+1)*batch_size+1] - - # Overlapping sequences - next_batch = batches[(idx+1)*batch_size:(idx+2)*batch_size] - - rotated_batches_pos = torch.einsum('...ij,jk->...ik', next_batch[:, :, :, :3], rotation) - rotated_batches_vel = torch.einsum('...ij,jk->...ik', next_batch[:, :, :, 3:], rotation) - next_batch = torch.cat([rotated_batches_pos, rotated_batches_vel], dim=-1) - - logits, recon_output = model(batch) - - kl_loss = gumbel_softmax_kl_divergence(logits, log_prior, batch_size) - - recon_output = recon_output.view(batch_size, seq_len_out, n_joints, int(dims/2)) - - if recon_mode == 'nll': - nll_gaussian = nll_gaussian_loss() - var_tensor = torch.full(recon_output.shape, out_var, device=device) - recon_loss = nll_gaussian(recon_output, next_batch[:, \ - frame_gap-1:frame_gap-1+seq_len_out, :, :int(dims/2)], var_tensor) - elif recon_mode == 'mse': - mse = mse_loss() - recon_loss = mse(recon_output, next_batch[:, \ - frame_gap-1:frame_gap-1+seq_len_out, :, :int(dims/2)]) - - recon_loss = recon_loss / (recon_output.size(0) * recon_output.size(1) * recon_output.size(2)) - - if recon_mode == 'nll': - recon_coef = 0.0001 - elif recon_mode == 'mse': - recon_coef = 1 - - loss = beta*0.01*kl_loss + recon_coef*recon_loss - # loss = recon_coef*recon_loss - - if mode == 'train': - loss.backward() - optimizer.step() - - kl_aux.append(0.01*kl_loss.item()) - recon_aux.append(recon_coef*recon_loss.item()) - loss_aux.append(loss.data.item()) - - del batch, next_batch, logits, kl_loss, recon_loss - - kl_aux = torch.Tensor(kl_aux) - recon_aux = torch.Tensor(recon_aux) - loss_aux = torch.Tensor(loss_aux) - tqdm.write(f'Epoch: {epoch + 1:04d}, ' - f'KL Loss ({mode}): {torch.mean(kl_aux):.4f}, ' - f'Reconstruction Loss ({mode}): {torch.mean(recon_aux):.4f}, ' - f'Combined Loss ({mode}): {torch.mean(loss_aux):.4f}, ' - f'time: {time.time() - t:.4f}s') - - if mode == 'train': - scheduler.step() - - if mode == 'val': - global best_val_loss - global best_epoch - - if best_val_loss is torch.inf or torch.mean(loss_aux) < best_val_loss: - best_val_loss = torch.mean(loss_aux) - best_epoch = epoch - - torch.save(model.state_dict(), save_path) - tqdm.write(f'Epoch: {epoch + 1:04d}, Saving best parameters!') - - if recon_mode == 'nll': - del var_tensor - - torch.cuda.empty_cache() - - return kl_aux, recon_aux, loss_aux - -# Parsing arguments to choose general options and hyperparameter values -parser = argparse.ArgumentParser() - -# parser.add_argument('--seed', type=int, default=42, help='Random seed.') - -# parser.add_argument('--batch-size', type=int, default=128, help='Number of samples per batch.') - -parser.add_argument('--n-sample-dancers', type=int, default=3, help='Number of joints to sample for dancers.') -parser.add_argument('--frame-gap', type=int, default=1, help='Number of frames to skip for velocity computation.') -parser.add_argument('--dataset-multiplier', type=int, default=5, help='Number of times to augment the dataset with rotations.') - -parser.add_argument('--compact-encoder', action='store_true', default=False, help='Whether to use the compact version of the encoder.') -parser.add_argument('--recurrent-encoder', action='store_true', default=False, help='Whether to use the recurrent encoder.') -parser.add_argument('--recurrent-decoder', action='store_false', default=True, help='Whether to use the recurrent decoder.') - -parser.add_argument('--seq-len-in', type=int, default=8, help='Number of input time steps per sample.') -parser.add_argument('--seq-len-out', type=int, default=1, help='Number of steps to predict.') - -parser.add_argument('--hidden-dim', type=int, default=64, help='Number of hidden units for both encoder and decoder.') -parser.add_argument('--edge-types', type=int, default=4, help='The number of edge types to infer.') - -parser.add_argument('--tau', type=float, default=0.5, help='Temperature for Gumbel-Softmax.') -parser.add_argument('--hard', action='store_false', default=True, help='Whether to use discrete samples in training forward pass.') -parser.add_argument('--dropout', type=float, default=0.1, help='Dropout rate.') -parser.add_argument('--var', type=float, default=5e-5, help='Output variance used for the NLL reconstruction loss.') - -parser.add_argument('--prior', action='store_false', default=True, help='Whether to use sparsity prior.') - -parser.add_argument('--epochs', type=int, default=30, help='Number of epochs to train.') -parser.add_argument('--lr', type=float, default=0.0003, help='Initial learning rate.') -parser.add_argument('--lr-cycle', type=int, default=10, help='After how many epochs to vary LR in the cycle.') -parser.add_argument('--gamma', type=float, default=0.5, help='LR decay factor.') - -parser.add_argument('--loss-mode', type=str, default='nll', help='Type of reconstruction loss to used') -parser.add_argument('--save-path', type=str, default='best_weights/nri_parameters.pt', help='Where to save the trained model.') -parser.add_argument('--load-path', type=str, default='best_weights/nri_parameters.pt', help='Where to load the trained model from.') - -parser.add_argument('--param-count', action='store_true', default=False, help='Wheter to count the number of trainable parameters in the model.') - -parser.add_argument('--visual', type=str, default='assets/loss_graphs.png', help='Where to save training graphs.') - -args = parser.parse_args() - -# Acquiring data -joint_poses, edge_index_t, batches, choreo_lens, train_batches, train_split, val_batches, val_split = load_data(args.seq_len_in, \ - args.frame_gap, \ - args.n_sample_dancers) - -# Initializing all the hyperparameters and moving the required ones to device -device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') -train_batches = train_batches.to(device) -val_batches = val_batches.to(device) - -batch_size = args.seq_len_in -train_batches_cumsum = np.cumsum(np.array(train_split) // batch_size) -val_batches_cumsum = np.cumsum(np.array(val_split) // batch_size) - -seq_len_in = args.seq_len_in -seq_len_out = args.seq_len_out -n_joints = batches.size(2) -dims = batches.size(3) - -hidden_dim = args.hidden_dim -edge_types = args.edge_types - -tau = args.tau -hard = args.hard -dropout = args.dropout -out_var = args.var - -if args.prior: - if args.edge_types == 2: - prior = [0.7, 0.3] - elif args.edge_types == 3: - prior = [0.4, 0.3, 0.3] - elif args.edge_types == 4: - prior = [0.35, 0.25, 0.15, 0.25] - elif args.edge_types == 5: - prior = [0.3, 0.2, 0.2, 0.1, 0.2] - - log_prior = torch.FloatTensor(np.log(prior)).unsqueeze(0).unsqueeze(0).to(device) - -epochs = args.epochs -lr = args.lr -lr_cycle = args.lr_cycle -gamma = args.gamma - -loss_mode = args.loss_mode -save_path = args.save_path -load_path = args.load_path - -model = nri_vae(device, n_joints, edge_index_t, seq_len_in*dims, hidden_dim, edge_types, seq_len_out*int(dims/2), \ - tau, hard, dropout, dims, args.compact_encoder, args.recurrent_encoder, args.recurrent_decoder) - -optimizer = optim.Adam(model.parameters(), lr=lr) -scheduler = lr_scheduler.StepLR(optimizer, step_size=args.lr_cycle, gamma=args.gamma) -# scheduler = lr_scheduler.CyclicLR(optimizer, base_lr=lr/5, max_lr=lr, step_size_up=lr_cycle, mode='triangular', cycle_momentum=False) - -if args.param_count: - # Counting number of trainable parameters to compare to the dataset size - print('######## Total number of trainable parameters: {} ########\n'.format(sum(p.numel() for p in model.parameters() if p.requires_grad))) - - for n, p in model.named_parameters(): - if p.requires_grad: - print('Layer {} has {} trainbale parameters'.format(n, p.numel())) - -# Initializing lists to save losses across iterations -kl_train = [] -recon_train = [] -loss_train = [] -kl_val = [] -recon_val = [] -loss_val = [] - -# Initializing variables to save best model -best_val_loss = torch.inf -best_epoch = 0 - -# Training loop -for epoch in tqdm(range(epochs), desc='Training Epochs'): - # Beta coefficient to handle KL-Divergence vanishing gradients and balance reconstruction loss - beta = epoch % int(epochs*0.2) / (epochs*0.2) - - kl_aux, recon_aux, loss_aux = model_iteration(model, optimizer, scheduler, train_batches, \ - train_batches_cumsum, beta, args.frame_gap, args.dataset_multiplier, \ - 'train', loss_mode) - - kl_train.append(torch.mean(kl_aux)) - recon_train.append(torch.mean(recon_aux)) - loss_train.append(torch.mean(loss_aux)) - - kl_aux, recon_aux, loss_aux = model_iteration(model, optimizer, scheduler, val_batches, \ - val_batches_cumsum, beta, args.frame_gap, args.dataset_multiplier, \ - 'val', loss_mode, save_path) - - kl_val.append(torch.mean(kl_aux)) - recon_val.append(torch.mean(recon_aux)) - loss_val.append(torch.mean(loss_aux)) - -print("Optimization Finished!") - -if len(args.visual) > 0: - fig = plt.figure(figsize=(12, 6)) - - # Plotting training losses - ax1 = fig.add_subplot(231) - ax1.plot(kl_train, color='blue') - - ax1 = fig.add_subplot(232) - ax1.plot(recon_train, color='blue') - - ax1 = fig.add_subplot(233) - ax1.plot(loss_train, color='blue') - - # Plotting validation losses - ax1 = fig.add_subplot(234) - ax1.plot(kl_val, color='orange') - - ax1 = fig.add_subplot(235) - ax1.plot(recon_val, color='orange') - - ax1 = fig.add_subplot(236) - ax1.plot(loss_val, color='orange') - - # Adding column labels - fig.text(0.22, 0.96, 'KL Divergence', ha='center', fontsize=14) - fig.text(0.53, 0.96, 'Reconstruction Loss', ha='center', fontsize=14) - fig.text(0.85, 0.96, 'Combined Loss', ha='center', fontsize=14) - - # Adding row labels - fig.text(0.02, 0.73, 'Training', va='center', rotation='vertical', fontsize=14) - fig.text(0.02, 0.30, 'Validation', va='center', rotation='vertical', fontsize=14) - - plt.tight_layout(rect=[0.05, 0.05, 1, 0.95]) - plt.savefig(args.visual) \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/train_nri_param_grid.sh b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/train_nri_param_grid.sh deleted file mode 100644 index 56d3bc7..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/train_nri_param_grid.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -#SBATCH --job-name=param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse -#SBATCH --time=32:00:00 -#SBATCH --constraint=gpu -#SBATCH --gpus=1 -#SBATCH --qos=shared -#SBATCH --account= -#SBATCH --output=param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.out - -# Loading modules, activating environment and navigating to script directory -module load conda -mamba activate ai_choreo -cd //models/ - -# Running job -srun python train_nri.py --n-sample-dancers 5 --dataset-multiplier 10 --compact-encoder --seq-len-in 8 --seq-len-out 1 --hidden-dim 64 --edge-types 4 --epochs 20 --lr 0.0003 --lr-cycle 5 --loss-mode mse --save-path best_weights/nri_parameters_param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.pt --visual assets/param_grid_n-sample-dancers_5_dataset-multiplier_10_compact-encoder_True_recurrent-encoder_False_seq-len-in_8_seq-len-out_1_hidden-dim_64_edge-types_4_epochs_20_lr_0.0003_lr-cycle_5_loss-mode_mse.png diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/utils.py b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/utils.py deleted file mode 100644 index cd16623..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/models/utils.py +++ /dev/null @@ -1,151 +0,0 @@ -import torch -import torch.nn as nn -import torch.nn.functional as F - -import matplotlib.pyplot as plt -from matplotlib.animation import FuncAnimation - -#### General auxiliar functions #### -# Animation function -def animation(sequence, skeleton, n_joints, interval=100): - fig = plt.figure(figsize=(16, 12)) - - ax = fig.add_subplot(111, projection="3d") - ax.set_xlim([-1, 1]) - ax.set_ylim([-1, 1]) - ax.set_zlim([-1, 1]) - ax.set_xticks([]) - ax.set_yticks([]) - ax.set_zticks([]) - - ms = 70 - scatt1 = ax.scatter([], [], [], color='red', s=ms) - scatt2 = ax.scatter([], [], [], color='blue', s=ms) - - lw = 4 - lines = [ax.plot([], [], [], 'gray', linewidth=lw)[0] for _ in skeleton] - - sequence_x = sequence[:, :, 2] - sequence_y = sequence[:, :, 0] - sequence_z = -sequence[:, :, 1] - - def update(frame): - - scatt1._offsets3d = (sequence_x[frame, :n_joints], sequence_y[frame, :n_joints], sequence_z[frame, :n_joints]) - scatt2._offsets3d = (sequence_x[frame, n_joints:], sequence_y[frame, n_joints:], sequence_z[frame, n_joints:]) - - for line, (start, end) in zip(lines, skeleton): - line.set_data([sequence_x[frame, start], sequence_x[frame, end]], [sequence_y[frame, start], sequence_y[frame, end]]) - line.set_3d_properties([sequence_z[frame, start], sequence_z[frame, end]]) - - return scatt1, scatt2, *lines - - plt.close(fig) - return FuncAnimation(fig, update, frames=range(len(sequence_x)), interval=interval, blit=False) - - -# Defining velocity function -def compute_velocities(data, frame_gap=2): - velocities = data[frame_gap:] - data[:-frame_gap] - - # Repeating velocity for final frames - padding = velocities[-1, :, :].repeat(frame_gap, 1, 1) - - velocities = torch.cat((velocities, padding), dim=0) - - # Fixing velocity configuration - velocities = velocities[:, :, [2, 0, 1]] - velocities[:, :, 2] = -velocities[:, :, 2] - - return velocities - - -########## REMOVED PIECE OF CODE. NOW WE IMPLEMENT ROTATION WITHIN BATCH PROCESSING AND ONLY ALONG Z-AXIS ########## -# # Rotation along X-axis function -# def rotation_matrix_x(angle): -# c, s = np.cos(angle), np.sin(angle) - -# return np.array([[1, 0, 0], -# [0, c, -s], -# [0, s, c]]) - -# # Rotation along Y-axis function -# def rotation_matrix_y(angle): -# c, s = np.cos(angle), np.sin(angle) - -# return np.array([[c, 0, s], -# [0, 1, 0], -# [-s, 0, c]]) - -# # Computing final rotation matrix -# def rotate_points(points, angle_x, angle_y, angle_z): -# Rx = rotation_matrix_x(angle_x) -# Ry = rotation_matrix_y(angle_y) -# Rz = rotation_matrix_z(angle_z) - -# rotation_matrix = Rz @ Ry @ Rx -# rotated_points = points @ rotation_matrix.T - -# return rotated_points - -# Rotation along Z-axis function -def rotation_matrix_z(angle): - c, s = torch.cos(angle), torch.sin(angle) - - return torch.tensor([[c, -s, 0], - [s, c, 0], - [0, 0, 1]], dtype=torch.float32) - - -#### NRI auxiliar functions #### -# Creating message passing matrices for receivers and senders - shape R^(E x N) -def message_passing_matrices(n_joints, edge_index): - message_passing_in = torch.zeros((edge_index.size(1), n_joints)) - message_passing_out = torch.zeros((edge_index.size(1), n_joints)) - - # Vectorizing message_passing matrices creation - edge_indices = torch.arange(edge_index.size(1)) - message_passing_out[edge_indices, edge_index[0]] = 1. - message_passing_in[edge_indices, edge_index[1]] = 1. - - return message_passing_in, message_passing_out - - -# NRI VAE auxiliar functions to change between nodes and edges -def node2edge(x, m_in, m_out): - receivers = torch.matmul(m_in, x) - senders = torch.matmul(m_out, x) - edges = torch.cat([senders, receivers], dim=1) - - return edges - - -def edge2node(x, m_in): - incoming = torch.matmul(m_in.t(), x) - - return incoming / incoming.size(0) - - -# Gumbel-Softmax sampling function to allow for backpropagation with categorical distributions -def gumbel_softmax_sample(logits, temp, hard=False): - y = F.gumbel_softmax(logits, tau=temp, hard=hard) - - return y - - -# Computing KL Divergence for categorical distribution -def gumbel_softmax_kl_divergence(logits, log_prior, batch_size): - q_y = F.softmax(logits, dim=-1) - kl_div = q_y * (F.log_softmax(logits, dim=-1) - log_prior) - - # Normalizing by the batch size and number of edges - return kl_div.sum() / (batch_size * logits.size(0)) - - -# Gaussian NLL loss -def nll_gaussian_loss(reduction='mean'): - return nn.GaussianNLLLoss(reduction=reduction) - -# MSE loss -def mse_loss(reduction='mean'): - return nn.MSELoss(reduction=reduction) \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/3d_pose_extraction/test/test-results.json b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/3d_pose_extraction/test/test-results.json deleted file mode 100644 index 39590f6..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/3d_pose_extraction/test/test-results.json +++ /dev/null @@ -1 +0,0 @@ -[{"image_id": "0.jpg", "category_id": 1, "keypoints": [1251.7725830078125, 475.9905700683594, 0.9839587211608887, 1263.954833984375, 506.9879455566406, 0.9887195229530334, 1234.934814453125, 504.0810241699219, 0.9847369194030762, 1265.852783203125, 438.66375732421875, 0.9932762384414673, 1251.55322265625, 649.37353515625, 0.9736180901527405, 1207.8558349609375, 638.2621459960938, 0.9887475371360779, 1268.8516845703125, 387.6694030761719, 0.9858587384223938, 1252.3768310546875, 789.1265869140625, 0.920722484588623, 1210.3619384765625, 776.1981811523438, 0.9255747199058533, 1262.81982421875, 369.41094970703125, 0.9897598624229431, 1238.4775390625, 813.9207763671875, 0.9031921029090881, 1184.4410400390625, 791.9677734375, 0.9215022325515747, 1272.7777099609375, 285.44146728515625, 0.9850541949272156, 1285.0943603515625, 319.87286376953125, 0.9882110357284546, 1259.673583984375, 321.0263366699219, 0.9915054440498352, 1266.109130859375, 262.2662048339844, 0.9568984508514404, 1293.216796875, 301.68817138671875, 0.9695874452590942, 1243.30419921875, 309.1753845214844, 0.9842640161514282, 1221.858154296875, 211.41680908203125, 0.9561107158660889, 1190.327880859375, 322.04132080078125, 0.9675610065460205, 1183.9569091796875, 131.92364501953125, 0.9835487008094788, 1149.5103759765625, 215.45135498046875, 0.9756121635437012, 1180.2100830078125, 103.85916137695312, 0.9694328904151917, 1139.678466796875, 141.48245239257812, 0.9617632031440735, 1283.937744140625, 204.21653747558594, 0.9324880242347717, 1165.1439208984375, 50.82427978515625, 0.9442449808120728, 1136.7652587890625, 86.4405517578125, 0.9395195245742798, 1230.2724609375, 812.3458251953125, 0.8804076313972473, 1167.6427001953125, 791.0120239257812, 0.9401923418045044], "score": 3.141796112060547, "box": [1084.9029541015625, 65.66089630126953, 231.8145751953125, 758.535270690918], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02830643765628338, 0.09688099473714828, -0.05213220790028572], [-0.04562801867723465, 0.08295312523841858, 0.0587054006755352], [0.03437379002571106, -0.09995464980602264, 0.013722613453865051], [-0.0040627773851156235, 0.48486173152923584, -0.034624624997377396], [-0.11572186648845673, 0.46255290508270264, 0.14881478250026703], [0.0425451323390007, -0.23049764335155487, 0.01982690393924713], [0.0042358022183179855, 0.8899752497673035, 0.040633510798215866], [-0.0984618216753006, 0.8433800339698792, 0.30446404218673706], [0.02452000416815281, -0.28303784132003784, 0.01294006034731865], [-0.062484610825777054, 1.0028644800186157, 0.011178586632013321], [-0.21126723289489746, 0.9085436463356018, 0.2714419364929199], [0.06197959557175636, -0.49128252267837524, 0.035333871841430664], [0.08729483932256699, -0.4014318585395813, -0.038851454854011536], [0.028194954618811607, -0.3973326086997986, 0.10017538070678711], [0.03787238150835037, -0.5694831609725952, 0.019937120378017426], [0.10427065938711166, -0.44982683658599854, -0.11464041471481323], [-0.008752288296818733, -0.4336373209953308, 0.181367427110672], [-0.0609842874109745, -0.6437007784843445, -0.1998419165611267], [-0.2532481253147125, -0.37746620178222656, 0.25470149517059326], [-0.15428949892520905, -0.8610004782676697, -0.1086897999048233], [-0.34862038493156433, -0.6171412467956543, 0.21231335401535034], [-0.16296328604221344, -0.9409016966819763, -0.08217193186283112], [-0.3604126274585724, -0.7000337243080139, 0.1999891847372055]]}, {"image_id": "0.jpg", "category_id": 1, "keypoints": [1144.41943359375, 458.09820556640625, 0.9789629578590393, 1153.286865234375, 488.6859436035156, 0.990050733089447, 1134.4688720703125, 487.298095703125, 0.9837681651115417, 1151.874267578125, 418.5188903808594, 0.99314945936203, 1149.8363037109375, 624.148193359375, 0.9866608381271362, 1122.6021728515625, 617.0771484375, 0.9871765375137329, 1157.4298095703125, 370.63128662109375, 0.9886327385902405, 1148.81982421875, 759.6380615234375, 0.9585340619087219, 1122.9580078125, 746.8004150390625, 0.9185957312583923, 1157.265380859375, 353.1444091796875, 0.9931257367134094, 1131.6717529296875, 785.533935546875, 0.807762622833252, 1093.5977783203125, 770.2244873046875, 0.9361754059791565, 1173.307373046875, 284.08935546875, 0.9901408553123474, 1178.189208984375, 315.4903564453125, 0.9888915419578552, 1155.7518310546875, 315.01043701171875, 0.991078794002533, 1180.015625, 262.2332763671875, 0.9630945920944214, 1185.5372314453125, 298.6199951171875, 0.9733773469924927, 1142.447021484375, 291.34136962890625, 0.9900799989700317, 1210.9393310546875, 204.35992431640625, 0.9317252039909363, 1118.1163330078125, 202.64590454101562, 0.962768018245697, 1178.40234375, 127.08941650390625, 0.9719927310943604, 1143.560791015625, 121.636962890625, 0.959507942199707, 1175.7283935546875, 102.0345458984375, 0.9526887536048889, 1152.2783203125, 93.63165283203125, 0.9390239119529724, 1258.4744873046875, 223.49472045898438, 0.9267856478691101, 1176.11474609375, 43.003173828125, 0.9513519406318665, 1164.4959716796875, 56.49090576171875, 0.913392186164856, 1113.016845703125, 783.87353515625, 0.8522986173629761, 1081.6641845703125, 772.7152099609375, 0.9385847449302673], "score": 2.8631625175476074, "box": [1063.7745361328125, 61.409088134765625, 165.8096923828125, 775.9419860839844], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03335944563150406, 0.09542214125394821, -0.04998527467250824], [-0.02877921238541603, 0.08318784832954407, 0.06692235171794891], [0.023872025310993195, -0.10360193252563477, 0.005085529759526253], [0.02731017768383026, 0.4731360077857971, 0.020513392984867096], [-0.05812191590666771, 0.45753583312034607, 0.17605829238891602], [0.03381805121898651, -0.23421138525009155, -0.010786538943648338], [0.030844949185848236, 0.8579745292663574, 0.14825136959552765], [-0.05163268744945526, 0.8423178195953369, 0.3028236925601959], [0.032520730048418045, -0.2882463335990906, -0.025805186480283737], [-0.032831404358148575, 0.9434733986854553, 0.06823824346065521], [-0.1550028771162033, 0.9225490689277649, 0.27764061093330383], [0.07869908213615417, -0.4946460723876953, -0.04330190271139145], [0.10651277750730515, -0.39023512601852417, -0.09387926757335663], [0.03296705707907677, -0.4179280996322632, 0.03547066077589989], [0.09865671396255493, -0.5644416213035583, -0.08447016775608063], [0.12658847868442535, -0.4416767358779907, -0.1672135591506958], [-0.011351404711604118, -0.5003854632377625, 0.0593651719391346], [0.19307094812393188, -0.6947011351585388, -0.20746347308158875], [-0.08040830492973328, -0.7288910746574402, -0.03697676584124565], [0.09935570508241653, -0.9247121214866638, -0.17716191709041595], [-0.004112096503376961, -0.9731267094612122, -0.06729529052972794], [0.09232980012893677, -1.005291223526001, -0.15444403886795044], [0.020750461146235466, -1.0525214672088623, -0.05674797296524048]]}, {"image_id": "1.jpg", "category_id": 1, "keypoints": [1268.10302734375, 480.4679870605469, 0.9796820282936096, 1280.1500244140625, 508.47491455078125, 0.9860328435897827, 1257.585205078125, 510.73193359375, 0.9811975359916687, 1277.4766845703125, 443.7882995605469, 0.9924840331077576, 1271.2921142578125, 660.21875, 0.9738985896110535, 1254.497802734375, 653.173583984375, 0.9823212623596191, 1275.5089111328125, 393.2230224609375, 0.9841683506965637, 1270.551513671875, 800.9108276367188, 0.8566641807556152, 1266.7269287109375, 791.62158203125, 0.9114140272140503, 1268.3660888671875, 374.53948974609375, 0.9890561699867249, 1259.7725830078125, 823.3369140625, 0.8498550653457642, 1250.7435302734375, 812.211181640625, 0.9129030704498291, 1278.3148193359375, 293.88525390625, 0.9865366220474243, 1287.8140869140625, 325.10028076171875, 0.9858216643333435, 1265.5948486328125, 330.90106201171875, 0.9918391108512878, 1271.4373779296875, 269.144775390625, 0.9675975441932678, 1289.9892578125, 304.4706115722656, 0.9432186484336853, 1247.4774169921875, 320.47174072265625, 0.9871650338172913, 1224.748779296875, 214.58926391601562, 0.9524160027503967, 1196.10595703125, 351.857421875, 0.973088264465332, 1180.340576171875, 132.28805541992188, 0.9818989038467407, 1143.099609375, 185.08734130859375, 0.9534358978271484, 1175.770751953125, 106.0560302734375, 0.9745044708251953, 1139.9766845703125, 121.934814453125, 0.9422722458839417, 1297.5916748046875, 206.40184020996094, 0.9426857829093933, 1167.6390380859375, 48.05523681640625, 0.8986085057258606, 1139.63720703125, 74.66006469726562, 0.9463000297546387, 1253.10107421875, 820.8088989257812, 0.817878007888794, 1240.8182373046875, 812.2667236328125, 0.8946836590766907], "score": 3.1481032371520996, "box": [1103.8221435546875, 69.52446746826172, 233.3114013671875, 769.6108474731445], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.027307137846946716, 0.0866311565041542, -0.0675477609038353], [-0.02584139071404934, 0.09297425299882889, 0.054801881313323975], [0.026075974106788635, -0.10041987895965576, 0.019554268568754196], [0.004669925197958946, 0.4775114059448242, -0.06541737914085388], [-0.026875104755163193, 0.4798722267150879, 0.1478423774242401], [0.022159839048981667, -0.2293928563594818, 0.03245646506547928], [0.005530087277293205, 0.8894410133361816, -0.028932761400938034], [0.015822049230337143, 0.8787449598312378, 0.2464456558227539], [0.0021136885043233633, -0.280809223651886, 0.028519395738840103], [-0.053321924060583115, 1.0098577737808228, -0.037331752479076385], [-0.06711038947105408, 0.9814038276672363, 0.2221967577934265], [0.03382745012640953, -0.4885881841182709, 0.052840396761894226], [0.055903006345033646, -0.4017987549304962, -0.024726074188947678], [0.009287172928452492, -0.3925638496875763, 0.11727248877286911], [0.010289490222930908, -0.5651851892471313, 0.031020663678646088], [0.05499707907438278, -0.4516738951206207, -0.10064535588026047], [-0.03413369134068489, -0.4255935847759247, 0.19569265842437744], [-0.10286425799131393, -0.6544104814529419, -0.1809508204460144], [-0.24781446158885956, -0.2959572970867157, 0.2739095091819763], [-0.21486705541610718, -0.8745776414871216, -0.12296327203512192], [-0.3292792737483978, -0.5395418405532837, 0.22255107760429382], [-0.22848905622959137, -0.957229733467102, -0.11294520646333694], [-0.33432161808013916, -0.6217672824859619, 0.20426896214485168]]}, {"image_id": "1.jpg", "category_id": 1, "keypoints": [1141.21044921875, 458.1677551269531, 0.9773203134536743, 1145.4659423828125, 489.0599670410156, 0.9883735179901123, 1134.6131591796875, 488.2189025878906, 0.9850412607192993, 1149.1236572265625, 420.0346984863281, 0.9928638339042664, 1143.3681640625, 625.66796875, 0.9855473637580872, 1126.368408203125, 618.5811767578125, 0.9882001876831055, 1154.5050048828125, 373.58148193359375, 0.9882760047912598, 1145.8260498046875, 763.25390625, 0.946495771408081, 1125.782470703125, 748.1066284179688, 0.9356856346130371, 1153.6988525390625, 355.5972900390625, 0.9905973672866821, 1129.717529296875, 788.7610473632812, 0.8155413866043091, 1095.651611328125, 772.8386840820312, 0.939680278301239, 1166.041015625, 285.4041442871094, 0.9888482689857483, 1166.8555908203125, 312.4229736328125, 0.9897423386573792, 1157.5250244140625, 320.54095458984375, 0.9920149445533752, 1166.368408203125, 262.446044921875, 0.959388792514801, 1167.286865234375, 291.67138671875, 0.9752343893051147, 1150.73779296875, 302.23382568359375, 0.9905523657798767, 1153.7327880859375, 201.45535278320312, 0.9589062333106995, 1147.7635498046875, 194.3046875, 0.9673042893409729, 1164.21142578125, 125.51889038085938, 0.9695689678192139, 1151.4921875, 120.2720947265625, 0.952998161315918, 1166.3101806640625, 97.97567749023438, 0.9480580687522888, 1159.6341552734375, 89.71630859375, 0.9416121244430542, 1216.0379638671875, 218.57545471191406, 0.9360695481300354, 1175.222412109375, 38.554229736328125, 0.9393067359924316, 1168.7093505859375, 57.937591552734375, 0.9310075044631958, 1111.640380859375, 786.083984375, 0.8450667262077332, 1081.13037109375, 774.0584106445312, 0.9361656904220581], "score": 2.932037353515625, "box": [1064.062255859375, 73.79964447021484, 160.177001953125, 756.3960342407227], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.020061999559402466, 0.0948447659611702, -0.058822404593229294], [-0.017947757616639137, 0.08530128002166748, 0.0690721869468689], [0.027910731732845306, -0.10329340398311615, 0.0035206861793994904], [0.01701732911169529, 0.47652220726013184, -0.0024986006319522858], [-0.036873359233140945, 0.46280384063720703, 0.17575831711292267], [0.042903341352939606, -0.23440800607204437, -0.0006127525120973587], [0.029560985043644905, 0.8684532046318054, 0.11006602644920349], [-0.03298433870077133, 0.8508172631263733, 0.3007937967777252], [0.03987320885062218, -0.2897816300392151, -0.010635623708367348], [-0.03461732342839241, 0.9597159624099731, 0.03612479194998741], [-0.1365700513124466, 0.9346601963043213, 0.2881043255329132], [0.06411920487880707, -0.5012568831443787, -0.020129840821027756], [0.08026096969842911, -0.40413451194763184, -0.08819805085659027], [0.05228675156831741, -0.4142758846282959, 0.060929398983716965], [0.06322844326496124, -0.5765144228935242, -0.055964820086956024], [0.0775994062423706, -0.4628141522407532, -0.15911711752414703], [0.03027205541729927, -0.4861157536506653, 0.12210969626903534], [0.03510294854640961, -0.7180824875831604, -0.22170595824718475], [0.01828697696328163, -0.7240269184112549, 0.020478855818510056], [0.07016070187091827, -0.9665102362632751, -0.2021949291229248], [0.028566550463438034, -0.9773196578025818, -0.03323446959257126], [0.07723793387413025, -1.0488916635513306, -0.1850893199443817], [0.05019572377204895, -1.058750867843628, -0.03644810616970062]]}, {"image_id": "2.jpg", "category_id": 1, "keypoints": [1142.648193359375, 459.638671875, 0.9772181510925293, 1140.974365234375, 490.2178955078125, 0.987147867679596, 1140.9927978515625, 491.2900085449219, 0.9847492575645447, 1152.109375, 421.4304504394531, 0.9919368028640747, 1138.593505859375, 632.3146362304688, 0.9745237231254578, 1121.4915771484375, 619.5103759765625, 0.9895960688591003, 1157.0084228515625, 375.05242919921875, 0.9876028895378113, 1148.100341796875, 764.1358642578125, 0.9364493489265442, 1121.3397216796875, 746.0040283203125, 0.9382616877555847, 1154.110595703125, 356.6968688964844, 0.990025520324707, 1128.4603271484375, 789.4258422851562, 0.8607814908027649, 1083.401611328125, 768.116943359375, 0.9312639236450195, 1172.9927978515625, 283.810546875, 0.9881065487861633, 1160.5091552734375, 312.7095947265625, 0.9877210259437561, 1173.1650390625, 319.63812255859375, 0.9895482659339905, 1169.7669677734375, 259.9793701171875, 0.9556469321250916, 1150.2423095703125, 291.3931579589844, 0.9732995629310608, 1179.643310546875, 302.2002868652344, 0.9887548089027405, 1105.716064453125, 198.0861358642578, 0.9462563991546631, 1192.5140380859375, 223.8554229736328, 0.947939932346344, 1142.1317138671875, 121.40704345703125, 0.9769745469093323, 1169.084716796875, 122.260498046875, 0.9668471813201904, 1154.037109375, 91.34619140625, 0.9737903475761414, 1171.387939453125, 94.83502197265625, 0.925308346748352, 1231.578125, 212.97360229492188, 0.8954027891159058, 1173.3916015625, 43.97686767578125, 0.9229333996772766, 1177.06396484375, 64.8746337890625, 0.9496724009513855, 1103.0555419921875, 784.728515625, 0.9199448227882385, 1067.8028564453125, 768.3621826171875, 0.9110243916511536], "score": 3.1274399757385254, "box": [1063.440673828125, 87.69917297363281, 161.361328125, 727.6256561279297], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.004630349576473236, 0.09388578683137894, -0.06261403858661652], [0.0031600352376699448, 0.08573640882968903, 0.07005941867828369], [0.031351663172245026, -0.10194031894207001, -0.0052549224346876144], [-0.00839356891810894, 0.47431790828704834, -0.011119842529296875], [-0.04686342924833298, 0.4537368416786194, 0.19176368415355682], [0.044783253222703934, -0.23326580226421356, -0.013967160135507584], [0.02562379464507103, 0.8547554016113281, 0.1248585432767868], [-0.04161061346530914, 0.8388655185699463, 0.3174247741699219], [0.035780660808086395, -0.2886853814125061, -0.018004706129431725], [-0.05301448330283165, 0.9492319226264954, 0.07317426800727844], [-0.15633700788021088, 0.9063737392425537, 0.3249813914299011], [0.08486570417881012, -0.49432456493377686, -0.04032372683286667], [0.04875795543193817, -0.4012605547904968, -0.1060984879732132], [0.10201389342546463, -0.40424883365631104, 0.03601096197962761], [0.07242929190397263, -0.5722711086273193, -0.06736713647842407], [0.017391670495271683, -0.4539596438407898, -0.17468895018100739], [0.12743981182575226, -0.46569007635116577, 0.10637062788009644], [-0.09790526330471039, -0.6906905770301819, -0.2014717310667038], [0.16769713163375854, -0.7186209559440613, 0.08088868856430054], [0.004522040020674467, -0.9070873856544495, -0.12854725122451782], [0.10676571726799011, -0.9634708762168884, 0.02894490957260132], [0.03547964617609978, -0.9852219223976135, -0.12575504183769226], [0.112278051674366, -1.0434907674789429, 0.004282224923372269]]}, {"image_id": "2.jpg", "category_id": 1, "keypoints": [1270.1785888671875, 478.7078552246094, 0.9778071641921997, 1280.239013671875, 507.3097839355469, 0.9863007068634033, 1260.3746337890625, 510.47869873046875, 0.9820440411567688, 1279.50439453125, 441.56475830078125, 0.9930310845375061, 1270.1038818359375, 666.170654296875, 0.971007227897644, 1252.7791748046875, 662.0698852539062, 0.9791260957717896, 1277.03515625, 391.1759338378906, 0.9830662608146667, 1271.2923583984375, 810.2408447265625, 0.8546684384346008, 1263.6947021484375, 799.0269775390625, 0.9054768085479736, 1268.850341796875, 372.48382568359375, 0.9884320497512817, 1262.7208251953125, 837.3013305664062, 0.8733038902282715, 1250.9471435546875, 821.659423828125, 0.9218603372573853, 1276.1978759765625, 293.2673034667969, 0.9851974248886108, 1287.6680908203125, 322.3382568359375, 0.9850109219551086, 1264.9559326171875, 330.91571044921875, 0.9917579293251038, 1267.8984375, 267.8700866699219, 0.9672927856445312, 1290.65966796875, 302.2274169921875, 0.9416466951370239, 1245.6268310546875, 322.48406982421875, 0.9872341156005859, 1225.9576416015625, 211.89773559570312, 0.9539722204208374, 1195.6820068359375, 363.44378662109375, 0.9744813442230225, 1180.88330078125, 129.906005859375, 0.9812086224555969, 1145.498779296875, 234.59230041503906, 0.9614086747169495, 1175.580078125, 102.90719604492188, 0.9757572412490845, 1140.682861328125, 156.71063232421875, 0.9470105171203613, 1292.8360595703125, 206.9956512451172, 0.939174234867096, 1167.9208984375, 49.39361572265625, 0.9159754514694214, 1138.6644287109375, 85.8255615234375, 0.949739396572113, 1254.6932373046875, 832.6263427734375, 0.851715624332428, 1242.15087890625, 823.7618408203125, 0.9034730195999146], "score": 2.97269868850708, "box": [1107.9139404296875, 69.82731628417969, 229.679931640625, 768.6060333251953], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02300754375755787, 0.0838695541024208, -0.0727897584438324], [-0.023769831284880638, 0.09529640525579453, 0.05214623734354973], [0.028096243739128113, -0.09958617389202118, 0.022579271346330643], [-0.0013353165704756975, 0.4745767116546631, -0.06590443104505539], [-0.03709776699542999, 0.4853372573852539, 0.1301829218864441], [0.02336539514362812, -0.2280506044626236, 0.04068012163043022], [0.005072268657386303, 0.8867399096488953, -0.029385242611169815], [0.001989691285416484, 0.885755717754364, 0.2252994328737259], [0.0009320087265223265, -0.2787429094314575, 0.038358017802238464], [-0.034417178481817245, 1.0148370265960693, -0.019112884998321533], [-0.06473121047019958, 1.0018447637557983, 0.21416394412517548], [0.02410796284675598, -0.48681187629699707, 0.07199089229106903], [0.050032682716846466, -0.40437376499176025, -0.009445257484912872], [0.0031212016474455595, -0.3869589567184448, 0.13223911821842194], [-0.0028583083767443895, -0.5610503554344177, 0.04639657959342003], [0.05140076205134392, -0.4539739489555359, -0.08582888543605804], [-0.042676880955696106, -0.41419321298599243, 0.21184231340885162], [-0.10492037981748581, -0.6564804911613464, -0.17024408280849457], [-0.2380388081073761, -0.25366920232772827, 0.2808628976345062], [-0.21539708971977234, -0.8732264637947083, -0.09727822244167328], [-0.33492517471313477, -0.4927247166633606, 0.2342347949743271], [-0.23119616508483887, -0.9560442566871643, -0.09144681692123413], [-0.3406820297241211, -0.5763755440711975, 0.22351111471652985]]}, {"image_id": "3.jpg", "category_id": 1, "keypoints": [1140.7822265625, 457.80499267578125, 0.975212037563324, 1140.2828369140625, 488.9184265136719, 0.9881142377853394, 1138.3685302734375, 488.65643310546875, 0.9835817217826843, 1150.1124267578125, 419.65692138671875, 0.9926291704177856, 1138.0269775390625, 629.0103759765625, 0.9759393334388733, 1118.6341552734375, 617.04541015625, 0.9898104071617126, 1153.92431640625, 373.5869445800781, 0.9854558110237122, 1147.4696044921875, 758.58251953125, 0.9425861239433289, 1119.2945556640625, 740.718017578125, 0.9374862909317017, 1151.1448974609375, 355.7307434082031, 0.9889753460884094, 1131.198974609375, 787.060302734375, 0.8458121418952942, 1079.810546875, 766.6708984375, 0.9321936964988708, 1167.6600341796875, 283.2261962890625, 0.9881585836410522, 1155.822021484375, 311.45281982421875, 0.9851222038269043, 1169.74951171875, 320.23974609375, 0.9911596179008484, 1163.4327392578125, 260.51470947265625, 0.954369843006134, 1144.9681396484375, 289.305908203125, 0.9754756689071655, 1176.64599609375, 303.54205322265625, 0.987994909286499, 1105.8214111328125, 196.44876098632812, 0.951682984828949, 1185.486572265625, 227.96755981445312, 0.9550107717514038, 1147.4296875, 121.62350463867188, 0.9810883402824402, 1164.30322265625, 123.68826293945312, 0.968423068523407, 1159.2315673828125, 91.9302978515625, 0.9744030237197876, 1167.221435546875, 96.47451782226562, 0.9163259267807007, 1215.141357421875, 211.97474670410156, 0.910566508769989, 1179.0579833984375, 45.266510009765625, 0.9008291959762573, 1178.4881591796875, 65.00189208984375, 0.9481424689292908, 1106.292724609375, 785.443115234375, 0.9045693278312683, 1068.649658203125, 769.7506103515625, 0.923550546169281], "score": 3.1615617275238037, "box": [1061.902587890625, 93.38064575195312, 161.87109375, 721.4734802246094], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0004085741238668561, 0.09362750500440598, -0.06273980438709259], [-0.0002316730096936226, 0.08568328619003296, 0.06980724632740021], [0.03068716824054718, -0.10180535912513733, -0.003298141062259674], [-0.003734749276190996, 0.4735162556171417, -0.007945351302623749], [-0.051430199295282364, 0.4552502930164337, 0.1856701821088791], [0.034477245062589645, -0.23355510830879211, -0.011054295115172863], [0.030654463917016983, 0.8523685932159424, 0.13129229843616486], [-0.04349711537361145, 0.8380997180938721, 0.3167803883552551], [0.02567742019891739, -0.2888614237308502, -0.014109233394265175], [-0.030247021466493607, 0.9481717348098755, 0.06176372617483139], [-0.1545063555240631, 0.9096665382385254, 0.3006395101547241], [0.07959715276956558, -0.4933028519153595, -0.028927579522132874], [0.040202073752880096, -0.40416714549064636, -0.09751593321561813], [0.09552807360887527, -0.40006735920906067, 0.0431080162525177], [0.06332718580961227, -0.5716302394866943, -0.05224641412496567], [0.007738966960459948, -0.4585871398448944, -0.1638067662715912], [0.12255194038152695, -0.45970579981803894, 0.11393426358699799], [-0.09613940864801407, -0.7008113861083984, -0.1851547509431839], [0.14962512254714966, -0.7114694118499756, 0.06960684061050415], [0.02006276696920395, -0.911353588104248, -0.11699162423610687], [0.09537146240472794, -0.9575965404510498, 0.017711538821458817], [0.05104617774486542, -0.989274263381958, -0.1148451566696167], [0.10289908200502396, -1.0376392602920532, -0.005581105127930641]]}, {"image_id": "3.jpg", "category_id": 1, "keypoints": [1275.391357421875, 484.3572692871094, 0.9782810211181641, 1286.9580078125, 514.2606201171875, 0.9850690960884094, 1266.5150146484375, 515.5457153320312, 0.978130578994751, 1281.9404296875, 445.6278991699219, 0.9928529262542725, 1275.2900390625, 669.088134765625, 0.9673229455947876, 1254.645263671875, 664.4019775390625, 0.9876102209091187, 1277.9940185546875, 394.3188171386719, 0.9871273040771484, 1277.205078125, 805.1300048828125, 0.8183522820472717, 1266.9853515625, 798.9366455078125, 0.9006395936012268, 1269.0631103515625, 376.1511535644531, 0.988985002040863, 1266.289794921875, 831.402099609375, 0.8756774663925171, 1240.1055908203125, 825.4571533203125, 0.9443594813346863, 1270.9576416015625, 295.0218811035156, 0.9891305565834045, 1285.5723876953125, 325.08941650390625, 0.9834957122802734, 1264.07568359375, 331.4958801269531, 0.9911288022994995, 1261.378173828125, 272.5450134277344, 0.971531867980957, 1290.666259765625, 304.5090637207031, 0.959010660648346, 1243.35205078125, 323.94989013671875, 0.9864258170127869, 1227.171142578125, 219.25332641601562, 0.9599398970603943, 1200.334228515625, 358.50531005859375, 0.9804758429527283, 1184.1510009765625, 142.60287475585938, 0.9795491695404053, 1154.758056640625, 236.39649963378906, 0.9789324402809143, 1180.96240234375, 116.40347290039062, 0.9641643166542053, 1141.7220458984375, 136.365234375, 0.9555595517158508, 1286.0391845703125, 216.7394256591797, 0.9549577236175537, 1179.3612060546875, 53.303802490234375, 0.8492194414138794, 1134.29443359375, 78.46734619140625, 0.9476363658905029, 1253.082763671875, 832.670654296875, 0.8809399008750916, 1226.2535400390625, 833.6273193359375, 0.9118699431419373], "score": 3.0866711139678955, "box": [1147.2177734375, 80.71562957763672, 190.0714111328125, 769.6484451293945], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02919560670852661, 0.08805344998836517, -0.06469348818063736], [-0.018525883555412292, 0.09147369861602783, 0.05987023934721947], [0.021389055997133255, -0.10243575274944305, 0.013972725719213486], [0.002917352830991149, 0.4763280749320984, -0.03020821139216423], [-0.04249504953622818, 0.4786049723625183, 0.14501754939556122], [0.005675787106156349, -0.23121647536754608, 0.010830353945493698], [0.013607420027256012, 0.8844851851463318, 0.029069874435663223], [0.002115033334121108, 0.8725953698158264, 0.2574211359024048], [-0.01914171315729618, -0.28007954359054565, 0.003140609711408615], [-0.0388912558555603, 0.9969322085380554, -0.021761830896139145], [-0.09319252520799637, 0.9623774886131287, 0.22898055613040924], [-0.005244752392172813, -0.49039822816848755, 0.019782651215791702], [0.02428259886801243, -0.40307796001434326, -0.054586347192525864], [-0.021791575476527214, -0.3951396346092224, 0.08771368861198425], [-0.038670603185892105, -0.5633192658424377, -0.0014552511274814606], [0.03141797333955765, -0.453871488571167, -0.1295975297689438], [-0.07416291534900665, -0.4206430912017822, 0.1634553074836731], [-0.1252812296152115, -0.6453758478164673, -0.23412223160266876], [-0.26055118441581726, -0.2705974578857422, 0.2684076130390167], [-0.23580321669578552, -0.8590688109397888, -0.1550152748823166], [-0.3535196781158447, -0.5035194754600525, 0.19481953978538513], [-0.24449145793914795, -0.9409946799278259, -0.13732892274856567], [-0.3650757074356079, -0.5859605073928833, 0.18179039657115936]]}, {"image_id": "3.jpg", "category_id": 1, "keypoints": [1219.556884765625, 475.9743957519531, 0.9823590517044067, 1224.379150390625, 504.9128112792969, 0.987894594669342, 1206.208984375, 505.6734924316406, 0.9853442907333374, 1232.06396484375, 439.131103515625, 0.9940513968467712, 1189.2681884765625, 646.2720947265625, 0.9787427186965942, 1169.4644775390625, 637.3861083984375, 0.9894357323646545, 1236.5572509765625, 385.3889465332031, 0.9908016324043274, 1174.9501953125, 776.6702880859375, 0.9448212385177612, 1160.0621337890625, 766.756591796875, 0.914786696434021, 1232.3834228515625, 366.1561584472656, 0.9916108250617981, 1164.8447265625, 806.2579345703125, 0.9303392171859741, 1132.734619140625, 785.4842529296875, 0.8871017098426819, 1235.72607421875, 285.6841735839844, 0.9858270883560181, 1248.42626953125, 315.9114685058594, 0.9910396337509155, 1225.4656982421875, 320.3952331542969, 0.9932839870452881, 1235.2496337890625, 265.3828430175781, 0.9722134470939636, 1257.4981689453125, 295.98828125, 0.9745722413063049, 1206.9970703125, 309.08880615234375, 0.9907077550888062, 1221.083740234375, 201.38853454589844, 0.9458528161048889, 1164.0517578125, 312.6280212402344, 0.9675200581550598, 1181.7818603515625, 125.94821166992188, 0.9699575304985046, 1134.6717529296875, 145.81057739257812, 0.964301347732544, 1181.3663330078125, 102.63644409179688, 0.9702972769737244, 1140.028076171875, 101.26934814453125, 0.9677996039390564, 1263.662109375, 219.60458374023438, 0.9421294927597046, 1182.80517578125, 44.192291259765625, 0.9385401010513306, 1150.8553466796875, 72.72222900390625, 0.955646276473999, 1156.5416259765625, 805.0343017578125, 0.9281536936759949, 1115.0205078125, 782.443115234375, 0.9405585527420044], "score": 2.4224448204040527, "box": [1075.8701171875, 64.9307861328125, 222.9974365234375, 761.11572265625], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.018361646682024002, 0.09471666067838669, -0.06005582958459854], [-0.03711557388305664, 0.08505257219076157, 0.06174575537443161], [0.03763224184513092, -0.09904235601425171, 0.01231180876493454], [-0.07073494046926498, 0.4694162905216217, -0.002322021871805191], [-0.13459016382694244, 0.456581711769104, 0.15868544578552246], [0.04362268000841141, -0.22920921444892883, 0.022626250982284546], [-0.10307060182094574, 0.8520457148551941, 0.1469564139842987], [-0.1523878127336502, 0.8334608674049377, 0.3233276605606079], [0.030352426692843437, -0.2832300662994385, 0.028680909425020218], [-0.1430710256099701, 0.9498167037963867, 0.06393763422966003], [-0.25296369194984436, 0.8961950540542603, 0.26009371876716614], [0.043982766568660736, -0.4938100576400757, 0.05611288547515869], [0.08029799163341522, -0.4091232419013977, -0.0196211040019989], [0.019762856885790825, -0.395288348197937, 0.11844075471162796], [0.04273327440023422, -0.5763587355613708, 0.06518162041902542], [0.10485456138849258, -0.47008293867111206, -0.08345327526330948], [-0.029726238921284676, -0.4331475496292114, 0.19198936223983765], [0.0057379100471735, -0.7034717798233032, -0.17154371738433838], [-0.2649187445640564, -0.42015963792800903, 0.30487340688705444], [-0.08824045211076736, -0.9095183610916138, -0.05800516903400421], [-0.3122413754463196, -0.6739499568939209, 0.2649014890193939], [-0.08718553930521011, -0.9846934080123901, -0.019170526415109634], [-0.303223580121994, -0.7551751136779785, 0.24299153685569763]]}, {"image_id": "4.jpg", "category_id": 1, "keypoints": [1140.4564208984375, 459.17529296875, 0.9730064868927002, 1134.8515625, 489.07623291015625, 0.9874923229217529, 1141.366943359375, 490.7336730957031, 0.9824537634849548, 1151.3984375, 421.8885803222656, 0.9915035963058472, 1133.9183349609375, 627.4786376953125, 0.9783052802085876, 1122.3056640625, 615.97802734375, 0.9902487993240356, 1156.0384521484375, 377.1573486328125, 0.9895419478416443, 1147.0345458984375, 757.585693359375, 0.9458151459693909, 1124.4404296875, 743.985107421875, 0.9476557970046997, 1153.250732421875, 358.8231201171875, 0.9890956878662109, 1124.345703125, 786.51904296875, 0.8293431997299194, 1082.731201171875, 768.7921142578125, 0.9391335844993591, 1171.842041015625, 286.60906982421875, 0.9876976609230042, 1155.4930419921875, 314.6664123535156, 0.9864212870597839, 1177.1981201171875, 323.2294921875, 0.9910447001457214, 1165.2362060546875, 263.357177734375, 0.9572057127952576, 1143.6500244140625, 292.79345703125, 0.9649080038070679, 1189.3212890625, 309.86492919921875, 0.9843265414237976, 1104.5330810546875, 193.19525146484375, 0.9563303589820862, 1207.9288330078125, 314.1716003417969, 0.9565510749816895, 1148.940185546875, 117.70602416992188, 0.9741336107254028, 1177.3140869140625, 143.22109985351562, 0.9666767120361328, 1161.1810302734375, 90.13394165039062, 0.9727142453193665, 1177.829833984375, 108.50140380859375, 0.940654456615448, 1215.3209228515625, 215.9966278076172, 0.9153754711151123, 1184.4814453125, 43.743988037109375, 0.9348031878471375, 1183.5087890625, 71.20477294921875, 0.9515746235847473, 1102.067626953125, 784.8792724609375, 0.8966436386108398, 1066.9066162109375, 769.8718872070312, 0.918825089931488], "score": 3.145292282104492, "box": [1060.5830078125, 86.16590881347656, 162.6136474609375, 731.7883148193359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.018253467977046967, 0.09157130867242813, -0.06399913877248764], [0.010275512933731079, 0.08841536939144135, 0.06636509299278259], [0.0344909243285656, -0.10093596577644348, -0.0071150995790958405], [-0.017885437235236168, 0.4717867970466614, -0.003970548510551453], [-0.03996067866683006, 0.45745551586151123, 0.18821342289447784], [0.04801835119724274, -0.23232129216194153, -0.009136289358139038], [0.026661520823836327, 0.8564598560333252, 0.12086056172847748], [-0.028665252029895782, 0.8499704599380493, 0.2935960292816162], [0.0396760031580925, -0.28797492384910583, -0.007196497172117233], [-0.053577639162540436, 0.9529365301132202, 0.07506277412176132], [-0.14320266246795654, 0.9185153245925903, 0.2986019253730774], [0.09291598200798035, -0.492838054895401, -0.02889411151409149], [0.04436890780925751, -0.40377458930015564, -0.09220989048480988], [0.11726223677396774, -0.3992052972316742, 0.04095572978258133], [0.06942088156938553, -0.5713446140289307, -0.043894216418266296], [0.00978620070964098, -0.45667126774787903, -0.15907995402812958], [0.1618575155735016, -0.4479183852672577, 0.11170053482055664], [-0.08893146365880966, -0.6994360685348511, -0.20199763774871826], [0.40105554461479187, -0.3992408812046051, 0.19603107869625092], [0.029931403696537018, -0.9038761854171753, -0.11781111359596252], [0.3528982400894165, -0.649878978729248, 0.15549273788928986], [0.06411061435937881, -0.9808646440505981, -0.11906344443559647], [0.3522270917892456, -0.7280625104904175, 0.12452462315559387]]}, {"image_id": "4.jpg", "category_id": 1, "keypoints": [1274.39208984375, 474.3335266113281, 0.9774523377418518, 1287.3162841796875, 503.911865234375, 0.9854874014854431, 1263.322509765625, 504.7776794433594, 0.9751620888710022, 1280.872314453125, 436.6040954589844, 0.9926757216453552, 1273.7757568359375, 650.508544921875, 0.9708350896835327, 1247.5810546875, 644.3509521484375, 0.9847033619880676, 1277.8177490234375, 387.877197265625, 0.9876615405082703, 1276.9700927734375, 792.526123046875, 0.855973482131958, 1267.167236328125, 785.6187744140625, 0.9098612070083618, 1269.331787109375, 369.973876953125, 0.9874975085258484, 1273.37158203125, 821.9765625, 0.8301492929458618, 1243.2738037109375, 812.486083984375, 0.9348005056381226, 1271.9832763671875, 293.48370361328125, 0.9901630282402039, 1286.84423828125, 321.802001953125, 0.9856245517730713, 1263.6715087890625, 328.55242919921875, 0.992662787437439, 1263.85107421875, 272.0653076171875, 0.9708000421524048, 1292.7132568359375, 302.2132568359375, 0.953717827796936, 1243.4903564453125, 321.60589599609375, 0.9885995984077454, 1227.8245849609375, 220.99288940429688, 0.9584370851516724, 1200.456787109375, 367.276611328125, 0.9801794290542603, 1186.3631591796875, 143.96875, 0.9803584218025208, 1158.934814453125, 281.7698059082031, 0.9648093581199646, 1182.374267578125, 117.84121704101562, 0.9631321430206299, 1147.944580078125, 174.20330810546875, 0.9582715630531311, 1290.490234375, 216.93258666992188, 0.9598328471183777, 1179.8717041015625, 53.226226806640625, 0.8636035919189453, 1138.162841796875, 87.52825927734375, 0.9436564445495605, 1262.8189697265625, 822.227294921875, 0.8066377639770508, 1239.8773193359375, 815.51953125, 0.9012938737869263], "score": 3.047159194946289, "box": [1145.6546630859375, 80.07572174072266, 194.4473876953125, 771.6419906616211], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03296815603971481, 0.08793946355581284, -0.06272025406360626], [-0.025280985981225967, 0.09148133546113968, 0.05699044093489647], [0.021904397755861282, -0.101613849401474, 0.01676206663250923], [-0.000347838387824595, 0.47626158595085144, -0.03304356336593628], [-0.06109994277358055, 0.4756492078304291, 0.15149453282356262], [0.009219427593052387, -0.2306067943572998, 0.019813448190689087], [0.017581313848495483, 0.8738170266151428, 0.07573039829730988], [0.0014767678221687675, 0.8657069802284241, 0.26871272921562195], [-0.014837202616035938, -0.2797175347805023, 0.01229141280055046], [-0.002706788945943117, 0.9790559411048889, -0.004742424935102463], [-0.08417973667383194, 0.9536426067352295, 0.21527732908725739], [0.0007629705360159278, -0.4885929226875305, 0.03778572380542755], [0.03202815353870392, -0.4040321707725525, -0.038651224225759506], [-0.01924687996506691, -0.3911001682281494, 0.10100671648979187], [-0.02970006689429283, -0.5623733997344971, 0.01502842828631401], [0.041393496096134186, -0.45285749435424805, -0.1145007312297821], [-0.07220166176557541, -0.41565001010894775, 0.1763988733291626], [-0.12117649614810944, -0.6376580595970154, -0.2221146821975708], [-0.24952249228954315, -0.2267296314239502, 0.209916353225708], [-0.23256473243236542, -0.8573400378227234, -0.16326899826526642], [-0.36182501912117004, -0.4401193857192993, 0.10906875133514404], [-0.2438676804304123, -0.9392504096031189, -0.14747457206249237], [-0.37086138129234314, -0.5233262181282043, 0.10012416541576385]]}, {"image_id": "5.jpg", "category_id": 1, "keypoints": [1138.9527587890625, 456.314208984375, 0.9692309498786926, 1130.32373046875, 486.602783203125, 0.9881367683410645, 1144.5704345703125, 487.1757507324219, 0.9821641445159912, 1148.393310546875, 419.0373229980469, 0.9914326071739197, 1125.9583740234375, 624.2156982421875, 0.9787347912788391, 1131.355712890625, 615.948974609375, 0.9884281158447266, 1152.8192138671875, 374.10357666015625, 0.9867877960205078, 1141.34228515625, 758.3900146484375, 0.9620199203491211, 1127.302001953125, 748.2471313476562, 0.9501889944076538, 1151.4266357421875, 356.16796875, 0.9885957837104797, 1119.6285400390625, 788.7119140625, 0.858747124671936, 1093.1929931640625, 769.7479858398438, 0.9557623267173767, 1166.0087890625, 284.91705322265625, 0.9869676828384399, 1148.970458984375, 312.0018005371094, 0.9868891835212708, 1176.1771240234375, 323.69293212890625, 0.9891113638877869, 1163.018310546875, 262.57183837890625, 0.962673008441925, 1135.8206787109375, 289.07965087890625, 0.9653730988502502, 1190.364501953125, 312.98388671875, 0.9857690334320068, 1101.4901123046875, 192.63177490234375, 0.9576375484466553, 1209.1470947265625, 288.8536682128906, 0.9600664377212524, 1147.6217041015625, 118.58819580078125, 0.969731330871582, 1178.5308837890625, 129.85818481445312, 0.9655410647392273, 1161.0367431640625, 88.746826171875, 0.9708464741706848, 1179.2183837890625, 95.94155883789062, 0.9562647938728333, 1210.640380859375, 217.86990356445312, 0.93009352684021, 1181.6549072265625, 38.6348876953125, 0.9517357349395752, 1183.7069091796875, 61.525360107421875, 0.9481432437896729, 1099.9927978515625, 787.9443359375, 0.9154338240623474, 1074.344482421875, 769.99560546875, 0.9323806762695312], "score": 3.152334690093994, "box": [1055.9991455078125, 72.963623046875, 170.049072265625, 757.802978515625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.029551099985837936, 0.09167139232158661, -0.059660717844963074], [0.026002751663327217, 0.08854846656322479, 0.06188998743891716], [0.02992604300379753, -0.10155276954174042, -0.013218102976679802], [-0.03917602449655533, 0.474112331867218, -0.004649613052606583], [-0.006468029227107763, 0.46167558431625366, 0.1820826530456543], [0.042746689170598984, -0.23243118822574615, -0.01470051147043705], [0.010221248492598534, 0.8649300336837769, 0.10395100712776184], [-0.01360349915921688, 0.8560647964477539, 0.28751614689826965], [0.03868534043431282, -0.28819984197616577, -0.009868189692497253], [-0.06790322810411453, 0.9710912704467773, 0.08092865347862244], [-0.12253592908382416, 0.9273459315299988, 0.31835824251174927], [0.08382197469472885, -0.49506843090057373, -0.029718667268753052], [0.026727722957730293, -0.4080115556716919, -0.08820272982120514], [0.1214749664068222, -0.3989253044128418, 0.029754512012004852], [0.07242457568645477, -0.5772640109062195, -0.03583695739507675], [-0.011784752830862999, -0.4661436676979065, -0.14795562624931335], [0.17559993267059326, -0.4407588839530945, 0.09792287647724152], [-0.10270648449659348, -0.7135320901870728, -0.1879192292690277], [0.3305303454399109, -0.6408520936965942, 0.04147086665034294], [0.024440685287117958, -0.9198352098464966, -0.11943270266056061], [0.27946650981903076, -0.8933429718017578, 0.011070992797613144], [0.059011105448007584, -0.9967331886291504, -0.12157134711742401], [0.28010937571525574, -0.9756172895431519, -0.006965525448322296]]}, {"image_id": "5.jpg", "category_id": 1, "keypoints": [1275.9078369140625, 477.61834716796875, 0.9775469303131104, 1286.63037109375, 506.8100280761719, 0.9843870997428894, 1265.72509765625, 509.544677734375, 0.976301908493042, 1282.9110107421875, 438.78839111328125, 0.9935219883918762, 1274.3914794921875, 655.461669921875, 0.9708429574966431, 1250.683837890625, 650.8756103515625, 0.9848261475563049, 1278.916015625, 389.5987243652344, 0.9878949522972107, 1273.7828369140625, 796.4400634765625, 0.8487073183059692, 1268.4935302734375, 790.245849609375, 0.916089653968811, 1269.3779296875, 372.0875549316406, 0.9883924126625061, 1266.13525390625, 826.8502197265625, 0.8457062840461731, 1240.78564453125, 815.3099975585938, 0.9401012659072876, 1270.0721435546875, 297.1872863769531, 0.9905998706817627, 1285.6051025390625, 323.2275390625, 0.9851030111312866, 1263.549560546875, 333.0074157714844, 0.9919940233230591, 1261.680419921875, 274.1312255859375, 0.9728052616119385, 1289.6351318359375, 302.44451904296875, 0.9568403959274292, 1241.124267578125, 327.4107666015625, 0.9866372346878052, 1228.2066650390625, 218.50169372558594, 0.9557708501815796, 1191.6185302734375, 379.4452819824219, 0.9811325669288635, 1185.60009765625, 139.14346313476562, 0.9795386791229248, 1146.8109130859375, 242.92645263671875, 0.956831693649292, 1181.3829345703125, 113.28054809570312, 0.9711492657661438, 1140.111572265625, 136.75921630859375, 0.9461995959281921, 1293.613037109375, 220.10316467285156, 0.9585526585578918, 1177.1971435546875, 51.4642333984375, 0.908494770526886, 1137.5738525390625, 78.11508178710938, 0.9408209323883057, 1255.2734375, 823.6290283203125, 0.8103758096694946, 1233.1666259765625, 819.2975463867188, 0.9035064578056335], "score": 3.0094802379608154, "box": [1144.475341796875, 78.20467376708984, 195.4610595703125, 774.2900161743164], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.027779212221503258, 0.08629120141267776, -0.06849414855241776], [-0.022037528455257416, 0.09381438791751862, 0.05596792325377464], [0.024442311376333237, -0.10188078880310059, 0.01889340579509735], [-0.0010852095438167453, 0.4739949107170105, -0.03282024711370468], [-0.05600931867957115, 0.4794251322746277, 0.1443014144897461], [0.008756185881793499, -0.2309996783733368, 0.025495171546936035], [0.0038911523297429085, 0.879020631313324, 0.04792385920882225], [0.002652316354215145, 0.869979202747345, 0.2639893591403961], [-0.021421518176794052, -0.2774435877799988, 0.019062791019678116], [-0.03116195648908615, 0.9962629079818726, -0.007731728255748749], [-0.0952555239200592, 0.9529622793197632, 0.22411346435546875], [-0.005790158174932003, -0.48697739839553833, 0.050743695348501205], [0.02355867251753807, -0.40464091300964355, -0.030139170587062836], [-0.023907702416181564, -0.38690871000289917, 0.11224836111068726], [-0.035130731761455536, -0.5624454617500305, 0.032980915158987045], [0.02802075445652008, -0.4567057490348816, -0.10525494813919067], [-0.08575823903083801, -0.4076356291770935, 0.182994082570076], [-0.12738826870918274, -0.6502662897109985, -0.20860643684864044], [-0.2645817995071411, -0.21902042627334595, 0.21297979354858398], [-0.23612746596336365, -0.8682430386543274, -0.13750354945659637], [-0.34761884808540344, -0.4532012343406677, 0.13086239993572235], [-0.24741263687610626, -0.9486677050590515, -0.11374153196811676], [-0.3535517752170563, -0.5367082953453064, 0.11866259574890137]]}, {"image_id": "6.jpg", "category_id": 1, "keypoints": [1142.0870361328125, 463.0843200683594, 0.9765974283218384, 1130.8099365234375, 493.8030700683594, 0.9897188544273376, 1147.5927734375, 494.0226135253906, 0.9834320545196533, 1153.03271484375, 425.8595275878906, 0.9919686317443848, 1121.6571044921875, 631.9299926757812, 0.9771873950958252, 1125.8084716796875, 620.250732421875, 0.9896808862686157, 1156.36279296875, 379.61785888671875, 0.9875430464744568, 1140.982421875, 762.52880859375, 0.9453662037849426, 1126.3992919921875, 749.8385009765625, 0.9457100629806519, 1153.598388671875, 360.87945556640625, 0.988976240158081, 1117.9652099609375, 789.5291748046875, 0.8915500044822693, 1084.257080078125, 768.7506103515625, 0.9434239864349365, 1172.711669921875, 286.62969970703125, 0.9879587292671204, 1153.6256103515625, 314.2017822265625, 0.9854465126991272, 1179.9246826171875, 325.6727294921875, 0.9914044737815857, 1165.70703125, 263.6971435546875, 0.9571517109870911, 1140.1656494140625, 290.14453125, 0.9684087634086609, 1193.1448974609375, 314.7851257324219, 0.9858040809631348, 1099.0439453125, 191.02728271484375, 0.9534782767295837, 1210.4886474609375, 339.24224853515625, 0.9585955142974854, 1148.018310546875, 120.81832885742188, 0.9663709998130798, 1179.08642578125, 158.46609497070312, 0.9713135957717896, 1162.052490234375, 92.96286010742188, 0.9615417718887329, 1177.88671875, 120.72695922851562, 0.9423267245292664, 1223.0826416015625, 219.23284912109375, 0.8837249875068665, 1187.5511474609375, 45.45916748046875, 0.9250268340110779, 1182.828369140625, 83.76104736328125, 0.9403373599052429, 1096.467529296875, 784.5674438476562, 0.9086617231369019, 1064.6298828125, 767.88134765625, 0.9161773920059204], "score": 3.143725872039795, "box": [1054.9609375, 85.39421844482422, 169.4256591796875, 731.964241027832], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.034778840839862823, 0.09132561832666397, -0.056773342192173004], [0.023928681388497353, 0.08819860965013504, 0.06268403679132462], [0.03360787034034729, -0.09972625970840454, -0.01597576029598713], [-0.056804969906806946, 0.4708479344844818, 0.00975416786968708], [-0.031939104199409485, 0.4519113600254059, 0.1999821662902832], [0.04312621429562569, -0.23118487000465393, -0.014981354586780071], [0.004912935197353363, 0.8489069938659668, 0.14915697276592255], [-0.02495693787932396, 0.8433523178100586, 0.3122599422931671], [0.03541726619005203, -0.2863026559352875, -0.008118178695440292], [-0.081267349421978, 0.9462686777114868, 0.11847861856222153], [-0.14475096762180328, 0.8987383842468262, 0.3326880931854248], [0.08796366304159164, -0.49159541726112366, -0.021362628787755966], [0.0338921844959259, -0.406844824552536, -0.08552419394254684], [0.11740332096815109, -0.3938286602497101, 0.039745524525642395], [0.06315553188323975, -0.5709230899810791, -0.028478607535362244], [-0.0028734987135976553, -0.46249648928642273, -0.1483929306268692], [0.16732661426067352, -0.4356033504009247, 0.11084728688001633], [-0.10635644197463989, -0.7017953395843506, -0.20131081342697144], [0.31743210554122925, -0.23273661732673645, 0.16763822734355927], [0.02412615716457367, -0.8929507732391357, -0.10341470688581467], [0.27154529094696045, -0.4864598214626312, 0.14492705464363098], [0.0619710348546505, -0.9680936336517334, -0.10126861929893494], [0.2675042450428009, -0.5672441720962524, 0.12215972691774368]]}, {"image_id": "6.jpg", "category_id": 1, "keypoints": [1278.007080078125, 477.716796875, 0.9781976342201233, 1286.1707763671875, 505.90924072265625, 0.9863625168800354, 1270.4168701171875, 509.4448547363281, 0.9812873601913452, 1285.551025390625, 440.8713684082031, 0.9939817190170288, 1271.8116455078125, 650.93994140625, 0.9670715928077698, 1258.156982421875, 646.4710693359375, 0.9842233657836914, 1281.9569091796875, 392.0548095703125, 0.9882172346115112, 1269.3837890625, 797.6915283203125, 0.8444721102714539, 1270.6246337890625, 786.84912109375, 0.8838502168655396, 1272.2286376953125, 374.5323486328125, 0.9861038327217102, 1253.7403564453125, 823.4334106445312, 0.87053382396698, 1238.933837890625, 807.8032836914062, 0.9466960430145264, 1273.92529296875, 301.9437255859375, 0.9897340536117554, 1286.8834228515625, 325.7477111816406, 0.984585702419281, 1268.965087890625, 337.9479675292969, 0.9905157685279846, 1264.3900146484375, 278.30047607421875, 0.9680833220481873, 1289.4442138671875, 304.5999755859375, 0.9526109099388123, 1247.9661865234375, 334.6685485839844, 0.9861472845077515, 1226.9447021484375, 217.294677734375, 0.9523078203201294, 1198.8656005859375, 394.0791320800781, 0.975705087184906, 1185.445556640625, 138.80337524414062, 0.9776102304458618, 1149.47802734375, 279.7160339355469, 0.9495032429695129, 1181.9525146484375, 110.29638671875, 0.973399817943573, 1142.8709716796875, 164.38607788085938, 0.9377367496490479, 1296.0869140625, 218.55291748046875, 0.9519496560096741, 1178.3017578125, 52.095550537109375, 0.9246851801872253, 1136.7205810546875, 85.70608520507812, 0.9440761804580688, 1242.41357421875, 821.3089599609375, 0.8514041304588318, 1225.186767578125, 809.0145874023438, 0.9130189418792725], "score": 3.046660900115967, "box": [1143.7608642578125, 83.58686828613281, 198.5484619140625, 761.5295867919922], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02005574479699135, 0.08603564649820328, -0.07185638695955276], [-0.014909233897924423, 0.09441619366407394, 0.05779237300157547], [0.02608267217874527, -0.10219505429267883, 0.016472332179546356], [-0.015418022871017456, 0.4740460216999054, -0.03796388581395149], [-0.041397418826818466, 0.4794977903366089, 0.1540561020374298], [0.010709095746278763, -0.23141703009605408, 0.025179676711559296], [-0.013055652379989624, 0.8741693496704102, 0.06852049380540848], [0.0028175078332424164, 0.8732303380966187, 0.27314138412475586], [-0.01659112423658371, -0.2801487445831299, 0.02292574569582939], [-0.07869583368301392, 0.9673928022384644, -0.0031978413462638855], [-0.10941514372825623, 0.9450461864471436, 0.25346362590789795], [-0.0001718291314318776, -0.4888063967227936, 0.06195662170648575], [0.023290805518627167, -0.41004636883735657, -0.02451435849070549], [-0.012442134320735931, -0.3859425485134125, 0.12064527720212936], [-0.03192737326025963, -0.5647741556167603, 0.0518142506480217], [0.023611409589648247, -0.46277329325675964, -0.09944994002580643], [-0.07082782685756683, -0.40013232827186584, 0.19598743319511414], [-0.1310683935880661, -0.6604713201522827, -0.19766885042190552], [-0.2352599948644638, -0.19964778423309326, 0.2356177270412445], [-0.23389095067977905, -0.8749966621398926, -0.10759853571653366], [-0.3398144841194153, -0.4269220530986786, 0.15670374035835266], [-0.2416810840368271, -0.9549543857574463, -0.08041436225175858], [-0.3453686237335205, -0.510370135307312, 0.14263206720352173]]}, {"image_id": "6.jpg", "category_id": 1, "keypoints": [1191.666015625, 473.71270751953125, 0.9827618598937988, 1202.717529296875, 503.75177001953125, 0.9872232675552368, 1175.2056884765625, 502.7312927246094, 0.988249659538269, 1198.9329833984375, 435.51251220703125, 0.9949735999107361, 1174.5877685546875, 651.2901611328125, 0.9882646799087524, 1139.04150390625, 641.7688598632812, 0.986578643321991, 1200.701171875, 381.27569580078125, 0.9888549447059631, 1163.3675537109375, 775.2146606445312, 0.9666186571121216, 1131.354736328125, 759.6087646484375, 0.9442421793937683, 1198.3544921875, 362.41680908203125, 0.992168664932251, 1157.73828125, 798.76220703125, 0.9139577746391296, 1106.178466796875, 778.1680908203125, 0.9024982452392578, 1198.725830078125, 290.5766906738281, 0.9867712259292603, 1216.5504150390625, 319.84912109375, 0.9916560053825378, 1180.322265625, 318.4927978515625, 0.9935166239738464, 1203.4482421875, 268.52789306640625, 0.9753010272979736, 1233.83642578125, 306.9527893066406, 0.9846794605255127, 1155.6895751953125, 306.47808837890625, 0.986595630645752, 1232.9388427734375, 223.99996948242188, 0.9736169576644897, 1116.0018310546875, 250.31448364257812, 0.9707371592521667, 1192.925537109375, 140.25677490234375, 0.9706848859786987, 1126.0177001953125, 137.27301025390625, 0.9522871971130371, 1189.8685302734375, 114.1812744140625, 0.9697718620300293, 1137.8509521484375, 105.96041870117188, 0.9506223201751709, 1250.695556640625, 230.87635803222656, 0.9511439204216003, 1191.0950927734375, 62.712066650390625, 0.9296321868896484, 1164.9549560546875, 84.41680908203125, 0.9570136070251465, 1147.8797607421875, 794.8829345703125, 0.9313430786132812, 1097.7354736328125, 777.2034912109375, 0.9237753748893738], "score": 2.3125410079956055, "box": [1110.632080078125, 79.52096557617188, 136.8546142578125, 744.6185607910156], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05065838620066643, 0.09581564366817474, -0.03190258890390396], [-0.06239355355501175, 0.08368107676506042, 0.0370347797870636], [0.02163338102400303, -0.101233571767807, 0.023121153935790062], [-0.018072325736284256, 0.4739099144935608, 0.01985733024775982], [-0.1577097624540329, 0.462284654378891, 0.09293587505817413], [0.025048114359378815, -0.2323656678199768, 0.02973838709294796], [-0.04189443588256836, 0.8484832644462585, 0.18317902088165283], [-0.17091374099254608, 0.8197759389877319, 0.29101166129112244], [0.01914948783814907, -0.28788721561431885, 0.030248580500483513], [-0.06702221930027008, 0.9208311438560486, 0.07348189502954483], [-0.25707560777664185, 0.8751096725463867, 0.205011248588562], [0.02221587300300598, -0.4953916668891907, 0.07311592996120453], [0.09440557658672333, -0.40928030014038086, 0.03428726643323898], [-0.04129031300544739, -0.39834773540496826, 0.09814799576997757], [0.039176005870103836, -0.5766476392745972, 0.06442233920097351], [0.16545677185058594, -0.4621134400367737, 0.012223819270730019], [-0.12383125722408295, -0.44082415103912354, 0.12265336513519287], [0.15524311363697052, -0.7098100185394287, -0.08689497411251068], [-0.2739829123020172, -0.645847737789154, 0.06951053440570831], [0.05376999080181122, -0.9346842765808105, -0.035654254257678986], [-0.2514157295227051, -0.9044774770736694, 0.05977718532085419], [0.04660576209425926, -1.0139025449752808, -0.008062023669481277], [-0.22220124304294586, -0.98193359375, 0.044854938983917236]]}, {"image_id": "7.jpg", "category_id": 1, "keypoints": [1136.4052734375, 460.5404357910156, 0.9769936203956604, 1133.370361328125, 492.76617431640625, 0.991824746131897, 1131.4735107421875, 492.46759033203125, 0.985743522644043, 1147.6224365234375, 422.572021484375, 0.9930513501167297, 1129.17236328125, 633.6593017578125, 0.9710636138916016, 1103.109375, 624.993408203125, 0.9879601001739502, 1152.8460693359375, 376.0853576660156, 0.9875766634941101, 1147.237060546875, 763.224365234375, 0.9377217292785645, 1110.187255859375, 751.0078125, 0.9235436916351318, 1151.77978515625, 357.164794921875, 0.9900020956993103, 1136.990234375, 793.1478271484375, 0.875397264957428, 1069.1099853515625, 776.1494140625, 0.92913818359375, 1170.1624755859375, 285.12091064453125, 0.9885074496269226, 1158.98095703125, 311.69427490234375, 0.9859868288040161, 1169.1812744140625, 322.6330261230469, 0.9919187426567078, 1166.0606689453125, 263.00750732421875, 0.9591656923294067, 1150.1187744140625, 287.0414733886719, 0.9725579023361206, 1175.0645751953125, 308.6116943359375, 0.9900301098823547, 1113.0576171875, 196.06983947753906, 0.9541307687759399, 1178.6650390625, 264.5429992675781, 0.9720219373703003, 1158.8253173828125, 126.07928466796875, 0.9705762267112732, 1161.987060546875, 126.50283813476562, 0.9607182741165161, 1169.1229248046875, 97.33929443359375, 0.9686622619628906, 1168.9000244140625, 97.9608154296875, 0.9265038967132568, 1206.4566650390625, 215.7910614013672, 0.9371732473373413, 1188.888916015625, 45.281463623046875, 0.9388202428817749, 1186.740234375, 69.37069702148438, 0.943172037601471, 1113.8466796875, 792.057373046875, 0.9093132019042969, 1060.2161865234375, 778.463623046875, 0.9438227415084839], "score": 3.1586179733276367, "box": [1054.5887451171875, 84.78394317626953, 175.172119140625, 732.7719039916992], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.005127168260514736, 0.09245401620864868, -0.06446664035320282], [-0.007447337731719017, 0.08680246025323868, 0.06815892457962036], [0.03740847855806351, -0.09967993199825287, -0.0007218550890684128], [-0.013391155749559402, 0.4719398617744446, -0.0011520609259605408], [-0.08163082599639893, 0.4560379385948181, 0.17558135092258453], [0.052143827080726624, -0.23119600117206573, -0.0016020536422729492], [0.04515562206506729, 0.8454079627990723, 0.14726322889328003], [-0.054943546652793884, 0.8372213840484619, 0.31207072734832764], [0.04894424229860306, -0.28727930784225464, -0.0022858604788780212], [0.005652735009789467, 0.9431779384613037, 0.06553821265697479], [-0.16627384722232819, 0.9025135040283203, 0.27843090891838074], [0.09289304167032242, -0.4949271082878113, -0.00040344148874282837], [0.06280940026044846, -0.4085751175880432, -0.07702002674341202], [0.10919968783855438, -0.39771604537963867, 0.06638334691524506], [0.07671120762825012, -0.5747457146644592, -0.019535057246685028], [0.03609900176525116, -0.4689754247665405, -0.1406441628932953], [0.13409872353076935, -0.45104652643203735, 0.14286255836486816], [-0.06561784446239471, -0.710548996925354, -0.18093085289001465], [0.14801479876041412, -0.6883667707443237, 0.04303089156746864], [0.06199383735656738, -0.9083406925201416, -0.0949012041091919], [0.11454027891159058, -0.9407483339309692, 0.0006860159337520599], [0.09032463282346725, -0.9870947599411011, -0.08692139387130737], [0.13274569809436798, -1.0188266038894653, -0.024098997935652733]]}, {"image_id": "7.jpg", "category_id": 1, "keypoints": [1278.89453125, 478.8006591796875, 0.9764174222946167, 1280.56201171875, 508.14886474609375, 0.9852720499038696, 1276.8486328125, 511.6141662597656, 0.984090268611908, 1286.732421875, 442.1972351074219, 0.9926798939704895, 1268.27001953125, 655.25439453125, 0.9713358283042908, 1264.8623046875, 653.8319702148438, 0.984484851360321, 1285.5382080078125, 392.57275390625, 0.9871904850006104, 1266.66845703125, 803.0565185546875, 0.828690767288208, 1270.7628173828125, 796.6314697265625, 0.9013077616691589, 1274.665771484375, 375.59283447265625, 0.984991729259491, 1247.360107421875, 831.4790649414062, 0.8837392926216125, 1241.02490234375, 817.3282470703125, 0.9589301347732544, 1275.4158935546875, 305.60479736328125, 0.9893765449523926, 1284.9249267578125, 326.0833740234375, 0.9819921255111694, 1276.189697265625, 343.4185485839844, 0.9880152940750122, 1263.82080078125, 280.1747741699219, 0.9626148343086243, 1282.24658203125, 303.1153564453125, 0.9534037709236145, 1260.5306396484375, 342.04180908203125, 0.9836536049842834, 1224.3309326171875, 209.6336669921875, 0.9281482696533203, 1204.9029541015625, 405.31170654296875, 0.9679914712905884, 1186.3023681640625, 138.25454711914062, 0.9751275777816772, 1150.9486083984375, 258.6114196777344, 0.9726404547691345, 1186.0086669921875, 108.99139404296875, 0.9776425361633301, 1149.513671875, 151.4508056640625, 0.9564061760902405, 1295.4080810546875, 218.61302185058594, 0.9498190879821777, 1184.4501953125, 52.17034912109375, 0.9333106875419617, 1147.7152099609375, 90.4300537109375, 0.9434788227081299, 1237.7677001953125, 829.5791015625, 0.8694278597831726, 1227.6171875, 821.3365478515625, 0.9371660351753235], "score": 3.0291199684143066, "box": [1146.459228515625, 85.36116027832031, 196.0421142578125, 764.8593597412109], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.001841159537434578, 0.083091601729393, -0.07841996103525162], [0.001399241853505373, 0.09717605262994766, 0.055876366794109344], [0.02862224169075489, -0.10251252353191376, 0.01357235200703144], [-0.02751041017472744, 0.4716338515281677, -0.04183042049407959], [-0.022685864940285683, 0.4821052551269531, 0.1551310122013092], [0.018818218261003494, -0.23124642670154572, 0.0346539244055748], [-0.0267146248370409, 0.8816830515861511, 0.021386263892054558], [0.0035309717059135437, 0.8771353363990784, 0.27823978662490845], [-0.010712774470448494, -0.27856653928756714, 0.04148874431848526], [-0.10244718939065933, 0.9850324988365173, -0.0211158599704504], [-0.10742927342653275, 0.9540510773658752, 0.27579426765441895], [0.004680106416344643, -0.4870207905769348, 0.08604651689529419], [0.015803536400198936, -0.41221481561660767, -0.006795553490519524], [0.0062764231115579605, -0.3813592791557312, 0.14188461005687714], [-0.028678717091679573, -0.5624772310256958, 0.09529943764209747], [0.002526629716157913, -0.46884840726852417, -0.07803084701299667], [-0.04028254747390747, -0.3905157446861267, 0.22615867853164673], [-0.14035286009311676, -0.6827253699302673, -0.16064250469207764], [-0.21182391047477722, -0.19411630928516388, 0.2596929371356964], [-0.23751653730869293, -0.8899702429771423, -0.04826592653989792], [-0.3043642044067383, -0.4351077675819397, 0.21013177931308746], [-0.23706082999706268, -0.9724578261375427, -0.027456428855657578], [-0.30616840720176697, -0.5191553831100464, 0.19711269438266754]]}, {"image_id": "8.jpg", "category_id": 1, "keypoints": [1133.4224853515625, 455.4026184082031, 0.9737969040870667, 1128.2158203125, 486.1280822753906, 0.9906363487243652, 1131.6573486328125, 486.30133056640625, 0.9828149676322937, 1143.8260498046875, 417.538330078125, 0.990483820438385, 1127.0135498046875, 623.5277709960938, 0.9757086634635925, 1104.9775390625, 616.3306274414062, 0.9877699017524719, 1148.91650390625, 371.1462707519531, 0.9876129627227783, 1151.3082275390625, 751.61767578125, 0.9592498540878296, 1108.797607421875, 743.0440673828125, 0.9306682348251343, 1147.972900390625, 353.020751953125, 0.9907593727111816, 1147.39892578125, 784.96923828125, 0.8803144693374634, 1075.2081298828125, 770.525146484375, 0.9351419806480408, 1167.3626708984375, 282.552001953125, 0.9885237216949463, 1151.860107421875, 308.7122802734375, 0.98649001121521, 1169.8626708984375, 321.40777587890625, 0.9897826313972473, 1163.9420166015625, 261.0538635253906, 0.9613237380981445, 1139.28271484375, 284.36920166015625, 0.9778497815132141, 1180.0682373046875, 309.40032958984375, 0.9853604435920715, 1102.2593994140625, 194.6690673828125, 0.9554976224899292, 1186.78515625, 266.0805969238281, 0.9683013558387756, 1157.366943359375, 128.46109008789062, 0.969624936580658, 1167.4354248046875, 132.0919189453125, 0.9634160399436951, 1169.989013671875, 99.34146118164062, 0.973708987236023, 1172.384765625, 102.9256591796875, 0.9321967959403992, 1196.0924072265625, 213.57550048828125, 0.9459681510925293, 1190.7913818359375, 47.972198486328125, 0.9411433935165405, 1186.69482421875, 75.83145141601562, 0.9324168562889099, 1128.438720703125, 787.6924438476562, 0.9131961464881897, 1066.424072265625, 773.47216796875, 0.9404138326644897], "score": 3.16182804107666, "box": [1051.2486572265625, 85.6213150024414, 184.21728515625, 733.9920272827148], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.013682147487998009, 0.09121233224868774, -0.0646761953830719], [0.003734935075044632, 0.08797312527894974, 0.06663556396961212], [0.03563115745782852, -0.09987938404083252, -0.004284907132387161], [-0.014205948449671268, 0.4714888334274292, -0.004775665700435638], [-0.06718789786100388, 0.45744451880455017, 0.1756536215543747], [0.04116326943039894, -0.23186004161834717, -0.0020319223403930664], [0.06249963864684105, 0.84471595287323, 0.13547435402870178], [-0.050848208367824554, 0.8456445932388306, 0.29211026430130005], [0.03831484168767929, -0.28778889775276184, -0.0008801128715276718], [0.045092906802892685, 0.9597324132919312, 0.07037973403930664], [-0.15259267389774323, 0.9261339902877808, 0.2617397904396057], [0.10155552625656128, -0.48953551054000854, -0.013636722229421139], [0.049277324229478836, -0.40592944622039795, -0.0802968293428421], [0.12088142335414886, -0.392087459564209, 0.051478076726198196], [0.08778291940689087, -0.5713172554969788, -0.02460459992289543], [0.012932979501783848, -0.466499388217926, -0.13841910660266876], [0.16038107872009277, -0.43796950578689575, 0.12631316483020782], [-0.08910764753818512, -0.7107692360877991, -0.15375955402851105], [0.19408446550369263, -0.681281328201294, 0.04807131364941597], [0.061531078070402145, -0.895501434803009, -0.07669046521186829], [0.15490111708641052, -0.9336842894554138, 0.011297047138214111], [0.09472346305847168, -0.9719517827033997, -0.06648287177085876], [0.1677159070968628, -1.013897180557251, -0.009367035701870918]]}, {"image_id": "8.jpg", "category_id": 1, "keypoints": [1281.1083984375, 475.3101501464844, 0.975754976272583, 1284.3272705078125, 503.568603515625, 0.9791179895401001, 1278.121337890625, 506.39312744140625, 0.9814098477363586, 1289.4002685546875, 439.5372619628906, 0.9909631013870239, 1265.670654296875, 643.616455078125, 0.9718983173370361, 1256.7852783203125, 640.6578369140625, 0.9794245362281799, 1286.4945068359375, 389.7691650390625, 0.9865607619285583, 1264.7064208984375, 786.5760498046875, 0.8533301949501038, 1269.6304931640625, 781.6427001953125, 0.9183169007301331, 1275.252685546875, 374.3292236328125, 0.980294942855835, 1245.25341796875, 816.5350341796875, 0.8791070580482483, 1237.7691650390625, 804.1917724609375, 0.951318085193634, 1275.0811767578125, 304.03546142578125, 0.9897720217704773, 1285.96533203125, 325.70501708984375, 0.9786900281906128, 1276.1124267578125, 342.4659423828125, 0.9888613224029541, 1260.7119140625, 280.1720886230469, 0.9645604491233826, 1283.711669921875, 302.6546936035156, 0.9426760673522949, 1261.4886474609375, 342.8497314453125, 0.9855730533599854, 1223.4693603515625, 211.87429809570312, 0.9114624261856079, 1203.685302734375, 407.9732360839844, 0.9698458313941956, 1187.116455078125, 140.7833251953125, 0.9767419099807739, 1146.67138671875, 285.3660583496094, 0.9719632267951965, 1187.2508544921875, 111.9569091796875, 0.9725393652915955, 1146.5904541015625, 174.81820678710938, 0.9539220333099365, 1285.5919189453125, 213.62045288085938, 0.9411420226097107, 1188.794677734375, 57.2398681640625, 0.8863003849983215, 1144.17041015625, 109.23599243164062, 0.9334638714790344, 1234.47265625, 814.9569091796875, 0.8681125640869141, 1223.00439453125, 806.8739013671875, 0.9301056265830994], "score": 3.010693073272705, "box": [1146.4967041015625, 99.5446548461914, 194.7249755859375, 743.0902328491211], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.004774358123540878, 0.08329480141401291, -0.07723195850849152], [-0.0021244515664875507, 0.09627539664506912, 0.056194454431533813], [0.028478480875492096, -0.10156266391277313, 0.01411668211221695], [-0.04229501634836197, 0.46866315603256226, -0.02876187115907669], [-0.053952477872371674, 0.4774816632270813, 0.15769517421722412], [0.01565052568912506, -0.22971464693546295, 0.033877432346343994], [-0.03978720307350159, 0.8778626918792725, 0.03362882509827614], [-0.009848697111010551, 0.8770438432693481, 0.2548275887966156], [-0.016667328774929047, -0.2748991847038269, 0.038713373243808746], [-0.11189433932304382, 0.9784865975379944, -0.019218549132347107], [-0.11920081824064255, 0.955223798751831, 0.26103755831718445], [-0.00026064179837703705, -0.48106980323791504, 0.08781974762678146], [0.012201044708490372, -0.40836501121520996, -0.005664810538291931], [-0.0007828641682863235, -0.37473589181900024, 0.14089354872703552], [-0.04197179526090622, -0.5522807836532593, 0.09709393978118896], [-9.14083793759346e-05, -0.46483737230300903, -0.07648636400699615], [-0.04350597411394119, -0.3781028389930725, 0.22694993019104004], [-0.14872169494628906, -0.6707732081413269, -0.1667470932006836], [-0.21599067747592926, -0.18264661729335785, 0.2556536793708801], [-0.24407289922237396, -0.8816943168640137, -0.06153950095176697], [-0.3280445337295532, -0.4164074659347534, 0.21578362584114075], [-0.24294398725032806, -0.9655551910400391, -0.04965542256832123], [-0.3282913565635681, -0.5010401010513306, 0.21219754219055176]]}, {"image_id": "9.jpg", "category_id": 1, "keypoints": [1131.13623046875, 458.207763671875, 0.9747186899185181, 1125.18115234375, 488.85699462890625, 0.9905325174331665, 1130.038818359375, 488.8756103515625, 0.98235023021698, 1141.235595703125, 421.276611328125, 0.9915834665298462, 1126.3883056640625, 625.396728515625, 0.9738820195198059, 1105.198486328125, 618.09326171875, 0.9877386689186096, 1145.695556640625, 375.60223388671875, 0.9873901009559631, 1148.8255615234375, 750.6416015625, 0.9528367519378662, 1114.7215576171875, 745.2752075195312, 0.9371523857116699, 1144.207763671875, 357.5114440917969, 0.9923205971717834, 1139.3544921875, 782.803955078125, 0.8727378249168396, 1077.93212890625, 773.664306640625, 0.9379861950874329, 1160.5595703125, 286.14349365234375, 0.9866473078727722, 1146.010986328125, 312.908447265625, 0.9863494634628296, 1166.3040771484375, 325.38153076171875, 0.989974319934845, 1156.6141357421875, 264.204833984375, 0.9592165946960449, 1134.229248046875, 288.9462890625, 0.974948525428772, 1177.37548828125, 314.4540710449219, 0.9858030080795288, 1100.5040283203125, 199.09039306640625, 0.9488259553909302, 1194.0377197265625, 311.7734069824219, 0.9646213054656982, 1154.3792724609375, 130.15097045898438, 0.9716971516609192, 1170.308837890625, 141.84432983398438, 0.9603797793388367, 1168.4937744140625, 100.86550903320312, 0.9738180041313171, 1174.4986572265625, 107.44491577148438, 0.9532907605171204, 1193.425048828125, 225.67965698242188, 0.9403693675994873, 1189.0228271484375, 49.144012451171875, 0.954749584197998, 1185.978271484375, 76.16293334960938, 0.9405726194381714, 1119.4727783203125, 784.9852294921875, 0.9114232063293457, 1067.865966796875, 777.4295654296875, 0.9428321123123169], "score": 3.161008596420288, "box": [1048.15185546875, 79.52843475341797, 189.6954345703125, 741.5100784301758], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.016529351472854614, 0.09130391478538513, -0.06457708775997162], [0.006366696208715439, 0.08848516643047333, 0.06644107401371002], [0.035890743136405945, -0.1003737598657608, -0.005521375685930252], [-0.0098635945469141, 0.46958065032958984, 0.008033230900764465], [-0.059515971690416336, 0.45760107040405273, 0.1811291128396988], [0.048767462372779846, -0.23225976526737213, -0.005551477894186974], [0.06277428567409515, 0.839367151260376, 0.1611994206905365], [-0.02597656473517418, 0.8454066514968872, 0.29809144139289856], [0.04434385523200035, -0.2883036136627197, -0.002177394926548004], [0.02565128356218338, 0.9501844048500061, 0.09639960527420044], [-0.13157157599925995, 0.9252594113349915, 0.27990207076072693], [0.08653371781110764, -0.4966149926185608, -0.00892379879951477], [0.04208989068865776, -0.40995675325393677, -0.0781630277633667], [0.11666859686374664, -0.3993401527404785, 0.053210701793432236], [0.07166171818971634, -0.5790076851844788, -0.009727567434310913], [0.007277094293385744, -0.47084134817123413, -0.13748376071453094], [0.15862765908241272, -0.4409857988357544, 0.12972566485404968], [-0.08740553259849548, -0.7173790335655212, -0.16649198532104492], [0.4024420976638794, -0.47610992193222046, 0.0518040768802166], [0.05933220311999321, -0.908311665058136, -0.09535594284534454], [0.364486426115036, -0.7294862866401672, 0.016749590635299683], [0.0953323245048523, -0.9830328822135925, -0.08047588169574738], [0.37368690967559814, -0.8113241791725159, -0.0004172530025243759]]}, {"image_id": "9.jpg", "category_id": 1, "keypoints": [1282.2369384765625, 482.0396423339844, 0.9746991991996765, 1287.4954833984375, 508.97021484375, 0.9766014814376831, 1278.168212890625, 514.4698486328125, 0.9849048852920532, 1289.859619140625, 444.4857482910156, 0.9913496375083923, 1270.4700927734375, 658.0, 0.9750300049781799, 1257.806396484375, 653.3138427734375, 0.9809995889663696, 1287.042724609375, 395.94580078125, 0.9870306849479675, 1266.5369873046875, 799.2987060546875, 0.8730087280273438, 1269.236328125, 791.3474731445312, 0.9071028828620911, 1276.1639404296875, 380.38909912109375, 0.9866296648979187, 1246.2838134765625, 825.0462036132812, 0.875503420829773, 1234.656982421875, 812.7496948242188, 0.9338473081588745, 1273.326904296875, 308.9085693359375, 0.9883010983467102, 1287.3839111328125, 330.1316223144531, 0.9829133749008179, 1274.03369140625, 346.94427490234375, 0.988918662071228, 1260.55517578125, 284.1667785644531, 0.9633115530014038, 1287.6751708984375, 308.353759765625, 0.9562954306602478, 1255.427001953125, 347.9637451171875, 0.9844926595687866, 1224.77099609375, 221.86990356445312, 0.9323918223381042, 1201.672607421875, 410.7504577636719, 0.9543006420135498, 1188.371826171875, 144.5887451171875, 0.9720311760902405, 1145.3226318359375, 253.9623565673828, 0.9792662262916565, 1188.411865234375, 116.10025024414062, 0.9731667637825012, 1143.0950927734375, 144.60833740234375, 0.9541977047920227, 1283.52392578125, 213.67771911621094, 0.9447647929191589, 1188.63623046875, 55.75970458984375, 0.926802933216095, 1144.599609375, 89.43869018554688, 0.9517362117767334, 1233.936767578125, 818.5675048828125, 0.8466974496841431, 1220.5545654296875, 813.0755615234375, 0.9129289388656616], "score": 3.0696778297424316, "box": [1159.0916748046875, 90.047119140625, 184.1815185546875, 758.3848876953125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.010845720767974854, 0.08000324666500092, -0.08061876893043518], [-0.004994119983166456, 0.0990476906299591, 0.05188317596912384], [0.026733234524726868, -0.1016288548707962, 0.02056717872619629], [-0.030058156698942184, 0.4671228528022766, -0.04265432432293892], [-0.05527748912572861, 0.4862980842590332, 0.1285272240638733], [0.01438723225146532, -0.23043744266033173, 0.03910773620009422], [-0.0332622267305851, 0.8705626726150513, 0.0520685538649559], [-0.013886523433029652, 0.8836933970451355, 0.23745429515838623], [-0.01746024191379547, -0.27651113271713257, 0.04232402890920639], [-0.108737513422966, 0.953359842300415, -0.022980742156505585], [-0.12859651446342468, 0.9527696371078491, 0.22138774394989014], [-0.008573855273425579, -0.4853924512863159, 0.08611854165792465], [0.011068812571465969, -0.4099949598312378, -0.004730690270662308], [-0.010071701370179653, -0.3802235722541809, 0.14271250367164612], [-0.046386417001485825, -0.5593023896217346, 0.0890287384390831], [0.005315900314599276, -0.46420878171920776, -0.07863779366016388], [-0.06515488028526306, -0.3809722065925598, 0.22203239798545837], [-0.15129444003105164, -0.661857545375824, -0.1745457947254181], [-0.2334527224302292, -0.18287189304828644, 0.2588880956172943], [-0.24162724614143372, -0.877561092376709, -0.07395383715629578], [-0.3240056335926056, -0.42202794551849365, 0.1997738778591156], [-0.24007953703403473, -0.9592080116271973, -0.0506615936756134], [-0.3263373374938965, -0.5060531497001648, 0.18776285648345947]]}, {"image_id": "10.jpg", "category_id": 1, "keypoints": [1131.901611328125, 456.8609619140625, 0.9760109186172485, 1139.3382568359375, 489.42333984375, 0.9950629472732544, 1118.8516845703125, 486.7843017578125, 0.9848416447639465, 1140.691650390625, 419.6883544921875, 0.9904384613037109, 1128.805419921875, 627.5521240234375, 0.9748550653457642, 1099.781494140625, 620.8631591796875, 0.9845048189163208, 1145.102294921875, 372.718017578125, 0.9889877438545227, 1151.4278564453125, 753.9059448242188, 0.9419708251953125, 1106.9676513671875, 746.24560546875, 0.9259256720542908, 1145.7774658203125, 354.478759765625, 0.993388831615448, 1146.0340576171875, 785.783203125, 0.8816015720367432, 1070.29248046875, 776.7408447265625, 0.9346251487731934, 1164.9276123046875, 286.5118408203125, 0.9898034930229187, 1167.1553955078125, 317.714599609375, 0.9912025928497314, 1148.2760009765625, 314.7515869140625, 0.9938137531280518, 1168.177490234375, 267.30560302734375, 0.9635906219482422, 1181.2584228515625, 307.11102294921875, 0.9848906993865967, 1136.4739990234375, 289.142822265625, 0.9867845177650452, 1199.2000732421875, 244.90573120117188, 0.9308481812477112, 1104.7940673828125, 197.21145629882812, 0.9523976445198059, 1179.824462890625, 147.04739379882812, 0.9824687838554382, 1151.24853515625, 128.91452026367188, 0.960792064666748, 1181.7852783203125, 122.04489135742188, 0.9570394158363342, 1164.9705810546875, 100.65548706054688, 0.9466225504875183, 1210.2529296875, 231.43885803222656, 0.9435760974884033, 1187.82275390625, 68.46511840820312, 0.9278039336204529, 1188.9901123046875, 78.17276000976562, 0.9340642094612122, 1126.9749755859375, 789.3468627929688, 0.907026469707489, 1066.0406494140625, 780.1060791015625, 0.9455493092536926], "score": 3.1684606075286865, "box": [1047.4005126953125, 88.75511932373047, 193.5255126953125, 726.0383377075195], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03530372679233551, 0.09618137776851654, -0.04759477823972702], [-0.045403964817523956, 0.08326117694377899, 0.05720782279968262], [0.029371825978159904, -0.1015908271074295, 0.013735726475715637], [0.009272529743611813, 0.4758508801460266, 0.011395551264286041], [-0.0953783318400383, 0.4615229368209839, 0.14687089622020721], [0.04188264161348343, -0.23347239196300507, 0.016385987401008606], [0.08212941884994507, 0.8465469479560852, 0.16158117353916168], [-0.06821324676275253, 0.8412137031555176, 0.28860849142074585], [0.043531909584999084, -0.28913748264312744, 0.008237581700086594], [0.05955224856734276, 0.9482685923576355, 0.0780225321650505], [-0.16695348918437958, 0.9191604852676392, 0.24376045167446136], [0.09719064831733704, -0.4945420026779175, 0.018148522824048996], [0.12915901839733124, -0.39425748586654663, -0.03827556595206261], [0.03886036574840546, -0.41229474544525146, 0.08176478743553162], [0.1075747013092041, -0.5669329762458801, -0.02265719324350357], [0.18676386773586273, -0.43648624420166016, -0.09592492878437042], [0.0011874375632032752, -0.4981876015663147, 0.10496833920478821], [0.2554425597190857, -0.6844797730445862, -0.1614728420972824], [-0.08465162664651871, -0.7357800006866455, 0.05152745544910431], [0.2106504589319229, -0.927995502948761, -0.12069885432720184], [0.05985777825117111, -0.9490085244178772, 0.07262197136878967], [0.218451589345932, -1.0051318407058716, -0.08783894032239914], [0.09589791297912598, -1.0231488943099976, 0.056158557534217834]]}, {"image_id": "10.jpg", "category_id": 1, "keypoints": [1281.6473388671875, 484.08782958984375, 0.9722719192504883, 1289.2801513671875, 510.76708984375, 0.9786779880523682, 1271.3916015625, 517.723876953125, 0.9827749133110046, 1288.62548828125, 446.4368896484375, 0.991866409778595, 1275.5849609375, 667.596435546875, 0.9738284945487976, 1248.74365234375, 662.9881591796875, 0.9849519729614258, 1286.8309326171875, 397.72686767578125, 0.9873245358467102, 1270.9080810546875, 803.2107543945312, 0.860382080078125, 1262.3939208984375, 795.5184326171875, 0.9111603498458862, 1277.47607421875, 382.0942687988281, 0.9851711392402649, 1252.7000732421875, 830.2889404296875, 0.8912263512611389, 1225.41064453125, 817.0308227539062, 0.9385024309158325, 1273.13232421875, 310.68157958984375, 0.9884490370750427, 1290.4410400390625, 332.0452575683594, 0.9842793345451355, 1270.56982421875, 348.7367858886719, 0.9893874526023865, 1261.3089599609375, 286.02313232421875, 0.9733195900917053, 1293.9998779296875, 312.4035949707031, 0.9519083499908447, 1248.3717041015625, 349.6744384765625, 0.9830323457717896, 1230.6322021484375, 224.02012634277344, 0.9417062401771545, 1199.676513671875, 409.5849304199219, 0.9550217390060425, 1192.357421875, 145.9451904296875, 0.9732961654663086, 1146.388671875, 226.54763793945312, 0.9653069376945496, 1190.6031494140625, 118.091796875, 0.9682019352912903, 1146.665771484375, 139.14923095703125, 0.9472194910049438, 1288.419189453125, 224.97743225097656, 0.9462973475456238, 1188.7501220703125, 58.403350830078125, 0.9308916330337524, 1148.6046142578125, 91.78659057617188, 0.954701840877533, 1232.8277587890625, 823.2049560546875, 0.8685347437858582, 1215.129150390625, 817.40576171875, 0.9215459227561951], "score": 3.0901219844818115, "box": [1156.6663818359375, 91.74407196044922, 184.552734375, 759.683967590332], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02054445445537567, 0.07989345490932465, -0.07908625900745392], [-0.02089974842965603, 0.09910816699266434, 0.048090025782585144], [0.029000159353017807, -0.09965263307094574, 0.02737461030483246], [-0.00916628260165453, 0.467049241065979, -0.03256578743457794], [-0.07484398782253265, 0.4858737587928772, 0.12465746700763702], [0.026151390746235847, -0.22858907282352448, 0.04861147701740265], [-0.014994882978498936, 0.8708500266075134, 0.06129911541938782], [-0.02453407272696495, 0.8719920516014099, 0.2662840187549591], [-0.002674056915566325, -0.2768341898918152, 0.04902111738920212], [-0.08180752396583557, 0.9540511965751648, -0.021310612559318542], [-0.14005859196186066, 0.9359219670295715, 0.23818203806877136], [-0.01477136742323637, -0.4849073886871338, 0.09684701263904572], [0.02252531796693802, -0.4133443832397461, 0.008289806544780731], [-0.016694409772753716, -0.3784294128417969, 0.1512625515460968], [-0.050895992666482925, -0.5595124959945679, 0.09376039355993271], [0.025506343692541122, -0.46340256929397583, -0.06886011362075806], [-0.08111844211816788, -0.3791758418083191, 0.22346949577331543], [-0.13023033738136292, -0.6631936430931091, -0.1620762050151825], [-0.24219778180122375, -0.17862768471240997, 0.27690988779067993], [-0.22156497836112976, -0.8748739361763, -0.05365589261054993], [-0.31780508160591125, -0.42250293493270874, 0.21535123884677887], [-0.22484393417835236, -0.9557278752326965, -0.02749696560204029], [-0.31802329421043396, -0.5069935321807861, 0.20562978088855743]]}, {"image_id": "11.jpg", "category_id": 1, "keypoints": [1128.294921875, 456.88531494140625, 0.9776055812835693, 1123.7862548828125, 485.74468994140625, 0.9912634491920471, 1125.817138671875, 487.2947998046875, 0.9840981960296631, 1138.139892578125, 419.89190673828125, 0.9906980395317078, 1121.166748046875, 621.28759765625, 0.9754105806350708, 1100.940185546875, 615.128173828125, 0.9845974445343018, 1143.99072265625, 374.9091796875, 0.9886183738708496, 1147.809326171875, 743.5645751953125, 0.9601019620895386, 1112.042724609375, 739.4398803710938, 0.9315903782844543, 1143.4427490234375, 356.9295654296875, 0.9924935102462769, 1141.5916748046875, 775.6029052734375, 0.8545432686805725, 1077.1771240234375, 766.181396484375, 0.9319754838943481, 1162.0562744140625, 288.49072265625, 0.9872395396232605, 1148.4295654296875, 313.02459716796875, 0.9874807000160217, 1163.9608154296875, 325.6360168457031, 0.9907469749450684, 1159.3466796875, 268.35614013671875, 0.9615157842636108, 1138.4949951171875, 291.61724853515625, 0.9730051755905151, 1174.3580322265625, 315.903564453125, 0.9859940409660339, 1102.1654052734375, 203.3729248046875, 0.9448407888412476, 1186.1585693359375, 283.5093688964844, 0.9781414866447449, 1159.845458984375, 139.19189453125, 0.9729375243186951, 1166.1563720703125, 148.1937255859375, 0.9624888896942139, 1173.4525146484375, 112.77676391601562, 0.9637715816497803, 1170.379638671875, 111.00128173828125, 0.9573952555656433, 1200.43896484375, 239.62889099121094, 0.9513046741485596, 1190.090576171875, 59.945037841796875, 0.9598238468170166, 1182.7266845703125, 84.43417358398438, 0.9368733167648315, 1124.9217529296875, 778.37841796875, 0.8876091837882996, 1068.542236328125, 769.0540771484375, 0.9417990446090698], "score": 3.1672277450561523, "box": [1046.26123046875, 80.61983489990234, 193.6138916015625, 739.4291152954102], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.011409277096390724, 0.08905374258756638, -0.06845605373382568], [0.0015878868289291859, 0.09044262766838074, 0.06381245702505112], [0.036036521196365356, -0.10052815079689026, 0.0004039797931909561], [-0.01589611917734146, 0.46784597635269165, -0.005588442087173462], [-0.06663354486227036, 0.4626805782318115, 0.1617102324962616], [0.05348871275782585, -0.2318516969680786, 0.008651494979858398], [0.0702739804983139, 0.8372675180435181, 0.13731548190116882], [-0.02774101309478283, 0.8455139398574829, 0.2881532907485962], [0.052005019038915634, -0.28803750872612, 0.013021629303693771], [0.04455339536070824, 0.9462953805923462, 0.06486077606678009], [-0.131776362657547, 0.9224694967269897, 0.2557293772697449], [0.09990625828504562, -0.4951952397823334, 0.00828404352068901], [0.05696471780538559, -0.4094712436199188, -0.06322288513183594], [0.12402570247650146, -0.3973163664340973, 0.07226105779409409], [0.08964617550373077, -0.5774006843566895, 0.020572133362293243], [0.0237803366035223, -0.4703821837902069, -0.12365969270467758], [0.16535823047161102, -0.43651464581489563, 0.15056928992271423], [-0.07786540687084198, -0.7143906354904175, -0.13895049691200256], [0.2390497773885727, -0.6510900259017944, 0.028866007924079895], [0.0809062123298645, -0.8945566415786743, -0.068128801882267], [0.2002999633550644, -0.9053844213485718, 0.013000614941120148], [0.11839450150728226, -0.9673994779586792, -0.04893511161208153], [0.20925426483154297, -0.988245964050293, 0.0028454698622226715]]}, {"image_id": "11.jpg", "category_id": 1, "keypoints": [1280.1671142578125, 487.9210205078125, 0.9770734906196594, 1290.917236328125, 516.7059326171875, 0.9788013696670532, 1269.9588623046875, 521.2531127929688, 0.9831913113594055, 1285.926513671875, 448.77679443359375, 0.9930605292320251, 1276.9871826171875, 680.0541381835938, 0.9812526702880859, 1248.7943115234375, 671.9401245117188, 0.9886563420295715, 1283.311279296875, 399.4510803222656, 0.9896597266197205, 1269.721923828125, 813.004150390625, 0.8596946001052856, 1262.2386474609375, 800.2562866210938, 0.9180206656455994, 1274.9561767578125, 383.87921142578125, 0.9858943223953247, 1248.6866455078125, 834.68505859375, 0.9011973142623901, 1222.3162841796875, 821.39111328125, 0.9351174831390381, 1272.024169921875, 313.4419860839844, 0.9898150563240051, 1288.1107177734375, 333.7896728515625, 0.9865524768829346, 1268.0321044921875, 350.7383117675781, 0.9892484545707703, 1262.207275390625, 288.841064453125, 0.9656099081039429, 1292.8084716796875, 315.48455810546875, 0.954764723777771, 1247.689453125, 353.1795349121094, 0.9828879237174988, 1230.04345703125, 225.3001708984375, 0.9445495009422302, 1204.35791015625, 417.41119384765625, 0.9473840594291687, 1192.3778076171875, 150.2266845703125, 0.973642110824585, 1152.9178466796875, 272.53680419921875, 0.9741328358650208, 1190.11279296875, 122.50741577148438, 0.9749950766563416, 1149.670166015625, 171.38546752929688, 0.9568924307823181, 1288.1729736328125, 226.1582489013672, 0.9489598870277405, 1190.27197265625, 61.675994873046875, 0.8958219289779663, 1145.2200927734375, 107.95535278320312, 0.9521781206130981, 1231.7205810546875, 827.3407592773438, 0.8669963479042053, 1213.9730224609375, 821.01025390625, 0.9175320863723755], "score": 3.0124785900115967, "box": [1159.9593505859375, 98.65895080566406, 181.9451904296875, 748.3668060302734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.029737351462244987, 0.0819760411977768, -0.07267342507839203], [-0.0230121873319149, 0.09707760065793991, 0.04936075955629349], [0.02347136102616787, -0.10042151808738708, 0.025599345564842224], [-0.0004298107232898474, 0.4699420630931854, -0.040258973836898804], [-0.07327260822057724, 0.4873482882976532, 0.10351366549730301], [0.01124727725982666, -0.22950413823127747, 0.04154609143733978], [-0.014384092763066292, 0.8726811408996582, 0.05039629340171814], [-0.02234438620507717, 0.8714578151702881, 0.24547839164733887], [-0.01696685329079628, -0.27755704522132874, 0.03899453580379486], [-0.09348136931657791, 0.9404487609863281, -0.0344858318567276], [-0.13966317474842072, 0.9302918910980225, 0.21701359748840332], [-0.008568521589040756, -0.4826065003871918, 0.0942055881023407], [0.020392175763845444, -0.41131672263145447, 0.0033249929547309875], [-0.019514087587594986, -0.3753497898578644, 0.14402371644973755], [-0.04003077745437622, -0.55918288230896, 0.08599143475294113], [0.026812879368662834, -0.45908352732658386, -0.07419121265411377], [-0.07949841022491455, -0.37126705050468445, 0.2187766432762146], [-0.1258135735988617, -0.6607011556625366, -0.1661461591720581], [-0.2224700152873993, -0.1564790904521942, 0.2623419165611267], [-0.2243753969669342, -0.877545952796936, -0.07877060770988464], [-0.3119014799594879, -0.39677467942237854, 0.21017396450042725], [-0.2304023951292038, -0.9610933065414429, -0.06770795583724976], [-0.3152953088283539, -0.48015859723091125, 0.1971823275089264]]}, {"image_id": "12.jpg", "category_id": 1, "keypoints": [1125.655517578125, 453.1531677246094, 0.9738403558731079, 1119.46435546875, 483.4223327636719, 0.9915785193443298, 1125.15576171875, 484.1469421386719, 0.9839977622032166, 1135.6561279296875, 416.11151123046875, 0.9901852011680603, 1118.0030517578125, 622.0214233398438, 0.9745530486106873, 1098.1446533203125, 618.1732177734375, 0.9892845153808594, 1140.4722900390625, 370.37255859375, 0.9875443577766418, 1146.072265625, 750.8526611328125, 0.9380289316177368, 1096.7841796875, 744.8272094726562, 0.9300146698951721, 1139.503173828125, 352.3410339355469, 0.9908354878425598, 1134.4189453125, 778.9547119140625, 0.8653204441070557, 1063.806396484375, 772.7379150390625, 0.9341820478439331, 1164.1370849609375, 284.2577209472656, 0.9881613254547119, 1143.9722900390625, 307.93524169921875, 0.9879295229911804, 1164.387451171875, 323.4819030761719, 0.9915617108345032, 1159.843017578125, 265.809814453125, 0.9678341150283813, 1129.26416015625, 286.2974548339844, 0.9575755596160889, 1177.33984375, 315.64544677734375, 0.9856094717979431, 1098.3468017578125, 196.39456176757812, 0.9560385942459106, 1193.78173828125, 333.33837890625, 0.9614840745925903, 1164.7781982421875, 137.616455078125, 0.9801054000854492, 1168.0054931640625, 142.18658447265625, 0.9682254791259766, 1178.527587890625, 107.81723022460938, 0.9681923985481262, 1174.560791015625, 111.70965576171875, 0.9414823651313782, 1203.37451171875, 228.5285186767578, 0.8939884305000305, 1196.4464111328125, 63.64227294921875, 0.9083119034767151, 1187.20458984375, 91.741455078125, 0.9300025701522827, 1113.6168212890625, 783.3700561523438, 0.9124850034713745, 1061.5657958984375, 777.444580078125, 0.952919065952301], "score": 3.1734273433685303, "box": [1046.06396484375, 104.82011413574219, 195.658447265625, 699.8845367431641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.018374880775809288, 0.08853833377361298, -0.06806213408708572], [0.008775269612669945, 0.09137707948684692, 0.062333375215530396], [0.035348325967788696, -0.10063554346561432, -0.0022507794201374054], [-0.019341351464390755, 0.4695240259170532, -0.002439366653561592], [-0.0631384551525116, 0.4679325819015503, 0.15061889588832855], [0.04945140704512596, -0.23193328082561493, 0.0035923197865486145], [0.0682765543460846, 0.8480244874954224, 0.1231987401843071], [-0.06208993121981621, 0.8552521467208862, 0.27869829535484314], [0.04667545482516289, -0.2879289984703064, 0.007801147177815437], [0.020578963682055473, 0.9487259387969971, 0.04899177700281143], [-0.16329552233219147, 0.9382728934288025, 0.25061583518981934], [0.11347109824419022, -0.4895808696746826, 0.014348441734910011], [0.057367805391550064, -0.41423141956329346, -0.05927979201078415], [0.13318578898906708, -0.38519716262817383, 0.06836053729057312], [0.09412142634391785, -0.570749819278717, 0.00843716599047184], [0.013929763808846474, -0.46945303678512573, -0.11830174177885056], [0.18544334173202515, -0.4188234210014343, 0.14231622219085693], [-0.06965979188680649, -0.7201550006866455, -0.08331388235092163], [0.3534223735332489, -0.23021094501018524, 0.08375275135040283], [0.10796523839235306, -0.8821792006492615, -0.008182497695088387], [0.3182108998298645, -0.4872109889984131, 0.07649222016334534], [0.14234058558940887, -0.9564295411109924, 0.012564277276396751], [0.33559396862983704, -0.5693286061286926, 0.0686921700835228]]}, {"image_id": "12.jpg", "category_id": 1, "keypoints": [1278.746826171875, 484.4350891113281, 0.9754149317741394, 1289.923583984375, 514.6681518554688, 0.9818707704544067, 1267.1844482421875, 516.1416625976562, 0.983354389667511, 1285.65234375, 446.9019470214844, 0.9916669726371765, 1274.79150390625, 657.3517456054688, 0.9794373512268066, 1248.8477783203125, 655.5598754882812, 0.9799059629440308, 1283.9649658203125, 397.75836181640625, 0.9872978925704956, 1264.577392578125, 795.3523559570312, 0.8890626430511475, 1261.3756103515625, 787.39404296875, 0.9071231484413147, 1275.3238525390625, 382.4651184082031, 0.983558177947998, 1244.8482666015625, 825.1717529296875, 0.8822523951530457, 1225.7239990234375, 809.00732421875, 0.9516090750694275, 1272.3837890625, 309.8589782714844, 0.990846574306488, 1287.7843017578125, 333.0504150390625, 0.9834007024765015, 1269.5225830078125, 347.7915954589844, 0.9921820163726807, 1260.9169921875, 285.54315185546875, 0.9508305788040161, 1290.79833984375, 314.8018798828125, 0.9526789784431458, 1250.6707763671875, 349.1445007324219, 0.9852634072303772, 1231.030029296875, 224.64425659179688, 0.9150857925415039, 1204.7987060546875, 418.03662109375, 0.9564660787582397, 1194.0792236328125, 153.64749145507812, 0.9800522923469543, 1158.9072265625, 273.7017822265625, 0.976224422454834, 1194.13330078125, 131.22671508789062, 0.9635857343673706, 1155.50390625, 173.33792114257812, 0.9522034525871277, 1276.975830078125, 219.95169067382812, 0.9419263601303101, 1194.99267578125, 72.56243896484375, 0.8368813991546631, 1151.1475830078125, 115.01272583007812, 0.9517751336097717, 1231.8037109375, 824.7728271484375, 0.8844637870788574, 1219.23779296875, 813.1148681640625, 0.9432759284973145], "score": 2.9385218620300293, "box": [1158.8990478515625, 108.29328918457031, 182.1761474609375, 736.3571624755859], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.029514189809560776, 0.084621362388134, -0.06934196501970291], [-0.028299447149038315, 0.09476719051599503, 0.050606243312358856], [0.02601652592420578, -0.09998521208763123, 0.024104459211230278], [-0.008783198893070221, 0.47171643376350403, -0.03906480222940445], [-0.07236233353614807, 0.48097655177116394, 0.13022175431251526], [0.016194146126508713, -0.22960388660430908, 0.03743342310190201], [-0.03173898532986641, 0.8760495781898499, 0.0384167805314064], [-0.025358252227306366, 0.868349015712738, 0.262117862701416], [-0.011313188821077347, -0.27801790833473206, 0.03607645630836487], [-0.10133391618728638, 0.9673968553543091, -0.031117992475628853], [-0.1391771137714386, 0.934135913848877, 0.23524922132492065], [-0.005706727504730225, -0.48556697368621826, 0.0790521651506424], [0.02291819080710411, -0.4097709655761719, -0.007899371907114983], [-0.013707756996154785, -0.38140052556991577, 0.13514122366905212], [-0.04122280329465866, -0.5608505010604858, 0.0789324939250946], [0.024627020582556725, -0.45829057693481445, -0.08511325716972351], [-0.06832997500896454, -0.3812079429626465, 0.2139774113893509], [-0.12212037295103073, -0.6592437624931335, -0.18643581867218018], [-0.2120722532272339, -0.16394305229187012, 0.23430109024047852], [-0.22458675503730774, -0.8755279183387756, -0.10298490524291992], [-0.2927941679954529, -0.4110754132270813, 0.20709432661533356], [-0.2237483114004135, -0.9594029784202576, -0.09317857027053833], [-0.29631033539772034, -0.4945765733718872, 0.19525809586048126]]}, {"image_id": "13.jpg", "category_id": 1, "keypoints": [1122.2281494140625, 451.456298828125, 0.97646164894104, 1118.3519287109375, 483.31451416015625, 0.9947041869163513, 1118.62158203125, 481.89215087890625, 0.9882916808128357, 1132.4251708984375, 413.7538757324219, 0.9896951913833618, 1112.8153076171875, 618.50146484375, 0.9766164422035217, 1099.39208984375, 617.9344482421875, 0.9894295334815979, 1138.30322265625, 367.9081115722656, 0.9872986674308777, 1140.45849609375, 743.5762939453125, 0.9480412602424622, 1098.2703857421875, 741.2149047851562, 0.9438806772232056, 1138.8389892578125, 350.0044250488281, 0.991996169090271, 1131.9068603515625, 773.2647705078125, 0.9101229906082153, 1075.37451171875, 771.1981811523438, 0.9495179057121277, 1163.49853515625, 282.01251220703125, 0.9841599464416504, 1149.2772216796875, 308.37506103515625, 0.989737331867218, 1158.432373046875, 317.7406005859375, 0.9920992851257324, 1163.0955810546875, 264.21905517578125, 0.9670522212982178, 1143.9224853515625, 291.7157287597656, 0.9784699082374573, 1165.07373046875, 304.401611328125, 0.9879738092422485, 1135.742431640625, 197.3304443359375, 0.9504988193511963, 1141.2606201171875, 232.2550811767578, 0.9587274193763733, 1175.1173095703125, 137.87387084960938, 0.9896562099456787, 1163.9151611328125, 135.81088256835938, 0.9526239633560181, 1184.5775146484375, 106.59658813476562, 0.9753305315971375, 1170.89453125, 111.6595458984375, 0.94005286693573, 1198.296142578125, 220.7483367919922, 0.9256013035774231, 1198.13623046875, 73.63296508789062, 0.8544604778289795, 1185.0106201171875, 91.77023315429688, 0.9335620999336243, 1112.9173583984375, 779.37158203125, 0.934505820274353, 1072.34619140625, 775.741455078125, 0.9636185169219971], "score": 3.1681571006774902, "box": [1043.5494384765625, 124.25733947753906, 197.3253173828125, 664.7092132568359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.00632003229111433, 0.09210372716188431, -0.06492084264755249], [-0.00389144872315228, 0.08725599944591522, 0.0679815486073494], [0.0364416167140007, -0.1005319207906723, -0.0014673620462417603], [-0.01757669821381569, 0.4654828906059265, 0.01901615597307682], [-0.05348313972353935, 0.4650269150733948, 0.1501096934080124], [0.043784353882074356, -0.23297883570194244, 0.002945583313703537], [0.07086139172315598, 0.8463284969329834, 0.12123285233974457], [-0.05044421926140785, 0.840179443359375, 0.29958370327949524], [0.04532887414097786, -0.2893221974372864, 0.00029963813722133636], [0.03335808217525482, 0.9633803367614746, 0.06983071565628052], [-0.13151846826076508, 0.9439840912818909, 0.2794974744319916], [0.12247558683156967, -0.4874640107154846, -0.003903402015566826], [0.07119547575712204, -0.40765249729156494, -0.07682875543832779], [0.12920397520065308, -0.3882846236228943, 0.06236748397350311], [0.11832845956087112, -0.5616610646247864, -0.04214745759963989], [0.048017363995313644, -0.46185630559921265, -0.14766253530979156], [0.1644449383020401, -0.45579928159713745, 0.12248744070529938], [0.029409606009721756, -0.718720018863678, -0.08994095027446747], [0.08266187459230423, -0.6982689499855042, 0.10238461196422577], [0.16426341235637665, -0.9234781265258789, -0.04257076233625412], [0.14156454801559448, -0.9483659267425537, 0.10700492560863495], [0.18831898272037506, -1.0008865594863892, -0.020269179716706276], [0.16459742188453674, -1.0287206172943115, 0.09999595582485199]]}, {"image_id": "13.jpg", "category_id": 1, "keypoints": [1279.0361328125, 482.3971252441406, 0.9755049347877502, 1286.8165283203125, 510.07989501953125, 0.9788814783096313, 1270.00048828125, 513.5390014648438, 0.9809298515319824, 1286.886962890625, 445.3808898925781, 0.9902707934379578, 1269.2213134765625, 654.6363525390625, 0.9747616052627563, 1253.6947021484375, 657.740478515625, 0.9873777031898499, 1284.7008056640625, 396.2659912109375, 0.9876500964164734, 1263.83740234375, 794.202880859375, 0.8492079973220825, 1267.64990234375, 785.6148071289062, 0.9114919304847717, 1275.0556640625, 381.157470703125, 0.9826482534408569, 1239.95068359375, 827.4218139648438, 0.8630240559577942, 1231.61279296875, 808.884521484375, 0.9566565155982971, 1271.933837890625, 310.1654052734375, 0.9902205467224121, 1286.43310546875, 330.98846435546875, 0.982039213180542, 1271.730712890625, 347.8313903808594, 0.9917855858802795, 1261.0555419921875, 286.6171875, 0.9559596180915833, 1287.3192138671875, 309.82568359375, 0.9511003494262695, 1252.626953125, 350.112548828125, 0.9839407801628113, 1232.447509765625, 216.92718505859375, 0.9279339909553528, 1204.0125732421875, 418.7568664550781, 0.9646342992782593, 1192.7459716796875, 147.42318725585938, 0.9763491153717041, 1166.40576171875, 265.640869140625, 0.9802646040916443, 1191.9461669921875, 122.19442749023438, 0.971869170665741, 1158.3619384765625, 166.42715454101562, 0.9473173022270203, 1278.0628662109375, 221.44137573242188, 0.9526786208152771, 1193.287841796875, 73.35562133789062, 0.9041875600814819, 1154.174560546875, 112.21392822265625, 0.9506279230117798, 1229.1441650390625, 825.9827270507812, 0.8688881397247314, 1220.2791748046875, 811.1659545898438, 0.9397356510162354], "score": 2.8890931606292725, "box": [1154.8570556640625, 113.86263275146484, 187.3221435546875, 726.3622207641602], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01930483803153038, 0.08132323622703552, -0.07718691229820251], [-0.020270399749279022, 0.09758922457695007, 0.05016448721289635], [0.029205888509750366, -0.09958337247371674, 0.02469465509057045], [-0.026402391493320465, 0.4690002202987671, -0.060942392796278], [-0.057243235409259796, 0.4852592349052429, 0.12945546209812164], [0.017994694411754608, -0.2284558266401291, 0.04281207546591759], [-0.03734608367085457, 0.8786905407905579, -0.005977801978588104], [-0.0050901323556900024, 0.8779195547103882, 0.24691422283649445], [-0.014215268194675446, -0.273995041847229, 0.04678598418831825], [-0.11412973701953888, 0.9751678705215454, -0.059983059763908386], [-0.11824816465377808, 0.9489340782165527, 0.23052333295345306], [-0.004063569009304047, -0.481717050075531, 0.09241637587547302], [0.017342425882816315, -0.4069623351097107, 0.001903880387544632], [-0.008476823568344116, -0.3764081597328186, 0.14784826338291168], [-0.03902959078550339, -0.5571033954620361, 0.091224804520607], [0.01333688572049141, -0.4641643166542053, -0.06955444812774658], [-0.060391440987586975, -0.3737536668777466, 0.2289808839559555], [-0.13471995294094086, -0.675201952457428, -0.14744076132774353], [-0.21197856962680817, -0.16011761128902435, 0.22251364588737488], [-0.24144677817821503, -0.8840972781181335, -0.049683552235364914], [-0.2755753695964813, -0.41377824544906616, 0.2057371437549591], [-0.24323920905590057, -0.9679059386253357, -0.03718101978302002], [-0.282958447933197, -0.4977158308029175, 0.1967771202325821]]}, {"image_id": "14.jpg", "category_id": 1, "keypoints": [1117.2774658203125, 448.3070068359375, 0.9798783659934998, 1100.0699462890625, 477.8108215332031, 0.9915800094604492, 1127.3690185546875, 481.2601013183594, 0.9846707582473755, 1128.815673828125, 413.11297607421875, 0.9890519380569458, 1098.3343505859375, 616.153564453125, 0.9758813381195068, 1106.802001953125, 615.5823974609375, 0.982065737247467, 1134.0782470703125, 367.6489562988281, 0.988743782043457, 1143.3934326171875, 743.2799072265625, 0.927528440952301, 1081.0628662109375, 746.792724609375, 0.958107590675354, 1133.845458984375, 349.531982421875, 0.9911918640136719, 1141.653564453125, 775.203857421875, 0.9178290963172913, 1069.2725830078125, 770.855224609375, 0.959145724773407, 1156.873046875, 279.19287109375, 0.9850977659225464, 1124.7183837890625, 300.29083251953125, 0.9910556674003601, 1168.5804443359375, 321.8365478515625, 0.9907174706459045, 1149.790283203125, 259.53887939453125, 0.9777209758758545, 1107.8248291015625, 277.8460693359375, 0.958960771560669, 1191.66455078125, 320.38043212890625, 0.9854000210762024, 1098.1004638671875, 191.98617553710938, 0.9581819772720337, 1200.6478271484375, 398.1080322265625, 0.9260603189468384, 1166.9134521484375, 131.12277221679688, 0.9811031222343445, 1198.155517578125, 244.2713165283203, 0.9619669318199158, 1179.6357421875, 103.30618286132812, 0.9498937726020813, 1197.9305419921875, 184.40023803710938, 0.9350351095199585, 1175.522705078125, 211.03627014160156, 0.9343744516372681, 1193.1724853515625, 89.43124389648438, 0.8163793087005615, 1198.044921875, 123.56796264648438, 0.8799428939819336, 1133.086181640625, 780.6221923828125, 0.9429730176925659, 1063.9610595703125, 770.8642578125, 0.9707529544830322], "score": 3.169055938720703, "box": [1046.3985595703125, 141.71441650390625, 189.1826171875, 631.4158325195312], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05509648099541664, 0.08386832475662231, -0.05420598387718201], [0.03682190552353859, 0.09629325568675995, 0.04353444650769234], [0.03357359766960144, -0.10181978344917297, -0.01478730607777834], [-0.05816998332738876, 0.46776309609413147, -0.015634827315807343], [-0.015082687139511108, 0.4709826409816742, 0.1499570906162262], [0.04916086420416832, -0.23345378041267395, -0.007774800062179565], [0.07882365584373474, 0.8523727655410767, 0.0029510613530874252], [-0.09028135240077972, 0.8688338994979858, 0.20425526797771454], [0.049469612538814545, -0.2875761091709137, 0.009789440780878067], [0.07592049241065979, 0.9733177423477173, 0.06142747029662132], [-0.13779446482658386, 0.9756077527999878, 0.27086472511291504], [0.11859197914600372, -0.4872031509876251, -0.026538796722888947], [0.02910318411886692, -0.41353747248649597, -0.05936690792441368], [0.15964114665985107, -0.3821404278278351, 0.01548793911933899], [0.09797437489032745, -0.555654764175415, 0.016398470848798752], [-0.023355117067694664, -0.4768034517765045, -0.10259793698787689], [0.254110187292099, -0.38970908522605896, 0.039697859436273575], [-0.04210291802883148, -0.7086527347564697, 0.02785973623394966], [0.284367173910141, -0.13193970918655396, 0.045281294733285904], [0.1387157440185547, -0.8731862306594849, 0.09071038663387299], [0.2839166224002838, -0.3874616324901581, 0.09209620952606201], [0.17339234054088593, -0.9487569332122803, 0.10824035108089447], [0.2839319407939911, -0.4722155034542084, 0.09639877080917358]]}, {"image_id": "14.jpg", "category_id": 1, "keypoints": [1280.776611328125, 476.39080810546875, 0.9720533490180969, 1288.8145751953125, 504.8042297363281, 0.9794168472290039, 1271.614501953125, 506.9685363769531, 0.9806191325187683, 1286.010986328125, 440.194580078125, 0.991340160369873, 1265.20166015625, 623.5771484375, 0.9686242938041687, 1249.841064453125, 634.1287231445312, 0.9775897860527039, 1283.0291748046875, 395.5441589355469, 0.9869928359985352, 1266.9884033203125, 766.2294311523438, 0.8861140608787537, 1264.9359130859375, 760.4186401367188, 0.9578387141227722, 1273.6187744140625, 379.83740234375, 0.982727587223053, 1249.558837890625, 797.19384765625, 0.809688925743103, 1239.7996826171875, 783.7826538085938, 0.9267622232437134, 1274.8323974609375, 309.2269287109375, 0.9894813895225525, 1288.7744140625, 335.5332336425781, 0.9833493232727051, 1268.6063232421875, 343.35205078125, 0.9909146428108215, 1262.840576171875, 283.331298828125, 0.9595248699188232, 1291.1070556640625, 317.1206970214844, 0.9418473243713379, 1249.8236083984375, 338.4554138183594, 0.9833729863166809, 1238.869140625, 234.62252807617188, 0.9356969594955444, 1219.28466796875, 421.7711181640625, 0.9526148438453674, 1200.3277587890625, 149.58010864257812, 0.9760692119598389, 1187.0621337890625, 395.8839111328125, 0.9213042855262756, 1196.0504150390625, 122.03787231445312, 0.8479093313217163, 1175.0260009765625, 388.20556640625, 0.9496439099311829, 1276.1124267578125, 222.49139404296875, 0.8820123076438904, 1193.430419921875, 118.64529418945312, 0.7901303172111511, 1182.4251708984375, 349.643798828125, 0.9508740305900574, 1237.6533203125, 797.7557373046875, 0.7822201251983643, 1240.27978515625, 789.7011108398438, 0.9325329065322876], "score": 2.9627389907836914, "box": [1198.364013671875, 174.4639892578125, 145.3973388671875, 652.5285034179688], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.022653497755527496, 0.08467824757099152, -0.07012417167425156], [-0.018096094951033592, 0.09338915348052979, 0.05523677170276642], [0.024929746985435486, -0.09982149302959442, 0.01801222562789917], [-0.056564733386039734, 0.4639330506324768, -0.10794446617364883], [-0.07940851151943207, 0.4806796908378601, 0.10733125358819962], [0.007044507656246424, -0.2281123846769333, 0.022413846105337143], [-0.0540473498404026, 0.873150110244751, -0.13526374101638794], [-0.027291206642985344, 0.8845459818840027, 0.15130886435508728], [-0.025493120774626732, -0.27172553539276123, 0.01510365679860115], [-0.12031753361225128, 0.9803236722946167, -0.17886421084403992], [-0.12522508203983307, 0.972355842590332, 0.13095220923423767], [-0.005980703514069319, -0.47851473093032837, 0.04647403210401535], [0.020358463749289513, -0.3962792754173279, -0.03352880850434303], [-0.024115538224577904, -0.3795343041419983, 0.10681284219026566], [-0.042048029601573944, -0.5505223870277405, 0.025909423828125], [0.019491709768772125, -0.44592130184173584, -0.10881196707487106], [-0.0755925104022026, -0.3996461033821106, 0.18375620245933533], [-0.1191418245434761, -0.6347700357437134, -0.2373802363872528], [-0.16442488133907318, -0.1557386964559555, 0.1921752691268921], [-0.21166573464870453, -0.858676552772522, -0.16903313994407654], [-0.3036172688007355, -0.24712316691875458, -0.007290683686733246], [-0.22314389050006866, -0.9404687881469727, -0.15607118606567383], [-0.3532414138317108, -0.2731601595878601, -0.06926330178976059]]}, {"image_id": "15.jpg", "category_id": 1, "keypoints": [1111.4365234375, 445.6222839355469, 0.9782738089561462, 1093.8349609375, 474.0503845214844, 0.9936235547065735, 1120.5889892578125, 478.5227966308594, 0.9849188923835754, 1121.4935302734375, 410.6853332519531, 0.99224853515625, 1093.958984375, 607.1461791992188, 0.9796504974365234, 1106.123046875, 605.657470703125, 0.9833042621612549, 1127.49755859375, 365.8929138183594, 0.9902353286743164, 1127.379150390625, 726.9224243164062, 0.9196845293045044, 1078.4271240234375, 737.1473999023438, 0.9571253657341003, 1129.3858642578125, 348.04052734375, 0.9925839304924011, 1125.141845703125, 756.6873168945312, 0.895287811756134, 1073.685546875, 762.9945068359375, 0.9563031196594238, 1151.5421142578125, 280.212646484375, 0.9865410327911377, 1120.6556396484375, 298.3343505859375, 0.9919765591621399, 1162.356201171875, 322.43243408203125, 0.9880914092063904, 1147.8642578125, 261.11334228515625, 0.972125232219696, 1106.411865234375, 277.975341796875, 0.966446042060852, 1186.147705078125, 323.96392822265625, 0.9819374680519104, 1111.260986328125, 197.49954223632812, 0.9482411742210388, 1193.545654296875, 398.4568176269531, 0.9433174133300781, 1178.0743408203125, 137.5355224609375, 0.9779659509658813, 1194.7861328125, 242.00645446777344, 0.9672218561172485, 1185.33984375, 112.84503173828125, 0.9442583322525024, 1193.586669921875, 180.26596069335938, 0.9442839026451111, 1159.4869384765625, 215.58294677734375, 0.9446749091148376, 1197.61962890625, 101.35626220703125, 0.8424824476242065, 1200.6326904296875, 132.834228515625, 0.854620099067688, 1119.0875244140625, 760.4210205078125, 0.9129271507263184, 1070.2623291015625, 765.96630859375, 0.9691215753555298], "score": 3.1812233924865723, "box": [1036.5927734375, 152.34609985351562, 198.3822021484375, 616.4389343261719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05981597676873207, 0.08249363303184509, -0.050252027809619904], [0.03970056027173996, 0.09680472314357758, 0.03842341527342796], [0.03270123153924942, -0.10161909461021423, -0.016022181138396263], [-0.057787615805864334, 0.4647936224937439, -0.012656249105930328], [0.002244445960968733, 0.4723213315010071, 0.14173723757266998], [0.050602346658706665, -0.23345506191253662, -0.011225033551454544], [0.05210694298148155, 0.8553156852722168, 0.011645935475826263], [-0.07854324579238892, 0.8676626682281494, 0.18847179412841797], [0.05712074041366577, -0.2876693606376648, 0.004603005945682526], [0.04895811900496483, 0.9620263576507568, 0.09247959405183792], [-0.09717754274606705, 0.9860399961471558, 0.24846965074539185], [0.1234121024608612, -0.489254355430603, -0.02140495739877224], [0.02998499944806099, -0.4189731478691101, -0.049645956605672836], [0.1678871512413025, -0.38094842433929443, 0.005530063062906265], [0.11253564059734344, -0.5621275305747986, 0.01792227476835251], [-0.02189726009964943, -0.4877512454986572, -0.08399377763271332], [0.2636667490005493, -0.3762056827545166, 0.024103913456201553], [-0.0023800437338650227, -0.7188992500305176, 0.044801294803619385], [0.28902941942214966, -0.11930230259895325, 0.02227005362510681], [0.18009383976459503, -0.8857326507568359, 0.0894346833229065], [0.2947252690792084, -0.37324100732803345, 0.06995901465415955], [0.20355930924415588, -0.9624267816543579, 0.1165270209312439], [0.294252872467041, -0.45649808645248413, 0.08428346365690231]]}, {"image_id": "15.jpg", "category_id": 1, "keypoints": [1281.0167236328125, 489.8695983886719, 0.9778633117675781, 1287.8519287109375, 519.9927978515625, 0.9739345908164978, 1272.2921142578125, 521.2672119140625, 0.9799122214317322, 1290.0972900390625, 449.48541259765625, 0.9902110695838928, 1267.9522705078125, 684.4810180664062, 0.9773577451705933, 1259.2449951171875, 682.523681640625, 0.9865976572036743, 1286.989990234375, 401.5013427734375, 0.987398087978363, 1262.859130859375, 823.9280395507812, 0.8716537952423096, 1268.2037353515625, 810.9139404296875, 0.9294922351837158, 1276.685546875, 385.4346618652344, 0.9843277335166931, 1239.971435546875, 851.3408203125, 0.8503320217132568, 1240.2845458984375, 835.5462646484375, 0.949759840965271, 1275.8070068359375, 310.3154296875, 0.9903261661529541, 1288.9830322265625, 335.0760498046875, 0.9835013747215271, 1274.439697265625, 348.38128662109375, 0.9924986958503723, 1264.477294921875, 286.39654541015625, 0.9658076763153076, 1288.4801025390625, 314.044189453125, 0.9647484421730042, 1255.05615234375, 346.1744689941406, 0.9891413450241089, 1240.8763427734375, 236.58892822265625, 0.9518203735351562, 1212.441650390625, 407.1416320800781, 0.9610613584518433, 1196.1307373046875, 156.27203369140625, 0.9832132458686829, 1174.570556640625, 262.5942687988281, 0.9713481664657593, 1195.5594482421875, 132.69155883789062, 0.9622445702552795, 1165.523681640625, 166.34991455078125, 0.965445876121521, 1283.9464111328125, 221.541015625, 0.9438413381576538, 1199.920166015625, 86.11392211914062, 0.8615221977233887, 1163.867919921875, 112.2073974609375, 0.9400079250335693, 1233.22998046875, 844.48779296875, 0.8817565441131592, 1232.0999755859375, 838.5879516601562, 0.9564064145088196], "score": 3.010582447052002, "box": [1161.2701416015625, 128.8264923095703, 177.9117431640625, 702.7665863037109], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.015794210135936737, 0.08412862569093704, -0.07329852133989334], [-0.017870422452688217, 0.09434515237808228, 0.05458252876996994], [0.029488323256373405, -0.09917281568050385, 0.01860165037214756], [-0.03600943461060524, 0.4698743224143982, -0.05451676994562149], [-0.04496399313211441, 0.4861142039299011, 0.10632657259702682], [0.01670677959918976, -0.22810663282871246, 0.03064832277595997], [-0.04946867749094963, 0.8803737163543701, -0.037715040147304535], [-0.007112319115549326, 0.8745249509811401, 0.23382988572120667], [-0.01320425420999527, -0.27453845739364624, 0.029558835551142693], [-0.13563577830791473, 0.9776421189308167, -0.06920365989208221], [-0.10695722699165344, 0.9631407260894775, 0.23715144395828247], [-0.001924529206007719, -0.48245882987976074, 0.06241302937269211], [0.01792498119175434, -0.4028875231742859, -0.022620735689997673], [-0.0055575924925506115, -0.38146865367889404, 0.12293870002031326], [-0.038432054221630096, -0.5533462166786194, 0.03873475641012192], [0.009519685059785843, -0.4550226926803589, -0.09619501978158951], [-0.05405546352267265, -0.39236897230148315, 0.20409958064556122], [-0.1284617930650711, -0.6542342901229858, -0.21034547686576843], [-0.20336078107357025, -0.17908655107021332, 0.1992272436618805], [-0.2424151599407196, -0.8721948862075806, -0.15333318710327148], [-0.2707290053367615, -0.42997854948043823, 0.17969593405723572], [-0.24411150813102722, -0.9559965133666992, -0.148663729429245], [-0.2785293459892273, -0.5135118961334229, 0.1804349571466446]]}, {"image_id": "16.jpg", "category_id": 1, "keypoints": [1103.5391845703125, 447.27838134765625, 0.9769169688224792, 1090.4412841796875, 479.95849609375, 0.9937601089477539, 1106.8092041015625, 479.5343017578125, 0.9890196323394775, 1112.9171142578125, 410.9701232910156, 0.9924986958503723, 1088.2032470703125, 613.9121704101562, 0.9856506586074829, 1102.2366943359375, 611.1649780273438, 0.9804128408432007, 1120.3697509765625, 366.6241149902344, 0.988484799861908, 1120.4521484375, 736.8994140625, 0.9423353672027588, 1079.9542236328125, 739.0081787109375, 0.9480336904525757, 1123.5684814453125, 348.802978515625, 0.9927089214324951, 1114.1429443359375, 764.415771484375, 0.914152979850769, 1070.513671875, 766.679443359375, 0.9495880007743835, 1147.28662109375, 281.07110595703125, 0.9864857792854309, 1130.2379150390625, 301.4978332519531, 0.994594395160675, 1144.18798828125, 319.5146484375, 0.9962218999862671, 1148.2750244140625, 262.0576171875, 0.9693363904953003, 1130.914794921875, 280.544189453125, 0.9854471683502197, 1159.8441162109375, 314.9744873046875, 0.9920664429664612, 1185.561279296875, 204.019775390625, 0.9645132422447205, 1163.01171875, 344.4620361328125, 0.96614670753479, 1187.585205078125, 139.65496826171875, 0.9761819839477539, 1176.4769287109375, 184.70022583007812, 0.9733741283416748, 1192.4727783203125, 117.33428955078125, 0.9287371039390564, 1184.6422119140625, 153.98519897460938, 0.958553671836853, 1164.65966796875, 209.3010711669922, 0.9494680166244507, 1203.6585693359375, 106.24395751953125, 0.8606391549110413, 1205.2642822265625, 140.48886108398438, 0.8623006939888, 1106.0919189453125, 768.4056396484375, 0.943390965461731, 1068.5584716796875, 771.98876953125, 0.9580215215682983], "score": 3.190296173095703, "box": [1035.92626953125, 155.9619903564453, 197.482666015625, 608.9938812255859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05523180961608887, 0.0801706612110138, -0.05863787606358528], [0.039158519357442856, 0.09836583584547043, 0.03500237315893173], [0.03182869032025337, -0.10307210683822632, -0.008008614182472229], [-0.05891161039471626, 0.4587274193763733, 0.0021275170147418976], [0.03026876039803028, 0.4785845875740051, 0.12373024225234985], [0.05436322093009949, -0.2337437868118286, 0.0050020981580019], [0.044891972094774246, 0.8479552268981934, 0.04975112900137901], [-0.03331117704510689, 0.8694128394126892, 0.21102869510650635], [0.06465888768434525, -0.28922039270401, 0.012785788625478745], [0.01757378689944744, 0.975788950920105, 0.07856990396976471], [-0.07637567073106766, 0.9962530732154846, 0.21433904767036438], [0.13378748297691345, -0.4886826276779175, 0.0481523834168911], [0.05144905671477318, -0.43027645349502563, -0.01753815822303295], [0.17071591317653656, -0.37499886751174927, 0.0622074268758297], [0.13893552124500275, -0.5706120729446411, 0.06336474418640137], [0.05345388129353523, -0.5215639472007751, -0.034803226590156555], [0.2627660632133484, -0.4027370810508728, 0.08079765737056732], [0.20573851466178894, -0.7350636720657349, 0.0018367525190114975], [0.29207542538642883, -0.14801424741744995, 0.10663595795631409], [0.220544695854187, -0.961840033531189, 0.10799400508403778], [0.3165569603443146, -0.3994327187538147, 0.15910613536834717], [0.2385960817337036, -1.0367265939712524, 0.14312854409217834], [0.3384556770324707, -0.47902292013168335, 0.1771518439054489]]}, {"image_id": "16.jpg", "category_id": 1, "keypoints": [1284.19091796875, 480.5812683105469, 0.9729933738708496, 1290.5775146484375, 509.09027099609375, 0.9833390116691589, 1273.4012451171875, 511.9898681640625, 0.9805059432983398, 1290.1241455078125, 444.00897216796875, 0.9931231737136841, 1264.72998046875, 633.4830322265625, 0.9712170362472534, 1248.5633544921875, 642.3394775390625, 0.9807872176170349, 1287.174560546875, 398.23193359375, 0.9872210025787354, 1264.7720947265625, 779.089599609375, 0.8408324718475342, 1263.873046875, 765.9937744140625, 0.9486418962478638, 1278.2529296875, 381.8395080566406, 0.9876918196678162, 1245.033203125, 805.6566162109375, 0.810448169708252, 1232.087158203125, 791.954833984375, 0.9421136975288391, 1278.077392578125, 312.5521240234375, 0.9898225665092468, 1292.1092529296875, 337.06805419921875, 0.984902024269104, 1271.842041015625, 346.548095703125, 0.9906610250473022, 1265.2685546875, 288.6715393066406, 0.962317943572998, 1294.0960693359375, 316.792724609375, 0.9463062882423401, 1251.892333984375, 341.17578125, 0.9819977283477783, 1244.365234375, 235.78518676757812, 0.9192872047424316, 1225.6466064453125, 380.940185546875, 0.9721633791923523, 1203.9794921875, 153.88088989257812, 0.9802639484405518, 1196.96728515625, 249.04574584960938, 0.9389714002609253, 1200.708740234375, 123.4808349609375, 0.9266136884689331, 1185.17138671875, 172.216796875, 0.8863077759742737, 1284.5631103515625, 226.6334228515625, 0.9118972420692444, 1194.0455322265625, 114.91891479492188, 0.8506443500518799, 1178.197021484375, 137.54736328125, 0.7821894884109497, 1232.666748046875, 803.521728515625, 0.8116194009780884, 1227.695068359375, 796.9690551757812, 0.9505213499069214], "score": 2.9804322719573975, "box": [1194.7169189453125, 170.43942260742188, 153.951416015625, 654.3421325683594], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.019021207466721535, 0.08414524793624878, -0.07275527715682983], [-0.021566446870565414, 0.09443020820617676, 0.05339697748422623], [0.02906874567270279, -0.09869447350502014, 0.020329482853412628], [-0.06435192376375198, 0.46443137526512146, -0.11566612124443054], [-0.0885290876030922, 0.48067766427993774, 0.12222231924533844], [0.010370196774601936, -0.22598662972450256, 0.03362669050693512], [-0.06367490440607071, 0.8777521848678589, -0.1098238080739975], [-0.03241588920354843, 0.8831360340118408, 0.19500231742858887], [-0.018628809601068497, -0.27229803800582886, 0.027226749807596207], [-0.14458723366260529, 0.9831959009170532, -0.12684103846549988], [-0.1331290304660797, 0.9685819149017334, 0.21648845076560974], [-0.007325641345232725, -0.4799037277698517, 0.06111782044172287], [0.022518590092658997, -0.3996609151363373, -0.019958849996328354], [-0.021658852696418762, -0.3794460594654083, 0.12047722935676575], [-0.04733581468462944, -0.5478315353393555, 0.03515777736902237], [0.020671986043453217, -0.45328423380851746, -0.09262742102146149], [-0.07500723749399185, -0.400380402803421, 0.19611775875091553], [-0.12055935710668564, -0.659126877784729, -0.19343101978302002], [-0.21947993338108063, -0.1829739511013031, 0.17668497562408447], [-0.2221987396478653, -0.8826535940170288, -0.13033944368362427], [-0.27796319127082825, -0.4351806938648224, 0.137907937169075], [-0.22876282036304474, -0.9631296396255493, -0.10690774023532867], [-0.2896527349948883, -0.5177029371261597, 0.1490284651517868]]}, {"image_id": "17.jpg", "category_id": 1, "keypoints": [1096.123291015625, 446.49688720703125, 0.9789743423461914, 1079.2384033203125, 479.27532958984375, 0.9950873255729675, 1103.853271484375, 479.41131591796875, 0.9884064793586731, 1103.1104736328125, 409.8189697265625, 0.9940196871757507, 1080.5697021484375, 613.580322265625, 0.9876317381858826, 1099.3009033203125, 609.4729614257812, 0.9856633543968201, 1112.2547607421875, 364.7381896972656, 0.9902522563934326, 1115.0869140625, 733.02099609375, 0.9002678394317627, 1072.2491455078125, 741.258056640625, 0.9582335948944092, 1117.819580078125, 347.08795166015625, 0.9933322668075562, 1113.0179443359375, 763.0259399414062, 0.9261370301246643, 1074.2432861328125, 772.0718383789062, 0.943803071975708, 1144.49755859375, 281.2492980957031, 0.9861970543861389, 1118.2823486328125, 298.46728515625, 0.9937731623649597, 1146.080810546875, 320.4505615234375, 0.994703471660614, 1147.2286376953125, 263.4003601074219, 0.9674057364463806, 1109.1474609375, 275.20245361328125, 0.9822964072227478, 1168.5517578125, 323.3147888183594, 0.9840105175971985, 1167.9793701171875, 205.28787231445312, 0.9662352204322815, 1173.74658203125, 387.8441467285156, 0.957112193107605, 1189.255615234375, 144.9757080078125, 0.973855197429657, 1203.7457275390625, 328.4766540527344, 0.977419376373291, 1195.56103515625, 123.26312255859375, 0.920438289642334, 1215.422119140625, 313.560546875, 0.9638113975524902, 1164.0902099609375, 208.12986755371094, 0.954155683517456, 1208.7017822265625, 113.02926635742188, 0.8800601959228516, 1230.4285888671875, 289.13153076171875, 0.920759916305542, 1107.8575439453125, 768.7396240234375, 0.9274834394454956, 1067.524658203125, 779.12158203125, 0.935856819152832], "score": 3.1860809326171875, "box": [1036.1689453125, 162.17230224609375, 196.0838623046875, 598.2467651367188], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07364863902330399, 0.08172152936458588, -0.031297266483306885], [0.055081628262996674, 0.09756787866353989, 0.007142886519432068], [0.020785735920071602, -0.10606209933757782, -0.016071897000074387], [-0.0686311200261116, 0.4643291234970093, -0.0014409609138965607], [0.0480567142367363, 0.46879667043685913, 0.13015982508659363], [0.04776962846517563, -0.23627768456935883, -0.0017820317298173904], [0.041179411113262177, 0.8514525294303894, -0.06216242536902428], [-0.0313556045293808, 0.8658714294433594, 0.1700253039598465], [0.0649218037724495, -0.28914016485214233, 0.012839414179325104], [0.038901593536138535, 0.9555561542510986, 0.022847380489110947], [-0.021755944937467575, 0.995246171951294, 0.2061511129140854], [0.1525440365076065, -0.4846452474594116, 0.03585118055343628], [0.04477866366505623, -0.4338610768318176, 0.01324140653014183], [0.1865602731704712, -0.37042689323425293, 0.013570543378591537], [0.16566437482833862, -0.5585459470748901, 0.07239875197410583], [0.011364083737134933, -0.5209072828292847, 0.022062156349420547], [0.2840963900089264, -0.35733455419540405, 0.005646947771310806], [0.17767930030822754, -0.7202391624450684, 0.07835832238197327], [0.30402615666389465, -0.09964920580387115, -0.004892334342002869], [0.26048630475997925, -0.9494318962097168, 0.14188215136528015], [0.4211869537830353, -0.3294145464897156, 0.017686061561107635], [0.28354987502098083, -1.0243420600891113, 0.17527170479297638], [0.4727737605571747, -0.3957589864730835, 0.0046700369566679]]}, {"image_id": "17.jpg", "category_id": 1, "keypoints": [1285.8001708984375, 477.9593505859375, 0.9749945998191833, 1291.5748291015625, 508.08270263671875, 0.982433557510376, 1275.0181884765625, 509.62841796875, 0.9830236434936523, 1292.099609375, 441.7835998535156, 0.9923349618911743, 1268.3057861328125, 631.2640380859375, 0.9711548686027527, 1249.4647216796875, 639.533203125, 0.9775083065032959, 1289.600341796875, 397.0157470703125, 0.9850257635116577, 1268.649169921875, 776.25390625, 0.8750776052474976, 1263.1055908203125, 762.1402587890625, 0.9535147547721863, 1280.608642578125, 380.5987854003906, 0.9891713857650757, 1248.7447509765625, 803.6591796875, 0.8225019574165344, 1229.1861572265625, 786.282470703125, 0.9258525371551514, 1282.8896484375, 311.60125732421875, 0.9890375733375549, 1295.410400390625, 337.9620361328125, 0.984222948551178, 1275.4049072265625, 344.39117431640625, 0.990119993686676, 1267.626708984375, 288.6033935546875, 0.9612017273902893, 1296.9737548828125, 318.9776611328125, 0.9527890086174011, 1257.5703125, 335.28021240234375, 0.9862794280052185, 1246.4678955078125, 239.06719970703125, 0.9238962531089783, 1228.417724609375, 314.6457824707031, 0.9382715225219727, 1207.5189208984375, 153.71026611328125, 0.9799054861068726, 1201.8814697265625, 205.36199951171875, 0.9359488487243652, 1203.4466552734375, 125.80303955078125, 0.9069160223007202, 1192.44140625, 151.1153564453125, 0.8644198179244995, 1286.72314453125, 227.91433715820312, 0.9293265342712402, 1196.273681640625, 119.26373291015625, 0.8513656854629517, 1187.926513671875, 142.17047119140625, 0.7947113513946533, 1237.7818603515625, 802.3717651367188, 0.7995165586471558, 1225.00439453125, 790.884765625, 0.9343816041946411], "score": 2.9821724891662598, "box": [1195.201904296875, 174.25413513183594, 154.02197265625, 646.2392730712891], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.017444226890802383, 0.08525404334068298, -0.07103302329778671], [-0.021859660744667053, 0.09282749891281128, 0.054961927235126495], [0.030009981244802475, -0.09829428791999817, 0.018225494772195816], [-0.05969936028122902, 0.46384650468826294, -0.12557557225227356], [-0.0919586569070816, 0.4785154461860657, 0.11386889964342117], [0.01187299657613039, -0.22598326206207275, 0.027886133641004562], [-0.061125095933675766, 0.8742133378982544, -0.15013307332992554], [-0.04129528999328613, 0.8802381753921509, 0.18152928352355957], [-0.01798713207244873, -0.2713872492313385, 0.020708497613668442], [-0.1401764452457428, 0.9754254817962646, -0.18654143810272217], [-0.14944785833358765, 0.9579240083694458, 0.18663331866264343], [0.0010155484778806567, -0.4786469042301178, 0.04715729504823685], [0.027879733592271805, -0.39473143219947815, -0.03058050200343132], [-0.017127811908721924, -0.3812747299671173, 0.10972098261117935], [-0.044979728758335114, -0.5413722991943359, 0.018116921186447144], [0.024605700746178627, -0.445843905210495, -0.10466022044420242], [-0.06389643251895905, -0.413714200258255, 0.18532782793045044], [-0.11958912760019302, -0.6520451307296753, -0.19647648930549622], [-0.2767913043498993, -0.560274600982666, 0.1539638340473175], [-0.21568900346755981, -0.8787739276885986, -0.14169403910636902], [-0.34113192558288574, -0.8101584911346436, 0.11817454546689987], [-0.22562144696712494, -0.9596117734909058, -0.12234488874673843], [-0.3541209399700165, -0.8918331861495972, 0.13104254007339478]]}, {"image_id": "18.jpg", "category_id": 1, "keypoints": [1098.2041015625, 440.76513671875, 0.9801046252250671, 1081.6685791015625, 470.4344482421875, 0.9952074885368347, 1105.830322265625, 474.1990966796875, 0.9907276630401611, 1102.9930419921875, 405.74224853515625, 0.9930079579353333, 1078.3809814453125, 600.9629516601562, 0.9911338686943054, 1101.6724853515625, 596.1978759765625, 0.9856699705123901, 1112.5411376953125, 361.86749267578125, 0.9914766550064087, 1087.45947265625, 725.1927490234375, 0.9258496165275574, 1083.5078125, 726.94775390625, 0.9558481574058533, 1118.73291015625, 345.2880554199219, 0.9951383471488953, 1095.2618408203125, 754.640869140625, 0.9151698350906372, 1089.5662841796875, 760.112060546875, 0.9434667825698853, 1142.069091796875, 281.09136962890625, 0.9853328466415405, 1110.6832275390625, 297.7589111328125, 0.9900047183036804, 1149.911865234375, 319.7674560546875, 0.9926832914352417, 1147.967041015625, 265.278564453125, 0.9656262993812561, 1095.4833984375, 277.220458984375, 0.9730085730552673, 1175.2723388671875, 324.58538818359375, 0.9805882573127747, 1128.7086181640625, 208.98614501953125, 0.9589177966117859, 1182.739013671875, 393.9857177734375, 0.96664959192276, 1186.13134765625, 152.28143310546875, 0.975548505783081, 1206.505615234375, 376.3014221191406, 0.974258542060852, 1193.16015625, 127.143798828125, 0.9372689127922058, 1217.8341064453125, 347.8146667480469, 0.9669041633605957, 1167.3824462890625, 212.71385192871094, 0.9358298778533936, 1203.2705078125, 112.46343994140625, 0.853523313999176, 1227.441162109375, 295.7749938964844, 0.9250267148017883, 1096.4447021484375, 761.0415649414062, 0.9333270788192749, 1083.59228515625, 768.6654052734375, 0.9697036147117615], "score": 3.1980676651000977, "box": [1028.4005126953125, 162.27841186523438, 213.275390625, 606.9593200683594], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07878702878952026, 0.0821334570646286, -0.004657376557588577], [0.05490107834339142, 0.0973755270242691, 0.002077251672744751], [0.01614881120622158, -0.10346610844135284, -0.03011469356715679], [-0.08606669306755066, 0.45997416973114014, 0.050626713782548904], [0.04646788537502289, 0.4755425453186035, 0.09403575956821442], [0.04433874785900116, -0.23418398201465607, -0.03680923581123352], [-0.05841067060828209, 0.8612264394760132, 0.007267847657203674], [-0.004896214231848717, 0.8706179857254028, 0.1638767570257187], [0.0643652155995369, -0.28706175088882446, -0.027202393859624863], [-0.02741578221321106, 0.9712457656860352, 0.07700896263122559], [0.019489506259560585, 1.0015759468078613, 0.17919249832630157], [0.138932466506958, -0.48750317096710205, -0.04872135445475578], [0.03331088647246361, -0.4286566376686096, -0.041622359305620193], [0.17671017348766327, -0.37330758571624756, -0.0621623694896698], [0.16594934463500977, -0.5570391416549683, -0.0112595334649086], [-0.021444613113999367, -0.5040284991264343, -0.032415930181741714], [0.2716052234172821, -0.3536882996559143, -0.08056293427944183], [0.07568257302045822, -0.7027444839477539, 0.11180856823921204], [0.30019745230674744, -0.09867142140865326, -0.0662083774805069], [0.2536929249763489, -0.8788694143295288, 0.11795037984848022], [0.4923226833343506, -0.24099455773830414, 0.028926577419042587], [0.2763274312019348, -0.9559530019760132, 0.14515681564807892], [0.523204505443573, -0.31953299045562744, 0.02318703755736351]]}, {"image_id": "18.jpg", "category_id": 1, "keypoints": [1284.213623046875, 478.2800598144531, 0.9735816121101379, 1289.12060546875, 507.6665344238281, 0.9838809370994568, 1274.8109130859375, 509.09783935546875, 0.9819732308387756, 1289.6785888671875, 441.55853271484375, 0.9920150637626648, 1266.3294677734375, 629.96044921875, 0.9716107249259949, 1250.77294921875, 637.5281982421875, 0.9763820767402649, 1287.5771484375, 397.9854431152344, 0.9854723215103149, 1269.80712890625, 770.034912109375, 0.8674795627593994, 1265.4549560546875, 762.961181640625, 0.9538935422897339, 1279.0828857421875, 381.5216369628906, 0.9867867827415466, 1252.208740234375, 799.6583251953125, 0.805356502532959, 1236.1805419921875, 789.0712280273438, 0.9459000825881958, 1283.3626708984375, 314.0267639160156, 0.9882106184959412, 1293.897705078125, 339.3455810546875, 0.9845688939094543, 1275.9971923828125, 345.9517822265625, 0.991161584854126, 1268.549560546875, 290.3201904296875, 0.9611652493476868, 1294.8182373046875, 320.79229736328125, 0.9483439326286316, 1258.9395751953125, 338.7728576660156, 0.9870112538337708, 1246.5235595703125, 241.23178100585938, 0.9132243394851685, 1239.467529296875, 360.9365234375, 0.9604907035827637, 1211.82080078125, 156.96597290039062, 0.9811168909072876, 1211.391845703125, 388.2957458496094, 0.9689691662788391, 1206.2352294921875, 127.83807373046875, 0.9111360907554626, 1196.24267578125, 345.55364990234375, 0.9408372640609741, 1291.9287109375, 230.49972534179688, 0.9223126173019409, 1197.7340087890625, 120.32400512695312, 0.8160588145256042, 1181.1295166015625, 241.6368408203125, 0.8540375828742981, 1240.27685546875, 799.3519287109375, 0.7986030578613281, 1235.439697265625, 795.9898071289062, 0.9459930062294006], "score": 3.108459949493408, "box": [1200.957275390625, 175.40350341796875, 145.720703125, 648.6810913085938], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.015781192108988762, 0.08644755929708481, -0.07000334560871124], [-0.0163792222738266, 0.09200982004404068, 0.058184556663036346], [0.02825639396905899, -0.09929212927818298, 0.014292396605014801], [-0.05819416046142578, 0.46954286098480225, -0.09529949724674225], [-0.08234283328056335, 0.47824418544769287, 0.12303230911493301], [0.022961730137467384, -0.2278754711151123, 0.022878147661685944], [-0.04694543778896332, 0.8812406063079834, -0.0845986157655716], [-0.029184089973568916, 0.8802793025970459, 0.19219407439231873], [-0.0025036612059921026, -0.27602002024650574, 0.017931729555130005], [-0.11645394563674927, 0.9903849363327026, -0.11772003024816513], [-0.12821508944034576, 0.9694008827209473, 0.19728124141693115], [0.00016073347069323063, -0.4832599461078644, 0.04979091137647629], [0.030910702422261238, -0.4040472209453583, -0.031215906143188477], [-0.007333060726523399, -0.3831680119037628, 0.10996080189943314], [-0.04441642388701439, -0.5489649772644043, 0.025783225893974304], [0.025743110105395317, -0.4538852870464325, -0.1059265211224556], [-0.05117693170905113, -0.40981319546699524, 0.18931275606155396], [-0.11449439823627472, -0.661555290222168, -0.20190447568893433], [-0.22265523672103882, -0.2139245569705963, 0.20543330907821655], [-0.20250140130519867, -0.8921751976013184, -0.1480180025100708], [-0.392947256565094, -0.05129000544548035, 0.09299079328775406], [-0.21686504781246185, -0.9737235307693481, -0.13561242818832397], [-0.4217461049556732, -0.1284427046775818, 0.07790599018335342]]}, {"image_id": "19.jpg", "category_id": 1, "keypoints": [1095.588623046875, 445.3836364746094, 0.9776076674461365, 1075.135498046875, 472.4767761230469, 0.9950534105300903, 1107.8077392578125, 479.5258483886719, 0.989313542842865, 1099.3193359375, 411.64910888671875, 0.9922534227371216, 1072.58740234375, 605.9837646484375, 0.9870945811271667, 1100.2830810546875, 604.5000610351562, 0.9801568984985352, 1109.1893310546875, 369.61383056640625, 0.9897918105125427, 1092.908935546875, 724.8021240234375, 0.9221053123474121, 1074.635009765625, 741.5283203125, 0.944040834903717, 1115.9254150390625, 353.5888671875, 0.994526207447052, 1097.3170166015625, 759.419189453125, 0.8695328235626221, 1078.868896484375, 771.499267578125, 0.9549859762191772, 1138.505859375, 287.0670471191406, 0.9834492802619934, 1103.6929931640625, 305.315673828125, 0.9896920919418335, 1149.5518798828125, 325.98834228515625, 0.9913631081581116, 1144.470947265625, 272.1945495605469, 0.9493821859359741, 1088.926025390625, 285.0186767578125, 0.9691054821014404, 1175.79052734375, 329.2064208984375, 0.9761657118797302, 1104.2249755859375, 225.31692504882812, 0.9441757798194885, 1182.9888916015625, 414.4261169433594, 0.9682751893997192, 1174.6231689453125, 169.70730590820312, 0.9759709239006042, 1215.22021484375, 449.5263977050781, 0.9654238224029541, 1188.2982177734375, 144.42730712890625, 0.9249747395515442, 1230.598876953125, 434.9063720703125, 0.9575031995773315, 1159.8031005859375, 218.53558349609375, 0.9138736724853516, 1197.6297607421875, 111.15707397460938, 0.822476863861084, 1236.4847412109375, 347.48974609375, 0.9352636933326721, 1098.2882080078125, 766.1978759765625, 0.8842133283615112, 1074.560791015625, 775.6478271484375, 0.9561351537704468], "score": 3.180772304534912, "box": [1027.3651123046875, 158.4367218017578, 215.576416015625, 620.0467376708984], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07878558337688446, 0.08257779479026794, 0.002545040100812912], [0.05504082143306732, 0.09690356999635696, 0.011560361832380295], [0.016200309619307518, -0.10018077492713928, -0.039434485137462616], [-0.08487166464328766, 0.46527060866355896, 0.03493877500295639], [0.03817543014883995, 0.46991389989852905, 0.12902739644050598], [0.04620271921157837, -0.22981473803520203, -0.05152790993452072], [-0.023836147040128708, 0.8470683097839355, -0.09247840940952301], [-0.03414928540587425, 0.8680455684661865, 0.17264673113822937], [0.06782360374927521, -0.2802501320838928, -0.03510994091629982], [-0.008143985643982887, 0.9444452524185181, -0.0013496540486812592], [-0.01514136791229248, 0.9937894344329834, 0.21636486053466797], [0.1277512162923813, -0.48105332255363464, -0.08298754692077637], [0.026858311146497726, -0.4167861044406891, -0.06500011682510376], [0.1726110875606537, -0.3688211143016815, -0.08448828756809235], [0.15558171272277832, -0.5477946996688843, -0.04126749560236931], [-0.026814911514520645, -0.49225547909736633, -0.05311763286590576], [0.2689623534679413, -0.35583534836769104, -0.09940032660961151], [0.021928172558546066, -0.66652512550354, 0.14140906929969788], [0.29173725843429565, -0.09859734773635864, -0.08584281802177429], [0.21886149048805237, -0.8229178190231323, 0.15391035377979279], [0.46741268038749695, 0.09094749391078949, -0.0713127925992012], [0.25922998785972595, -0.8974900245666504, 0.1600729376077652], [0.5278522372245789, 0.032837361097335815, -0.08428940176963806]]}, {"image_id": "19.jpg", "category_id": 1, "keypoints": [1286.4749755859375, 476.6855163574219, 0.9756467342376709, 1292.72509765625, 506.689453125, 0.985700249671936, 1275.3409423828125, 508.14013671875, 0.9840790033340454, 1292.6722412109375, 440.9577941894531, 0.9915735721588135, 1270.3780517578125, 628.7764892578125, 0.9694215655326843, 1252.357177734375, 640.1446533203125, 0.9728699326515198, 1289.7794189453125, 397.63275146484375, 0.9851181507110596, 1271.123046875, 774.6185302734375, 0.882398247718811, 1265.77978515625, 765.1448974609375, 0.9572281837463379, 1280.98583984375, 380.90966796875, 0.9880735278129578, 1252.833984375, 804.2381591796875, 0.8232225179672241, 1234.3631591796875, 791.9367065429688, 0.929908037185669, 1284.67138671875, 312.5648193359375, 0.988070011138916, 1296.613037109375, 338.171875, 0.9853229522705078, 1275.9407958984375, 345.86395263671875, 0.9905524849891663, 1271.2000732421875, 288.65643310546875, 0.9638357162475586, 1299.00634765625, 321.1373596191406, 0.9529862999916077, 1258.8416748046875, 337.25299072265625, 0.9880833625793457, 1250.3873291015625, 241.98507690429688, 0.9070907831192017, 1236.91552734375, 326.4521484375, 0.9565017819404602, 1213.3009033203125, 160.033447265625, 0.9811841249465942, 1213.523193359375, 309.8546142578125, 0.9588221907615662, 1207.21484375, 134.37802124023438, 0.8973994255065918, 1196.72607421875, 264.7440490722656, 0.9154282808303833, 1291.2667236328125, 230.20852661132812, 0.9240191578865051, 1200.9613037109375, 128.45111083984375, 0.8234442472457886, 1183.220703125, 221.88339233398438, 0.8492834568023682, 1240.7208251953125, 803.2010498046875, 0.8041725754737854, 1232.546875, 798.79736328125, 0.9479107856750488], "score": 3.134760856628418, "box": [1202.25634765625, 182.52587890625, 146.453369140625, 638.4234008789062], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.018481815233826637, 0.08502743393182755, -0.07108443230390549], [-0.023212336003780365, 0.0930108055472374, 0.05413844436407089], [0.029940687119960785, -0.0980406403541565, 0.01918797381222248], [-0.055653490126132965, 0.4664391875267029, -0.11232256144285202], [-0.08582920581102371, 0.4816613495349884, 0.1049799695611], [0.022572457790374756, -0.22652658820152283, 0.030313091352581978], [-0.053895093500614166, 0.8781448602676392, -0.11578723043203354], [-0.03661005198955536, 0.8844468593597412, 0.17103879153728485], [-0.0034307800233364105, -0.2741183340549469, 0.022781657055020332], [-0.12413167953491211, 0.9799729585647583, -0.1661127358675003], [-0.13809290528297424, 0.9708892107009888, 0.17039021849632263], [-0.00324239581823349, -0.4820188581943512, 0.05040397495031357], [0.033320046961307526, -0.40118834376335144, -0.0265358779579401], [-0.01496068388223648, -0.38315442204475403, 0.11198162287473679], [-0.04468253254890442, -0.5485019683837891, 0.023007208481431007], [0.032516539096832275, -0.4490823447704315, -0.10270985215902328], [-0.06127968430519104, -0.41508784890174866, 0.187943235039711], [-0.10723091661930084, -0.6490200757980347, -0.21422754228115082], [-0.29325056076049805, -0.5318979024887085, 0.21059152483940125], [-0.20122453570365906, -0.8752454519271851, -0.15277890861034393], [-0.4892673194408417, -0.6551898717880249, 0.09056057780981064], [-0.21959109604358673, -0.9565132856369019, -0.14450104534626007], [-0.5187594294548035, -0.733475923538208, 0.087418332695961]]}, {"image_id": "20.jpg", "category_id": 1, "keypoints": [1090.3916015625, 444.10693359375, 0.9778470993041992, 1071.604248046875, 469.38751220703125, 0.9907220602035522, 1102.5625, 478.5253601074219, 0.9887003302574158, 1088.688720703125, 410.7581787109375, 0.9896669387817383, 1067.0050048828125, 602.0923461914062, 0.988560676574707, 1106.4942626953125, 600.310546875, 0.9823293089866638, 1099.5618896484375, 369.3764953613281, 0.9917042851448059, 1076.0546875, 731.4918212890625, 0.9360223412513733, 1091.6175537109375, 738.9208984375, 0.9577126502990723, 1110.965087890625, 354.330078125, 0.9935867786407471, 1077.6278076171875, 755.3720703125, 0.918577253818512, 1094.3316650390625, 762.737060546875, 0.9638419151306152, 1132.12255859375, 285.5194091796875, 0.980842113494873, 1098.7958984375, 304.5607604980469, 0.9916093349456787, 1138.830078125, 325.911865234375, 0.9917804002761841, 1147.34619140625, 272.4424133300781, 0.9451022148132324, 1085.435546875, 283.7232360839844, 0.9553064107894897, 1163.0023193359375, 330.54461669921875, 0.9810208082199097, 1094.6015625, 237.3597412109375, 0.9398449659347534, 1175.8408203125, 420.69110107421875, 0.9682009220123291, 1156.99609375, 191.48248291015625, 0.9705206155776978, 1218.9293212890625, 481.36590576171875, 0.9669191837310791, 1178.087890625, 166.16650390625, 0.8390936851501465, 1238.1513671875, 500.0282287597656, 0.9415493011474609, 1172.0853271484375, 216.37890625, 0.9112335443496704, 1190.68603515625, 111.9769287109375, 0.8234341144561768, 1255.40087890625, 488.0666809082031, 0.9480639696121216, 1085.122314453125, 762.30419921875, 0.9476214647293091, 1084.6533203125, 767.3252563476562, 0.9597952961921692], "score": 3.1696300506591797, "box": [1028.950439453125, 148.98245239257812, 213.92138671875, 637.4299621582031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06685201823711395, 0.0775199681520462, 0.050382912158966064], [0.04477221146225929, 0.10035598278045654, -0.021354328840970993], [-0.003984583541750908, -0.09956416487693787, -0.043180376291275024], [-0.07772737741470337, 0.4568547010421753, 0.11514522135257721], [0.06137898191809654, 0.48109474778175354, 0.0715533196926117], [0.028845269232988358, -0.2271139919757843, -0.06565665453672409], [-0.049618467688560486, 0.8636634945869446, 0.1047934740781784], [0.023279111832380295, 0.8770759105682373, 0.16107819974422455], [0.06299755722284317, -0.2721395492553711, -0.05688628554344177], [-0.04048895463347435, 0.9508854150772095, 0.20660267770290375], [0.03776988759636879, 0.9768805503845215, 0.2501247525215149], [0.11591998487710953, -0.46754997968673706, -0.12901617586612701], [0.027355056256055832, -0.4127204418182373, -0.06765355914831161], [0.14348381757736206, -0.35160160064697266, -0.14855320751667023], [0.1727375090122223, -0.5175805687904358, -0.09327596426010132], [-0.016378194093704224, -0.4862724542617798, -0.030855843797326088], [0.2269555926322937, -0.3318063020706177, -0.19614200294017792], [0.017725683748722076, -0.6320173740386963, 0.18936285376548767], [0.2633719742298126, -0.07526630163192749, -0.1977386623620987], [0.2122575342655182, -0.7792266011238098, 0.25315672159194946], [0.41349250078201294, 0.12840835750102997, -0.14098747074604034], [0.2663957178592682, -0.8438063859939575, 0.24200977385044098], [0.4732584059238434, 0.1875535547733307, -0.15222766995429993]]}, {"image_id": "20.jpg", "category_id": 1, "keypoints": [1283.7254638671875, 473.4298095703125, 0.9744046926498413, 1289.50439453125, 503.08770751953125, 0.985937237739563, 1272.275634765625, 504.96124267578125, 0.9866858720779419, 1290.053955078125, 438.65863037109375, 0.992222011089325, 1269.4805908203125, 628.37109375, 0.9734429121017456, 1251.433349609375, 635.9081420898438, 0.9725273847579956, 1288.2864990234375, 395.58331298828125, 0.9848134517669678, 1270.992919921875, 773.921630859375, 0.9027202129364014, 1264.7984619140625, 764.8330078125, 0.9608907699584961, 1280.4224853515625, 379.24896240234375, 0.9890819191932678, 1254.7606201171875, 801.4064331054688, 0.8082729578018188, 1238.74560546875, 792.7147827148438, 0.9395523071289062, 1284.197509765625, 312.1887512207031, 0.9879442453384399, 1296.6629638671875, 337.2880554199219, 0.9832963943481445, 1274.5435791015625, 344.70159912109375, 0.990826427936554, 1270.5238037109375, 289.2973937988281, 0.9620113372802734, 1299.1995849609375, 320.2956848144531, 0.9483281373977661, 1257.6199951171875, 335.92803955078125, 0.9857749342918396, 1254.03369140625, 243.62411499023438, 0.9169584512710571, 1228.441162109375, 305.86639404296875, 0.9552231431007385, 1214.036865234375, 167.24090576171875, 0.9753094911575317, 1209.2611083984375, 281.27685546875, 0.9602177143096924, 1208.8199462890625, 142.79833984375, 0.9426838159561157, 1194.6060791015625, 213.00808715820312, 0.9159642457962036, 1295.3548583984375, 235.92239379882812, 0.9381347298622131, 1203.34619140625, 123.65762329101562, 0.8706790804862976, 1186.43994140625, 164.55938720703125, 0.8528426289558411, 1244.2703857421875, 802.2349853515625, 0.7743268013000488, 1241.64453125, 800.0960693359375, 0.9475651383399963], "score": 3.1303763389587402, "box": [1197.6207275390625, 175.62747192382812, 152.69580078125, 654.9653015136719], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01860804669559002, 0.08476376533508301, -0.07180199027061462], [-0.025422336533665657, 0.0933040976524353, 0.053248725831508636], [0.031117457896471024, -0.0978131890296936, 0.02059287577867508], [-0.04529202729463577, 0.4697094261646271, -0.0952758863568306], [-0.08422327041625977, 0.4844028949737549, 0.08920855820178986], [0.026703571900725365, -0.22648537158966064, 0.028876200318336487], [-0.03973083943128586, 0.8816900253295898, -0.08200124651193619], [-0.037011705338954926, 0.8889708518981934, 0.1491042971611023], [0.0023442935198545456, -0.2749819755554199, 0.020749960094690323], [-0.1041666641831398, 0.9734394550323486, -0.1549799144268036], [-0.12892338633537292, 0.9844268560409546, 0.13222554326057434], [0.0026423614472150803, -0.48337221145629883, 0.04877445846796036], [0.04145704209804535, -0.4024078845977783, -0.0273808054625988], [-0.011839477345347404, -0.3842986822128296, 0.11011635512113571], [-0.03983062505722046, -0.5466423034667969, 0.016259565949440002], [0.041336916387081146, -0.45061981678009033, -0.10375893861055374], [-0.058242231607437134, -0.41688597202301025, 0.18625035881996155], [-0.09432890266180038, -0.6528027653694153, -0.21679338812828064], [-0.2403465211391449, -0.6039031147956848, 0.1825161874294281], [-0.19794896245002747, -0.8708819150924683, -0.1415194869041443], [-0.3978120982646942, -0.7882115244865417, 0.08536192029714584], [-0.2117779552936554, -0.9490419626235962, -0.11417000740766525], [-0.41552576422691345, -0.8702806234359741, 0.08435146510601044]]}, {"image_id": "21.jpg", "category_id": 1, "keypoints": [1086.0482177734375, 445.5475158691406, 0.97866290807724, 1066.3238525390625, 470.1405029296875, 0.9924160838127136, 1097.8204345703125, 479.7637023925781, 0.989100992679596, 1083.13525390625, 413.77520751953125, 0.9914656281471252, 1055.52392578125, 599.442626953125, 0.9871103763580322, 1101.9613037109375, 596.8041381835938, 0.9780311584472656, 1095.0704345703125, 372.0146484375, 0.9899645447731018, 1071.9765625, 730.6546630859375, 0.9277063608169556, 1077.6455078125, 733.0550537109375, 0.9361558556556702, 1107.056396484375, 356.96630859375, 0.9916945099830627, 1072.6978759765625, 760.8467407226562, 0.9004657864570618, 1082.9619140625, 753.0810546875, 0.9541192650794983, 1129.365478515625, 289.36004638671875, 0.9803813099861145, 1095.735595703125, 307.74774169921875, 0.9904659390449524, 1135.043701171875, 328.42626953125, 0.9926005601882935, 1145.7530517578125, 275.6669616699219, 0.9488828182220459, 1081.701416015625, 285.8352966308594, 0.9668210744857788, 1158.1011962890625, 333.11419677734375, 0.981584906578064, 1087.7626953125, 250.08682250976562, 0.9077298045158386, 1169.2149658203125, 423.033203125, 0.9574765563011169, 1150.0738525390625, 203.075439453125, 0.9730264544487, 1216.965576171875, 481.53802490234375, 0.9672227501869202, 1170.438720703125, 173.0770263671875, 0.8853458762168884, 1236.6265869140625, 497.26617431640625, 0.9525907635688782, 1173.5924072265625, 224.53477478027344, 0.9216510057449341, 1182.116943359375, 122.78900146484375, 0.9096426963806152, 1253.886474609375, 473.8267822265625, 0.9504162073135376, 1081.3939208984375, 764.61328125, 0.929253876209259, 1074.3734130859375, 753.6982421875, 0.9198177456855774], "score": 3.153104305267334, "box": [1025.5859375, 145.36727905273438, 220.9476318359375, 642.5445861816406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06624270230531693, 0.07364796102046967, 0.058154113590717316], [0.04565473273396492, 0.10222150385379791, -0.013401929289102554], [-0.00529683381319046, -0.09605081379413605, -0.05183887481689453], [-0.096919946372509, 0.4570528268814087, 0.10019370168447495], [0.06524061411619186, 0.46623843908309937, 0.13695621490478516], [0.03005506470799446, -0.22212792932987213, -0.07637929916381836], [-0.04908554628491402, 0.8569174408912659, 0.018100688233971596], [-0.0024574543349444866, 0.8651050329208374, 0.20884567499160767], [0.06550664454698563, -0.26663392782211304, -0.06885012984275818], [-0.043482303619384766, 0.9451128840446472, 0.12020570784807205], [0.020980646833777428, 0.9448860883712769, 0.31554412841796875], [0.11838147789239883, -0.46151524782180786, -0.14532554149627686], [0.03050609678030014, -0.40827590227127075, -0.08079160004854202], [0.14497923851013184, -0.3447200655937195, -0.16401095688343048], [0.17519256472587585, -0.5102645754814148, -0.10854437947273254], [-0.013895109295845032, -0.48260587453842163, -0.045451149344444275], [0.2251574844121933, -0.3242146968841553, -0.21737459301948547], [0.012524349614977837, -0.6032533645629883, 0.19255468249320984], [0.2563033401966095, -0.06527747213840485, -0.2294154018163681], [0.20691652595996857, -0.7538129687309265, 0.2557561993598938], [0.41902098059654236, 0.12538352608680725, -0.1562660187482834], [0.2548183798789978, -0.8242349028587341, 0.24804890155792236], [0.48327600955963135, 0.17837746441364288, -0.17518475651741028]]}, {"image_id": "21.jpg", "category_id": 1, "keypoints": [1285.1343994140625, 471.0718078613281, 0.9770002365112305, 1290.629638671875, 501.1127014160156, 0.9856520295143127, 1273.28955078125, 502.4905090332031, 0.9839376211166382, 1291.8123779296875, 436.7142333984375, 0.9924671053886414, 1266.1815185546875, 621.331787109375, 0.9735774993896484, 1251.2193603515625, 632.7853393554688, 0.9718749523162842, 1289.625732421875, 394.2551574707031, 0.9869270324707031, 1272.494873046875, 767.8269653320312, 0.9025973677635193, 1266.798583984375, 762.1647338867188, 0.947557270526886, 1281.5950927734375, 377.9745788574219, 0.9867655634880066, 1256.28271484375, 798.0042724609375, 0.8044989109039307, 1238.500732421875, 788.3619384765625, 0.9286006689071655, 1286.171630859375, 310.08721923828125, 0.986853301525116, 1298.8421630859375, 334.3807067871094, 0.9833998680114746, 1274.05419921875, 344.6021423339844, 0.9905005693435669, 1273.60693359375, 286.20135498046875, 0.9568353891372681, 1301.94287109375, 316.4669189453125, 0.9578355550765991, 1256.832275390625, 337.52960205078125, 0.9861511588096619, 1254.24365234375, 242.48519897460938, 0.9226365089416504, 1245.1868896484375, 387.15924072265625, 0.9602798819541931, 1213.52880859375, 169.65640258789062, 0.9784067869186401, 1223.2340087890625, 446.173583984375, 0.9009512662887573, 1207.9295654296875, 147.94656372070312, 0.9389985203742981, 1210.202880859375, 459.24267578125, 0.9301706552505493, 1293.7867431640625, 231.67547607421875, 0.9479044675827026, 1197.789794921875, 137.31912231445312, 0.8691372275352478, 1193.2701416015625, 433.493896484375, 0.8744597434997559, 1244.1092529296875, 799.19384765625, 0.7521609663963318, 1241.760986328125, 796.7500610351562, 0.9494001865386963], "score": 3.1158809661865234, "box": [1197.5479736328125, 189.2201690673828, 150.5367431640625, 636.5414886474609], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01747868023812771, 0.08336493372917175, -0.07423294335603714], [-0.027445022016763687, 0.09438350051641464, 0.051119573414325714], [0.03307699039578438, -0.09716294705867767, 0.023306580260396004], [-0.06466542184352875, 0.4619605541229248, -0.12384852766990662], [-0.08974320441484451, 0.4844750761985779, 0.08937759697437286], [0.027766121551394463, -0.22539900243282318, 0.03522976487874985], [-0.04533284530043602, 0.8735825419425964, -0.10748615860939026], [-0.03555532544851303, 0.8881203532218933, 0.15133924782276154], [0.0028669198509305716, -0.273987352848053, 0.02801457606256008], [-0.10548537969589233, 0.9656423926353455, -0.18392372131347656], [-0.13420391082763672, 0.9760600924491882, 0.1305501013994217], [0.004980102181434631, -0.48113054037094116, 0.06770215183496475], [0.04647215083241463, -0.40374481678009033, -0.011316994205117226], [-0.01454700157046318, -0.37893205881118774, 0.12302489578723907], [-0.033994175493717194, -0.5464537143707275, 0.03564177453517914], [0.04801022633910179, -0.454886794090271, -0.08628406375646591], [-0.0628328025341034, -0.4068390130996704, 0.20042352378368378], [-0.09286947548389435, -0.6413917541503906, -0.21821336448192596], [-0.11787084490060806, -0.15604232251644135, 0.24793650209903717], [-0.2049306184053421, -0.8589231967926025, -0.15377314388751984], [-0.2103423923254013, 0.08051832020282745, 0.18706269562244415], [-0.2209649533033371, -0.9350502490997314, -0.12172051519155502], [-0.25858062505722046, 0.12606175243854523, 0.13527892529964447]]}, {"image_id": "22.jpg", "category_id": 1, "keypoints": [1282.4923095703125, 474.4334411621094, 0.9781689643859863, 1287.0103759765625, 505.4149475097656, 0.9836169481277466, 1271.82421875, 507.2183532714844, 0.9855148792266846, 1290.139892578125, 439.26556396484375, 0.9922971725463867, 1266.3101806640625, 630.7023315429688, 0.9709219336509705, 1250.0264892578125, 637.9833374023438, 0.9739367365837097, 1288.031982421875, 395.67962646484375, 0.9877938628196716, 1273.7496337890625, 772.3961791992188, 0.9196762442588806, 1260.46337890625, 768.4735107421875, 0.942328929901123, 1280.05224609375, 379.0098876953125, 0.9894927740097046, 1253.876708984375, 808.939453125, 0.7764538526535034, 1228.0594482421875, 794.7277221679688, 0.9458851218223572, 1281.7113037109375, 310.47869873046875, 0.9876300692558289, 1295.5428466796875, 335.44097900390625, 0.9845441579818726, 1271.28173828125, 345.7349853515625, 0.9891744256019592, 1269.1082763671875, 286.5853271484375, 0.9628248810768127, 1298.3824462890625, 318.686767578125, 0.9459773898124695, 1254.01318359375, 338.600830078125, 0.9809410572052002, 1258.711669921875, 245.53530883789062, 0.9252040386199951, 1233.746337890625, 371.98016357421875, 0.9611238837242126, 1216.7696533203125, 176.06527709960938, 0.9716142416000366, 1221.32080078125, 435.78411865234375, 0.9149746894836426, 1208.728759765625, 155.97976684570312, 0.9653998017311096, 1210.7401123046875, 429.3663330078125, 0.92303067445755, 1277.323486328125, 238.14984130859375, 0.9512609243392944, 1199.204345703125, 131.8800048828125, 0.8865445256233215, 1189.741455078125, 353.1351318359375, 0.9309627413749695, 1243.0263671875, 809.6023559570312, 0.7136785984039307, 1227.1676025390625, 800.5819091796875, 0.9322106242179871], "score": 3.1143226623535156, "box": [1193.08740234375, 178.5728759765625, 155.21630859375, 668.563720703125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01409214548766613, 0.08373723924160004, -0.07484571635723114], [-0.023690886795520782, 0.09450872987508774, 0.05317451059818268], [0.03354109078645706, -0.09779094159603119, 0.02098008617758751], [-0.052703917026519775, 0.4674801230430603, -0.10932354629039764], [-0.08237104117870331, 0.4823406934738159, 0.11677701771259308], [0.02865692600607872, -0.2260269671678543, 0.0338204950094223], [-0.02584546059370041, 0.8754773736000061, -0.050465360283851624], [-0.04258989542722702, 0.8832709789276123, 0.20601581037044525], [0.004436680115759373, -0.2753581404685974, 0.028841502964496613], [-0.0881669670343399, 0.9734052419662476, -0.11770906299352646], [-0.1465555727481842, 0.9637261033058167, 0.17987240850925446], [-0.0009415997192263603, -0.4830589294433594, 0.06726095825433731], [0.041924770921468735, -0.4067651629447937, -0.012363813817501068], [-0.015089786611497402, -0.3803821802139282, 0.12379823625087738], [-0.04021086171269417, -0.5506526231765747, 0.040604367852211], [0.042913101613521576, -0.4546271562576294, -0.08965890109539032], [-0.062345001846551895, -0.40766751766204834, 0.20228581130504608], [-0.08269934356212616, -0.6519027352333069, -0.2223125696182251], [-0.19633060693740845, -0.18461383879184723, 0.22977344691753387], [-0.20102259516716003, -0.8648501634597778, -0.15214578807353973], [-0.24572446942329407, 0.07223092019557953, 0.23826129734516144], [-0.2214454710483551, -0.9307849407196045, -0.10369803011417389], [-0.31787025928497314, 0.029005885124206543, 0.2316105216741562]]}, {"image_id": "22.jpg", "category_id": 1, "keypoints": [1093.4273681640625, 450.48980712890625, 0.9780943393707275, 1072.94677734375, 476.8157043457031, 0.9940805435180664, 1105.7889404296875, 484.723876953125, 0.9913014769554138, 1090.9560546875, 418.06915283203125, 0.9903879165649414, 1040.3970947265625, 605.5489501953125, 0.9851164221763611, 1093.7659912109375, 610.8312377929688, 0.9805417656898499, 1100.608642578125, 375.22821044921875, 0.9927428960800171, 1070.50146484375, 732.2485961914062, 0.878034234046936, 1069.85986328125, 746.4179077148438, 0.934343695640564, 1111.9437255859375, 359.15130615234375, 0.9943716526031494, 1067.492919921875, 765.3771362304688, 0.8751463294029236, 1069.0260009765625, 760.806640625, 0.9564366340637207, 1124.3748779296875, 287.38604736328125, 0.9856382012367249, 1096.709228515625, 308.7730407714844, 0.9889492392539978, 1134.2913818359375, 328.90081787109375, 0.9913569688796997, 1142.1746826171875, 272.9846496582031, 0.9520127773284912, 1081.6861572265625, 286.50146484375, 0.967864990234375, 1154.3072509765625, 331.9936218261719, 0.9748170375823975, 1088.0516357421875, 254.49362182617188, 0.9130455255508423, 1161.986572265625, 421.27581787109375, 0.9508893489837646, 1151.093505859375, 212.80117797851562, 0.9608936309814453, 1216.06884765625, 479.39471435546875, 0.9645827412605286, 1169.2216796875, 177.43435668945312, 0.9587673544883728, 1235.88427734375, 491.1882629394531, 0.934852659702301, 1164.41064453125, 213.10659790039062, 0.9423374533653259, 1188.9019775390625, 132.49884033203125, 0.831135630607605, 1253.5750732421875, 454.05950927734375, 0.950285792350769, 1071.1947021484375, 771.289794921875, 0.9136654734611511, 1060.5816650390625, 756.4039306640625, 0.9336150288581848], "score": 3.115175724029541, "box": [1026.8099365234375, 172.67185974121094, 220.0654296875, 607.4280548095703], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06739696115255356, 0.07574695348739624, 0.052808139473199844], [0.04804738983511925, 0.10052208602428436, -0.013002068735659122], [-0.004323035478591919, -0.09625434875488281, -0.04952162876725197], [-0.16032232344150543, 0.4492473304271698, 0.09907263517379761], [0.019132042303681374, 0.4705773890018463, 0.12135186791419983], [0.023213746026158333, -0.2227899432182312, -0.07741405069828033], [-0.07367624342441559, 0.8265807628631592, -0.03864460811018944], [-0.0485563650727272, 0.8712372779846191, 0.18126702308654785], [0.05589600279927254, -0.2690882384777069, -0.07259933650493622], [-0.07889196276664734, 0.9267822504043579, 0.051377955824136734], [-0.04745365306735039, 0.9360923767089844, 0.299620121717453], [0.07917726039886475, -0.4642607271671295, -0.1589108109474182], [0.005799820180982351, -0.40509435534477234, -0.0836978554725647], [0.11464549601078033, -0.3506622612476349, -0.17781367897987366], [0.13836650550365448, -0.513447642326355, -0.12672290205955505], [-0.04116739332675934, -0.47920331358909607, -0.05306706950068474], [0.18346385657787323, -0.334593802690506, -0.2455349713563919], [-0.013103196397423744, -0.5910887718200684, 0.1888338178396225], [0.20444156229496002, -0.075185626745224, -0.2641904652118683], [0.1839970052242279, -0.7270948886871338, 0.27235734462738037], [0.38130059838294983, 0.10856272280216217, -0.20844393968582153], [0.23165254294872284, -0.796220064163208, 0.25760096311569214], [0.45131316781044006, 0.1518058180809021, -0.23035433888435364]]}, {"image_id": "23.jpg", "category_id": 1, "keypoints": [1082.9027099609375, 445.7339782714844, 0.9745618104934692, 1065.1376953125, 472.4834899902344, 0.9933103322982788, 1095.7833251953125, 480.262451171875, 0.9917302131652832, 1077.6846923828125, 412.703125, 0.9908297061920166, 1028.909912109375, 596.8778076171875, 0.9855092167854309, 1096.1942138671875, 604.3153076171875, 0.9777148365974426, 1086.7884521484375, 370.6043701171875, 0.990914523601532, 1057.5491943359375, 723.8367919921875, 0.8981061577796936, 1070.0682373046875, 741.5582275390625, 0.9433982372283936, 1099.0496826171875, 356.2272644042969, 0.9925969839096069, 1054.94775390625, 762.5853271484375, 0.828375518321991, 1078.2691650390625, 753.3463134765625, 0.9520034790039062, 1115.103271484375, 287.3934326171875, 0.986748993396759, 1086.931640625, 307.7784729003906, 0.9907260537147522, 1121.58984375, 324.946044921875, 0.9884397983551025, 1134.6746826171875, 274.3090515136719, 0.9456689953804016, 1070.586181640625, 289.293212890625, 0.9588398933410645, 1139.882568359375, 329.90826416015625, 0.9727854132652283, 1097.1004638671875, 270.61810302734375, 0.9409019351005554, 1151.050537109375, 413.4425048828125, 0.9179600477218628, 1133.5404052734375, 232.2689666748047, 0.9499223232269287, 1209.498046875, 478.3939514160156, 0.9652618169784546, 1138.4642333984375, 220.31610107421875, 0.9506171941757202, 1233.02197265625, 490.71246337890625, 0.9478145837783813, 1145.756103515625, 223.96595764160156, 0.9367766380310059, 1145.1669921875, 210.555419921875, 0.8748511075973511, 1253.1224365234375, 501.9141845703125, 0.8948275446891785, 1064.8629150390625, 765.4436645507812, 0.8680936098098755, 1064.0343017578125, 745.3035888671875, 0.9175034761428833], "score": 3.122897148132324, "box": [1005.2318115234375, 140.73460388183594, 258.248291015625, 675.7967681884766], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05899016559123993, 0.07658620178699493, 0.060605891048908234], [0.04824323579668999, 0.09940073639154434, -0.01807069033384323], [-0.012054076418280602, -0.09547270834445953, -0.048835333436727524], [-0.16380783915519714, 0.44265174865722656, 0.1298249512910843], [0.055388666689395905, 0.4661978483200073, 0.12584377825260162], [0.014611681923270226, -0.22208766639232635, -0.07499202340841293], [-0.08151128143072128, 0.8182313442230225, -0.012926056981086731], [-0.01667954958975315, 0.8626218438148499, 0.2013418972492218], [0.051072753965854645, -0.2648857831954956, -0.06787806749343872], [-0.08641546219587326, 0.9290100932121277, 0.06313098967075348], [0.014442456886172295, 0.908965528011322, 0.3237886428833008], [0.08613227307796478, -0.4645276665687561, -0.13724792003631592], [0.00993017666041851, -0.403950035572052, -0.06653497368097305], [0.11395283043384552, -0.3512713313102722, -0.1661890596151352], [0.15147338807582855, -0.5093547701835632, -0.11190808564424515], [-0.041331883519887924, -0.46699732542037964, -0.021971270442008972], [0.17904384434223175, -0.3282105326652527, -0.23506470024585724], [0.04033171012997627, -0.5373382568359375, 0.22286947071552277], [0.20903591811656952, -0.07627345621585846, -0.2936195731163025], [0.20760364830493927, -0.7158222794532776, 0.28744423389434814], [0.38322263956069946, 0.11320441961288452, -0.25377434492111206], [0.23629198968410492, -0.7840264439582825, 0.329201340675354], [0.45657819509506226, 0.1525786817073822, -0.27026620507240295]]}, {"image_id": "23.jpg", "category_id": 1, "keypoints": [1283.7364501953125, 472.4424133300781, 0.9786679744720459, 1287.907470703125, 504.0545349121094, 0.9821946024894714, 1274.0428466796875, 505.45831298828125, 0.986746609210968, 1291.078857421875, 437.47784423828125, 0.9904190301895142, 1266.2742919921875, 628.4368286132812, 0.9733259677886963, 1248.9969482421875, 635.4498901367188, 0.9746432900428772, 1288.4991455078125, 395.3662414550781, 0.9869484305381775, 1273.9658203125, 765.0930786132812, 0.9160345792770386, 1260.039306640625, 762.7439575195312, 0.9556520581245422, 1281.113525390625, 378.6439208984375, 0.9888777732849121, 1254.7886962890625, 801.11572265625, 0.7929201722145081, 1231.16259765625, 786.9347534179688, 0.9442723989486694, 1280.465576171875, 309.0543212890625, 0.9880934357643127, 1295.0128173828125, 334.9811096191406, 0.9839391708374023, 1273.1143798828125, 344.70513916015625, 0.9883531928062439, 1268.5023193359375, 285.46026611328125, 0.9640392065048218, 1299.6778564453125, 318.428466796875, 0.948810875415802, 1256.9014892578125, 337.7585754394531, 0.9826781153678894, 1265.8828125, 249.4317626953125, 0.9476709365844727, 1236.741943359375, 383.22991943359375, 0.9630775451660156, 1221.1612548828125, 175.54885864257812, 0.9555587768554688, 1220.7176513671875, 453.396728515625, 0.9399300813674927, 1211.807373046875, 155.7008056640625, 0.9596513509750366, 1207.3438720703125, 478.8145446777344, 0.9235713481903076, 1266.3892822265625, 233.400390625, 0.9472393989562988, 1195.2430419921875, 127.76815795898438, 0.8689611554145813, 1195.2445068359375, 475.814208984375, 0.8622972369194031, 1245.8525390625, 805.004150390625, 0.7515251636505127, 1230.4891357421875, 793.632080078125, 0.9296504855155945], "score": 3.108522415161133, "box": [1195.033447265625, 173.56552124023438, 152.0572509765625, 670.8963928222656], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.013281445950269699, 0.08577409386634827, -0.07234910130500793], [-0.020273230969905853, 0.09298200160264969, 0.05674375221133232], [0.032366957515478134, -0.09890149533748627, 0.016774889081716537], [-0.056088581681251526, 0.46833306550979614, -0.10120901465415955], [-0.08902689814567566, 0.4786761999130249, 0.11598977446556091], [0.025649188086390495, -0.22748719155788422, 0.02802998572587967], [-0.029658176004886627, 0.8774675726890564, -0.0642116367816925], [-0.04722562059760094, 0.8794393539428711, 0.19810248911380768], [0.0029892735183238983, -0.27765727043151855, 0.023843839764595032], [-0.09339961409568787, 0.9856480360031128, -0.11065511405467987], [-0.15001916885375977, 0.9626792669296265, 0.17824949324131012], [-0.008942179381847382, -0.4865952134132385, 0.051699329167604446], [0.034505464136600494, -0.4078001379966736, -0.025065850466489792], [-0.01783871278166771, -0.3865969181060791, 0.11372832953929901], [-0.047246746718883514, -0.5558677315711975, 0.02788989618420601], [0.041476886719465256, -0.4556451439857483, -0.10202549397945404], [-0.06319930404424667, -0.4140278100967407, 0.19322960078716278], [-0.07122588157653809, -0.6421269178390503, -0.2581600546836853], [-0.1686752587556839, -0.17554347217082977, 0.19726444780826569], [-0.19710427522659302, -0.8585479855537415, -0.22333571314811707], [-0.22951872646808624, 0.06386861205101013, 0.1134113073348999], [-0.222787544131279, -0.9254284501075745, -0.179179385304451], [-0.2669450044631958, 0.13062864542007446, 0.07839371263980865]]}, {"image_id": "24.jpg", "category_id": 1, "keypoints": [1280.5377197265625, 473.80712890625, 0.979077935218811, 1286.4085693359375, 505.76275634765625, 0.9842416048049927, 1268.4918212890625, 504.9796142578125, 0.985766589641571, 1287.7681884765625, 438.08489990234375, 0.9892237782478333, 1268.7911376953125, 630.2388305664062, 0.9735974669456482, 1245.80224609375, 635.5162353515625, 0.9750569462776184, 1286.490478515625, 395.98931884765625, 0.9866052269935608, 1273.17626953125, 764.060791015625, 0.9213396310806274, 1256.1776123046875, 761.5853271484375, 0.9424559473991394, 1279.8189697265625, 379.3240966796875, 0.9870737195014954, 1256.675537109375, 799.36181640625, 0.8195337653160095, 1231.296142578125, 787.459716796875, 0.9448691010475159, 1281.812744140625, 309.5037841796875, 0.9876124858856201, 1294.8641357421875, 336.52618408203125, 0.9853691458702087, 1273.5357666015625, 344.0904541015625, 0.9885907173156738, 1269.2916259765625, 286.9208984375, 0.9617865681648254, 1300.182373046875, 321.32086181640625, 0.9458708763122559, 1259.583984375, 337.6847229003906, 0.9882376790046692, 1272.04541015625, 255.63015747070312, 0.9363468885421753, 1242.8135986328125, 409.7017822265625, 0.9371130466461182, 1227.2474365234375, 185.83926391601562, 0.9586116671562195, 1217.10107421875, 478.2557067871094, 0.9411172866821289, 1216.4447021484375, 166.7158203125, 0.9472237229347229, 1200.85400390625, 500.0029602050781, 0.895294725894928, 1267.499755859375, 230.077880859375, 0.9183654189109802, 1202.4901123046875, 137.49761962890625, 0.9223889708518982, 1192.3934326171875, 507.6361999511719, 0.8514041304588318, 1246.382568359375, 802.5601806640625, 0.7841730117797852, 1234.1533203125, 795.0743408203125, 0.9338921904563904], "score": 3.1345863342285156, "box": [1195.55126953125, 176.64381408691406, 151.7452392578125, 662.8152923583984], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.020430095493793488, 0.09021203964948654, -0.06529131531715393], [-0.028125816956162453, 0.08945544809103012, 0.05946149677038193], [0.03190623223781586, -0.09994463622570038, 0.014760520309209824], [-0.03516373783349991, 0.47537028789520264, -0.07617460191249847], [-0.0897696390748024, 0.47590869665145874, 0.11862865835428238], [0.017018316313624382, -0.22889544069766998, 0.01519554853439331], [-0.015951350331306458, 0.8814552426338196, -0.013680770993232727], [-0.04932888224720955, 0.8752068877220154, 0.20687904953956604], [-0.007624082267284393, -0.2774522304534912, 0.004430180415511131], [-0.07210065424442291, 0.9831029176712036, -0.08056220412254333], [-0.1411028504371643, 0.9640493988990784, 0.16658556461334229], [0.009284066036343575, -0.48725616931915283, 0.027045778930187225], [0.03993158042430878, -0.4013826847076416, -0.04889463633298874], [-0.01156744733452797, -0.3905855417251587, 0.0922156497836113], [-0.031303662806749344, -0.5530852675437927, -0.002383587881922722], [0.04954404756426811, -0.44712507724761963, -0.12727782130241394], [-0.049814656376838684, -0.41696715354919434, 0.17621201276779175], [-0.04866692051291466, -0.6203226447105408, -0.3065069913864136], [-0.10717686265707016, -0.16355536878108978, 0.19734522700309753], [-0.17360766232013702, -0.830371081829071, -0.24181276559829712], [-0.19983318448066711, 0.07007451355457306, 0.1277802586555481], [-0.20497825741767883, -0.8965829014778137, -0.20003941655158997], [-0.24175438284873962, 0.12165944278240204, 0.07588277012109756]]}, {"image_id": "24.jpg", "category_id": 1, "keypoints": [1078.964111328125, 456.21685791015625, 0.9769541621208191, 1060.51708984375, 484.7793273925781, 0.9924896359443665, 1094.37841796875, 490.4434509277344, 0.9916566610336304, 1072.4578857421875, 420.97454833984375, 0.9864627122879028, 1019.9627685546875, 606.0717163085938, 0.9810082912445068, 1094.4119873046875, 621.4998779296875, 0.9758034944534302, 1082.437744140625, 376.4591064453125, 0.985419750213623, 1047.0943603515625, 718.8881225585938, 0.9220637679100037, 1069.5455322265625, 752.0125732421875, 0.9636539816856384, 1096.010986328125, 361.6355895996094, 0.9898255467414856, 1039.611328125, 757.2586059570312, 0.8544148206710815, 1071.606201171875, 765.0721435546875, 0.9583578109741211, 1111.7559814453125, 284.9942321777344, 0.9854850172996521, 1084.6092529296875, 309.176513671875, 0.9849746823310852, 1118.4842529296875, 325.5749816894531, 0.989142656326294, 1132.4322509765625, 272.8547058105469, 0.947165846824646, 1069.6444091796875, 291.640869140625, 0.9630254507064819, 1135.8656005859375, 328.613037109375, 0.9665664434432983, 1091.1942138671875, 306.9696960449219, 0.9562665820121765, 1144.289306640625, 421.2628479003906, 0.9390119314193726, 1142.824951171875, 257.5870361328125, 0.9626615643501282, 1203.9759521484375, 482.5859069824219, 0.9596944451332092, 1156.175048828125, 241.1697540283203, 0.7726279497146606, 1230.2489013671875, 493.8135986328125, 0.9254553318023682, 1158.619140625, 213.43978881835938, 0.9439787268638611, 1139.49072265625, 250.09373474121094, 0.9564032554626465, 1252.934814453125, 502.7912902832031, 0.9126609563827515, 1045.3173828125, 764.968994140625, 0.8412232398986816, 1052.689697265625, 753.0404052734375, 0.901257336139679], "score": 2.9430346488952637, "box": [996.62255859375, 166.0120849609375, 264.58642578125, 661.7787475585938], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05668177083134651, 0.0798330307006836, 0.05906510353088379], [0.05258368328213692, 0.09729350358247757, -0.01900525391101837], [-0.015359985642135143, -0.09564855694770813, -0.047593243420124054], [-0.17172321677207947, 0.43261927366256714, 0.17378367483615875], [0.05768898129463196, 0.47389689087867737, 0.10142895579338074], [0.00888176541775465, -0.223403662443161, -0.06659263372421265], [-0.09163910895586014, 0.7775536775588989, -0.03664658963680267], [-0.014341087080538273, 0.8713594675064087, 0.18113097548484802], [0.05080700293183327, -0.25969958305358887, -0.055341899394989014], [-0.11366391181945801, 0.9003443717956543, 0.014266574755311012], [-0.002820399822667241, 0.9260560274124146, 0.30385294556617737], [0.08288963884115219, -0.461185485124588, -0.12135162949562073], [0.011112692765891552, -0.3991834819316864, -0.04730574041604996], [0.10767217725515366, -0.34862062335014343, -0.155359148979187], [0.15093393623828888, -0.4956619441509247, -0.08866794407367706], [-0.03290528431534767, -0.457417756319046, 0.009759413078427315], [0.16583798825740814, -0.33271393179893494, -0.2319680154323578], [0.04267306253314018, -0.4295256435871124, 0.2659025192260742], [0.18671216070652008, -0.07547074556350708, -0.2736203968524933], [0.21941706538200378, -0.6006524562835693, 0.32834339141845703], [0.3690972924232483, 0.10868045687675476, -0.2396952211856842], [0.27252790331840515, -0.666170597076416, 0.33983108401298523], [0.4471327066421509, 0.14225906133651733, -0.24429622292518616]]}, {"image_id": "25.jpg", "category_id": 1, "keypoints": [1279.8759765625, 472.15447998046875, 0.9795030951499939, 1284.874267578125, 503.6184997558594, 0.986822783946991, 1267.2374267578125, 503.9408264160156, 0.9845736622810364, 1287.760009765625, 438.086181640625, 0.9894565939903259, 1265.1805419921875, 624.0718383789062, 0.9768421649932861, 1243.516845703125, 634.3693237304688, 0.9747145175933838, 1287.23291015625, 396.857421875, 0.9836770296096802, 1268.2069091796875, 761.6348266601562, 0.9077494740486145, 1255.5458984375, 759.2674560546875, 0.9375829100608826, 1281.0335693359375, 380.46490478515625, 0.9840776920318604, 1253.409912109375, 792.9829711914062, 0.8028744459152222, 1231.380859375, 785.274658203125, 0.9434641003608704, 1284.241455078125, 311.8883972167969, 0.9866255521774292, 1296.071044921875, 338.1085205078125, 0.9865659475326538, 1276.190673828125, 346.67181396484375, 0.9877849817276001, 1272.3182373046875, 288.5828857421875, 0.9653748869895935, 1302.4376220703125, 322.9954833984375, 0.954149067401886, 1264.12890625, 340.85772705078125, 0.9879182577133179, 1277.1109619140625, 258.26513671875, 0.9300399422645569, 1249.7420654296875, 425.2073059082031, 0.9249845147132874, 1235.645263671875, 193.03045654296875, 0.9678694009780884, 1219.8861083984375, 480.4681091308594, 0.926852822303772, 1223.93896484375, 173.15936279296875, 0.9575448036193848, 1204.166259765625, 502.1409912109375, 0.8924441337585449, 1269.820068359375, 235.08978271484375, 0.9128018617630005, 1206.7177734375, 144.09457397460938, 0.9361572265625, 1194.025634765625, 514.2437133789062, 0.8239017724990845, 1244.709716796875, 796.783447265625, 0.74443519115448, 1235.589111328125, 793.0174560546875, 0.9321627616882324], "score": 3.119476795196533, "box": [1191.2017822265625, 179.37405395507812, 160.023193359375, 662.8705749511719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.017741184681653976, 0.08819488435983658, -0.06900426745414734], [-0.03065427392721176, 0.09105842560529709, 0.05596718564629555], [0.03486247733235359, -0.09843166172504425, 0.01870083063840866], [-0.049131374806165695, 0.46953797340393066, -0.114921435713768], [-0.0972423106431961, 0.479392409324646, 0.09942132234573364], [0.03389599919319153, -0.22813327610492706, 0.025502365082502365], [-0.03881860896945, 0.8812936544418335, -0.10153710842132568], [-0.051940374076366425, 0.8811119794845581, 0.17740222811698914], [0.013667567633092403, -0.2794094681739807, 0.018403295427560806], [-0.09324640035629272, 0.9753143787384033, -0.18031767010688782], [-0.14180977642536163, 0.9705655574798584, 0.1336338222026825], [0.014028920792043209, -0.48958855867385864, 0.045824531465768814], [0.05045746639370918, -0.40811407566070557, -0.03256047144532204], [0.0019063863437622786, -0.38998115062713623, 0.10898499190807343], [-0.024445442482829094, -0.5572851300239563, 0.01763533428311348], [0.06434845179319382, -0.45526015758514404, -0.109534353017807], [-0.029563257470726967, -0.4144853949546814, 0.19637587666511536], [-0.026566941291093826, -0.6242984533309937, -0.297191321849823], [-0.07173577696084976, -0.15746398270130157, 0.2163291722536087], [-0.14437991380691528, -0.8307491540908813, -0.2096855342388153], [-0.19271020591259003, 0.054210811853408813, 0.12234991788864136], [-0.17875559628009796, -0.898431658744812, -0.17262305319309235], [-0.23498690128326416, 0.10791394114494324, 0.07269717752933502]]}, {"image_id": "25.jpg", "category_id": 1, "keypoints": [1079.10205078125, 456.95318603515625, 0.9764621257781982, 1061.87744140625, 483.8876647949219, 0.9909100532531738, 1092.412353515625, 491.7030334472656, 0.9886459708213806, 1071.8779296875, 421.82781982421875, 0.98320472240448, 1022.01806640625, 603.807373046875, 0.9828050136566162, 1094.6470947265625, 621.0286254882812, 0.9788079261779785, 1081.8529052734375, 377.6999816894531, 0.9839478135108948, 1027.96240234375, 716.644287109375, 0.9209121465682983, 1062.6339111328125, 741.2269287109375, 0.9582333564758301, 1096.2442626953125, 363.2791748046875, 0.9906026721000671, 1024.5350341796875, 754.674560546875, 0.8982053995132446, 1071.07080078125, 758.22314453125, 0.9496959447860718, 1109.7890625, 289.26470947265625, 0.9871487021446228, 1085.537109375, 312.2635498046875, 0.9870812296867371, 1114.6883544921875, 328.6244812011719, 0.9901599884033203, 1131.2901611328125, 277.45391845703125, 0.9471272230148315, 1075.32177734375, 293.41949462890625, 0.9698529839515686, 1129.3885498046875, 331.29083251953125, 0.9723727703094482, 1114.4505615234375, 278.8180847167969, 0.9336698651313782, 1140.55615234375, 420.9894714355469, 0.9225389957427979, 1165.9140625, 232.2381591796875, 0.9724874496459961, 1201.1854248046875, 480.42755126953125, 0.9611268043518066, 1174.543212890625, 218.9110107421875, 0.9056427478790283, 1226.3092041015625, 490.1922607421875, 0.924480676651001, 1155.896240234375, 215.03671264648438, 0.9383209943771362, 1178.033447265625, 208.66738891601562, 0.8452606201171875, 1252.0447998046875, 493.6717834472656, 0.9170853495597839, 1038.20361328125, 765.3722534179688, 0.86973637342453, 1058.988525390625, 749.52978515625, 0.9332476854324341], "score": 2.9577207565307617, "box": [993.12158203125, 170.51498413085938, 270.94287109375, 652.6267395019531], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05140522122383118, 0.07926543056964874, 0.06540387868881226], [0.04331152141094208, 0.09965381771326065, -0.030142592266201973], [-0.01707761362195015, -0.09822170436382294, -0.041703853756189346], [-0.1679476648569107, 0.43821799755096436, 0.17137214541435242], [0.0543883852660656, 0.48415398597717285, 0.07587097585201263], [0.007506956346333027, -0.225741907954216, -0.05827346071600914], [-0.15387772023677826, 0.7854111790657043, -0.057932522147893906], [-0.040907520800828934, 0.8665357828140259, 0.20939691364765167], [0.052029434591531754, -0.2598073482513428, -0.050907328724861145], [-0.16347160935401917, 0.9083054661750793, -0.0016427598893642426], [-0.008729568682610989, 0.931158721446991, 0.3242471218109131], [0.07830645889043808, -0.4617701768875122, -0.11898910999298096], [0.015449357219040394, -0.3999727964401245, -0.03713425248861313], [0.09694866836071014, -0.34922707080841064, -0.15671034157276154], [0.14830082654953003, -0.5012968182563782, -0.09860116243362427], [-0.014153416268527508, -0.46331650018692017, 0.023478034883737564], [0.1443863809108734, -0.33433395624160767, -0.24041280150413513], [0.10404149442911148, -0.5225490927696228, 0.26030805706977844], [0.17257101833820343, -0.07856841385364532, -0.3000936806201935], [0.29397642612457275, -0.6944117546081543, 0.2590204179286957], [0.3596484959125519, 0.10667285323143005, -0.31989309191703796], [0.3403743505477905, -0.7660905718803406, 0.25299760699272156], [0.43924039602279663, 0.13785439729690552, -0.3250240087509155]]}, {"image_id": "26.jpg", "category_id": 1, "keypoints": [1275.1798095703125, 476.2852783203125, 0.9705077409744263, 1282.240966796875, 507.5469970703125, 0.9851450324058533, 1263.7139892578125, 505.9059753417969, 0.9851004481315613, 1283.1363525390625, 441.69403076171875, 0.9907231330871582, 1262.390380859375, 628.1907348632812, 0.976577639579773, 1236.2972412109375, 632.7816772460938, 0.9715040922164917, 1282.8966064453125, 398.384033203125, 0.9808860421180725, 1261.516357421875, 753.9656982421875, 0.8807359933853149, 1251.1771240234375, 756.2981567382812, 0.942861795425415, 1277.138427734375, 381.5785217285156, 0.9843047261238098, 1245.740234375, 786.817626953125, 0.8358943462371826, 1226.7137451171875, 782.9542846679688, 0.925261914730072, 1283.789794921875, 313.81280517578125, 0.9808054566383362, 1296.605712890625, 340.39788818359375, 0.9829128384590149, 1273.23291015625, 346.6546936035156, 0.9862310290336609, 1269.5758056640625, 291.519775390625, 0.9677121639251709, 1306.5279541015625, 325.5758972167969, 0.9528070688247681, 1259.9427490234375, 339.0768127441406, 0.9844056367874146, 1274.2545166015625, 244.27545166015625, 0.9150412678718567, 1234.2532958984375, 325.6813049316406, 0.970866858959198, 1236.4566650390625, 194.11077880859375, 0.9872380495071411, 1214.9986572265625, 325.6920166015625, 0.9733969569206238, 1224.2662353515625, 174.79598999023438, 0.9672719836235046, 1204.4879150390625, 296.34356689453125, 0.9704887866973877, 1250.693603515625, 238.37020874023438, 0.9150866866111755, 1211.870361328125, 155.93203735351562, 0.9617659449577332, 1198.5692138671875, 245.29705810546875, 0.9046440720558167, 1238.529296875, 795.56494140625, 0.7513981461524963, 1236.299560546875, 794.822265625, 0.9323383569717407], "score": 3.0949630737304688, "box": [1163.2587890625, 178.99285888671875, 181.064697265625, 660.2432250976562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02050705999135971, 0.08900734782218933, -0.06484893709421158], [-0.028150714933872223, 0.08889174461364746, 0.0579628124833107], [0.031328048557043076, -0.098700612783432, 0.015373893082141876], [-0.04307828098535538, 0.4702203571796417, -0.07360538095235825], [-0.10557588189840317, 0.47017204761505127, 0.11198928207159042], [0.022290317341685295, -0.2282085120677948, 0.018606051802635193], [-0.04631505161523819, 0.877038836479187, -0.07796410471200943], [-0.05214894562959671, 0.8672140836715698, 0.18003728985786438], [0.00400390662252903, -0.2798527181148529, 0.013475660234689713], [-0.10004130005836487, 0.9677797555923462, -0.1589096486568451], [-0.14016368985176086, 0.9556015729904175, 0.13462325930595398], [0.03513813391327858, -0.485850065946579, 0.03875373676419258], [0.0621950700879097, -0.39891037344932556, -0.03594750538468361], [0.005016406998038292, -0.39103105664253235, 0.10128449648618698], [-0.010186506435275078, -0.5522260665893555, 0.01806461066007614], [0.08757072687149048, -0.4438173472881317, -0.11037642508745193], [-0.03292471915483475, -0.4220864474773407, 0.18295171856880188], [-0.014183832332491875, -0.6639056205749512, -0.21783608198165894], [-0.2266995906829834, -0.537036657333374, 0.30843067169189453], [-0.1238003745675087, -0.8402731418609619, -0.07814247161149979], [-0.46130961179733276, -0.5297616720199585, 0.20088067650794983], [-0.14914250373840332, -0.89457106590271, -0.019969776272773743], [-0.4883617162704468, -0.6080893278121948, 0.21059992909431458]]}, {"image_id": "26.jpg", "category_id": 1, "keypoints": [1074.3826904296875, 462.10858154296875, 0.975873589515686, 1059.8631591796875, 488.5905456542969, 0.9886862635612488, 1083.35107421875, 497.2513427734375, 0.9860044121742249, 1066.671630859375, 425.3912048339844, 0.9819347262382507, 1032.2706298828125, 611.1307983398438, 0.9837433099746704, 1097.8284912109375, 637.584716796875, 0.9746353030204773, 1078.901611328125, 380.86334228515625, 0.9840020537376404, 1010.9456787109375, 733.58837890625, 0.9513196349143982, 1041.608642578125, 750.1926879882812, 0.932966411113739, 1093.4683837890625, 366.24078369140625, 0.9884741902351379, 1019.1303100585938, 757.2371826171875, 0.9508388638496399, 1053.5260009765625, 779.7000732421875, 0.901827871799469, 1104.47509765625, 291.4009094238281, 0.9878117442131042, 1084.4110107421875, 316.2626953125, 0.9883624911308289, 1107.327880859375, 329.03192138671875, 0.9893749356269836, 1127.66455078125, 279.2791748046875, 0.9484934210777283, 1077.5831298828125, 300.40716552734375, 0.9764294028282166, 1119.02294921875, 329.97662353515625, 0.9769797921180725, 1115.6802978515625, 301.25811767578125, 0.9460312724113464, 1134.9068603515625, 420.3983154296875, 0.9340274333953857, 1180.8177490234375, 244.32627868652344, 0.949580729007721, 1199.58984375, 478.024658203125, 0.9626345634460449, 1189.134521484375, 229.74755859375, 0.8453800678253174, 1224.4132080078125, 486.7079162597656, 0.927304744720459, 1156.35546875, 213.80215454101562, 0.9431853890419006, 1186.9293212890625, 225.94769287109375, 0.8035024404525757, 1255.20751953125, 486.9187316894531, 0.9238590002059937, 1038.37939453125, 763.102783203125, 0.8699743747711182, 1048.0057373046875, 779.583984375, 0.9502581357955933], "score": 3.0714540481567383, "box": [988.0146484375, 175.05502319335938, 282.6492919921875, 645.1099548339844], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.039448779076337814, 0.07856111228466034, 0.0723448395729065], [0.026091884821653366, 0.09959926456212997, -0.04324249550700188], [-0.01854131370782852, -0.10029977560043335, -0.03196452185511589], [-0.11833430081605911, 0.44297629594802856, 0.18545445799827576], [0.06574954837560654, 0.4877270460128784, 0.027011815458536148], [0.012963194400072098, -0.22683170437812805, -0.04240413010120392], [-0.18986108899116516, 0.8466663360595703, 0.13977061212062836], [-0.10927432030439377, 0.849267840385437, 0.11949123442173004], [0.056258659809827805, -0.2621631324291229, -0.03779839724302292], [-0.1582806408405304, 0.9392749071121216, 0.2320958375930786], [-0.06274189800024033, 0.964613676071167, 0.17080479860305786], [0.07733691483736038, -0.46711066365242004, -0.09222055971622467], [0.026120027527213097, -0.39982113242149353, -0.007830497808754444], [0.08683162182569504, -0.35853806138038635, -0.1406446099281311], [0.15057839453220367, -0.5057435035705566, -0.08589194715023041], [0.007543131243437529, -0.45457425713539124, 0.06353550404310226], [0.12154295295476913, -0.34938845038414, -0.23033618927001953], [0.1449078470468521, -0.4692460000514984, 0.29424673318862915], [0.16150698065757751, -0.0989852249622345, -0.29501795768737793], [0.33596736192703247, -0.6363707780838013, 0.2983456552028656], [0.35623258352279663, 0.075487419962883, -0.3063558340072632], [0.37738388776779175, -0.7084879875183105, 0.31498730182647705], [0.43603241443634033, 0.10303489863872528, -0.29842886328697205]]}, {"image_id": "27.jpg", "category_id": 1, "keypoints": [1075.2098388671875, 460.6656799316406, 0.9751211404800415, 1063.716552734375, 488.1498718261719, 0.9864530563354492, 1081.7208251953125, 494.2374267578125, 0.9877614378929138, 1067.97265625, 424.16632080078125, 0.9831680655479431, 1053.39599609375, 613.33984375, 0.9841261506080627, 1093.860107421875, 630.0439453125, 0.9798622131347656, 1078.880126953125, 380.0894470214844, 0.980964183807373, 1002.812255859375, 711.3033447265625, 0.9468033909797668, 1046.15673828125, 750.4024658203125, 0.9164717197418213, 1092.23193359375, 365.4566650390625, 0.987252950668335, 1003.530517578125, 744.7540893554688, 0.9346749782562256, 1062.9912109375, 774.4951171875, 0.9384341239929199, 1098.256591796875, 290.37091064453125, 0.9874311685562134, 1083.1878662109375, 317.1570739746094, 0.9821478128433228, 1100.8583984375, 326.396240234375, 0.987501859664917, 1123.1961669921875, 277.7975769042969, 0.9487676620483398, 1079.1201171875, 303.64215087890625, 0.985930323600769, 1111.48681640625, 327.0677490234375, 0.9652147889137268, 1132.779541015625, 298.7351989746094, 0.9027121067047119, 1126.6123046875, 420.70172119140625, 0.924150824546814, 1195.33740234375, 241.82034301757812, 0.9632339477539062, 1190.443359375, 475.8888854980469, 0.9582948088645935, 1199.3258056640625, 212.88275146484375, 0.9248300790786743, 1212.7529296875, 487.5943908691406, 0.9140406250953674, 1144.4227294921875, 207.25799560546875, 0.9430891871452332, 1206.06396484375, 171.28683471679688, 0.9496913552284241, 1235.0076904296875, 497.00146484375, 0.9301325678825378, 1018.6265869140625, 758.4435424804688, 0.9126710295677185, 1062.4320068359375, 771.54443359375, 0.9450645446777344], "score": 3.1749324798583984, "box": [974.6948852539062, 189.1281280517578, 265.77947998046875, 619.4985198974609], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03245335444808006, 0.07909545302391052, 0.07391707599163055], [0.0194246768951416, 0.09821800142526627, -0.04751686379313469], [-0.01993945613503456, -0.10051336884498596, -0.02741255983710289], [-0.05845171958208084, 0.4445715844631195, 0.19958274066448212], [0.05655220150947571, 0.4858817458152771, 0.012002091854810715], [0.0097138537093997, -0.22628894448280334, -0.04713956266641617], [-0.24205003678798676, 0.7901158332824707, 0.08030843734741211], [-0.08314968645572662, 0.8539053201675415, 0.12193050980567932], [0.0496542789041996, -0.2651634216308594, -0.046073853969573975], [-0.2386999875307083, 0.9027520418167114, 0.15229929983615875], [-0.016612738370895386, 0.9509543180465698, 0.18530242145061493], [0.059460509568452835, -0.4704921543598175, -0.09829853475093842], [0.01921076700091362, -0.4005172550678253, -0.010848365724086761], [0.06674734503030777, -0.36337754130363464, -0.14907366037368774], [0.13569490611553192, -0.5013784170150757, -0.08611413836479187], [0.008955026976764202, -0.4504552185535431, 0.0650651752948761], [0.09685628861188889, -0.35478654503822327, -0.24001099169254303], [0.1989005208015442, -0.481584757566452, 0.2496718317270279], [0.1349061131477356, -0.10213658213615417, -0.2849727272987366], [0.38514941930770874, -0.6509132385253906, 0.24534489214420319], [0.3313383460044861, 0.0653967559337616, -0.25857552886009216], [0.39609265327453613, -0.7339930534362793, 0.23743827641010284], [0.40583792328834534, 0.10437184572219849, -0.25671154260635376]]}, {"image_id": "27.jpg", "category_id": 1, "keypoints": [1273.703857421875, 478.7945556640625, 0.9710258841514587, 1282.4405517578125, 509.8362731933594, 0.9850727915763855, 1261.9122314453125, 508.1075439453125, 0.9798609018325806, 1280.4234619140625, 444.52569580078125, 0.9883999824523926, 1261.1953125, 631.8234252929688, 0.9765236377716064, 1236.542724609375, 636.5012817382812, 0.9726862907409668, 1279.93212890625, 401.0245056152344, 0.9815549254417419, 1263.059326171875, 756.4762573242188, 0.8749603033065796, 1249.0467529296875, 757.0908203125, 0.9390466809272766, 1274.4449462890625, 384.1396484375, 0.9841670989990234, 1246.4298095703125, 785.2867431640625, 0.8360792398452759, 1223.0421142578125, 781.94970703125, 0.9458208680152893, 1280.6956787109375, 317.97491455078125, 0.9842128157615662, 1293.927490234375, 343.1719970703125, 0.9831379055976868, 1269.452880859375, 350.7789306640625, 0.985436201095581, 1267.3773193359375, 295.5460205078125, 0.9689141511917114, 1306.8822021484375, 327.7008056640625, 0.9509699940681458, 1256.04443359375, 345.9929504394531, 0.9819499850273132, 1277.429931640625, 245.60348510742188, 0.9007101058959961, 1233.6085205078125, 371.15997314453125, 0.9386142492294312, 1240.687255859375, 198.13949584960938, 0.978929340839386, 1214.00244140625, 421.32379150390625, 0.9630769491195679, 1228.6119384765625, 179.8780517578125, 0.976320207118988, 1199.9296875, 418.2657165527344, 0.9610971212387085, 1243.408203125, 241.80560302734375, 0.9121953248977661, 1215.465576171875, 161.43377685546875, 0.9468597769737244, 1196.10693359375, 346.3766174316406, 0.9311783313751221, 1237.3861083984375, 790.85595703125, 0.7519339323043823, 1231.7186279296875, 792.51513671875, 0.9425255656242371], "score": 3.138791561126709, "box": [1164.51611328125, 176.24681091308594, 178.430419921875, 667.4423980712891], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.025594297796487808, 0.08966844528913498, -0.062253087759017944], [-0.028899502009153366, 0.08861621469259262, 0.05820997804403305], [0.028292836621403694, -0.09964604675769806, 0.015027690678834915], [-0.04198000207543373, 0.4705699682235718, -0.07495744526386261], [-0.09862691909074783, 0.4704987406730652, 0.12137538939714432], [0.027316797524690628, -0.22925426065921783, 0.019975420087575912], [-0.03559158742427826, 0.878055989742279, -0.07175171375274658], [-0.05073290690779686, 0.8658049702644348, 0.2057926058769226], [0.00985102728009224, -0.28113073110580444, 0.014555692672729492], [-0.09513819217681885, 0.9620597958564758, -0.15595901012420654], [-0.14384965598583221, 0.9475857615470886, 0.15801993012428284], [0.02685590460896492, -0.48738086223602295, 0.04978524148464203], [0.06229918450117111, -0.405695378780365, -0.02728058025240898], [0.0003615057794377208, -0.3882067799568176, 0.10689914971590042], [-0.016294416040182114, -0.5556483864784241, 0.030969608575105667], [0.09704796224832535, -0.451524555683136, -0.09716176241636276], [-0.03869304060935974, -0.40987420082092285, 0.19093501567840576], [0.002880178391933441, -0.6740604043006897, -0.2075832486152649], [-0.2045903354883194, -0.2212328165769577, 0.25112268328666687], [-0.09667578339576721, -0.8376139998435974, -0.045902349054813385], [-0.29847052693367004, 0.005853191018104553, 0.17067384719848633], [-0.12077397853136063, -0.8885608315467834, 0.015775393694639206], [-0.37412384152412415, -0.008874878287315369, 0.13859111070632935]]}, {"image_id": "28.jpg", "category_id": 1, "keypoints": [1081.3421630859375, 458.8581237792969, 0.981231153011322, 1082.4766845703125, 487.31646728515625, 0.9877275228500366, 1078.118408203125, 490.15478515625, 0.989106297492981, 1073.1314697265625, 422.232421875, 0.986993134021759, 1079.9840087890625, 618.6984252929688, 0.9838773012161255, 1091.494873046875, 626.4769897460938, 0.9831711649894714, 1083.2694091796875, 378.62139892578125, 0.9813341498374939, 999.2356567382812, 707.484375, 0.9370265007019043, 1052.86767578125, 747.302001953125, 0.9018863439559937, 1096.3804931640625, 365.1439208984375, 0.987143337726593, 996.3648681640625, 744.348388671875, 0.9327467679977417, 1066.3653564453125, 778.0343017578125, 0.9083386063575745, 1098.850341796875, 292.5733337402344, 0.9887375235557556, 1096.3414306640625, 319.15692138671875, 0.9864393472671509, 1091.543212890625, 325.90704345703125, 0.9866912961006165, 1123.79833984375, 278.3024597167969, 0.9411529302597046, 1104.2786865234375, 304.5383605957031, 0.986581027507782, 1093.2310791015625, 327.27996826171875, 0.9772037267684937, 1154.795654296875, 284.2486572265625, 0.9175923466682434, 1120.5146484375, 417.734375, 0.9245909452438354, 1198.232177734375, 233.40548706054688, 0.9605513215065002, 1182.8365478515625, 476.5238037109375, 0.9566708207130432, 1198.760009765625, 212.72372436523438, 0.9461373686790466, 1203.9874267578125, 489.22314453125, 0.9025996923446655, 1144.519287109375, 208.28961181640625, 0.9429627656936646, 1208.181396484375, 182.7252197265625, 0.9237910509109497, 1229.756103515625, 502.9021301269531, 0.9245960116386414, 1008.3402709960938, 755.2344970703125, 0.9448727369308472, 1074.96630859375, 780.625, 0.9025579690933228], "score": 3.1834211349487305, "box": [972.7610473632812, 203.9927215576172, 269.76019287109375, 591.3082427978516], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.006010391749441624, 0.08647429943084717, 0.07404538989067078], [-0.014117332175374031, 0.09387657791376114, -0.05915955454111099], [-0.025943322107195854, -0.10443076491355896, -0.004672011360526085], [0.002270609140396118, 0.46508732438087463, 0.15589338541030884], [0.024618225172162056, 0.48621073365211487, -0.053565479815006256], [0.006596362683922052, -0.22990453243255615, -0.02743479236960411], [-0.27112922072410583, 0.7685117125511169, 0.19442494213581085], [-0.08629569411277771, 0.8566582798957825, 0.08280160278081894], [0.04921070113778114, -0.2650069296360016, -0.03953351825475693], [-0.2802885174751282, 0.8959036469459534, 0.2364715039730072], [-0.0341440886259079, 0.9754510521888733, 0.04706835746765137], [0.04178259149193764, -0.4728345274925232, -0.09010417759418488], [0.04267456755042076, -0.40205687284469604, 0.006979530677199364], [0.021789230406284332, -0.3656565546989441, -0.1403399258852005], [0.11378053575754166, -0.5135113596916199, -0.09883437305688858], [0.07149805873632431, -0.4544021487236023, 0.07764595746994019], [0.02276746928691864, -0.3540995717048645, -0.23710164427757263], [0.2455599009990692, -0.535755455493927, 0.2637672424316406], [0.09344294667243958, -0.10845565795898438, -0.28708869218826294], [0.4097062349319458, -0.727978527545929, 0.2728477418422699], [0.28318071365356445, 0.06998375058174133, -0.2813548743724823], [0.4122757613658905, -0.8127254843711853, 0.2779461443424225], [0.3560033440589905, 0.113481804728508, -0.2780519127845764]]}, {"image_id": "28.jpg", "category_id": 1, "keypoints": [1274.5439453125, 482.0915832519531, 0.9741661548614502, 1283.2364501953125, 512.9376220703125, 0.9865975975990295, 1262.4405517578125, 511.78448486328125, 0.9771139621734619, 1281.583251953125, 446.7984619140625, 0.9892509579658508, 1257.669921875, 637.310302734375, 0.9771981835365295, 1234.9415283203125, 641.2053833007812, 0.9761965870857239, 1280.2772216796875, 401.9096984863281, 0.9760976433753967, 1256.4554443359375, 761.638427734375, 0.9084967970848083, 1249.789794921875, 763.3135986328125, 0.9496253728866577, 1274.720947265625, 385.3207092285156, 0.977748453617096, 1235.0556640625, 795.6150512695312, 0.8152674436569214, 1221.70751953125, 791.60498046875, 0.9395459890365601, 1279.822265625, 317.1181640625, 0.9838682413101196, 1293.148193359375, 343.080322265625, 0.9819040894508362, 1268.4239501953125, 351.24578857421875, 0.9822959303855896, 1268.422607421875, 294.774169921875, 0.9680461287498474, 1305.34326171875, 328.9968566894531, 0.9479645490646362, 1255.8538818359375, 346.96759033203125, 0.9784136414527893, 1278.7081298828125, 241.9066162109375, 0.9242957830429077, 1234.7967529296875, 386.3220520019531, 0.9132571220397949, 1246.3387451171875, 196.18612670898438, 0.9725841283798218, 1208.35009765625, 462.9354248046875, 0.9563544392585754, 1235.8106689453125, 180.530517578125, 0.9664809107780457, 1191.763916015625, 475.11639404296875, 0.927492618560791, 1242.1041259765625, 237.16268920898438, 0.9126633405685425, 1221.3115234375, 161.52548217773438, 0.9554060697555542, 1187.2520751953125, 450.0381774902344, 0.951748788356781, 1227.45458984375, 800.6068115234375, 0.7696298360824585, 1225.05419921875, 802.8878173828125, 0.9468241333961487], "score": 3.1447913646698, "box": [1163.2803955078125, 187.65740966796875, 178.890625, 647.5491943359375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.025133971124887466, 0.09022998064756393, -0.06102314218878746], [-0.02838803455233574, 0.08766580373048782, 0.059214845299720764], [0.027956413105130196, -0.09918269515037537, 0.013435591012239456], [-0.05489272251725197, 0.469368040561676, -0.08181928098201752], [-0.10367011278867722, 0.4695005714893341, 0.12160094082355499], [0.016171345487236977, -0.2278285026550293, 0.0144108347594738], [-0.05816592648625374, 0.8774827718734741, -0.07426591217517853], [-0.04873764514923096, 0.8648581504821777, 0.2041545957326889], [-0.0017118544783443213, -0.2790556252002716, 0.008155068382620811], [-0.1246219053864479, 0.9672339558601379, -0.1462496817111969], [-0.14118832349777222, 0.9517031908035278, 0.16553248465061188], [0.0228921826928854, -0.4838559031486511, 0.04200749099254608], [0.054212555289268494, -0.40086400508880615, -0.03456979990005493], [-0.0058258306235075, -0.3862786889076233, 0.09946995228528976], [-0.015823284164071083, -0.553955078125, 0.02047804743051529], [0.08720801770687103, -0.4432525038719177, -0.10670039802789688], [-0.04210684448480606, -0.40651196241378784, 0.18434937298297882], [0.0036148878280073404, -0.6665682792663574, -0.22469745576381683], [-0.1590430736541748, -0.18197572231292725, 0.2369735687971115], [-0.08393099904060364, -0.830127477645874, -0.05607523024082184], [-0.2449800670146942, 0.05883190035820007, 0.19689323008060455], [-0.1079484298825264, -0.8808313608169556, 0.0055067092180252075], [-0.3082902133464813, 0.10435638576745987, 0.16774438321590424]]}, {"image_id": "29.jpg", "category_id": 1, "keypoints": [1080.0841064453125, 459.3997802734375, 0.9806037545204163, 1079.8045654296875, 487.635498046875, 0.9856889843940735, 1075.9384765625, 490.1837158203125, 0.9884502291679382, 1072.764404296875, 423.45751953125, 0.9900702238082886, 1086.3045654296875, 614.4602661132812, 0.9764150381088257, 1086.4228515625, 622.9178466796875, 0.9727487564086914, 1084.6114501953125, 380.14935302734375, 0.9807323813438416, 1002.2674560546875, 703.92919921875, 0.9485160112380981, 1047.06640625, 750.9854736328125, 0.9059204459190369, 1097.7550048828125, 366.68304443359375, 0.9831976890563965, 995.6968994140625, 738.9442138671875, 0.962536096572876, 1069.637451171875, 775.6024169921875, 0.8609296679496765, 1098.85986328125, 294.39190673828125, 0.9877728819847107, 1098.015869140625, 321.5318908691406, 0.9855971932411194, 1091.029296875, 327.8468322753906, 0.9862796068191528, 1122.0205078125, 280.33740234375, 0.9328815937042236, 1107.817626953125, 306.8934631347656, 0.9841882586479187, 1089.5928955078125, 327.9454345703125, 0.9760132431983948, 1165.3916015625, 280.149658203125, 0.9413222670555115, 1113.4727783203125, 415.2507629394531, 0.9339307546615601, 1208.935302734375, 227.36502075195312, 0.9680214524269104, 1177.4051513671875, 473.99029541015625, 0.9501964449882507, 1215.612060546875, 204.81103515625, 0.9459249973297119, 1201.030517578125, 488.86834716796875, 0.9074589610099792, 1139.443359375, 208.08154296875, 0.9410374164581299, 1221.762451171875, 174.2559814453125, 0.8884117603302002, 1227.268798828125, 499.7654113769531, 0.9288976192474365, 1007.5193481445312, 751.9324340820312, 0.9284090995788574, 1078.2293701171875, 773.2055053710938, 0.9115818738937378], "score": 3.178462505340576, "box": [978.3991088867188, 202.58541870117188, 257.54205322265625, 600.5754699707031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.002230452373623848, 0.08537102490663528, 0.07442162930965424], [-0.01581101305782795, 0.09343601763248444, -0.05799111723899841], [-0.02235761284828186, -0.10410952568054199, -0.006114577874541283], [0.025471026077866554, 0.45876508951187134, 0.17266100645065308], [0.01647898741066456, 0.48400238156318665, -0.022766049951314926], [0.014675281010568142, -0.2281343936920166, -0.027065955102443695], [-0.25290441513061523, 0.75694739818573, 0.19811472296714783], [-0.09227683395147324, 0.8584085702896118, 0.09890873730182648], [0.05293367803096771, -0.2671981453895569, -0.03933095186948776], [-0.2741740643978119, 0.8774948120117188, 0.2523624300956726], [-0.0018108697840943933, 0.9571062326431274, 0.09970051050186157], [0.045495662838220596, -0.4737568199634552, -0.08972054719924927], [0.04939329996705055, -0.4033302962779999, 0.006658144295215607], [0.02258816920220852, -0.36725762486457825, -0.13826824724674225], [0.11563398689031601, -0.5154212713241577, -0.10603213310241699], [0.08361781388521194, -0.4547293484210968, 0.07469935715198517], [0.013828861527144909, -0.36000266671180725, -0.23431657254695892], [0.27095693349838257, -0.5509103536605835, 0.2380586713552475], [0.07625282555818558, -0.11668023467063904, -0.29887428879737854], [0.4311932921409607, -0.7451529502868652, 0.23804093897342682], [0.26717379689216614, 0.0590277761220932, -0.30212563276290894], [0.4538756012916565, -0.8247528076171875, 0.22150033712387085], [0.3385661840438843, 0.10391705483198166, -0.3011111319065094]]}, {"image_id": "29.jpg", "category_id": 1, "keypoints": [1274.6390380859375, 482.7430419921875, 0.9751206040382385, 1284.2327880859375, 512.5501098632812, 0.9874929785728455, 1261.1619873046875, 513.0241088867188, 0.9759643077850342, 1281.737548828125, 449.7655029296875, 0.9872734546661377, 1256.595458984375, 628.2859497070312, 0.9816768169403076, 1235.70361328125, 644.1107177734375, 0.9759683609008789, 1280.0672607421875, 405.15582275390625, 0.9798596501350403, 1255.9449462890625, 758.765380859375, 0.8705171942710876, 1255.793701171875, 764.2742309570312, 0.9410721659660339, 1274.696533203125, 388.3630676269531, 0.9823479056358337, 1240.5875244140625, 786.556640625, 0.8567137122154236, 1231.3466796875, 792.4088134765625, 0.9360963106155396, 1279.0675048828125, 320.23858642578125, 0.9809054732322693, 1294.2353515625, 345.7079162597656, 0.9833159446716309, 1265.867919921875, 354.202392578125, 0.9810311198234558, 1270.9071044921875, 299.5101013183594, 0.9677445888519287, 1307.849365234375, 332.2705078125, 0.9510778188705444, 1252.0286865234375, 348.8536376953125, 0.9671872854232788, 1283.84375, 239.53375244140625, 0.9213438034057617, 1223.12255859375, 363.59332275390625, 0.9437800049781799, 1256.2276611328125, 194.12457275390625, 0.9717898368835449, 1208.518798828125, 401.65631103515625, 0.9547479152679443, 1249.232177734375, 180.05572509765625, 0.9602295756340027, 1197.5943603515625, 392.79248046875, 0.9304536581039429, 1244.982421875, 238.2154541015625, 0.9074147939682007, 1238.552978515625, 158.58724975585938, 0.9469124674797058, 1199.37841796875, 344.89984130859375, 0.9155425429344177, 1230.402587890625, 790.332275390625, 0.7717116475105286, 1234.4776611328125, 801.473388671875, 0.9292145371437073], "score": 3.1623284816741943, "box": [1165.4468994140625, 188.76441955566406, 176.5281982421875, 648.8809661865234], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.02731315791606903, 0.08656920492649078, -0.0655413493514061], [-0.03491773456335068, 0.09082541614770889, 0.05070867761969566], [0.029630739241838455, -0.09748800098896027, 0.022642329335212708], [-0.0691443458199501, 0.4467982053756714, -0.1696288138628006], [-0.10595433413982391, 0.47571635246276855, 0.0904635339975357], [0.025580918416380882, -0.22680072486400604, 0.030361242592334747], [-0.08261319994926453, 0.8351003527641296, -0.29264479875564575], [-0.03523688018321991, 0.8730776309967041, 0.1429966390132904], [0.008294228464365005, -0.2784504294395447, 0.023662321269512177], [-0.14544261991977692, 0.9337887167930603, -0.35568857192993164], [-0.11997463554143906, 0.9615129828453064, 0.09202712774276733], [0.016975145787000656, -0.48516136407852173, 0.057302962988615036], [0.06064750999212265, -0.4036296010017395, -0.015287280082702637], [-0.011388953775167465, -0.38609349727630615, 0.11319619417190552], [-0.014723163098096848, -0.5569289922714233, 0.030395839363336563], [0.10036066174507141, -0.4457918405532837, -0.08455324172973633], [-0.05357562005519867, -0.4102184772491455, 0.19469721615314484], [0.026893002912402153, -0.6683253645896912, -0.20969915390014648], [-0.27245813608169556, -0.2996865510940552, 0.2756844460964203], [-0.03684370219707489, -0.8222954869270325, -0.022675488144159317], [-0.3525238633155823, -0.11752472817897797, 0.11073634028434753], [-0.04992865398526192, -0.8688146471977234, 0.04530386999249458], [-0.4094250798225403, -0.15890176594257355, 0.0660872757434845]]}, {"image_id": "30.jpg", "category_id": 1, "keypoints": [1078.89501953125, 462.22698974609375, 0.9791930913925171, 1079.912841796875, 491.3663330078125, 0.9865466356277466, 1073.94482421875, 493.99102783203125, 0.9877161979675293, 1071.903564453125, 426.2498474121094, 0.9900862574577332, 1094.9456787109375, 618.3242797851562, 0.9791873693466187, 1085.30615234375, 627.32373046875, 0.9757505655288696, 1083.719970703125, 383.3267517089844, 0.9779595136642456, 1005.0695190429688, 702.4570922851562, 0.955568790435791, 1044.6202392578125, 750.6884155273438, 0.8995040059089661, 1096.8973388671875, 369.6136474609375, 0.982109546661377, 1003.4273681640625, 738.6710205078125, 0.9643575549125671, 1067.302001953125, 774.240478515625, 0.8534570932388306, 1098.1934814453125, 296.3594970703125, 0.9865983724594116, 1098.2041015625, 326.2880859375, 0.9856449961662292, 1088.3626708984375, 329.3458251953125, 0.9850423336029053, 1121.0771484375, 280.6961669921875, 0.9258899092674255, 1107.2061767578125, 315.96441650390625, 0.9874765276908875, 1084.1937255859375, 328.7501220703125, 0.9723246097564697, 1127.6068115234375, 339.2366027832031, 0.9427391886711121, 1107.604736328125, 415.79638671875, 0.9499276280403137, 1175.351806640625, 292.7215576171875, 0.9719840288162231, 1173.7880859375, 473.20050048828125, 0.9446131587028503, 1184.4356689453125, 265.33404541015625, 0.9279690980911255, 1195.5198974609375, 486.3384704589844, 0.9166904091835022, 1138.578857421875, 211.4427490234375, 0.9458326697349548, 1175.783447265625, 265.6456604003906, 0.8739063143730164, 1224.7982177734375, 496.30908203125, 0.9344705939292908, 1021.2621459960938, 751.21240234375, 0.9325633645057678, 1076.7391357421875, 772.0123291015625, 0.9009075164794922], "score": 3.1802492141723633, "box": [984.3961181640625, 207.427734375, 243.6810302734375, 593.7887573242188], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.005415154621005058, 0.08347362279891968, 0.07550525665283203], [-0.01819455251097679, 0.09406977891921997, -0.05504041910171509], [-0.022258684039115906, -0.10320362448692322, -0.007205897010862827], [0.05311412736773491, 0.4596005380153656, 0.14847469329833984], [0.016302727162837982, 0.4839361608028412, -0.023632636293768883], [0.014542286284267902, -0.22600284218788147, -0.03239084780216217], [-0.2413361817598343, 0.7381224632263184, 0.18937695026397705], [-0.10027792304754257, 0.856163740158081, 0.09264468401670456], [0.05540338531136513, -0.2615964710712433, -0.04497557133436203], [-0.24587669968605042, 0.8598771095275879, 0.24358335137367249], [-0.007857671938836575, 0.9521480798721313, 0.0930531769990921], [0.04701349511742592, -0.4693056643009186, -0.08535364270210266], [0.05587908625602722, -0.3947320282459259, 0.00682939775288105], [0.020358826965093613, -0.36571767926216125, -0.136666402220726], [0.11504834145307541, -0.5151945352554321, -0.09857182949781418], [0.08846509456634521, -0.4335501492023468, 0.08286481350660324], [0.003640929702669382, -0.36064258217811584, -0.23116739094257355], [0.18447096645832062, -0.35580918192863464, 0.3179353177547455], [0.06720050424337387, -0.11415988206863403, -0.27492383122444153], [0.36009424924850464, -0.5275577306747437, 0.3681497275829315], [0.26271191239356995, 0.05442659556865692, -0.2635425627231598], [0.38670802116394043, -0.6067907810211182, 0.3754024803638458], [0.33433473110198975, 0.09787232428789139, -0.2656997740268707]]}, {"image_id": "30.jpg", "category_id": 1, "keypoints": [1269.8018798828125, 483.8760070800781, 0.9749779105186462, 1281.2279052734375, 514.4549560546875, 0.9861288666725159, 1253.41943359375, 514.8440551757812, 0.9810732007026672, 1277.16259765625, 450.0222473144531, 0.9865580797195435, 1252.771484375, 628.3773803710938, 0.9824037551879883, 1233.0743408203125, 647.8530883789062, 0.9731174111366272, 1278.1993408203125, 405.0509338378906, 0.9825645089149475, 1247.778564453125, 766.2788696289062, 0.8670912384986877, 1255.2720947265625, 774.06201171875, 0.9457264542579651, 1273.831787109375, 387.7701110839844, 0.9854896068572998, 1232.558837890625, 792.3956298828125, 0.8552841544151306, 1230.2205810546875, 802.9375, 0.9521878957748413, 1278.0841064453125, 320.7125244140625, 0.9806212186813354, 1295.47119140625, 344.7253723144531, 0.9848552346229553, 1262.8658447265625, 354.2181091308594, 0.9823217988014221, 1269.4560546875, 298.59197998046875, 0.9681854248046875, 1310.5797119140625, 329.444091796875, 0.9579839706420898, 1248.415771484375, 349.98248291015625, 0.9656684398651123, 1283.3089599609375, 233.27676391601562, 0.897854208946228, 1209.6341552734375, 369.3902587890625, 0.9369855523109436, 1253.315185546875, 200.55157470703125, 0.9636371731758118, 1200.793701171875, 406.61322021484375, 0.9518834352493286, 1244.2337646484375, 187.93569946289062, 0.9690420627593994, 1190.827880859375, 408.0457458496094, 0.920598566532135, 1228.1619873046875, 234.62582397460938, 0.9327205419540405, 1232.9376220703125, 168.53927612304688, 0.9502772688865662, 1198.743408203125, 340.33929443359375, 0.9499756097793579, 1219.7115478515625, 795.893310546875, 0.7932809591293335, 1228.503662109375, 810.8517456054688, 0.9463759064674377], "score": 3.168610095977783, "box": [1164.6663818359375, 177.38302612304688, 176.2181396484375, 672.3178405761719], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03245298191905022, 0.08674933016300201, -0.06279803067445755], [-0.04347158968448639, 0.09015413373708725, 0.04479170963168144], [0.0294409841299057, -0.09614662826061249, 0.02729218825697899], [-0.06775572896003723, 0.4368799328804016, -0.19574245810508728], [-0.09894787520170212, 0.4777352213859558, 0.08796291053295135], [0.03334369510412216, -0.22527892887592316, 0.036935724318027496], [-0.09564989805221558, 0.8116445541381836, -0.3546302318572998], [-0.024256549775600433, 0.8724371194839478, 0.15605588257312775], [0.019305817782878876, -0.27773362398147583, 0.029665376991033554], [-0.16181284189224243, 0.9132344126701355, -0.4090818166732788], [-0.11092634499073029, 0.9659194946289062, 0.11938033998012543], [0.02929675206542015, -0.48177993297576904, 0.07529047131538391], [0.07786842435598373, -0.4030919671058655, 0.002987988293170929], [-0.006357397884130478, -0.38083982467651367, 0.1225392073392868], [-0.0019385849591344595, -0.5520235896110535, 0.04408423230051994], [0.12101933360099792, -0.4495440125465393, -0.061021722853183746], [-0.05447959527373314, -0.40153998136520386, 0.20138855278491974], [0.04267336428165436, -0.6703701615333557, -0.1868433654308319], [-0.28460893034935, -0.28673386573791504, 0.22719407081604004], [-0.031281568109989166, -0.7924568057060242, 0.019233163446187973], [-0.33714836835861206, -0.11560814082622528, 0.040423180907964706], [-0.0510835237801075, -0.8355628252029419, 0.08778472244739532], [-0.39167913794517517, -0.1058979481458664, -0.021778110414743423]]}, {"image_id": "31.jpg", "category_id": 1, "keypoints": [1274.356689453125, 483.4769287109375, 0.968368649482727, 1285.2369384765625, 513.6051635742188, 0.9869437217712402, 1261.3609619140625, 514.6685180664062, 0.9837056398391724, 1280.6405029296875, 449.755859375, 0.9868054986000061, 1251.0234375, 626.1952514648438, 0.9799555540084839, 1236.459228515625, 644.6329956054688, 0.9757267832756042, 1279.189208984375, 405.5466613769531, 0.9815212488174438, 1246.949951171875, 760.8094482421875, 0.8613104224205017, 1258.6322021484375, 766.5217895507812, 0.9430672526359558, 1274.193115234375, 388.59918212890625, 0.9869362711906433, 1229.687744140625, 789.44580078125, 0.882122278213501, 1231.5733642578125, 794.44775390625, 0.9330747723579407, 1274.0438232421875, 320.163330078125, 0.9807130694389343, 1293.0689697265625, 343.6507568359375, 0.9829121828079224, 1260.78466796875, 355.37261962890625, 0.9811549782752991, 1267.2572021484375, 298.77569580078125, 0.9643936157226562, 1309.6231689453125, 328.35833740234375, 0.9422396421432495, 1244.9493408203125, 354.1311950683594, 0.955742359161377, 1291.87890625, 234.43170166015625, 0.9088448882102966, 1213.2147216796875, 403.9515380859375, 0.9417046308517456, 1262.00830078125, 202.11492919921875, 0.9536558985710144, 1193.8292236328125, 444.72674560546875, 0.9336445927619934, 1251.6046142578125, 185.0128173828125, 0.9553502798080444, 1182.9620361328125, 437.8438720703125, 0.9118755459785461, 1231.7552490234375, 230.99200439453125, 0.8970648050308228, 1236.732177734375, 158.60702514648438, 0.9259846210479736, 1191.380615234375, 336.7167053222656, 0.9196469783782959, 1218.41796875, 794.2670288085938, 0.8291363716125488, 1231.1441650390625, 805.0502319335938, 0.9528293013572693], "score": 3.1612420082092285, "box": [1156.1094970703125, 173.96502685546875, 185.61767578125, 668.3029174804688], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03054371476173401, 0.08488745242357254, -0.06511201709508896], [-0.03346196562051773, 0.09156551957130432, 0.04875015467405319], [0.026506539434194565, -0.09738169610500336, 0.023925267159938812], [-0.0863269791007042, 0.4263989329338074, -0.19980144500732422], [-0.10274231433868408, 0.4742428660392761, 0.09323518723249435], [0.023264344781637192, -0.22684232890605927, 0.03408823907375336], [-0.10985846817493439, 0.8078014850616455, -0.33305051922798157], [-0.026613110676407814, 0.866443932056427, 0.15387369692325592], [0.007235278375446796, -0.2786482572555542, 0.027207709848880768], [-0.1785418838262558, 0.9206581115722656, -0.3381172716617584], [-0.11744164675474167, 0.9538034200668335, 0.1149412989616394], [0.0015679870266467333, -0.48339593410491943, 0.06660071760416031], [0.055851805955171585, -0.40661507844924927, -0.0032119043171405792], [-0.026165632531046867, -0.38168102502822876, 0.11664588749408722], [-0.02506926842033863, -0.5577211380004883, 0.0406465046107769], [0.1028987392783165, -0.4521769881248474, -0.06479600071907043], [-0.0777122750878334, -0.3907383680343628, 0.19526270031929016], [0.045371804386377335, -0.6748982071876526, -0.1942092329263687], [-0.21374644339084625, -0.17505742609500885, 0.22172917425632477], [-0.03932006284594536, -0.8060051202774048, -0.0003730207681655884], [-0.29599529504776, -0.025344669818878174, 0.030097410082817078], [-0.057147637009620667, -0.8522858619689941, 0.06601657718420029], [-0.34128695726394653, -0.049183860421180725, -0.03488767892122269]]}, {"image_id": "31.jpg", "category_id": 1, "keypoints": [1080.8446044921875, 464.8021240234375, 0.9773836135864258, 1085.9832763671875, 494.29632568359375, 0.9866872429847717, 1071.7154541015625, 496.748779296875, 0.9890086650848389, 1075.043701171875, 428.4263916015625, 0.991760790348053, 1112.943603515625, 621.6256103515625, 0.9851629137992859, 1083.827880859375, 629.9544067382812, 0.9735492467880249, 1086.45654296875, 385.80804443359375, 0.9808380007743835, 1006.4356689453125, 703.465087890625, 0.9576988816261292, 1045.370361328125, 756.10205078125, 0.9215725660324097, 1098.5107421875, 371.5545654296875, 0.9837959408760071, 1010.156982421875, 737.8138427734375, 0.9671120047569275, 1060.227783203125, 774.4754638671875, 0.8807203769683838, 1098.4908447265625, 297.7975158691406, 0.9862853288650513, 1102.74609375, 328.5898742675781, 0.9860205054283142, 1085.14501953125, 330.5979309082031, 0.9844152331352234, 1119.455810546875, 280.72235107421875, 0.9281244277954102, 1115.56396484375, 320.1510009765625, 0.9838991761207581, 1077.4832763671875, 330.041748046875, 0.9698746204376221, 1126.2384033203125, 366.3548583984375, 0.9672966003417969, 1106.18115234375, 418.39288330078125, 0.9443588256835938, 1161.888671875, 384.8795471191406, 0.9831544756889343, 1170.3599853515625, 474.4939880371094, 0.9455915689468384, 1175.7237548828125, 373.52764892578125, 0.9213236570358276, 1192.91650390625, 487.395751953125, 0.9188452959060669, 1127.07763671875, 209.88021850585938, 0.9499000906944275, 1157.0384521484375, 409.85589599609375, 0.9180502891540527, 1221.960693359375, 497.38055419921875, 0.9157084822654724, 1029.0482177734375, 748.8050537109375, 0.935995876789093, 1065.0673828125, 770.9232177734375, 0.8719462752342224], "score": 3.1606128215789795, "box": [984.2481689453125, 205.92178344726562, 241.818115234375, 597.7263488769531], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.016266703605651855, 0.08343993127346039, 0.07322681695222855], [-0.03045390546321869, 0.0930216982960701, -0.05019953474402428], [-0.01986033096909523, -0.10331566631793976, -0.0035210270434617996], [0.09753138571977615, 0.4563106894493103, 0.12301641702651978], [0.005602228455245495, 0.48238372802734375, -0.033756911754608154], [0.016733761876821518, -0.22510020434856415, -0.0333632156252861], [-0.21529176831245422, 0.7020699381828308, 0.2019970566034317], [-0.10068351030349731, 0.8524738550186157, 0.09243741631507874], [0.05393413454294205, -0.2621093988418579, -0.05121355503797531], [-0.2019447535276413, 0.8198142051696777, 0.2620086073875427], [-0.017243169248104095, 0.9555184245109558, 0.08867468684911728], [0.04121115058660507, -0.4692527651786804, -0.09007582068443298], [0.06316933780908585, -0.39468520879745483, -0.0005181152373552322], [0.006522609852254391, -0.36610567569732666, -0.1363004446029663], [0.10367734730243683, -0.5191119313240051, -0.1130230724811554], [0.10651946812868118, -0.426185667514801, 0.0730474516749382], [-0.02061178721487522, -0.3553647994995117, -0.22739191353321075], [0.1587640941143036, -0.26122885942459106, 0.2729678750038147], [0.05976825952529907, -0.11184559762477875, -0.2443903386592865], [0.37937435507774353, -0.14543406665325165, 0.2599436640739441], [0.25323930382728577, 0.05750162899494171, -0.24704529345035553], [0.44365379214286804, -0.19815023243427277, 0.26703232526779175], [0.3246292769908905, 0.09902483969926834, -0.2578795850276947]]}, {"image_id": "32.jpg", "category_id": 1, "keypoints": [1276.1494140625, 481.5800476074219, 0.9732674360275269, 1285.963623046875, 513.9778442382812, 0.9848525524139404, 1264.7396240234375, 512.8165893554688, 0.9841698408126831, 1283.3572998046875, 444.9757385253906, 0.990636944770813, 1251.4515380859375, 633.3111572265625, 0.9841130375862122, 1236.1031494140625, 648.1336669921875, 0.9847620725631714, 1280.5220947265625, 399.80853271484375, 0.9812406897544861, 1244.9388427734375, 760.690673828125, 0.8631958961486816, 1258.908935546875, 771.0596923828125, 0.9484683871269226, 1274.3829345703125, 383.01531982421875, 0.9783574342727661, 1221.553466796875, 796.6978759765625, 0.853407084941864, 1228.7054443359375, 796.908203125, 0.9305152893066406, 1273.793212890625, 315.8780517578125, 0.9842153191566467, 1292.6259765625, 336.85247802734375, 0.9814326763153076, 1261.302490234375, 351.1036376953125, 0.9853193163871765, 1263.1907958984375, 294.63232421875, 0.9586750864982605, 1307.7252197265625, 319.09808349609375, 0.959193229675293, 1245.55078125, 349.9410400390625, 0.9730264544487, 1300.3741455078125, 223.74151611328125, 0.8650932312011719, 1212.622314453125, 396.2823486328125, 0.9546594619750977, 1259.7081298828125, 190.080322265625, 0.9635002017021179, 1189.68505859375, 454.5722961425781, 0.9415913820266724, 1251.0435791015625, 179.2860107421875, 0.9512478709220886, 1175.235107421875, 450.67047119140625, 0.8705362677574158, 1233.1156005859375, 233.29244995117188, 0.9338376522064209, 1240.213134765625, 160.09759521484375, 0.9295766949653625, 1180.3092041015625, 401.70843505859375, 0.9395844340324402, 1213.76416015625, 800.9301147460938, 0.8250946998596191, 1228.1724853515625, 804.7609252929688, 0.9520663022994995], "score": 3.165249824523926, "box": [1146.642822265625, 192.9430389404297, 191.6976318359375, 633.0318145751953], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.025965625420212746, 0.08694209158420563, -0.06396102905273438], [-0.027511904016137123, 0.08972018957138062, 0.054937586188316345], [0.026843518018722534, -0.09833404421806335, 0.017557283863425255], [-0.08677313476800919, 0.4410784840583801, -0.16413338482379913], [-0.10347916930913925, 0.47037145495414734, 0.10236818343400955], [0.012470033019781113, -0.22731882333755493, 0.023659320548176765], [-0.11470476537942886, 0.8359688520431519, -0.24491451680660248], [-0.02565922401845455, 0.8608411550521851, 0.16729825735092163], [-0.006786766927689314, -0.2780000865459442, 0.017599934712052345], [-0.1868223249912262, 0.9465228915214539, -0.24719715118408203], [-0.1260049045085907, 0.943321943283081, 0.1457364410161972], [0.001154432538896799, -0.48038238286972046, 0.06592913717031479], [0.047505613416433334, -0.40401744842529297, -0.009546888992190361], [-0.029848849400877953, -0.3782815933227539, 0.11269674450159073], [-0.0365356020629406, -0.546797513961792, 0.032910898327827454], [0.09027773886919022, -0.457818865776062, -0.06723911315202713], [-0.0814100056886673, -0.3874397277832031, 0.19105537235736847], [0.056868258863687515, -0.6797615885734558, -0.2053672969341278], [-0.22386926412582397, -0.1829637885093689, 0.24926207959651947], [-0.046089742332696915, -0.8018133044242859, -0.01500503160059452], [-0.3037939965724945, -0.006984338164329529, 0.08095773309469223], [-0.0661415085196495, -0.8429164290428162, 0.0538952499628067], [-0.3561565577983856, -0.018127545714378357, 0.018154030665755272]]}, {"image_id": "32.jpg", "category_id": 1, "keypoints": [1083.1451416015625, 463.9331359863281, 0.9776820540428162, 1093.76806640625, 495.59619140625, 0.9871706962585449, 1070.479736328125, 495.73876953125, 0.9899788498878479, 1077.7406005859375, 427.252685546875, 0.9914227724075317, 1132.868896484375, 626.9464111328125, 0.9750056862831116, 1083.1011962890625, 627.6024780273438, 0.9775636196136475, 1087.6221923828125, 385.5743713378906, 0.9801973104476929, 1025.2637939453125, 700.91064453125, 0.938341498374939, 1048.7235107421875, 748.8621826171875, 0.9385217428207397, 1098.3623046875, 371.00640869140625, 0.9839723110198975, 1030.427978515625, 736.3916015625, 0.9639302492141724, 1054.7762451171875, 775.0487670898438, 0.885829508304596, 1097.775146484375, 298.51800537109375, 0.9871163964271545, 1105.691650390625, 328.9808349609375, 0.9881423711776733, 1080.8421630859375, 329.86004638671875, 0.9849453568458557, 1118.518310546875, 281.36322021484375, 0.9324338436126709, 1123.0631103515625, 320.8203430175781, 0.9849475026130676, 1068.872802734375, 328.08123779296875, 0.9714969396591187, 1148.7012939453125, 362.53814697265625, 0.9407055974006653, 1097.821044921875, 416.0308837890625, 0.9500336647033691, 1182.6541748046875, 400.7686462402344, 0.975965678691864, 1164.19140625, 470.23626708984375, 0.9550304412841797, 1198.6090087890625, 386.6587219238281, 0.917304515838623, 1184.7666015625, 484.0489196777344, 0.9231894612312317, 1126.3306884765625, 215.98776245117188, 0.9551430344581604, 1197.5927734375, 399.22576904296875, 0.9330710768699646, 1215.546630859375, 490.23944091796875, 0.8719397783279419, 1046.2779541015625, 747.2548217773438, 0.9417496919631958, 1059.968505859375, 776.0648193359375, 0.8637348413467407], "score": 3.011488914489746, "box": [983.4990234375, 201.13339233398438, 243.3485107421875, 607.5832824707031], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03033691644668579, 0.08847523480653763, 0.06271819770336151], [-0.040509507060050964, 0.08984467387199402, -0.049846552312374115], [-0.01980023831129074, -0.10360297560691833, 0.00792795792222023], [0.1399170458316803, 0.45543670654296875, 0.020239774137735367], [-0.004087123554199934, 0.4794742465019226, -0.07238224893808365], [0.014655143953859806, -0.2266516387462616, -0.019089464098215103], [-0.16388210654258728, 0.6709972620010376, 0.1835041046142578], [-0.09896288812160492, 0.8418536186218262, 0.08525239676237106], [0.04854557663202286, -0.2640819549560547, -0.04243428260087967], [-0.14535801112651825, 0.7935663461685181, 0.23204240202903748], [-0.07138223201036453, 0.9638429880142212, 0.04008164256811142], [0.031959012150764465, -0.4738934636116028, -0.06806342303752899], [0.06704822182655334, -0.3944051265716553, 0.013342894613742828], [-0.010601348243653774, -0.3730829954147339, -0.11405115574598312], [0.09259846061468124, -0.5228080153465271, -0.09679508954286575], [0.12255106121301651, -0.4236699342727661, 0.0797530934214592], [-0.04972927272319794, -0.36117345094680786, -0.20088863372802734], [0.2342490553855896, -0.27241581678390503, 0.26648783683776855], [0.030275270342826843, -0.11978626251220703, -0.24220934510231018], [0.3612225353717804, -0.11073186993598938, 0.12411121279001236], [0.22984197735786438, 0.04317161440849304, -0.2418365776538849], [0.42331621050834656, -0.1658441126346588, 0.11385039240121841], [0.29678988456726074, 0.08942826092243195, -0.2606687545776367]]}, {"image_id": "33.jpg", "category_id": 1, "keypoints": [1278.288818359375, 487.46221923828125, 0.9734860062599182, 1290.1407470703125, 519.9031372070312, 0.9824202656745911, 1263.6864013671875, 520.3471069335938, 0.9868775010108948, 1285.5909423828125, 450.9405212402344, 0.989906907081604, 1251.8885498046875, 645.168212890625, 0.9844509959220886, 1236.3125, 656.4921875, 0.9799863696098328, 1281.886474609375, 405.9375915527344, 0.9829282164573669, 1241.0596923828125, 765.6639404296875, 0.8521718978881836, 1258.3800048828125, 777.7742919921875, 0.9606272578239441, 1274.3504638671875, 388.9750061035156, 0.9786720275878906, 1216.090087890625, 800.609130859375, 0.8773027062416077, 1225.986572265625, 799.87548828125, 0.9345729351043701, 1268.812744140625, 317.4404296875, 0.9848573803901672, 1291.72607421875, 339.8818359375, 0.983465850353241, 1258.2811279296875, 354.0948486328125, 0.9868399500846863, 1255.5726318359375, 295.51922607421875, 0.9579918384552002, 1308.729736328125, 323.47381591796875, 0.9527996778488159, 1240.6754150390625, 353.47515869140625, 0.980678379535675, 1305.9749755859375, 229.1754150390625, 0.8580633997917175, 1210.402587890625, 419.85736083984375, 0.9538394808769226, 1267.1827392578125, 191.45458984375, 0.973200798034668, 1179.2215576171875, 472.55731201171875, 0.9064279794692993, 1257.46533203125, 178.97183227539062, 0.9616118669509888, 1163.5115966796875, 479.06024169921875, 0.8365153670310974, 1237.646728515625, 229.13720703125, 0.9436749219894409, 1245.6739501953125, 158.59759521484375, 0.9259622693061829, 1155.0159912109375, 471.1450500488281, 0.9124181866645813, 1201.99267578125, 802.69580078125, 0.8674086332321167, 1222.830322265625, 803.9862060546875, 0.9487770199775696], "score": 3.165865898132324, "box": [1144.116943359375, 192.9914093017578, 192.5418701171875, 633.7954559326172], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.031615883111953735, 0.08726377040147781, -0.06093879044055939], [-0.03555253893136978, 0.08930999040603638, 0.05089336633682251], [0.026617679744958878, -0.09787945449352264, 0.021170299500226974], [-0.08641563355922699, 0.4364094138145447, -0.16994866728782654], [-0.10785437375307083, 0.47044146060943604, 0.0956004410982132], [0.015936804935336113, -0.22756700217723846, 0.02111908420920372], [-0.13328257203102112, 0.8146727681159973, -0.3021487593650818], [-0.030010821297764778, 0.8526344299316406, 0.1963173747062683], [-0.0069246613420546055, -0.27600806951522827, 0.010245544835925102], [-0.2108471691608429, 0.9207409024238586, -0.31456783413887024], [-0.13618344068527222, 0.9193487763404846, 0.15617915987968445], [-0.022657377645373344, -0.47910189628601074, 0.05430139601230621], [0.03612242266535759, -0.4065852165222168, -0.016391456127166748], [-0.04637005180120468, -0.3750445246696472, 0.10145039856433868], [-0.06508908420801163, -0.5407071113586426, 0.017834201455116272], [0.08603387326002121, -0.4568924307823181, -0.07169900089502335], [-0.10363861173391342, -0.3818071484565735, 0.17624598741531372], [0.06147623434662819, -0.6631711721420288, -0.23322752118110657], [-0.2077333927154541, -0.14989922940731049, 0.20257779955863953], [-0.04123452678322792, -0.8005603551864624, -0.05385012924671173], [-0.30020296573638916, -0.012742429971694946, 0.007252991199493408], [-0.06588515639305115, -0.8474761247634888, 0.009656332433223724], [-0.3502071797847748, 0.00748579204082489, -0.05521416664123535]]}, {"image_id": "33.jpg", "category_id": 1, "keypoints": [1091.156494140625, 461.96197509765625, 0.9803906679153442, 1105.7120361328125, 494.1212158203125, 0.991150438785553, 1075.69775390625, 493.88348388671875, 0.9904507994651794, 1085.728271484375, 426.48223876953125, 0.9922221302986145, 1134.8204345703125, 625.21923828125, 0.9748979210853577, 1066.58349609375, 629.3961791992188, 0.9789950251579285, 1091.6375732421875, 384.3820495605469, 0.981700599193573, 1046.1258544921875, 696.6873779296875, 0.954993724822998, 1047.5072021484375, 745.9640502929688, 0.921952486038208, 1100.422607421875, 369.14056396484375, 0.9887961149215698, 1061.1798095703125, 735.6392822265625, 0.9398491978645325, 1059.5531005859375, 774.3998413085938, 0.8897815346717834, 1097.7674560546875, 298.6950988769531, 0.9861239194869995, 1109.3890380859375, 327.38531494140625, 0.9873580932617188, 1079.273681640625, 330.43011474609375, 0.9871009588241577, 1118.7291259765625, 281.70660400390625, 0.9310494065284729, 1127.725341796875, 318.45953369140625, 0.9833920001983643, 1064.36181640625, 330.4298095703125, 0.978759229183197, 1145.7452392578125, 359.0465087890625, 0.9674844145774841, 1091.0220947265625, 420.34344482421875, 0.9431893229484558, 1210.099609375, 362.0545654296875, 0.9862249493598938, 1163.729248046875, 466.1725158691406, 0.9684833288192749, 1233.3841552734375, 336.70086669921875, 0.9312925934791565, 1185.3414306640625, 478.00201416015625, 0.9069585204124451, 1140.9334716796875, 217.96963500976562, 0.9576873779296875, 1242.740234375, 342.9212951660156, 0.9483294486999512, 1216.221435546875, 480.7662048339844, 0.8784376382827759, 1070.8778076171875, 746.4298095703125, 0.9454134702682495, 1074.6781005859375, 778.29052734375, 0.902778148651123], "score": 3.1173553466796875, "box": [1013.706787109375, 206.93812561035156, 218.513427734375, 586.4736785888672], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04303368553519249, 0.08979187160730362, 0.05387965962290764], [-0.04889771342277527, 0.089723140001297, -0.04361862689256668], [-0.019545136019587517, -0.10464838147163391, 0.014692533761262894], [0.12333731353282928, 0.46097782254219055, 0.006654843688011169], [-0.07551328837871552, 0.478291779756546, -0.05586414039134979], [-0.002736734924837947, -0.2323642075061798, -0.014466796070337296], [-0.12315529584884644, 0.6704185009002686, 0.24969083070755005], [-0.1263258308172226, 0.8358721733093262, 0.12616702914237976], [0.02191435918211937, -0.2758033275604248, -0.040860652923583984], [-0.0696336179971695, 0.7883235216140747, 0.2815433740615845], [-0.0798368975520134, 0.9456276893615723, 0.06633202731609344], [0.010750346817076206, -0.4866129159927368, -0.07240885496139526], [0.052676212042570114, -0.4080992341041565, 0.008240122348070145], [-0.04140463098883629, -0.3856201171875, -0.11060838401317596], [0.07225877791643143, -0.5352232456207275, -0.09978652000427246], [0.11251392960548401, -0.4403013586997986, 0.0711619108915329], [-0.08841945976018906, -0.37938934564590454, -0.19576019048690796], [0.1938781887292862, -0.3006604313850403, 0.27958324551582336], [-0.01935328170657158, -0.1369941532611847, -0.2440294325351715], [0.41627830266952515, -0.28284502029418945, 0.1675429344177246], [0.19662509858608246, 0.0005432814359664917, -0.2638700306415558], [0.46952641010284424, -0.34174442291259766, 0.13964426517486572], [0.2623448669910431, 0.03882044553756714, -0.2994818687438965]]}, {"image_id": "34.jpg", "category_id": 1, "keypoints": [1275.711181640625, 488.82666015625, 0.976687490940094, 1289.301513671875, 521.8421630859375, 0.9807394742965698, 1257.8841552734375, 520.4716186523438, 0.9869551658630371, 1283.16015625, 451.8531799316406, 0.9906942248344421, 1257.130615234375, 648.5589599609375, 0.9849969744682312, 1237.1947021484375, 657.3782958984375, 0.983487606048584, 1281.5450439453125, 407.85662841796875, 0.9842596650123596, 1239.142578125, 764.2996826171875, 0.8274790048599243, 1251.7752685546875, 783.6881103515625, 0.9503357410430908, 1274.385009765625, 391.75006103515625, 0.9786268472671509, 1216.9278564453125, 796.5853271484375, 0.8339257836341858, 1224.4693603515625, 803.7899780273438, 0.9395845532417297, 1268.0361328125, 320.45379638671875, 0.983147144317627, 1291.8924560546875, 342.7899169921875, 0.9835923910140991, 1257.0506591796875, 356.3758239746094, 0.9873068928718567, 1255.865966796875, 298.20892333984375, 0.9561847448348999, 1307.443359375, 327.2720947265625, 0.9440550804138184, 1238.69677734375, 356.5919189453125, 0.9814924597740173, 1313.197021484375, 232.88885498046875, 0.8835408091545105, 1214.6131591796875, 438.6959228515625, 0.9478932619094849, 1273.1944580078125, 194.9610595703125, 0.9808830618858337, 1177.1822509765625, 474.7295837402344, 0.8977409601211548, 1263.871826171875, 181.88363647460938, 0.969567060470581, 1162.71435546875, 481.7381896972656, 0.840001106262207, 1243.28125, 237.74356079101562, 0.9340953230857849, 1252.3104248046875, 162.89767456054688, 0.9198140501976013, 1152.704345703125, 475.4034118652344, 0.9090603590011597, 1198.2149658203125, 801.6182861328125, 0.8428084850311279, 1218.29150390625, 805.7989501953125, 0.9382928609848022], "score": 3.1595633029937744, "box": [1142.1953125, 201.01051330566406, 196.6795654296875, 620.2106781005859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03701231628656387, 0.0913744568824768, -0.05225111171603203], [-0.04382045567035675, 0.08611389994621277, 0.05119135230779648], [0.02637096866965294, -0.09905114769935608, 0.019199132919311523], [-0.06392636150121689, 0.4533715546131134, -0.13651764392852783], [-0.09698786586523056, 0.4706011116504669, 0.10187967866659164], [0.02084691822528839, -0.22884219884872437, 0.012153323739767075], [-0.13653844594955444, 0.8255062103271484, -0.279024213552475], [-0.04340697452425957, 0.858664870262146, 0.2027868926525116], [-0.002173636807128787, -0.2764876186847687, -0.0025030039250850677], [-0.21110773086547852, 0.9239276647567749, -0.32687124609947205], [-0.14765764772891998, 0.929357647895813, 0.1628018617630005], [-0.019737189635634422, -0.4806511104106903, 0.040615830570459366], [0.041435789316892624, -0.4079120457172394, -0.028688903898000717], [-0.04480486735701561, -0.3762999475002289, 0.08776365965604782], [-0.05916151776909828, -0.542736291885376, 0.0020147599279880524], [0.08833406120538712, -0.4573350250720978, -0.08801901340484619], [-0.10500143468379974, -0.3799501359462738, 0.16104725003242493], [0.08412276208400726, -0.6704831123352051, -0.2437933385372162], [-0.1751565784215927, -0.13446944952011108, 0.18598929047584534], [-0.022321419790387154, -0.8090488910675049, -0.0662330612540245], [-0.2887822985649109, -0.034948840737342834, -0.021722979843616486], [-0.049690548330545425, -0.8623452186584473, -0.008692853152751923], [-0.3329782783985138, -0.014423727989196777, -0.08879417181015015]]}, {"image_id": "34.jpg", "category_id": 1, "keypoints": [1093.877197265625, 463.98345947265625, 0.9812520742416382, 1111.1722412109375, 495.5410461425781, 0.9911816120147705, 1076.2891845703125, 496.9405517578125, 0.9921268224716187, 1089.4742431640625, 428.9342346191406, 0.9941121935844421, 1134.833984375, 629.0159912109375, 0.9725765585899353, 1064.41064453125, 633.3104248046875, 0.9858868718147278, 1093.2076416015625, 386.77593994140625, 0.9820596575737, 1084.111328125, 700.9194946289062, 0.9538944363594055, 1051.982421875, 752.2869262695312, 0.9288994073867798, 1099.9627685546875, 370.8116455078125, 0.988286018371582, 1105.6707763671875, 739.1716918945312, 0.932026207447052, 1064.6678466796875, 780.915283203125, 0.8744850158691406, 1095.11669921875, 300.852294921875, 0.9873263835906982, 1110.3968505859375, 329.44219970703125, 0.9902846217155457, 1075.641357421875, 332.2618408203125, 0.9900575280189514, 1115.039306640625, 282.8634948730469, 0.9331800937652588, 1129.7911376953125, 319.6882019042969, 0.9819838404655457, 1057.3974609375, 331.5439758300781, 0.9804175496101379, 1160.31982421875, 347.2760009765625, 0.938836932182312, 1083.3902587890625, 420.1816711425781, 0.9453150629997253, 1222.2052001953125, 351.12261962890625, 0.9880325198173523, 1158.4156494140625, 462.3086853027344, 0.9631972908973694, 1240.7969970703125, 330.8583984375, 0.9429642558097839, 1181.7840576171875, 472.9679870605469, 0.8818958401679993, 1140.864013671875, 221.27706909179688, 0.9587604403495789, 1248.3638916015625, 329.176025390625, 0.911657452583313, 1210.59033203125, 481.3647155761719, 0.8858204483985901, 1104.4947509765625, 754.1705322265625, 0.9452545046806335, 1076.3631591796875, 780.8223876953125, 0.8780531883239746], "score": 3.1042542457580566, "box": [1009.0822143554688, 201.31201171875, 229.75128173828125, 604.2978515625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.050009772181510925, 0.08834177255630493, 0.04918800666928291], [-0.05372147262096405, 0.09040695428848267, -0.034413836896419525], [-0.017698243260383606, -0.10440970957279205, 0.014859378337860107], [0.11481333523988724, 0.4626370072364807, 0.0032410286366939545], [-0.08534363657236099, 0.47639960050582886, -0.07553169131278992], [-0.007401484530419111, -0.23330841958522797, -0.012715652585029602], [-0.028737345710396767, 0.6996660828590393, 0.296983540058136], [-0.11368709057569504, 0.8222716450691223, 0.13049127161502838], [0.011118520982563496, -0.27859991788864136, -0.04053984582424164], [0.03604695945978165, 0.814204752445221, 0.3171936869621277], [-0.06915509700775146, 0.9226507544517517, 0.055222656577825546], [-0.003808471839874983, -0.48941224813461304, -0.06145796552300453], [0.046239130198955536, -0.40812480449676514, 0.010481074452400208], [-0.05927301198244095, -0.3901716470718384, -0.09780800342559814], [0.05429632216691971, -0.5406706929206848, -0.09184181690216064], [0.10876888781785965, -0.44225138425827026, 0.06906421482563019], [-0.11489034444093704, -0.3866382837295532, -0.177341490983963], [0.2410876452922821, -0.3490077257156372, 0.2769198417663574], [-0.04724530130624771, -0.1457783728837967, -0.23294179141521454], [0.46503710746765137, -0.3275960087776184, 0.16918142139911652], [0.17631655931472778, -0.01985698938369751, -0.23904532194137573], [0.519630491733551, -0.3878001570701599, 0.14786607027053833], [0.24480575323104858, 0.013383597135543823, -0.2741313576698303]]}, {"image_id": "35.jpg", "category_id": 1, "keypoints": [1274.6207275390625, 495.1655578613281, 0.9770357012748718, 1288.061279296875, 528.7101440429688, 0.9820340871810913, 1255.666259765625, 528.9820556640625, 0.9877602458000183, 1283.0057373046875, 457.0083923339844, 0.9914219975471497, 1254.311767578125, 666.2975463867188, 0.978029727935791, 1230.027099609375, 682.423828125, 0.9849453568458557, 1281.599365234375, 410.8680114746094, 0.9845870137214661, 1236.56591796875, 767.7819213867188, 0.8915970325469971, 1245.970458984375, 810.8331909179688, 0.9527954459190369, 1274.8271484375, 394.43536376953125, 0.9833567142486572, 1213.5614013671875, 798.0260009765625, 0.8499111533164978, 1216.4400634765625, 823.062255859375, 0.9568941593170166, 1268.939453125, 320.49554443359375, 0.9847016930580139, 1292.4130859375, 343.88275146484375, 0.9864972829818726, 1257.7623291015625, 356.397216796875, 0.9883345365524292, 1255.6778564453125, 296.4369201660156, 0.9595447778701782, 1309.281494140625, 329.27197265625, 0.9444277286529541, 1239.5364990234375, 356.81146240234375, 0.979655921459198, 1314.93994140625, 230.156005859375, 0.878707230091095, 1207.4608154296875, 436.5301208496094, 0.9466065764427185, 1279.0247802734375, 196.77325439453125, 0.9711586236953735, 1168.739013671875, 474.1249084472656, 0.8693540096282959, 1269.9163818359375, 182.1343994140625, 0.9705415964126587, 1156.02490234375, 479.8951416015625, 0.841239333152771, 1243.5810546875, 233.29962158203125, 0.9335079789161682, 1257.5128173828125, 158.03424072265625, 0.9258503317832947, 1145.1220703125, 469.77020263671875, 0.910567581653595, 1187.181396484375, 797.1884765625, 0.7593194842338562, 1209.789794921875, 818.1980590820312, 0.9461607933044434], "score": 3.150129795074463, "box": [1138.48828125, 195.1894989013672, 200.5562744140625, 627.1748809814453], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03497116267681122, 0.0897967517375946, -0.055979762226343155], [-0.04457393288612366, 0.08733955025672913, 0.0480327308177948], [0.027985144406557083, -0.09760025143623352, 0.022729158401489258], [-0.06359314918518066, 0.4496423602104187, -0.15290895104408264], [-0.1045026034116745, 0.47312766313552856, 0.08062702417373657], [0.023528002202510834, -0.22773757576942444, 0.018115241080522537], [-0.1429305374622345, 0.7488539218902588, -0.4143986403942108], [-0.047688078135252, 0.8588547706604004, 0.18891113996505737], [0.0018649967387318611, -0.2759145200252533, 0.003339819610118866], [-0.22318631410598755, 0.8541429042816162, -0.4155558943748474], [-0.16844812035560608, 0.9055277109146118, 0.16266539692878723], [-0.013744897209107876, -0.48100700974464417, 0.04117604345083237], [0.045530058443546295, -0.4060356318950653, -0.027095956727862358], [-0.038118183612823486, -0.3781950771808624, 0.09147156774997711], [-0.05341188609600067, -0.5430885553359985, 0.002382330596446991], [0.09613880515098572, -0.4516388475894928, -0.08606390655040741], [-0.09507271647453308, -0.3812616169452667, 0.16699105501174927], [0.09020984172821045, -0.66029953956604, -0.2480699121952057], [-0.18814627826213837, -0.14440682530403137, 0.2001340687274933], [0.004467605613172054, -0.7817709445953369, -0.048108093440532684], [-0.30163583159446716, -0.04347798228263855, -0.007123790681362152], [-0.016648314893245697, -0.8329826593399048, 0.013692103326320648], [-0.34110480546951294, -0.02623152732849121, -0.07786528021097183]]}, {"image_id": "35.jpg", "category_id": 1, "keypoints": [1096.0484619140625, 464.4993896484375, 0.9813300967216492, 1115.4283447265625, 495.4826965332031, 0.9918292164802551, 1077.430908203125, 497.76092529296875, 0.9926044344902039, 1091.38916015625, 429.45379638671875, 0.9946457147598267, 1135.6116943359375, 627.7774047851562, 0.9729611277580261, 1062.9039306640625, 635.7576293945312, 0.9874237179756165, 1096.143310546875, 387.50616455078125, 0.9842494130134583, 1081.81494140625, 672.1783447265625, 0.9435074329376221, 1052.25439453125, 742.8193359375, 0.9426785707473755, 1102.6156005859375, 371.11737060546875, 0.9885881543159485, 1100.2916259765625, 716.3985595703125, 0.9438732862472534, 1059.3912353515625, 774.5787353515625, 0.887122392654419, 1095.4517822265625, 300.86395263671875, 0.9880691766738892, 1114.504638671875, 329.11236572265625, 0.9912436008453369, 1074.77197265625, 333.35369873046875, 0.991081714630127, 1114.245849609375, 283.02239990234375, 0.9342683553695679, 1135.7647705078125, 317.317626953125, 0.9817126393318176, 1054.63134765625, 332.104248046875, 0.9800800085067749, 1193.9158935546875, 320.06732177734375, 0.9356700778007507, 1078.7156982421875, 418.1317138671875, 0.9541460871696472, 1245.765869140625, 288.76055908203125, 0.9753814339637756, 1154.6075439453125, 459.81549072265625, 0.9586926698684692, 1255.70263671875, 260.45294189453125, 0.9247151613235474, 1179.1572265625, 468.0179748535156, 0.9037434458732605, 1135.260498046875, 216.35916137695312, 0.9591034054756165, 1256.66943359375, 239.33526611328125, 0.9254494309425354, 1208.3282470703125, 474.0099792480469, 0.8769926428794861, 1095.3751220703125, 739.73779296875, 0.9343132972717285, 1071.2933349609375, 775.6958618164062, 0.8909542560577393], "score": 3.109947443008423, "box": [1011.6940307617188, 189.5059051513672, 230.11480712890625, 624.6778717041016], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.056795209646224976, 0.08806115388870239, 0.04280570149421692], [-0.056116536259651184, 0.09137929230928421, -0.028873812407255173], [-0.017681851983070374, -0.10467967391014099, 0.017715122550725937], [0.10909436643123627, 0.4598079025745392, -0.031657010316848755], [-0.09450888633728027, 0.47760722041130066, -0.06348197162151337], [-0.004413934424519539, -0.23278671503067017, -0.014388993382453918], [-0.037330787628889084, 0.6071268320083618, 0.31524521112442017], [-0.11676590144634247, 0.794005811214447, 0.18697704374790192], [0.012527940794825554, -0.2775905430316925, -0.044604234397411346], [0.013120139949023724, 0.7261317372322083, 0.3485293984413147], [-0.09342069923877716, 0.9029101729393005, 0.11328878998756409], [-0.010391214862465858, -0.4882981777191162, -0.06765375286340714], [0.04876760020852089, -0.4095858335494995, 0.0009900406002998352], [-0.06645141541957855, -0.3865203857421875, -0.09732156246900558], [0.043475568294525146, -0.5379974842071533, -0.10731615126132965], [0.11470157653093338, -0.44831496477127075, 0.05338793992996216], [-0.12672345340251923, -0.38487493991851807, -0.17415395379066467], [0.32007554173469543, -0.45114046335220337, 0.21893642842769623], [-0.06386460363864899, -0.14714762568473816, -0.2479073703289032], [0.5015459060668945, -0.5572213530540466, 0.08366580307483673], [0.16000165045261383, -0.02278652787208557, -0.2707756757736206], [0.5289071798324585, -0.6366249918937683, 0.07576462626457214], [0.2296769618988037, 0.0023942887783050537, -0.31071001291275024]]}, {"image_id": "36.jpg", "category_id": 1, "keypoints": [1271.794921875, 497.36773681640625, 0.9783421754837036, 1284.823486328125, 530.987548828125, 0.9819517135620117, 1255.263916015625, 532.3885498046875, 0.9880126714706421, 1280.107666015625, 458.1630554199219, 0.9910603165626526, 1248.6925048828125, 676.3180541992188, 0.9821089506149292, 1232.1661376953125, 691.530029296875, 0.979874312877655, 1277.9202880859375, 411.3611145019531, 0.9834023714065552, 1233.3448486328125, 779.25537109375, 0.8660614490509033, 1254.284423828125, 799.9423828125, 0.9508326649665833, 1270.8065185546875, 394.6278076171875, 0.9832979440689087, 1205.640625, 819.50830078125, 0.883795440196991, 1222.717529296875, 819.044677734375, 0.9484108090400696, 1267.149658203125, 317.7916259765625, 0.9847979545593262, 1288.72265625, 343.5953369140625, 0.985832154750824, 1255.369873046875, 354.8369140625, 0.9868046045303345, 1254.0487060546875, 294.5972595214844, 0.9591677784919739, 1306.5662841796875, 329.20513916015625, 0.9370129108428955, 1237.81103515625, 354.6514892578125, 0.9752642512321472, 1319.275390625, 237.33938598632812, 0.905940055847168, 1201.0330810546875, 422.182861328125, 0.9546380043029785, 1284.8857421875, 203.779541015625, 0.9701970815658569, 1165.365478515625, 462.98492431640625, 0.8820841312408447, 1278.283935546875, 187.93289184570312, 0.9655724763870239, 1152.8291015625, 457.0279846191406, 0.8902353048324585, 1239.0272216796875, 227.1539306640625, 0.9371050596237183, 1266.84130859375, 161.9063720703125, 0.9523270130157471, 1139.2562255859375, 421.2480773925781, 0.9349918365478516, 1182.641357421875, 816.946044921875, 0.7955722212791443, 1211.6351318359375, 813.3079833984375, 0.9345903992652893], "score": 3.159313917160034, "box": [1135.5377197265625, 186.85049438476562, 202.9937744140625, 641.2389221191406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03443734347820282, 0.08852054178714752, -0.05814540013670921], [-0.039178092032670975, 0.08864494413137436, 0.05016794055700302], [0.026497166603803635, -0.09861926734447479, 0.021621108055114746], [-0.07288888096809387, 0.4433034658432007, -0.15589772164821625], [-0.09062537550926208, 0.4722851514816284, 0.09523896872997284], [0.015585404820740223, -0.22863875329494476, 0.01264958456158638], [-0.14376068115234375, 0.7670680284500122, -0.3848831057548523], [-0.005058874376118183, 0.830633282661438, 0.25690364837646484], [-0.006655852310359478, -0.27714312076568604, -0.0009698271751403809], [-0.21568027138710022, 0.8758594393730164, -0.3637467622756958], [-0.11383070051670074, 0.8901863694190979, 0.21209357678890228], [-0.008076912723481655, -0.4831739068031311, 0.035927727818489075], [0.04332463815808296, -0.4043889045715332, -0.034772057086229324], [-0.036473240703344345, -0.3821730613708496, 0.08836798369884491], [-0.04829365387558937, -0.5448918342590332, -0.002833336591720581], [0.09242923557758331, -0.44539207220077515, -0.09868071973323822], [-0.08854073286056519, -0.3874932527542114, 0.16769708693027496], [0.10099129378795624, -0.6380777359008789, -0.2771871089935303], [-0.2073504775762558, -0.16516147553920746, 0.20795919001102448], [0.01529597770422697, -0.7627331018447876, -0.08054192364215851], [-0.31692230701446533, -0.04991410672664642, 0.0077549368143081665], [0.005260228179395199, -0.8106708526611328, -0.013633832335472107], [-0.3649243116378784, -0.06912250816822052, -0.0568116158246994]]}, {"image_id": "36.jpg", "category_id": 1, "keypoints": [1094.713623046875, 465.451904296875, 0.9801465272903442, 1113.859375, 495.0123291015625, 0.992279052734375, 1076.5059814453125, 497.8995056152344, 0.9919260144233704, 1090.0159912109375, 429.6100769042969, 0.9948280453681946, 1132.6025390625, 618.5001831054688, 0.9763188362121582, 1066.1136474609375, 634.4774169921875, 0.9881762266159058, 1094.26318359375, 388.3631286621094, 0.9835923910140991, 1103.2752685546875, 662.83349609375, 0.8623755574226379, 1058.9703369140625, 747.3687744140625, 0.9229828715324402, 1100.0899658203125, 372.0920715332031, 0.988247811794281, 1119.1279296875, 688.852783203125, 0.9310020208358765, 1067.95849609375, 766.4574584960938, 0.8682224154472351, 1092.2313232421875, 303.39990234375, 0.9880868792533875, 1111.0245361328125, 330.2733154296875, 0.9909846186637878, 1072.9227294921875, 335.47705078125, 0.9906131029129028, 1109.729736328125, 285.01776123046875, 0.9316356182098389, 1130.3885498046875, 319.03271484375, 0.9782137274742126, 1052.252685546875, 334.198974609375, 0.9791836738586426, 1166.4774169921875, 338.95599365234375, 0.9231405854225159, 1076.3905029296875, 418.72021484375, 0.9545322060585022, 1227.851318359375, 336.03271484375, 0.9824150800704956, 1150.8397216796875, 462.2046203613281, 0.9562389850616455, 1248.58544921875, 313.650146484375, 0.9346811175346375, 1177.642578125, 469.99481201171875, 0.9005216360092163, 1129.6572265625, 217.822998046875, 0.9507116675376892, 1254.1966552734375, 296.3562927246094, 0.8350932598114014, 1210.6158447265625, 471.5234680175781, 0.9043717384338379, 1119.9354248046875, 704.00048828125, 0.9463803172111511, 1078.1923828125, 762.1488037109375, 0.8655645847320557], "score": 2.9381699562072754, "box": [1013.9552001953125, 198.44935607910156, 223.0008544921875, 601.5351409912109], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05585457384586334, 0.08439713716506958, 0.048079974949359894], [-0.055441707372665405, 0.09205415844917297, -0.02296280674636364], [-0.01742064580321312, -0.10446415841579437, 0.010651055723428726], [0.11332851648330688, 0.45924925804138184, 0.058647699654102325], [-0.08250434696674347, 0.47609758377075195, -0.05198466032743454], [-0.0056494055315852165, -0.23203609883785248, -0.023133594542741776], [0.04789923131465912, 0.6006542444229126, 0.4263993501663208], [-0.09643354266881943, 0.8190783262252808, 0.1516956388950348], [0.009430921636521816, -0.2764899730682373, -0.05395623296499252], [0.11163267493247986, 0.7031933665275574, 0.4804602265357971], [-0.05925238877534866, 0.8981381058692932, 0.05243527144193649], [-0.015839550644159317, -0.48501211404800415, -0.07854899019002914], [0.04380715638399124, -0.4079573154449463, -0.009902272373437881], [-0.07018692791461945, -0.3829888105392456, -0.10695814341306686], [0.03499487787485123, -0.5370640158653259, -0.11912950873374939], [0.10668190568685532, -0.4467390775680542, 0.045048750936985016], [-0.13237936794757843, -0.3814758062362671, -0.18136978149414062], [0.25657734274864197, -0.3859233856201172, 0.2495543360710144], [-0.0693410336971283, -0.14736013114452362, -0.2556774914264679], [0.4704134464263916, -0.3880554437637329, 0.12584936618804932], [0.1495184302330017, -0.018768057227134705, -0.26748785376548767], [0.5242762565612793, -0.4469107389450073, 0.10134770721197128], [0.22520186007022858, 0.004393771290779114, -0.2931603789329529]]}, {"image_id": "37.jpg", "category_id": 1, "keypoints": [1269.1065673828125, 504.1955261230469, 0.9781882166862488, 1282.1820068359375, 538.1013793945312, 0.9801616668701172, 1252.197265625, 540.4183349609375, 0.987798810005188, 1277.2049560546875, 463.3049011230469, 0.9912764430046082, 1241.7630615234375, 698.0701904296875, 0.9849154353141785, 1236.01220703125, 718.4275512695312, 0.9710900783538818, 1277.9627685546875, 415.9945068359375, 0.9845374226570129, 1225.33203125, 793.4969482421875, 0.8368244767189026, 1245.047119140625, 834.77294921875, 0.9343074560165405, 1271.13623046875, 398.843994140625, 0.9789148569107056, 1202.1614990234375, 837.1664428710938, 0.8357535600662231, 1230.7279052734375, 855.9134521484375, 0.8830596208572388, 1268.9320068359375, 320.75921630859375, 0.9828715920448303, 1290.5572509765625, 346.16058349609375, 0.9845408201217651, 1256.45654296875, 359.06011962890625, 0.987701952457428, 1255.9781494140625, 296.74432373046875, 0.9579999446868896, 1307.459716796875, 331.0843811035156, 0.9237213730812073, 1237.9818115234375, 357.2235107421875, 0.9808973670005798, 1323.20263671875, 229.71688842773438, 0.9238156676292419, 1203.4271240234375, 435.5904235839844, 0.9445127248764038, 1284.908935546875, 194.9661865234375, 0.9624750018119812, 1163.982666015625, 465.3043518066406, 0.9113203287124634, 1279.119384765625, 180.44552612304688, 0.9715641736984253, 1149.84716796875, 467.33514404296875, 0.9150592684745789, 1243.66650390625, 233.04638671875, 0.9312657713890076, 1265.60107421875, 158.13592529296875, 0.9433438777923584, 1132.5728759765625, 450.4104309082031, 0.9467689394950867, 1180.770263671875, 822.672607421875, 0.7886120080947876, 1213.0079345703125, 851.06640625, 0.9304855465888977], "score": 3.139155864715576, "box": [1129.777099609375, 195.49441528320312, 210.359130859375, 628.7123718261719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.035237595438957214, 0.0873701274394989, -0.05956175923347473], [-0.039698272943496704, 0.08976725488901138, 0.04791475087404251], [0.02612503618001938, -0.09821714460849762, 0.023918284103274345], [-0.0642291009426117, 0.4506949186325073, -0.1327185332775116], [-0.07202319800853729, 0.4773380160331726, 0.07852722704410553], [0.024209165945649147, -0.2288885861635208, 0.0208540428429842], [-0.14266519248485565, 0.7680604457855225, -0.3690909743309021], [-0.03255757316946983, 0.8623327612876892, 0.19057586789131165], [-0.00020810577552765608, -0.2758152484893799, 0.00553390197455883], [-0.1970558762550354, 0.8809201121330261, -0.3269280195236206], [-0.10773681849241257, 0.9657366871833801, 0.1580238789319992], [0.0051458124071359634, -0.48095136880874634, 0.047109685838222504], [0.053437571972608566, -0.40224719047546387, -0.025835568085312843], [-0.025933025404810905, -0.3797171115875244, 0.09749236702919006], [-0.033874206244945526, -0.5432397127151489, 0.008151231333613396], [0.10248386114835739, -0.44798779487609863, -0.08643294125795364], [-0.0801074430346489, -0.3903992176055908, 0.17476649582386017], [0.10735030472278595, -0.6637406349182129, -0.2369977980852127], [-0.18230009078979492, -0.15655960142612457, 0.18900050222873688], [0.024358095601201057, -0.7812497019767761, -0.03456008434295654], [-0.31135013699531555, -0.06451331079006195, -0.01195925660431385], [0.014149838127195835, -0.8314887285232544, 0.030645420774817467], [-0.360698401927948, -0.0564485639333725, -0.07789456844329834]]}, {"image_id": "37.jpg", "category_id": 1, "keypoints": [1094.43310546875, 467.5315246582031, 0.9774282574653625, 1114.434326171875, 497.2383728027344, 0.9906308054924011, 1076.2138671875, 498.6053466796875, 0.9926599264144897, 1089.5250244140625, 431.8026123046875, 0.9955136775970459, 1124.6307373046875, 609.0909423828125, 0.9792112112045288, 1066.8145751953125, 629.7894897460938, 0.9880242943763733, 1093.0272216796875, 390.45684814453125, 0.9849841594696045, 1104.6712646484375, 666.359375, 0.9370064735412598, 1066.956298828125, 741.6585083007812, 0.9418364763259888, 1098.5426025390625, 373.9168701171875, 0.9881025552749634, 1123.666259765625, 698.7194213867188, 0.9329562187194824, 1074.82275390625, 762.064453125, 0.8965395092964172, 1091.9849853515625, 304.19873046875, 0.9880958199501038, 1110.5284423828125, 332.0794677734375, 0.9908381700515747, 1072.1444091796875, 336.3047790527344, 0.9903463125228882, 1109.86083984375, 286.16314697265625, 0.9304057955741882, 1130.9686279296875, 320.2088623046875, 0.9792525172233582, 1050.8836669921875, 333.5963134765625, 0.9811754822731018, 1187.2255859375, 315.523193359375, 0.9146649837493896, 1069.441650390625, 416.24627685546875, 0.96134352684021, 1245.250244140625, 293.63299560546875, 0.9769477248191833, 1143.509033203125, 457.8057861328125, 0.9626926183700562, 1257.7811279296875, 265.93341064453125, 0.9359414577484131, 1170.720703125, 463.47900390625, 0.9070284962654114, 1136.1217041015625, 219.58074951171875, 0.9474228024482727, 1263.4254150390625, 238.7393798828125, 0.9086618423461914, 1204.7523193359375, 460.24188232421875, 0.9288913011550903, 1122.39306640625, 706.4030151367188, 0.9125319719314575, 1086.13330078125, 755.9814453125, 0.8407135009765625], "score": 2.898331880569458, "box": [1009.122802734375, 199.2466278076172, 237.686279296875, 600.2135162353516], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06104163080453873, 0.08696798980236053, 0.03791017457842827], [-0.057970140129327774, 0.09163375198841095, -0.022191660478711128], [-0.016433972865343094, -0.10448794066905975, 0.0181192085146904], [0.08532711118459702, 0.4388127326965332, -0.10625461488962173], [-0.0856853649020195, 0.47852444648742676, -0.022052176296710968], [-0.003116529667750001, -0.23196260631084442, -0.015801869332790375], [0.04794934764504433, 0.6126822829246521, 0.25436270236968994], [-0.07803727686405182, 0.8282464146614075, 0.17584970593452454], [0.013727450743317604, -0.2734604477882385, -0.05025065690279007], [0.11299031972885132, 0.7247196435928345, 0.22426721453666687], [-0.050441183149814606, 0.9025943279266357, 0.06903330236673355], [-0.015875518321990967, -0.4836575388908386, -0.06464017927646637], [0.046591173857450485, -0.4043159484863281, -8.612871170043945e-05], [-0.06912600994110107, -0.38159507513046265, -0.09757722169160843], [0.03597383201122284, -0.5345470905303955, -0.1052761822938919], [0.11245056241750717, -0.4446648359298706, 0.05101785808801651], [-0.13283957540988922, -0.38421809673309326, -0.17143404483795166], [0.3003024756908417, -0.4730059504508972, 0.23201584815979004], [-0.08431284129619598, -0.14965523779392242, -0.2598629295825958], [0.531672477722168, -0.5588399767875671, 0.20134896039962769], [0.1378411203622818, -0.023982062935829163, -0.27604931592941284], [0.5648272037506104, -0.6342841982841492, 0.18490049242973328], [0.21652080118656158, -0.006628736853599548, -0.2991601824760437]]}, {"image_id": "38.jpg", "category_id": 1, "keypoints": [1266.7735595703125, 497.63726806640625, 0.9776386022567749, 1281.4268798828125, 530.437744140625, 0.980682373046875, 1248.718017578125, 531.0639038085938, 0.9881143569946289, 1273.8526611328125, 459.2529602050781, 0.9917165637016296, 1247.0521240234375, 664.2606811523438, 0.9779808521270752, 1228.8414306640625, 673.2198486328125, 0.9846566319465637, 1273.3004150390625, 413.04119873046875, 0.9844149351119995, 1231.6246337890625, 779.0142822265625, 0.8721005320549011, 1258.320068359375, 781.6832885742188, 0.9289862513542175, 1267.8863525390625, 395.9498291015625, 0.984208345413208, 1208.8565673828125, 805.9383544921875, 0.8669308423995972, 1226.694580078125, 801.155517578125, 0.9440369009971619, 1264.525634765625, 318.598876953125, 0.9847257137298584, 1287.7222900390625, 344.459228515625, 0.9862839579582214, 1250.425048828125, 356.3833312988281, 0.9864650368690491, 1253.0252685546875, 296.205810546875, 0.955082893371582, 1306.741455078125, 330.0269470214844, 0.9251171350479126, 1232.2513427734375, 355.152099609375, 0.9791170358657837, 1325.509765625, 236.47412109375, 0.9280481338500977, 1195.5484619140625, 422.5221862792969, 0.9383629560470581, 1289.7392578125, 203.30319213867188, 0.9664357900619507, 1163.3790283203125, 451.955322265625, 0.9243173599243164, 1284.8590087890625, 191.639892578125, 0.9580059051513672, 1151.99609375, 443.0984191894531, 0.9240586757659912, 1233.8515625, 230.093505859375, 0.9431670308113098, 1276.736083984375, 173.22158813476562, 0.9405202269554138, 1139.9117431640625, 403.675048828125, 0.9434574842453003, 1185.831787109375, 800.38037109375, 0.711559534072876, 1213.10400390625, 803.781982421875, 0.9341408014297485], "score": 3.1520302295684814, "box": [1129.4996337890625, 188.22166442871094, 211.887939453125, 647.3366851806641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04028324782848358, 0.08947523683309555, -0.051782574504613876], [-0.044318269938230515, 0.08729815483093262, 0.0471947006881237], [0.023816103115677834, -0.09852148592472076, 0.022037923336029053], [-0.061288267374038696, 0.4439564347267151, -0.1559983193874359], [-0.09180309623479843, 0.46849220991134644, 0.1111268550157547], [0.021975813433527946, -0.2291022688150406, 0.01922766864299774], [-0.12528063356876373, 0.8099044561386108, -0.3099459409713745], [0.014681071043014526, 0.8118329048156738, 0.2900637090206146], [0.004569405689835548, -0.27926331758499146, 0.005665112286806107], [-0.21099145710468292, 0.9095836877822876, -0.31940576434135437], [-0.08565656840801239, 0.8646554350852966, 0.2235087752342224], [-0.005350770428776741, -0.4851055145263672, 0.03712408244609833], [0.05364719778299332, -0.4064124822616577, -0.02657308056950569], [-0.035051316022872925, -0.3848646283149719, 0.08910322189331055], [-0.0424264594912529, -0.546285092830658, -0.005620047450065613], [0.1065487489104271, -0.4475642442703247, -0.0865618884563446], [-0.09037301689386368, -0.39350950717926025, 0.16524291038513184], [0.12925921380519867, -0.6437793970108032, -0.25937479734420776], [-0.20942263305187225, -0.1712842434644699, 0.20243820548057556], [0.04652568697929382, -0.7614593505859375, -0.05786261335015297], [-0.3142624497413635, -0.08202864229679108, -0.012501467019319534], [0.03969138488173485, -0.8030736446380615, 0.01318294182419777], [-0.3603498935699463, -0.11314894258975983, -0.07332406938076019]]}, {"image_id": "38.jpg", "category_id": 1, "keypoints": [1099.1220703125, 468.49749755859375, 0.9810951352119446, 1119.7574462890625, 497.9120178222656, 0.9927343130111694, 1077.2012939453125, 499.0514831542969, 0.9909696578979492, 1095.8150634765625, 434.35980224609375, 0.9936650395393372, 1118.0396728515625, 618.6417846679688, 0.9705365896224976, 1061.0615234375, 629.4661865234375, 0.9881260395050049, 1098.3006591796875, 391.4946594238281, 0.9829035997390747, 1106.5037841796875, 711.5520629882812, 0.9499955177307129, 1069.8778076171875, 743.2972412109375, 0.8750513195991516, 1104.6396484375, 374.73321533203125, 0.9865965247154236, 1119.8348388671875, 737.0824584960938, 0.9241625070571899, 1071.424560546875, 770.7348022460938, 0.8908652067184448, 1098.3065185546875, 304.35595703125, 0.9860089421272278, 1119.2021484375, 333.2587890625, 0.9900745749473572, 1076.5904541015625, 335.545166015625, 0.9912668466567993, 1112.15869140625, 286.74847412109375, 0.9441254734992981, 1141.4697265625, 320.9400939941406, 0.9704601764678955, 1050.3795166015625, 332.7978515625, 0.9820960760116577, 1212.6478271484375, 310.453857421875, 0.9558749198913574, 1061.8560791015625, 416.13995361328125, 0.9573388695716858, 1276.6456298828125, 268.8334045410156, 0.9683279991149902, 1142.6844482421875, 453.862060546875, 0.9644104242324829, 1287.341064453125, 229.05764770507812, 0.9622175693511963, 1175.5938720703125, 456.806640625, 0.9025524258613586, 1161.11376953125, 229.88885498046875, 0.9267435073852539, 1290.148193359375, 198.0133056640625, 0.9493825435638428, 1207.482666015625, 454.6012268066406, 0.8623101711273193, 1116.0321044921875, 740.233642578125, 0.9065365791320801, 1078.7384033203125, 770.91357421875, 0.891722559928894], "score": 3.06095027923584, "box": [1011.6163940429688, 204.15646362304688, 291.17547607421875, 592.3141174316406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06187202408909798, 0.0900271087884903, 0.025885844603180885], [-0.0629030391573906, 0.08852194249629974, -0.018066857010126114], [-0.010332382284104824, -0.10334929823875427, 0.02413061447441578], [0.04936319962143898, 0.4453246593475342, -0.10955791920423508], [-0.11121533811092377, 0.4720737636089325, -0.03985822945833206], [-0.003762237960472703, -0.23408621549606323, 0.001592373475432396], [0.036925725638866425, 0.6926790475845337, 0.20541222393512726], [-0.07822167128324509, 0.8067628145217896, 0.17741693556308746], [0.012482531368732452, -0.27924731373786926, -0.02779706008732319], [0.09320566058158875, 0.802304744720459, 0.1565139889717102], [-0.07671213150024414, 0.8938570022583008, 0.07749591022729874], [-0.008427504450082779, -0.4891187846660614, -0.04437098652124405], [0.052895426750183105, -0.4083607494831085, 0.018246768042445183], [-0.06716565787792206, -0.38947615027427673, -0.07254574447870255], [0.03244266286492348, -0.5399926900863647, -0.09637942910194397], [0.12113690376281738, -0.4480535686016083, 0.06553950905799866], [-0.1376088410615921, -0.39186891913414, -0.13916176557540894], [0.3539920747280121, -0.489795058965683, 0.17736642062664032], [-0.1096937507390976, -0.15939196944236755, -0.2388310730457306], [0.533594012260437, -0.6037259101867676, 0.05004318058490753], [0.11771433055400848, -0.050917476415634155, -0.27839237451553345], [0.555885374546051, -0.6839146614074707, 0.05869489908218384], [0.20036299526691437, -0.0432187020778656, -0.2869623005390167]]}, {"image_id": "39.jpg", "category_id": 1, "keypoints": [1265.02490234375, 496.1597900390625, 0.9783673286437988, 1280.216064453125, 528.7679443359375, 0.9815130829811096, 1247.1602783203125, 528.0032348632812, 0.987760066986084, 1271.3878173828125, 459.41180419921875, 0.9911077618598938, 1247.140625, 657.6051025390625, 0.9755859971046448, 1220.9884033203125, 662.8093872070312, 0.9869230389595032, 1271.2481689453125, 413.4649963378906, 0.9841946959495544, 1235.6226806640625, 774.8153076171875, 0.8889655470848083, 1255.41748046875, 775.3486328125, 0.9283438324928284, 1266.5330810546875, 395.79058837890625, 0.9847931265830994, 1210.91748046875, 795.13134765625, 0.8421511650085449, 1220.331298828125, 796.3657836914062, 0.9538430571556091, 1264.5224609375, 319.0767822265625, 0.984490692615509, 1287.6357421875, 345.980712890625, 0.9875233173370361, 1249.1180419921875, 355.6998291015625, 0.9875403046607971, 1253.437255859375, 297.6389465332031, 0.9549367427825928, 1307.5673828125, 330.5687255859375, 0.926006555557251, 1231.082275390625, 352.37188720703125, 0.9824857711791992, 1329.204833984375, 238.25595092773438, 0.9312117099761963, 1187.0166015625, 396.241455078125, 0.9554203748703003, 1291.2530517578125, 207.333251953125, 0.9702711701393127, 1157.2860107421875, 422.8193359375, 0.9183065891265869, 1286.8397216796875, 196.75613403320312, 0.949843168258667, 1144.6214599609375, 381.0384216308594, 0.945509135723114, 1235.409912109375, 231.43096923828125, 0.9501321911811829, 1279.340087890625, 177.56381225585938, 0.9312611222267151, 1119.1015625, 316.90850830078125, 0.9254007339477539, 1187.1370849609375, 792.248779296875, 0.6768801212310791, 1209.8082275390625, 797.26953125, 0.9296393394470215], "score": 3.146373748779297, "box": [1128.896240234375, 186.1126708984375, 214.2259521484375, 651.8095092773438], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04247279092669487, 0.090656578540802, -0.047242626547813416], [-0.04515296220779419, 0.08579662442207336, 0.04854951798915863], [0.022314969450235367, -0.09914137423038483, 0.01936587505042553], [-0.058598656207323074, 0.44685670733451843, -0.14379478991031647], [-0.11192525923252106, 0.46224576234817505, 0.11909320205450058], [0.021189255639910698, -0.22939904034137726, 0.01191265694797039], [-0.10782746970653534, 0.8229147791862488, -0.27458640933036804], [0.0056664589792490005, 0.8096714019775391, 0.28012415766716003], [0.006155954673886299, -0.2800469398498535, -0.0021242182701826096], [-0.207983136177063, 0.8999612927436829, -0.3112432062625885], [-0.10089462995529175, 0.8669103980064392, 0.22923468053340912], [-0.0013088659616187215, -0.48586612939834595, 0.026996133849024773], [0.058590587228536606, -0.40568792819976807, -0.0334705114364624], [-0.034691035747528076, -0.3868598937988281, 0.07858114689588547], [-0.037753328680992126, -0.5444771647453308, -0.019649894908070564], [0.11230585724115372, -0.4483029246330261, -0.09143654257059097], [-0.0903613343834877, -0.40269696712493896, 0.15311038494110107], [0.13999883830547333, -0.6378635168075562, -0.2699315547943115], [-0.2579781115055084, -0.2335273176431656, 0.24212157726287842], [0.04113166779279709, -0.7550830245018005, -0.07627298682928085], [-0.37028321623802185, -0.13698522746562958, 0.03488294035196304], [0.03549398109316826, -0.7942060232162476, -0.003916503861546516], [-0.39438876509666443, -0.21550635993480682, 0.03072402812540531]]}, {"image_id": "39.jpg", "category_id": 1, "keypoints": [1102.6802978515625, 469.95599365234375, 0.9813195466995239, 1124.5196533203125, 498.9200439453125, 0.9938578605651855, 1080.348388671875, 500.60516357421875, 0.9915619492530823, 1100.1297607421875, 436.28839111328125, 0.9933199882507324, 1123.7286376953125, 620.22802734375, 0.982072651386261, 1062.406494140625, 629.4929809570312, 0.9854217767715454, 1101.97900390625, 392.845458984375, 0.9827514886856079, 1118.74365234375, 728.06298828125, 0.9417631030082703, 1076.735107421875, 741.9969482421875, 0.8898609280586243, 1107.3812255859375, 375.8674621582031, 0.9859539270401001, 1134.5455322265625, 751.503173828125, 0.8775688409805298, 1078.2666015625, 769.1087646484375, 0.8060138821601868, 1099.92431640625, 304.89715576171875, 0.9857664108276367, 1123.1976318359375, 334.050537109375, 0.9908849000930786, 1078.469482421875, 336.3743896484375, 0.9912900924682617, 1113.4173583984375, 287.772216796875, 0.9405609965324402, 1146.6217041015625, 322.0054016113281, 0.9704684019088745, 1050.23828125, 333.5531921386719, 0.9844077825546265, 1223.400390625, 310.28314208984375, 0.9584036469459534, 1053.8411865234375, 418.60125732421875, 0.9583454132080078, 1279.9425048828125, 263.30126953125, 0.9754865169525146, 1136.927978515625, 452.2347412109375, 0.9573289155960083, 1288.243896484375, 226.7576904296875, 0.966836154460907, 1169.158447265625, 454.1055603027344, 0.9222915768623352, 1165.6455078125, 230.4530029296875, 0.921058714389801, 1290.28173828125, 195.86257934570312, 0.9515727162361145, 1204.253173828125, 450.3098449707031, 0.890174388885498, 1128.6168212890625, 753.9334716796875, 0.861693799495697, 1089.2977294921875, 771.1756591796875, 0.8748717904090881], "score": 2.938540458679199, "box": [1013.4639282226562, 206.11569213867188, 289.06573486328125, 593.7767028808594], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06465426832437515, 0.09017626941204071, 0.017594043165445328], [-0.06370911747217178, 0.08858497440814972, -0.015394411981105804], [-0.009030451998114586, -0.10284541547298431, 0.028456006199121475], [0.058033958077430725, 0.46173572540283203, -0.05649880692362785], [-0.11768203973770142, 0.46993184089660645, -0.037787795066833496], [-0.004454577341675758, -0.23421166837215424, 0.006744120270013809], [0.059594422578811646, 0.7598008513450623, 0.20911704003810883], [-0.0681644082069397, 0.807878851890564, 0.16852815449237823], [0.009393977001309395, -0.2807241678237915, -0.02223142236471176], [0.1192716658115387, 0.8495838046073914, 0.13213729858398438], [-0.06557852774858475, 0.9088191986083984, 0.08275258541107178], [-0.011826876550912857, -0.4913231134414673, -0.034940339624881744], [0.05350615829229355, -0.4095000624656677, 0.022773899137973785], [-0.07288144528865814, -0.39196813106536865, -0.060819242149591446], [0.027254875749349594, -0.5398241281509399, -0.09041167795658112], [0.1242675930261612, -0.44780272245407104, 0.06828206777572632], [-0.14843496680259705, -0.3949511647224426, -0.12227556109428406], [0.36707860231399536, -0.49042606353759766, 0.1532234400510788], [-0.1416076421737671, -0.15901057422161102, -0.21506687998771667], [0.5322249531745911, -0.6271881461143494, 0.030116353183984756], [0.0905008465051651, -0.06291453540325165, -0.25397148728370667], [0.5514129996299744, -0.708163321018219, 0.03906196728348732], [0.17376871407032013, -0.05801577866077423, -0.25590264797210693]]}, {"image_id": "39.jpg", "category_id": 1, "keypoints": [1091.044921875, 471.3148498535156, 0.9801400303840637, 1112.1771240234375, 500.0863037109375, 0.988972008228302, 1069.692626953125, 501.2655944824219, 0.9896915555000305, 1088.6907958984375, 436.24041748046875, 0.9927704334259033, 1124.3740234375, 624.0314331054688, 0.9880523681640625, 1064.4776611328125, 632.5812377929688, 0.9898228049278259, 1090.9993896484375, 392.6372375488281, 0.984399139881134, 1122.9913330078125, 720.6044311523438, 0.9510793685913086, 1082.7064208984375, 746.9044799804688, 0.923189640045166, 1095.851318359375, 376.617919921875, 0.9906536340713501, 1138.0927734375, 747.4419555664062, 0.9078487157821655, 1088.57861328125, 769.1947021484375, 0.9308213591575623, 1089.5347900390625, 305.6076965332031, 0.9861367344856262, 1111.905517578125, 334.31866455078125, 0.9914372563362122, 1067.125, 338.0887451171875, 0.9868751168251038, 1105.3670654296875, 287.1041259765625, 0.9403011202812195, 1138.252197265625, 321.69476318359375, 0.9789435267448425, 1042.5118408203125, 336.48541259765625, 0.9840928912162781, 1182.97021484375, 327.1600646972656, 0.9112412333488464, 1054.2464599609375, 420.31988525390625, 0.9605955481529236, 1217.706787109375, 325.3253173828125, 0.9594343900680542, 1131.458740234375, 454.1324462890625, 0.9641523361206055, 1230.421142578125, 315.3162536621094, 0.8994794487953186, 1154.7530517578125, 461.00347900390625, 0.9113726615905762, 1118.4990234375, 216.43545532226562, 0.9555901288986206, 1221.3448486328125, 338.30401611328125, 0.9408078193664551, 1182.90966796875, 463.95050048828125, 0.9190290570259094, 1130.1905517578125, 754.3739013671875, 0.9155552387237549, 1096.8045654296875, 768.478271484375, 0.9215397238731384], "score": 2.392713785171509, "box": [1014.4000854492188, 230.70059204101562, 170.77471923828125, 549.0486145019531], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06367647647857666, 0.08826518058776855, 0.02797193080186844], [-0.06411819159984589, 0.08932080864906311, -0.007818374782800674], [-0.008836867287755013, -0.10521981120109558, 0.01775239035487175], [0.09567153453826904, 0.4582284986972809, -0.047789692878723145], [-0.07772773504257202, 0.4728345274925232, 0.03236754611134529], [-0.003215065225958824, -0.235257089138031, -0.009732263162732124], [0.10836447030305862, 0.7494727373123169, 0.2252398431301117], [-0.014574242755770683, 0.8374720215797424, 0.18214325606822968], [0.009285639971494675, -0.2799580693244934, -0.04194910079240799], [0.16404643654823303, 0.8510453104972839, 0.16090646386146545], [0.0023340717889368534, 0.9121005535125732, 0.07396160066127777], [-0.010887335985898972, -0.4905890226364136, -0.060196273028850555], [0.058372415602207184, -0.4097828269004822, -0.005311956629157066], [-0.0749339908361435, -0.39103949069976807, -0.07741355150938034], [0.034902963787317276, -0.5426697731018066, -0.10656750947237015], [0.13461458683013916, -0.44808799028396606, 0.0304720476269722], [-0.1483568698167801, -0.39082449674606323, -0.1415557861328125], [0.30262601375579834, -0.44541871547698975, 0.22994829714298248], [-0.11815271526575089, -0.15165099501609802, -0.22062724828720093], [0.5295761823654175, -0.45005542039871216, 0.131944477558136], [0.0990237221121788, -0.05138114094734192, -0.30664652585983276], [0.5950851440429688, -0.501592755317688, 0.1243966668844223], [0.16284161806106567, -0.03004644811153412, -0.35597169399261475]]}, {"image_id": "40.jpg", "category_id": 1, "keypoints": [1262.8082275390625, 497.38580322265625, 0.9789749979972839, 1278.1097412109375, 529.7762451171875, 0.9825636744499207, 1243.3707275390625, 529.162109375, 0.9891664981842041, 1269.1434326171875, 460.5262145996094, 0.9926977157592773, 1248.961181640625, 661.7102661132812, 0.9811856746673584, 1219.622802734375, 670.8216552734375, 0.9874534010887146, 1269.6876220703125, 414.3577575683594, 0.985026478767395, 1245.321044921875, 773.0293579101562, 0.8894023299217224, 1250.8138427734375, 774.7333984375, 0.9256912469863892, 1265.9202880859375, 396.25286865234375, 0.9881048798561096, 1226.284912109375, 797.4434814453125, 0.8426350951194763, 1223.9930419921875, 799.8121337890625, 0.9483332633972168, 1263.914306640625, 319.5375061035156, 0.9836034774780273, 1287.2943115234375, 345.8623046875, 0.9860592484474182, 1246.954833984375, 356.55206298828125, 0.9874666333198547, 1254.399169921875, 298.2973937988281, 0.9554119110107422, 1307.062744140625, 330.47467041015625, 0.9263491630554199, 1228.5091552734375, 352.0421142578125, 0.980095624923706, 1334.275390625, 236.91653442382812, 0.9439091086387634, 1184.693359375, 393.09393310546875, 0.9604491591453552, 1293.748046875, 206.17880249023438, 0.9710294008255005, 1162.5789794921875, 419.2009582519531, 0.9394065141677856, 1288.5672607421875, 194.99453735351562, 0.9630028009414673, 1152.3704833984375, 376.47802734375, 0.9450892210006714, 1239.401611328125, 231.3160400390625, 0.9498147368431091, 1282.773193359375, 176.61376953125, 0.9351705312728882, 1125.830322265625, 323.05242919921875, 0.9303637742996216, 1200.2091064453125, 794.4520263671875, 0.7650232911109924, 1221.2830810546875, 804.2763061523438, 0.9352849721908569], "score": 3.134082317352295, "box": [1126.2216796875, 187.68728637695312, 219.6339111328125, 649.5868835449219], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.042996831238269806, 0.0895615741610527, -0.048319388180971146], [-0.049876466393470764, 0.08635488152503967, 0.04197042062878609], [0.023316960781812668, -0.09740087389945984, 0.02475915104150772], [-0.04559379816055298, 0.45106443762779236, -0.13591381907463074], [-0.10905410349369049, 0.4667593240737915, 0.0937177836894989], [0.02500844933092594, -0.22778412699699402, 0.02634952962398529], [-0.06512558460235596, 0.8446307182312012, -0.20804765820503235], [0.0067130569368600845, 0.8162722587585449, 0.24995607137680054], [0.012943797744810581, -0.2795511484146118, 0.014139406383037567], [-0.1381848305463791, 0.9242094159126282, -0.2828245759010315], [-0.0788639485836029, 0.8848385214805603, 0.17826083302497864], [0.002460300223901868, -0.4845839738845825, 0.04486352205276489], [0.06540374457836151, -0.40562278032302856, -0.013647392392158508], [-0.032014064490795135, -0.38494575023651123, 0.09391167759895325], [-0.030774692073464394, -0.545823872089386, -0.0008257962763309479], [0.11991356313228607, -0.44912755489349365, -0.06988757103681564], [-0.09187847375869751, -0.4051639437675476, 0.16371822357177734], [0.16165073215961456, -0.6448158621788025, -0.23819312453269958], [-0.26360267400741577, -0.2424294352531433, 0.2556743323802948], [0.05874091014266014, -0.7586002945899963, -0.04509243369102478], [-0.3513238728046417, -0.147036612033844, 0.0368267297744751], [0.05045054480433464, -0.7999773025512695, 0.02554791420698166], [-0.37037450075149536, -0.2268647849559784, 0.03715651109814644]]}, {"image_id": "40.jpg", "category_id": 1, "keypoints": [1119.626708984375, 471.4313659667969, 0.9841037392616272, 1138.9906005859375, 501.6534118652344, 0.9930998682975769, 1097.0625, 503.2613830566406, 0.992537260055542, 1119.06787109375, 437.03765869140625, 0.9921085238456726, 1140.317626953125, 629.336181640625, 0.979154646396637, 1085.361328125, 624.4952392578125, 0.9899686574935913, 1119.5504150390625, 394.2056579589844, 0.9873669743537903, 1128.5064697265625, 741.551513671875, 0.9303736686706543, 1093.42578125, 751.9478149414062, 0.8343484401702881, 1122.370849609375, 376.7877502441406, 0.9902522563934326, 1147.857421875, 758.021484375, 0.8650181293487549, 1095.369384765625, 778.093017578125, 0.8653757572174072, 1111.1932373046875, 305.3232116699219, 0.9882137775421143, 1135.64111328125, 334.710205078125, 0.9897162318229675, 1090.8470458984375, 336.1167907714844, 0.9912770986557007, 1119.3092041015625, 287.2611389160156, 0.9502254128456116, 1155.9019775390625, 322.8619079589844, 0.9591936469078064, 1060.068359375, 334.06658935546875, 0.9844962358474731, 1230.930908203125, 310.144287109375, 0.9625340104103088, 1049.92626953125, 419.46905517578125, 0.9359039068222046, 1280.4503173828125, 260.4664001464844, 0.9786539077758789, 1129.52490234375, 451.7305603027344, 0.9550940990447998, 1291.13720703125, 224.9781494140625, 0.9606682658195496, 1154.2900390625, 455.5291442871094, 0.923882782459259, 1165.9300537109375, 230.61032104492188, 0.9126992225646973, 1296.0146484375, 199.93154907226562, 0.9443721771240234, 1187.6817626953125, 453.93035888671875, 0.908718466758728, 1144.964599609375, 758.98974609375, 0.8230053186416626, 1102.51953125, 778.4888916015625, 0.9146782159805298], "score": 2.971428394317627, "box": [1008.8689575195312, 206.9650115966797, 303.33319091796875, 591.5111846923828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06145217642188072, 0.09148021787405014, 0.01580818183720112], [-0.06670156121253967, 0.08576859533786774, -0.010168494656682014], [-0.0037669602315872908, -0.10215608775615692, 0.026158710941672325], [0.06361129879951477, 0.46903425455093384, -0.01260889321565628], [-0.1063675805926323, 0.4619929790496826, -0.08271647244691849], [-0.003584465244784951, -0.2327086180448532, 0.0025956574827432632], [0.045271798968315125, 0.7896353602409363, 0.2219192087650299], [-0.07641997188329697, 0.8037823438644409, 0.11753927916288376], [0.002908320864662528, -0.2808187007904053, -0.02496928535401821], [0.12522536516189575, 0.8560575246810913, 0.14104501903057098], [-0.07034049183130264, 0.9196023344993591, 0.05542963743209839], [-0.028702592477202415, -0.48835891485214233, -0.029471440240740776], [0.043956559151411057, -0.4087773561477661, 0.019482756033539772], [-0.08620912581682205, -0.3877086043357849, -0.05227977782487869], [-0.0062090810388326645, -0.5405735969543457, -0.09062602370977402], [0.11191694438457489, -0.45011287927627563, 0.06434116512537003], [-0.1652362048625946, -0.38893771171569824, -0.10709924250841141], [0.3512473404407501, -0.4963991641998291, 0.1541597694158554], [-0.19549094140529633, -0.15248163044452667, -0.19015873968601227], [0.4982932507991791, -0.6457837820053101, 0.02543855644762516], [0.03619684651494026, -0.056686148047447205, -0.224971204996109], [0.5225570797920227, -0.7249321341514587, 0.030684268102049828], [0.11461696773767471, -0.04375810921192169, -0.24770773947238922]]}, {"image_id": "40.jpg", "category_id": 1, "keypoints": [1094.034423828125, 473.3891296386719, 0.97934889793396, 1117.1827392578125, 503.17730712890625, 0.9908045530319214, 1072.632568359375, 503.60418701171875, 0.9882848858833313, 1090.935791015625, 437.79864501953125, 0.9939217567443848, 1121.2315673828125, 623.6285400390625, 0.9863072037696838, 1072.171630859375, 638.1182861328125, 0.9845424294471741, 1091.583984375, 393.9249267578125, 0.9835296273231506, 1124.9605712890625, 735.5811767578125, 0.9557814002037048, 1091.99169921875, 753.7067260742188, 0.932415246963501, 1095.81201171875, 378.2386169433594, 0.9907751679420471, 1137.1607666015625, 759.7874755859375, 0.8699415326118469, 1089.8575439453125, 777.42822265625, 0.9225988388061523, 1089.48828125, 306.1009826660156, 0.9858517646789551, 1113.3565673828125, 335.3385009765625, 0.9910850524902344, 1066.33349609375, 338.3385925292969, 0.9857922792434692, 1104.896240234375, 288.3297424316406, 0.9391601085662842, 1140.6353759765625, 323.50579833984375, 0.9770925641059875, 1040.5281982421875, 336.31292724609375, 0.9846115708351135, 1185.37744140625, 331.7573547363281, 0.9265226721763611, 1047.8292236328125, 421.2195739746094, 0.9668328166007996, 1211.7222900390625, 337.9872741699219, 0.9699371457099915, 1124.1328125, 451.8202819824219, 0.9600704312324524, 1221.7899169921875, 329.189453125, 0.9226378798484802, 1148.642333984375, 459.2391052246094, 0.8794729113578796, 1116.7930908203125, 218.81729125976562, 0.9558420777320862, 1199.8232421875, 384.2525634765625, 0.9033706784248352, 1177.9599609375, 459.2994384765625, 0.8839221596717834, 1130.4979248046875, 762.4530639648438, 0.91705322265625, 1096.0968017578125, 780.73388671875, 0.9116861820220947], "score": 2.3581693172454834, "box": [1012.6727905273438, 231.00318908691406, 171.77947998046875, 550.9041595458984], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06798086315393448, 0.08827563375234604, 0.012695420533418655], [-0.06293324381113052, 0.0899772122502327, -0.005862880498170853], [-0.008010318502783775, -0.10294459760189056, 0.02626660466194153], [0.07183597981929779, 0.44298601150512695, -0.12429770082235336], [-0.06349590420722961, 0.4765125513076782, 0.01235787570476532], [-0.006686202250421047, -0.2322549670934677, -0.0039960891008377075], [0.097449891269207, 0.7405029535293579, 0.14231088757514954], [0.0046302275732159615, 0.8447152376174927, 0.15313369035720825], [0.003928879275918007, -0.27593594789505005, -0.03778933361172676], [0.14268426597118378, 0.8342682123184204, 0.060280606150627136], [-0.008551114238798618, 0.9267125129699707, 0.049877770245075226], [-0.01852218434214592, -0.4858663082122803, -0.05302555114030838], [0.053983017802238464, -0.4052565097808838, -0.003268968313932419], [-0.08257150650024414, -0.38631266355514526, -0.06668423116207123], [0.025977734476327896, -0.5356099605560303, -0.10334578156471252], [0.13194771111011505, -0.44080841541290283, 0.030478771775960922], [-0.15742258727550507, -0.38736534118652344, -0.12845955789089203], [0.3014552891254425, -0.42798686027526855, 0.22903645038604736], [-0.13992659747600555, -0.14816881716251373, -0.21274682879447937], [0.4878884255886078, -0.36911875009536743, 0.07701010257005692], [0.06638370454311371, -0.04762361943721771, -0.32337066531181335], [0.5508644580841064, -0.42415231466293335, 0.07690113037824631], [0.12020096927881241, -0.028643205761909485, -0.38417139649391174]]}, {"image_id": "41.jpg", "category_id": 1, "keypoints": [1262.9332275390625, 496.7843017578125, 0.9776820540428162, 1277.7913818359375, 529.05517578125, 0.9838849306106567, 1243.506103515625, 530.4850463867188, 0.9908166527748108, 1268.9649658203125, 459.41156005859375, 0.9926298260688782, 1239.6163330078125, 659.2977905273438, 0.9838812947273254, 1226.92041015625, 673.9537353515625, 0.9822378158569336, 1269.7486572265625, 412.7616882324219, 0.988063395023346, 1219.2408447265625, 781.407958984375, 0.9059709310531616, 1263.2366943359375, 778.0426025390625, 0.9238156080245972, 1265.8275146484375, 395.32659912109375, 0.9879790544509888, 1202.8114013671875, 804.2587890625, 0.8533154726028442, 1229.44091796875, 806.3826293945312, 0.9420194029808044, 1261.5870361328125, 319.10723876953125, 0.9849050045013428, 1287.5272216796875, 345.0634765625, 0.9863603115081787, 1243.9644775390625, 355.9481506347656, 0.9881308078765869, 1254.66796875, 296.9608154296875, 0.9536682367324829, 1307.37646484375, 329.9132080078125, 0.9268439412117004, 1222.3267822265625, 352.5562438964844, 0.986594021320343, 1340.8919677734375, 237.92062377929688, 0.9434601664543152, 1188.74462890625, 429.4190979003906, 0.9419098496437073, 1297.3912353515625, 208.00039672851562, 0.9724464416503906, 1153.705078125, 455.19500732421875, 0.9292517304420471, 1289.9954833984375, 197.481201171875, 0.9652484655380249, 1141.9869384765625, 450.2283935546875, 0.9286966919898987, 1237.068359375, 232.0126953125, 0.9490689039230347, 1283.35791015625, 182.85134887695312, 0.9280576705932617, 1128.212158203125, 427.75152587890625, 0.9168123602867126, 1179.4444580078125, 796.2107543945312, 0.7190999388694763, 1208.792236328125, 810.336181640625, 0.928765058517456], "score": 3.1043076515197754, "box": [1121.7799072265625, 189.1749725341797, 227.150390625, 653.9880523681641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04294566065073013, 0.08754361420869827, -0.05175912380218506], [-0.04937613755464554, 0.08797308057546616, 0.03882674500346184], [0.023033641278743744, -0.09622693061828613, 0.028160113841295242], [-0.07019102573394775, 0.4308752715587616, -0.1786813586950302], [-0.08763743191957474, 0.46954602003097534, 0.10497905313968658], [0.02535736933350563, -0.2264592945575714, 0.029569920152425766], [-0.14546483755111694, 0.786832332611084, -0.34796595573425293], [0.03855274245142937, 0.7911494970321655, 0.30778393149375916], [0.012416957877576351, -0.27743422985076904, 0.015640467405319214], [-0.22149090468883514, 0.8840683698654175, -0.3930816650390625], [-0.051104459911584854, 0.8554363250732422, 0.23710671067237854], [-0.0051726377569139, -0.48227760195732117, 0.0424669124186039], [0.06507524847984314, -0.40400466322898865, -0.0076809171587228775], [-0.042609937489032745, -0.3825747072696686, 0.08861514925956726], [-0.0306230541318655, -0.5462403297424316, -0.004640188068151474], [0.12048068642616272, -0.4472444951534271, -0.06285348534584045], [-0.1168057769536972, -0.39816752076148987, 0.14396807551383972], [0.1791720986366272, -0.6457157135009766, -0.2234150618314743], [-0.2160658985376358, -0.16658201813697815, 0.17798849940299988], [0.06733004748821259, -0.7562683820724487, -0.033041033893823624], [-0.32795724272727966, -0.08815577626228333, -0.03699694946408272], [0.05158489570021629, -0.7964620590209961, 0.036964867264032364], [-0.3725174367427826, -0.10353285074234009, -0.10414288938045502]]}, {"image_id": "41.jpg", "category_id": 1, "keypoints": [1132.9591064453125, 479.9776306152344, 0.9868795275688171, 1148.455078125, 510.984619140625, 0.9944167733192444, 1111.06298828125, 512.7166137695312, 0.9941350221633911, 1134.0113525390625, 443.8778076171875, 0.9922425746917725, 1152.4576416015625, 648.14013671875, 0.9677023887634277, 1086.59912109375, 626.7357788085938, 0.9796901941299438, 1132.4464111328125, 398.84368896484375, 0.9899198412895203, 1140.301513671875, 753.1239013671875, 0.946122944355011, 1108.244384765625, 756.119873046875, 0.8370550870895386, 1133.8680419921875, 379.89556884765625, 0.9920946359634399, 1152.0301513671875, 770.9207763671875, 0.8841534852981567, 1109.4383544921875, 782.2138671875, 0.8935787081718445, 1120.6241455078125, 307.0989990234375, 0.9886304140090942, 1146.196044921875, 336.76068115234375, 0.989488422870636, 1101.5943603515625, 337.9693908691406, 0.9915876984596252, 1126.220703125, 289.35638427734375, 0.9528170228004456, 1163.7825927734375, 324.822509765625, 0.9603828191757202, 1069.21044921875, 335.40423583984375, 0.9849824905395508, 1249.5233154296875, 310.43548583984375, 0.9783365726470947, 1047.81640625, 419.4268493652344, 0.9370875954627991, 1285.4173583984375, 252.59764099121094, 0.9789348840713501, 1123.00048828125, 450.8995361328125, 0.9619408845901489, 1294.093017578125, 219.66461181640625, 0.9651917815208435, 1144.04443359375, 454.94757080078125, 0.9090016484260559, 1174.6092529296875, 231.5867919921875, 0.9317800998687744, 1298.982421875, 197.99929809570312, 0.9357410669326782, 1172.5220947265625, 445.18780517578125, 0.9089056253433228, 1147.589599609375, 770.7283935546875, 0.8139083385467529, 1113.8975830078125, 783.9315185546875, 0.9334011077880859], "score": 2.891244411468506, "box": [1014.4627075195312, 206.39564514160156, 302.27008056640625, 595.6246795654297], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05803201347589493, 0.09337329864501953, 0.009388711303472519], [-0.06938691437244415, 0.08228813111782074, -0.009675346314907074], [0.0012496586423367262, -0.09984813630580902, 0.029170576483011246], [0.07001170516014099, 0.47153347730636597, 0.0238913856446743], [-0.1520112007856369, 0.4420244097709656, -0.1186157763004303], [-0.00435331417247653, -0.23070590198040009, 0.011858228594064713], [0.04766054078936577, 0.7993659973144531, 0.24535460770130157], [-0.08806148171424866, 0.7787052392959595, 0.07921953499317169], [-0.0019643353298306465, -0.28031617403030396, -0.012096285820007324], [0.09640844911336899, 0.8753108382225037, 0.15031524002552032], [-0.08465764671564102, 0.9010406136512756, 0.03309899568557739], [-0.03601248562335968, -0.48548996448516846, -0.015068411827087402], [0.03999851644039154, -0.40742063522338867, 0.028178028762340546], [-0.0930132046341896, -0.38482803106307983, -0.03228870779275894], [-0.020647143945097923, -0.540051281452179, -0.07664801180362701], [0.10416944324970245, -0.45217305421829224, 0.07328073680400848], [-0.17040656507015228, -0.37553995847702026, -0.0867660641670227], [0.35202014446258545, -0.49747395515441895, 0.13294938206672668], [-0.23211441934108734, -0.14332954585552216, -0.1608172506093979], [0.46676063537597656, -0.6903491616249084, 0.034903258085250854], [-0.005883327219635248, -0.045707717537879944, -0.21479594707489014], [0.4883737862110138, -0.7691506743431091, 0.04485096037387848], [0.06639442592859268, -0.03033064305782318, -0.2503790259361267]]}, {"image_id": "41.jpg", "category_id": 1, "keypoints": [1094.5928955078125, 475.0426025390625, 0.9807838797569275, 1117.383056640625, 503.937255859375, 0.9894859790802002, 1073.640625, 505.7774963378906, 0.9891906380653381, 1092.073486328125, 438.9541015625, 0.9935956597328186, 1115.5626220703125, 631.3079223632812, 0.9838957190513611, 1077.55517578125, 639.1888427734375, 0.9784210920333862, 1092.2637939453125, 395.4078369140625, 0.9837517142295837, 1120.63427734375, 754.5301513671875, 0.9452598094940186, 1100.2137451171875, 755.6654052734375, 0.9400960206985474, 1095.694580078125, 379.85113525390625, 0.9905418157577515, 1125.193115234375, 778.2962646484375, 0.9083694815635681, 1089.6392822265625, 778.0601196289062, 0.934732973575592, 1089.18359375, 307.3355712890625, 0.9858505129814148, 1113.69384765625, 336.3502197265625, 0.9918749332427979, 1065.7967529296875, 340.1724853515625, 0.9864334464073181, 1103.562744140625, 288.6365966796875, 0.9433393478393555, 1140.087158203125, 324.35516357421875, 0.9806156158447266, 1038.72509765625, 338.07183837890625, 0.9873115420341492, 1198.68603515625, 318.60797119140625, 0.9596787095069885, 1042.897216796875, 422.2221374511719, 0.9678264856338501, 1241.2181396484375, 293.23406982421875, 0.9760839343070984, 1117.1085205078125, 452.4622497558594, 0.955417811870575, 1258.8656005859375, 271.16802978515625, 0.9375987648963928, 1144.37255859375, 460.6949157714844, 0.9027957320213318, 1122.246337890625, 221.8890380859375, 0.955232560634613, 1272.902587890625, 280.1663818359375, 0.8225870728492737, 1173.8768310546875, 462.0213623046875, 0.8773810863494873, 1125.908935546875, 781.6343994140625, 0.9244768619537354, 1096.9888916015625, 782.5850830078125, 0.9112379550933838], "score": 2.3504672050476074, "box": [1011.7041625976562, 241.41885375976562, 170.94805908203125, 533.0202941894531], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0688551738858223, 0.0878702774643898, 0.007196413353085518], [-0.06235801801085472, 0.0901235044002533, -0.0037307236343622208], [-0.007050635293126106, -0.10193789005279541, 0.0281852837651968], [0.05755462124943733, 0.4550239145755768, -0.09322740882635117], [-0.048709504306316376, 0.4734226167201996, 0.05079764872789383], [-0.007585885003209114, -0.23273789882659912, 0.006298474967479706], [0.08411962538957596, 0.78858482837677, 0.12683925032615662], [0.028049515560269356, 0.8413644433021545, 0.18805919587612152], [0.0009786586742848158, -0.27730968594551086, -0.02649729698896408], [0.09356974065303802, 0.8638279438018799, 0.01829642616212368], [-0.014568431302905083, 0.9111254215240479, 0.0839960053563118], [-0.02086181379854679, -0.48701512813568115, -0.03374507650732994], [0.05288338288664818, -0.40466535091400146, 0.00987609289586544], [-0.08564111590385437, -0.38852542638778687, -0.04747509956359863], [0.021375002339482307, -0.5407412052154541, -0.08201643824577332], [0.1304125189781189, -0.4415491819381714, 0.041944220662117004], [-0.16309620440006256, -0.3899264335632324, -0.10513585805892944], [0.33495625853538513, -0.4737667441368103, 0.20174692571163177], [-0.15433290600776672, -0.15189844369888306, -0.19421876966953278], [0.5176773071289062, -0.5788285732269287, 0.0717306062579155], [0.05447648838162422, -0.06018328666687012, -0.3080427348613739], [0.5675463676452637, -0.6420666575431824, 0.049820683896541595], [0.11788234859704971, -0.038478195667266846, -0.3573845624923706]]}, {"image_id": "42.jpg", "category_id": 1, "keypoints": [1261.229736328125, 498.831787109375, 0.9774911999702454, 1276.976806640625, 532.177001953125, 0.984207808971405, 1241.6341552734375, 532.0934448242188, 0.9883283376693726, 1267.7489013671875, 461.1063537597656, 0.9922833442687988, 1232.2774658203125, 661.328369140625, 0.9846702814102173, 1235.703857421875, 675.9471435546875, 0.9803073406219482, 1267.1502685546875, 414.0105285644531, 0.9855692386627197, 1208.5672607421875, 782.5225830078125, 0.8667358160018921, 1266.67822265625, 785.624267578125, 0.9365970492362976, 1262.5032958984375, 396.4674072265625, 0.9855008721351624, 1189.3328857421875, 821.6344604492188, 0.8509571552276611, 1224.9071044921875, 821.0943603515625, 0.954542875289917, 1260.8331298828125, 320.1683044433594, 0.9867993593215942, 1286.2572021484375, 346.82684326171875, 0.9850929379463196, 1241.721923828125, 356.5830078125, 0.9893783330917358, 1252.83447265625, 297.5341796875, 0.9525873064994812, 1307.791748046875, 331.3419494628906, 0.9358912110328674, 1219.852294921875, 352.37249755859375, 0.9891529083251953, 1340.509033203125, 242.52255249023438, 0.9463081955909729, 1182.0604248046875, 417.1483154296875, 0.9521335959434509, 1298.963623046875, 212.90713500976562, 0.9735730290412903, 1153.734619140625, 455.02923583984375, 0.9193257689476013, 1293.3653564453125, 204.0906982421875, 0.9578579664230347, 1145.6279296875, 444.6833190917969, 0.8988367319107056, 1241.7833251953125, 234.17007446289062, 0.949636697769165, 1287.73388671875, 199.53256225585938, 0.9277313947677612, 1136.33154296875, 402.5815734863281, 0.93043053150177, 1174.73583984375, 815.6171875, 0.7637631297111511, 1204.2645263671875, 819.2701416015625, 0.9121541380882263], "score": 3.1075806617736816, "box": [1123.507080078125, 193.20010375976562, 228.83837890625, 652.0954284667969], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04221783205866814, 0.0896221399307251, -0.047992363572120667], [-0.04726633056998253, 0.08593765646219254, 0.044621847569942474], [0.02250230871140957, -0.09711222350597382, 0.022012997418642044], [-0.08773782104253769, 0.42956316471099854, -0.17263156175613403], [-0.05637708306312561, 0.4689333438873291, 0.12020774930715561], [0.02005392499268055, -0.22632648050785065, 0.01370212808251381], [-0.1728336662054062, 0.7759634256362915, -0.35900649428367615], [0.052878424525260925, 0.8057518005371094, 0.30983826518058777], [0.005265212617814541, -0.27554744482040405, -0.0026668552309274673], [-0.23055347800254822, 0.8939301371574402, -0.35646316409111023], [-0.04287035018205643, 0.8789424896240234, 0.2587798237800598], [-0.0009444907773286104, -0.4787489175796509, 0.03248349577188492], [0.06335625797510147, -0.3994128108024597, -0.022198867052793503], [-0.04161486402153969, -0.3797512650489807, 0.07551374286413193], [-0.02836112305521965, -0.539483904838562, -0.017597511410713196], [0.12240751832723618, -0.44252848625183105, -0.07247021794319153], [-0.11142890900373459, -0.39760255813598633, 0.13460010290145874], [0.1781681329011917, -0.6334823369979858, -0.24381601810455322], [-0.2344624549150467, -0.1820618063211441, 0.19217190146446228], [0.06759776175022125, -0.7462775707244873, -0.05359520763158798], [-0.321045845746994, -0.07810921967029572, -0.02431640774011612], [0.05851070582866669, -0.7805903553962708, 0.020384185016155243], [-0.35580718517303467, -0.11581279337406158, -0.08814266324043274]]}, {"image_id": "42.jpg", "category_id": 1, "keypoints": [1100.562255859375, 478.3414001464844, 0.9786967635154724, 1123.5128173828125, 506.84100341796875, 0.9889166951179504, 1079.1968994140625, 510.755126953125, 0.9911490678787231, 1096.865234375, 443.7589111328125, 0.9940202832221985, 1117.7608642578125, 622.4579467773438, 0.985460638999939, 1083.1785888671875, 636.7207641601562, 0.9820937514305115, 1097.489501953125, 399.9924011230469, 0.984299898147583, 1119.6507568359375, 747.2091064453125, 0.9402668476104736, 1108.3814697265625, 764.134033203125, 0.8632315397262573, 1101.2310791015625, 383.14093017578125, 0.9849395751953125, 1138.6473388671875, 758.934814453125, 0.8969372510910034, 1104.61279296875, 778.326416015625, 0.7271789312362671, 1091.1368408203125, 307.880615234375, 0.9874756932258606, 1115.90625, 337.7522277832031, 0.9933055639266968, 1068.60693359375, 342.26983642578125, 0.9898045659065247, 1106.1651611328125, 288.3302001953125, 0.9316469430923462, 1139.7021484375, 324.94854736328125, 0.973250150680542, 1041.2098388671875, 339.6517333984375, 0.9845776557922363, 1202.7923583984375, 346.87774658203125, 0.9652068018913269, 1044.61181640625, 422.6892395019531, 0.9521201252937317, 1258.431884765625, 320.89508056640625, 0.9819257259368896, 1118.763916015625, 454.0293273925781, 0.9518107771873474, 1268.5135498046875, 308.3017578125, 0.9265421628952026, 1141.531494140625, 461.5676574707031, 0.9188406467437744, 1124.246826171875, 222.48321533203125, 0.9549981951713562, 1271.867431640625, 308.3792724609375, 0.8958527445793152, 1176.790771484375, 467.647705078125, 0.8309203386306763, 1130.9775390625, 753.0910034179688, 0.9254898428916931, 1111.75732421875, 775.5003662109375, 0.8473649621009827], "score": 2.752640724182129, "box": [1017.3938598632812, 206.8330841064453, 220.63726806640625, 602.6198577880859], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06904460489749908, 0.08805407583713531, 0.008275844156742096], [-0.060658663511276245, 0.0900537371635437, -0.01777748391032219], [-0.011529769748449326, -0.09974314272403717, 0.03506691753864288], [0.04195106774568558, 0.4114810824394226, -0.19174343347549438], [-0.05159660056233406, 0.47092288732528687, -0.0906929075717926], [-0.010536459274590015, -0.23068539798259735, 0.016078580170869827], [0.05923892557621002, 0.7387776970863342, 0.0400567352771759], [0.023662494495511055, 0.8180798888206482, 0.09567072987556458], [-0.001667176140472293, -0.27584850788116455, -0.015958745032548904], [0.1317351758480072, 0.7797144651412964, -0.06316199153661728], [0.004711214452981949, 0.8560306429862976, -0.02992379665374756], [-0.03080861084163189, -0.4840208888053894, -0.03836969658732414], [0.04050831124186516, -0.40773504972457886, 0.01874597743153572], [-0.08966601639986038, -0.38193535804748535, -0.0541134811937809], [0.010678810998797417, -0.5369621515274048, -0.0876300036907196], [0.11251318454742432, -0.448098361492157, 0.059020742774009705], [-0.16519978642463684, -0.384879469871521, -0.1145423948764801], [0.33697617053985596, -0.38114994764328003, 0.176406592130661], [-0.15814223885536194, -0.15088938176631927, -0.21519064903259277], [0.5014305114746094, -0.4533090591430664, 0.00526052713394165], [0.054339710623025894, -0.055634960532188416, -0.3199561536312103], [0.550707221031189, -0.5161576867103577, -0.019545814022421837], [0.11898733675479889, -0.03201122581958771, -0.36708614230155945]]}, {"image_id": "43.jpg", "category_id": 1, "keypoints": [1262.3946533203125, 496.4587097167969, 0.9782751202583313, 1277.9732666015625, 528.9812622070312, 0.9898408651351929, 1243.3663330078125, 529.0531616210938, 0.9908185601234436, 1267.54345703125, 459.76739501953125, 0.9911633729934692, 1237.2950439453125, 646.2498779296875, 0.9852204918861389, 1234.1220703125, 670.2811279296875, 0.9758437871932983, 1266.239013671875, 414.33294677734375, 0.9836560487747192, 1208.4554443359375, 774.3818359375, 0.8996179103851318, 1267.5638427734375, 779.5821533203125, 0.9355729222297668, 1261.4024658203125, 397.2579345703125, 0.9886617660522461, 1189.4329833984375, 801.12109375, 0.7719125151634216, 1229.7127685546875, 803.0963134765625, 0.9481613636016846, 1259.7147216796875, 322.5379638671875, 0.9874193072319031, 1284.43017578125, 349.01922607421875, 0.9889771938323975, 1240.869384765625, 358.0767822265625, 0.9901749491691589, 1254.080078125, 300.71295166015625, 0.9505234956741333, 1308.026123046875, 332.8131103515625, 0.9522963166236877, 1219.1441650390625, 355.3984375, 0.9839675426483154, 1342.162109375, 250.33181762695312, 0.9440633654594421, 1192.28173828125, 445.572021484375, 0.9520329236984253, 1302.609130859375, 215.72149658203125, 0.9636492729187012, 1157.5418701171875, 462.85272216796875, 0.9020010232925415, 1297.8204345703125, 203.24417114257812, 0.9584517478942871, 1141.7779541015625, 463.8202209472656, 0.9002106785774231, 1253.803955078125, 234.92642211914062, 0.9429506063461304, 1292.814453125, 190.0606689453125, 0.9254453182220459, 1127.847412109375, 459.5852355957031, 0.8434690237045288, 1177.7197265625, 786.6450805664062, 0.7208303213119507, 1212.898193359375, 797.0289306640625, 0.9215648770332336], "score": 3.097108840942383, "box": [1115.0765380859375, 188.30482482910156, 264.7149658203125, 649.3810272216797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0450674369931221, 0.08930254727602005, -0.047717269510030746], [-0.04842216148972511, 0.08733153343200684, 0.042537108063697815], [0.021295877173542976, -0.09816208481788635, 0.024141917005181313], [-0.08268695324659348, 0.4081270098686218, -0.2209203541278839], [-0.06861083209514618, 0.473372220993042, 0.09952688962221146], [0.01636340282857418, -0.22768127918243408, 0.011721080169081688], [-0.17781153321266174, 0.7491010427474976, -0.4143964946269989], [0.04884689301252365, 0.8136467933654785, 0.2801857590675354], [0.0005470288451761007, -0.27611836791038513, -0.007725110277533531], [-0.24366743862628937, 0.8261333703994751, -0.4988166391849518], [-0.05480969697237015, 0.8701615333557129, 0.22216907143592834], [-0.008769404143095016, -0.48168614506721497, 0.02219349332153797], [0.058883171528577805, -0.40119174122810364, -0.028644220903515816], [-0.05098976194858551, -0.3827529847621918, 0.06659948080778122], [-0.030194485560059547, -0.540940523147583, -0.032401829957962036], [0.11947144567966461, -0.4433142840862274, -0.07939775288105011], [-0.12280416488647461, -0.39566609263420105, 0.12604005634784698], [0.18233947455883026, -0.6300740242004395, -0.25379839539527893], [-0.1941068023443222, -0.1513829529285431, 0.14884912967681885], [0.07626625895500183, -0.7590054273605347, -0.0703076645731926], [-0.31112268567085266, -0.09464359283447266, -0.07159607857465744], [0.06945489346981049, -0.8033610582351685, -0.0009787660092115402], [-0.3592236638069153, -0.09032201766967773, -0.13837175071239471]]}, {"image_id": "43.jpg", "category_id": 1, "keypoints": [1111.4561767578125, 483.97906494140625, 0.9835973978042603, 1131.2161865234375, 514.6931762695312, 0.9926455020904541, 1086.4237060546875, 519.0235595703125, 0.994106113910675, 1111.1708984375, 447.0719299316406, 0.9928914904594421, 1135.7215576171875, 662.89892578125, 0.9710909128189087, 1082.0101318359375, 648.5203857421875, 0.9884854555130005, 1111.0118408203125, 403.2860107421875, 0.9847441911697388, 1127.931396484375, 764.9591064453125, 0.9408454895019531, 1103.8533935546875, 763.6104736328125, 0.8513564467430115, 1112.8468017578125, 385.398681640625, 0.9864655137062073, 1132.1778564453125, 788.7925415039062, 0.8780995607376099, 1094.105712890625, 793.3740234375, 0.9148334860801697, 1102.3414306640625, 311.118896484375, 0.9874308705329895, 1129.4769287109375, 341.31536865234375, 0.9887827038764954, 1079.45703125, 343.2240905761719, 0.9921506643295288, 1110.6591796875, 292.58056640625, 0.9474633932113647, 1152.86376953125, 327.8177795410156, 0.964472770690918, 1046.7279052734375, 340.6597595214844, 0.9846373796463013, 1233.111572265625, 317.9805908203125, 0.9693069458007812, 1038.106689453125, 427.1453857421875, 0.9322949647903442, 1285.265869140625, 272.9417419433594, 0.9765106439590454, 1114.66943359375, 453.3413391113281, 0.9546486735343933, 1295.546630859375, 236.75949096679688, 0.9598737955093384, 1142.6922607421875, 455.064208984375, 0.9121410846710205, 1161.823486328125, 230.83831787109375, 0.9190252423286438, 1303.802978515625, 212.59536743164062, 0.9485049843788147, 1177.53955078125, 443.1912841796875, 0.8988591432571411, 1126.984375, 798.117919921875, 0.9093112945556641, 1094.27734375, 797.818359375, 0.9426186084747314], "score": 2.786012887954712, "box": [1009.3527221679688, 208.6741485595703, 306.05877685546875, 598.8251800537109], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06186535209417343, 0.09154520183801651, 0.008551746606826782], [-0.06664098799228668, 0.08509743958711624, -0.010194203816354275], [-0.002369524445384741, -0.09982474148273468, 0.029959693551063538], [0.063337042927742, 0.47200989723205566, -0.00016092881560325623], [-0.08339442312717438, 0.46043944358825684, -0.10232715308666229], [-0.003777937963604927, -0.23020870983600616, 0.011921744793653488], [0.05379980802536011, 0.7931662797927856, 0.23641084134578705], [-0.016457468271255493, 0.7686196565628052, 0.14121021330356598], [-0.000248786062002182, -0.27748382091522217, -0.0162633266299963], [0.06438028067350388, 0.877234935760498, 0.13581831753253937], [-0.0573965385556221, 0.8816874027252197, 0.08856108784675598], [-0.02813347987830639, -0.484008252620697, -0.021714897826313972], [0.0455082468688488, -0.40416544675827026, 0.022723574191331863], [-0.0882052481174469, -0.3848567008972168, -0.037969209253787994], [-0.006934004370123148, -0.533191978931427, -0.08573564887046814], [0.11805769801139832, -0.44715607166290283, 0.05516709014773369], [-0.16645292937755585, -0.38718050718307495, -0.09196990728378296], [0.3699156641960144, -0.48172527551651, 0.11247949302196503], [-0.19181782007217407, -0.15520234405994415, -0.18997736275196075], [0.5293241739273071, -0.619985818862915, -0.014590691775083542], [0.03816850483417511, -0.073209747672081, -0.25916287302970886], [0.5526849031448364, -0.6979646682739258, -0.0004735775291919708], [0.11794429272413254, -0.06765539944171906, -0.27891117334365845]]}, {"image_id": "43.jpg", "category_id": 1, "keypoints": [1091.665771484375, 481.9546203613281, 0.9797371029853821, 1114.179443359375, 511.07196044921875, 0.9875562787055969, 1069.998779296875, 513.26416015625, 0.9865441918373108, 1089.459228515625, 444.3215637207031, 0.994099497795105, 1112.1817626953125, 638.85302734375, 0.9891680479049683, 1073.3465576171875, 646.5153198242188, 0.9694564342498779, 1090.0255126953125, 399.68914794921875, 0.9847440719604492, 1120.7686767578125, 761.896728515625, 0.9335874319076538, 1102.967041015625, 764.1677856445312, 0.9282770156860352, 1093.1839599609375, 383.9090270996094, 0.9906087517738342, 1127.12158203125, 781.0123901367188, 0.9094052314758301, 1090.3194580078125, 786.3195190429688, 0.9305358529090881, 1086.21533203125, 308.9947509765625, 0.9849303364753723, 1110.9595947265625, 338.48553466796875, 0.991159200668335, 1062.582763671875, 343.135986328125, 0.9868013262748718, 1101.03564453125, 289.9463806152344, 0.9400664567947388, 1137.9488525390625, 325.0805969238281, 0.9797729253768921, 1035.294921875, 341.3819580078125, 0.985901951789856, 1195.5885009765625, 326.630615234375, 0.9653039574623108, 1035.4315185546875, 427.80963134765625, 0.9562134742736816, 1235.6953125, 290.72882080078125, 0.9729083776473999, 1108.8477783203125, 453.8513488769531, 0.9455843567848206, 1251.362548828125, 264.37548828125, 0.9666858911514282, 1134.2352294921875, 461.3573913574219, 0.8951027393341064, 1119.4547119140625, 222.37698364257812, 0.9551169276237488, 1262.4307861328125, 271.38543701171875, 0.9162296056747437, 1161.23583984375, 464.1623229980469, 0.8489558100700378, 1124.7305908203125, 787.626220703125, 0.892179012298584, 1095.0875244140625, 793.5689697265625, 0.9275618195533752], "score": 2.299694538116455, "box": [1005.3599853515625, 242.63327026367188, 181.936279296875, 533.8479919433594], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06767150014638901, 0.08834052830934525, 0.006421836093068123], [-0.06281989812850952, 0.08925820142030716, -0.004191771149635315], [-0.006026098504662514, -0.10125282406806946, 0.02862895280122757], [0.05439655855298042, 0.44569483399391174, -0.12394514679908752], [-0.051316503435373306, 0.4738076329231262, 0.03918984904885292], [-0.003886714344844222, -0.2316545844078064, 0.0045182965695858], [0.08976583927869797, 0.781559944152832, 0.09010645747184753], [0.044863175600767136, 0.8385088443756104, 0.17059117555618286], [0.003655885113403201, -0.2758257985115051, -0.028681352734565735], [0.10338539630174637, 0.8346164226531982, -0.030103325843811035], [-0.002723295008763671, 0.902739942073822, 0.06559667736291885], [-0.020851770415902138, -0.48423606157302856, -0.039918482303619385], [0.05372830852866173, -0.40387314558029175, 0.004741497337818146], [-0.08396997302770615, -0.384970486164093, -0.05104639008641243], [0.02191767655313015, -0.5379395484924316, -0.08795461058616638], [0.13107876479625702, -0.4436255097389221, 0.0322246253490448], [-0.16088229417800903, -0.38542354106903076, -0.10858073085546494], [0.3406727910041809, -0.45111918449401855, 0.18799924850463867], [-0.15598882734775543, -0.14212912321090698, -0.18086972832679749], [0.4912731945514679, -0.5857941508293152, 0.04552807658910751], [0.046984557062387466, -0.06311699748039246, -0.3124701976776123], [0.5325519442558289, -0.6564509868621826, 0.030665863305330276], [0.10681921988725662, -0.0427476167678833, -0.3661153316497803]]}, {"image_id": "44.jpg", "category_id": 1, "keypoints": [1260.463623046875, 493.4331970214844, 0.9771593809127808, 1276.9775390625, 525.9422607421875, 0.9889070391654968, 1241.13671875, 526.1333618164062, 0.9896641969680786, 1265.7738037109375, 457.08221435546875, 0.9915663599967957, 1235.197021484375, 640.8466186523438, 0.9761252403259277, 1236.5091552734375, 665.5601196289062, 0.9709299206733704, 1264.3946533203125, 411.6715087890625, 0.9854867458343506, 1202.00732421875, 774.58251953125, 0.890619158744812, 1267.1368408203125, 778.4119873046875, 0.9315763115882874, 1259.779296875, 394.27606201171875, 0.9869824051856995, 1179.7786865234375, 803.17041015625, 0.7927364110946655, 1231.6441650390625, 804.0211181640625, 0.9444891810417175, 1259.256103515625, 320.03515625, 0.9869533777236938, 1284.877685546875, 346.89111328125, 0.9858729243278503, 1238.328857421875, 355.6182861328125, 0.9891216158866882, 1254.491455078125, 298.06146240234375, 0.952534019947052, 1309.3818359375, 331.2763671875, 0.946805477142334, 1215.485595703125, 351.0809326171875, 0.9878631830215454, 1351.2218017578125, 243.82962036132812, 0.9383127689361572, 1186.4100341796875, 441.111572265625, 0.9573938846588135, 1303.75, 213.19931030273438, 0.9754321575164795, 1150.645751953125, 466.02386474609375, 0.9094988107681274, 1296.3424072265625, 201.772705078125, 0.9667537212371826, 1135.1185302734375, 468.5114440917969, 0.9031790494918823, 1247.6435546875, 235.62982177734375, 0.9524617791175842, 1288.4698486328125, 185.6939697265625, 0.9304105043411255, 1119.60498046875, 468.3633117675781, 0.8570593595504761, 1171.5474853515625, 798.0618896484375, 0.7870452404022217, 1213.9908447265625, 798.869873046875, 0.9274792671203613], "score": 3.1207878589630127, "box": [1103.690185546875, 194.0220489501953, 279.3697509765625, 639.1124114990234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04588797688484192, 0.08892273902893066, -0.04930637404322624], [-0.04937954246997833, 0.08854269236326218, 0.04087163880467415], [0.021510757505893707, -0.09859007596969604, 0.02649599313735962], [-0.0868157371878624, 0.40629568696022034, -0.2224518060684204], [-0.057246774435043335, 0.47591984272003174, 0.09634962677955627], [0.0167998056858778, -0.2286871373653412, 0.01880567893385887], [-0.19093233346939087, 0.7741422653198242, -0.35577666759490967], [0.050801388919353485, 0.8238017559051514, 0.27185043692588806], [0.0016537210904061794, -0.277471125125885, -0.001505434513092041], [-0.25873076915740967, 0.845894455909729, -0.44406378269195557], [-0.049209415912628174, 0.8873251676559448, 0.2132541537284851], [-0.0030927793122828007, -0.48405227065086365, 0.031968746334314346], [0.06584107875823975, -0.4019564092159271, -0.01632274128496647], [-0.05215519294142723, -0.38534167408943176, 0.07178010046482086], [-0.02216009795665741, -0.5441648960113525, -0.02229486033320427], [0.13426384329795837, -0.44573280215263367, -0.05571897700428963], [-0.12966670095920563, -0.40467074513435364, 0.1229880154132843], [0.21431037783622742, -0.6397814750671387, -0.21578529477119446], [-0.20674967765808105, -0.1612873375415802, 0.14734768867492676], [0.06970099359750748, -0.7615889310836792, -0.05366318300366402], [-0.32297584414482117, -0.08439341187477112, -0.06836916506290436], [0.052343420684337616, -0.8068873882293701, 0.013783898204565048], [-0.3689083755016327, -0.0760805606842041, -0.136905699968338]]}, {"image_id": "44.jpg", "category_id": 1, "keypoints": [1120.0562744140625, 480.7396240234375, 0.9844600558280945, 1136.324951171875, 510.9130859375, 0.9946191310882568, 1096.8424072265625, 513.9899291992188, 0.9921067357063293, 1124.2646484375, 445.918212890625, 0.9921833872795105, 1136.0029296875, 651.6563720703125, 0.9788541793823242, 1074.8221435546875, 639.9901733398438, 0.9880377650260925, 1120.6649169921875, 401.9617919921875, 0.9866594672203064, 1127.98583984375, 760.3858642578125, 0.9339499473571777, 1105.587890625, 755.07861328125, 0.9056292176246643, 1119.111083984375, 383.93963623046875, 0.9879889488220215, 1123.4635009765625, 790.7266845703125, 0.868091344833374, 1079.881103515625, 784.4921264648438, 0.9030927419662476, 1106.7481689453125, 308.64093017578125, 0.9910096526145935, 1134.645263671875, 338.57464599609375, 0.9895029067993164, 1085.7403564453125, 342.3804931640625, 0.9899619817733765, 1111.28466796875, 290.09002685546875, 0.9590952396392822, 1155.3131103515625, 324.48779296875, 0.9682965278625488, 1050.7125244140625, 341.45721435546875, 0.9850459098815918, 1240.080810546875, 311.7259521484375, 0.975182294845581, 1036.465087890625, 426.38140869140625, 0.9400243759155273, 1284.609619140625, 264.71142578125, 0.9849187135696411, 1105.66650390625, 454.5816955566406, 0.9489089250564575, 1297.379638671875, 236.3104248046875, 0.962195634841919, 1132.2962646484375, 456.92462158203125, 0.9183995127677917, 1156.1123046875, 229.246337890625, 0.9432095885276794, 1306.6458740234375, 217.10733032226562, 0.9423273205757141, 1160.244140625, 446.974365234375, 0.8974626660346985, 1117.1986083984375, 795.053466796875, 0.9149010181427002, 1082.42236328125, 791.687255859375, 0.9447008967399597], "score": 2.740215301513672, "box": [1005.05078125, 210.69766235351562, 314.1185302734375, 597.2290954589844], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05801410228013992, 0.09281747043132782, -0.019426535815000534], [-0.06785499304533005, 0.08405320346355438, 0.014015080407261848], [0.012333635240793228, -0.09903319180011749, 0.03201209008693695], [0.053235676139593124, 0.4677475094795227, -0.0842924565076828], [-0.13660648465156555, 0.4535253643989563, -0.07814431935548782], [0.0006617677863687277, -0.2294098287820816, 0.015139644965529442], [0.04436269402503967, 0.7900692820549011, 0.1514422595500946], [-0.047221772372722626, 0.7610063552856445, 0.15979760885238647], [-0.005081013776361942, -0.2774626612663269, -0.011891307309269905], [0.024361496791243553, 0.8813216090202332, 0.05851506441831589], [-0.13418027758598328, 0.8583173155784607, 0.1430921107530594], [-0.04070401191711426, -0.48352187871932983, -0.017749162390828133], [0.04413862153887749, -0.4073016047477722, 0.011677930131554604], [-0.09978017210960388, -0.381935715675354, -0.016957374289631844], [-0.029525822028517723, -0.5371915698051453, -0.08070582151412964], [0.11726296693086624, -0.45767003297805786, 0.030364075675606728], [-0.18411655724048615, -0.381069540977478, -0.061790116131305695], [0.3730033040046692, -0.4982166886329651, 0.062407322227954865], [-0.22376766800880432, -0.1463993936777115, -0.1489763706922531], [0.5239493250846863, -0.6601088047027588, -0.046598583459854126], [-0.007372402586042881, -0.05347840487957001, -0.2444031536579132], [0.5582587718963623, -0.7345857620239258, -0.03465941548347473], [0.06913217902183533, -0.04572977125644684, -0.27460959553718567]]}, {"image_id": "44.jpg", "category_id": 1, "keypoints": [1093.038330078125, 479.28277587890625, 0.9775940179824829, 1116.087890625, 509.17144775390625, 0.9874667525291443, 1072.4185791015625, 509.87506103515625, 0.9877913594245911, 1091.5540771484375, 442.23992919921875, 0.9937664270401001, 1088.6669921875, 617.095458984375, 0.9779961705207825, 1072.59033203125, 643.1998291015625, 0.9732556343078613, 1090.8363037109375, 397.9296875, 0.9833793640136719, 1114.2325439453125, 746.6710205078125, 0.8807437419891357, 1106.8702392578125, 749.9130859375, 0.8977851271629333, 1092.939208984375, 382.881103515625, 0.9909548759460449, 1111.4932861328125, 777.25146484375, 0.8884839415550232, 1086.23876953125, 775.1111450195312, 0.959236204624176, 1085.307861328125, 308.20050048828125, 0.9842480421066284, 1111.66552734375, 337.1190185546875, 0.990328311920166, 1061.5645751953125, 342.0563049316406, 0.986055314540863, 1098.5711669921875, 289.63641357421875, 0.9348119497299194, 1139.1529541015625, 324.6990661621094, 0.9791451692581177, 1033.73193359375, 341.79931640625, 0.9863339066505432, 1201.0972900390625, 318.8226318359375, 0.9468092918395996, 1033.169189453125, 426.9182434082031, 0.9595405459403992, 1243.190185546875, 289.6692199707031, 0.9643847942352295, 1106.858154296875, 452.74066162109375, 0.9525436162948608, 1260.0936279296875, 262.780517578125, 0.9473636150360107, 1133.3363037109375, 460.45147705078125, 0.8946254849433899, 1118.9488525390625, 219.89825439453125, 0.9535772204399109, 1277.1617431640625, 262.51251220703125, 0.8753166198730469, 1157.73681640625, 462.46221923828125, 0.807404637336731, 1098.733642578125, 778.7816772460938, 0.91004478931427, 1090.0877685546875, 781.134765625, 0.9515290260314941], "score": 2.4267513751983643, "box": [1005.41845703125, 237.21778869628906, 183.382568359375, 549.7943572998047], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06968390196561813, 0.08787636458873749, -0.007717576809227467], [-0.06109737604856491, 0.09087169170379639, 0.012624919414520264], [-0.0010153548792004585, -0.10291588306427002, 0.02747897058725357], [-0.01745106466114521, 0.38114815950393677, -0.2362658679485321], [-0.05730174481868744, 0.4714354872703552, 0.0915335938334465], [-0.006511794403195381, -0.23174253106117249, -0.003903895616531372], [0.05817461758852005, 0.7213118076324463, -0.03489162027835846], [0.05965735763311386, 0.820649266242981, 0.2530618906021118], [-0.002038964070379734, -0.27448129653930664, -0.04016849398612976], [0.04379735887050629, 0.8394777774810791, -0.09382849931716919], [-0.014570260420441628, 0.9002771377563477, 0.17700305581092834], [-0.027746444568037987, -0.48437777161598206, -0.05027198791503906], [0.05201375484466553, -0.40398016571998596, -0.013123344630002975], [-0.09243543446063995, -0.38456985354423523, -0.05417177453637123], [0.010833578184247017, -0.5372867584228516, -0.10213907063007355], [0.13228805363178253, -0.44147351384162903, 0.011291299015283585], [-0.1728600561618805, -0.38133105635643005, -0.10791119933128357], [0.3334888219833374, -0.4728393256664276, 0.17750494182109833], [-0.17694281041622162, -0.14330512285232544, -0.20090661942958832], [0.5236487984657288, -0.6026391983032227, 0.08315393328666687], [0.021580925211310387, -0.0663873553276062, -0.34314385056495667], [0.5674585700035095, -0.6731688976287842, 0.07187440991401672], [0.0850929468870163, -0.04546386003494263, -0.3932684361934662]]}, {"image_id": "45.jpg", "category_id": 1, "keypoints": [1259.1170654296875, 490.8172912597656, 0.977410078048706, 1275.1485595703125, 522.6279296875, 0.9887429475784302, 1239.80615234375, 522.5429077148438, 0.989265501499176, 1264.605712890625, 454.95892333984375, 0.9910321831703186, 1233.908935546875, 640.2296752929688, 0.9838186502456665, 1233.9176025390625, 660.9815673828125, 0.9774185419082642, 1263.048095703125, 410.3652648925781, 0.9843907952308655, 1209.284423828125, 775.5072021484375, 0.8634390234947205, 1258.5545654296875, 778.0257568359375, 0.9402105808258057, 1258.332763671875, 393.4095458984375, 0.9876989126205444, 1188.6683349609375, 806.4869384765625, 0.8364680409431458, 1230.9739990234375, 801.6903686523438, 0.9375747442245483, 1256.4766845703125, 320.25689697265625, 0.9878125786781311, 1282.4793701171875, 346.68133544921875, 0.9863511919975281, 1235.9385986328125, 355.40802001953125, 0.9898194670677185, 1252.2088623046875, 299.3536376953125, 0.9521243572235107, 1307.702392578125, 330.7045593261719, 0.9493941068649292, 1212.7310791015625, 351.6983642578125, 0.9879607558250427, 1354.3221435546875, 246.33627319335938, 0.9419034719467163, 1184.8587646484375, 442.34716796875, 0.9599831104278564, 1305.5384521484375, 216.11859130859375, 0.9723353385925293, 1147.946533203125, 464.7403869628906, 0.9139270186424255, 1297.2779541015625, 206.09469604492188, 0.9623804092407227, 1130.7437744140625, 467.6927490234375, 0.8883504271507263, 1245.5303955078125, 237.7255859375, 0.9498438239097595, 1289.041015625, 194.36941528320312, 0.9367372989654541, 1114.620361328125, 468.72552490234375, 0.8405998945236206, 1178.8975830078125, 801.9019775390625, 0.7628301382064819, 1218.570068359375, 798.652587890625, 0.9179467558860779], "score": 3.1414175033569336, "box": [1100.86328125, 190.35238647460938, 284.799072265625, 646.6569519042969], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.045587219297885895, 0.09012872725725174, -0.04805517941713333], [-0.04968160390853882, 0.0878375917673111, 0.042827896773815155], [0.02210885100066662, -0.09940668940544128, 0.024814924225211143], [-0.08499296754598618, 0.421966016292572, -0.19327664375305176], [-0.06111801043152809, 0.47494128346443176, 0.0997314304113388], [0.016383735463023186, -0.22932565212249756, 0.01262645237147808], [-0.16316629946231842, 0.8118480443954468, -0.27112799882888794], [0.02754727564752102, 0.8389250040054321, 0.2528625428676605], [0.0006198320770636201, -0.2781009078025818, -0.007851941511034966], [-0.22525642812252045, 0.8879181146621704, -0.3603111207485199], [-0.06563466787338257, 0.9090551137924194, 0.19010888040065765], [-0.008205955848097801, -0.48513367772102356, 0.026162652298808098], [0.06285090744495392, -0.40428683161735535, -0.02212408185005188], [-0.05605017766356468, -0.38516542315483093, 0.06557410955429077], [-0.026218950748443604, -0.5434280633926392, -0.030366526916623116], [0.13102686405181885, -0.44761309027671814, -0.06324818730354309], [-0.1350679248571396, -0.4014692008495331, 0.11628223955631256], [0.22460804879665375, -0.6379179954528809, -0.22077879309654236], [-0.20783190429210663, -0.15778222680091858, 0.15135347843170166], [0.07204847782850266, -0.7589528560638428, -0.06501233577728271], [-0.32910770177841187, -0.08685094118118286, -0.06390687823295593], [0.05108807608485222, -0.8006302118301392, 0.003996966406702995], [-0.37844741344451904, -0.07748064398765564, -0.13016751408576965]]}, {"image_id": "45.jpg", "category_id": 1, "keypoints": [1099.117431640625, 473.24676513671875, 0.9773128628730774, 1124.1285400390625, 500.19403076171875, 0.9877288341522217, 1078.08642578125, 504.00103759765625, 0.9905770421028137, 1095.8538818359375, 443.3944091796875, 0.9939640760421753, 1125.3985595703125, 600.4928588867188, 0.9851251840591431, 1079.8677978515625, 602.4639282226562, 0.9462809562683105, 1095.1029052734375, 400.6965637207031, 0.9858332276344299, 1108.383056640625, 744.0782470703125, 0.9151321053504944, 1106.7667236328125, 734.4531860351562, 0.8667008876800537, 1097.5267333984375, 385.12890625, 0.988577663898468, 1119.163330078125, 758.2635498046875, 0.9083747267723083, 1110.976318359375, 747.0906982421875, 0.8698582053184509, 1086.2742919921875, 308.94732666015625, 0.9873332977294922, 1112.801025390625, 338.7412109375, 0.9917094111442566, 1062.4007568359375, 344.2806396484375, 0.9892210364341736, 1098.7503662109375, 290.4805908203125, 0.9299492239952087, 1136.4493408203125, 324.31201171875, 0.9691728949546814, 1033.092041015625, 342.41302490234375, 0.9845230579376221, 1195.48291015625, 358.9181823730469, 0.9785986542701721, 1031.0286865234375, 426.4846496582031, 0.950741708278656, 1242.0994873046875, 347.0347900390625, 0.9801803827285767, 1101.1378173828125, 452.6647033691406, 0.9653798341751099, 1249.30712890625, 342.40325927734375, 0.9651979804039001, 1123.7578125, 458.52001953125, 0.9217138886451721, 1116.8406982421875, 224.08642578125, 0.9553793668746948, 1249.5880126953125, 340.45709228515625, 0.9488639831542969, 1157.83251953125, 462.8333740234375, 0.8418636322021484, 1112.955810546875, 742.5194702148438, 0.9305725693702698, 1124.726806640625, 740.9558715820312, 0.8160938024520874], "score": 2.7345774173736572, "box": [1011.1113891601562, 202.9342803955078, 224.22613525390625, 618.2526092529297], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07156801968812943, 0.08662603795528412, -0.010351067408919334], [-0.05918612331151962, 0.08635182678699493, -0.035903457552194595], [-0.013526535592973232, -0.09057514369487762, 0.055288977921009064], [0.06130550429224968, 0.3728185296058655, -0.26497966051101685], [-0.06444752961397171, 0.34806787967681885, -0.32498928904533386], [-0.01741240918636322, -0.21784065663814545, 0.019133999943733215], [0.021908557042479515, 0.759323239326477, -0.15292003750801086], [0.0024407850578427315, 0.7065833210945129, -0.4990001618862152], [-0.012768828310072422, -0.25729799270629883, -0.02078559249639511], [0.04956456646323204, 0.7953479290008545, -0.27824345231056213], [0.007467769086360931, 0.7323324084281921, -0.6297072172164917], [-0.04003271833062172, -0.46068280935287476, -0.07590633630752563], [0.03677632287144661, -0.3919602036476135, -0.015274571254849434], [-0.1030556708574295, -0.35969823598861694, -0.06606455147266388], [-0.007204833440482616, -0.5083954930305481, -0.13593783974647522], [0.11221208423376083, -0.4388763904571533, 0.009560808539390564], [-0.182046577334404, -0.36094099283218384, -0.12264478951692581], [0.314721941947937, -0.3341997265815735, 0.14233748614788055], [-0.18816177546977997, -0.12731166183948517, -0.22874480485916138], [0.4451774060726166, -0.3589709997177124, -0.06922969222068787], [0.00953077245503664, -0.0468439906835556, -0.37201449275016785], [0.481363445520401, -0.3819435238838196, -0.14162787795066833], [0.08245939016342163, -0.026478424668312073, -0.40827178955078125]]}, {"image_id": "46.jpg", "category_id": 1, "keypoints": [1257.29736328125, 491.03729248046875, 0.9766920804977417, 1273.6158447265625, 522.8521728515625, 0.9883777499198914, 1237.2904052734375, 523.2611083984375, 0.9903197884559631, 1262.653076171875, 455.6314697265625, 0.9909951686859131, 1233.6505126953125, 635.8856201171875, 0.9792923927307129, 1231.124755859375, 664.8980102539062, 0.9701377749443054, 1262.2322998046875, 411.1272888183594, 0.9861306548118591, 1208.5394287109375, 774.5997314453125, 0.8491503596305847, 1261.270263671875, 780.5731201171875, 0.9444113969802856, 1257.8018798828125, 394.1754150390625, 0.9878334403038025, 1188.017578125, 808.730224609375, 0.868973433971405, 1224.3304443359375, 804.716796875, 0.9410594701766968, 1256.8663330078125, 321.1278076171875, 0.9881924390792847, 1282.7957763671875, 347.9891662597656, 0.9875766634941101, 1235.8006591796875, 355.6987609863281, 0.9907459616661072, 1253.2044677734375, 299.9896240234375, 0.9479053020477295, 1308.4764404296875, 331.5768127441406, 0.9580289125442505, 1212.2757568359375, 351.62213134765625, 0.9879842400550842, 1357.3123779296875, 249.12664794921875, 0.9473615288734436, 1184.806640625, 444.1484375, 0.960141122341156, 1308.5548095703125, 215.5390625, 0.9675437211990356, 1146.6751708984375, 462.1617126464844, 0.9139713644981384, 1300.995361328125, 204.25079345703125, 0.9617311954498291, 1128.0533447265625, 466.6606140136719, 0.896371603012085, 1253.3267822265625, 236.12322998046875, 0.9500446915626526, 1292.0196533203125, 196.75698852539062, 0.9434964656829834, 1110.919677734375, 468.5437316894531, 0.8607149720191956, 1178.16845703125, 804.779296875, 0.8140668272972107, 1211.02734375, 795.2552490234375, 0.9116486310958862], "score": 3.157698631286621, "box": [1098.9068603515625, 192.65773010253906, 293.0721435546875, 643.5657806396484], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04688137397170067, 0.08957347273826599, -0.04855838790535927], [-0.05257844552397728, 0.08859271556138992, 0.038373880088329315], [0.022062497213482857, -0.09865280985832214, 0.028443828225135803], [-0.08221778273582458, 0.4037210941314697, -0.23273485898971558], [-0.06697220355272293, 0.47997087240219116, 0.06840933114290237], [0.019536374136805534, -0.22840836644172668, 0.014987707138061523], [-0.1597258448600769, 0.7975879907608032, -0.2997627258300781], [0.03826690837740898, 0.8348368406295776, 0.23646637797355652], [0.004543672315776348, -0.27644988894462585, -0.007804661989212036], [-0.22053498029708862, 0.8815414905548096, -0.38308092951774597], [-0.06674529612064362, 0.8960191011428833, 0.18293139338493347], [-0.0015525638591498137, -0.4838496148586273, 0.02675003558397293], [0.07012676447629929, -0.40161916613578796, -0.018506767228245735], [-0.05336949974298477, -0.3846774399280548, 0.0634487196803093], [-0.017695128917694092, -0.5416492223739624, -0.030782334506511688], [0.13978442549705505, -0.4463057219982147, -0.05566387623548508], [-0.13544371724128723, -0.402243047952652, 0.1087065264582634], [0.2427399456501007, -0.6384066343307495, -0.2068631649017334], [-0.20617762207984924, -0.15672728419303894, 0.14318448305130005], [0.09855325520038605, -0.7664188146591187, -0.04719749838113785], [-0.33315202593803406, -0.09745785593986511, -0.07354822009801865], [0.07987282425165176, -0.8123824596405029, 0.020001500844955444], [-0.383495569229126, -0.0846153199672699, -0.13878729939460754]]}, {"image_id": "46.jpg", "category_id": 1, "keypoints": [1099.5457763671875, 471.7006530761719, 0.9751355648040771, 1125.36328125, 497.6903076171875, 0.9883668422698975, 1077.261962890625, 503.7433776855469, 0.9899480938911438, 1098.0394287109375, 440.83819580078125, 0.9936769008636475, 1128.47607421875, 594.301025390625, 0.9736079573631287, 1074.393310546875, 607.597412109375, 0.9615779519081116, 1096.2562255859375, 399.2919006347656, 0.9852781891822815, 1117.4014892578125, 741.167236328125, 0.9433591365814209, 1103.851806640625, 733.5, 0.8355752229690552, 1097.713623046875, 383.98052978515625, 0.9878285527229309, 1127.643798828125, 758.2631225585938, 0.9014863967895508, 1104.570556640625, 753.5498046875, 0.8789577484130859, 1084.44091796875, 308.5714416503906, 0.9881064295768738, 1112.4583740234375, 337.56512451171875, 0.9917236566543579, 1061.5167236328125, 344.421875, 0.9896358251571655, 1095.7900390625, 290.7823791503906, 0.9374457001686096, 1136.2630615234375, 321.68524169921875, 0.9716292023658752, 1031.66552734375, 342.75433349609375, 0.985811710357666, 1205.21923828125, 345.6477355957031, 0.9740310907363892, 1026.9271240234375, 426.17572021484375, 0.9504616856575012, 1248.0704345703125, 333.5572509765625, 0.977597177028656, 1098.4974365234375, 452.9046630859375, 0.9645304679870605, 1255.1929931640625, 324.07421875, 0.9666026830673218, 1123.3453369140625, 458.3633728027344, 0.9195255637168884, 1108.6494140625, 222.35894775390625, 0.9514607787132263, 1253.5576171875, 318.9984436035156, 0.9320958852767944, 1158.6212158203125, 463.2620544433594, 0.8181679248809814, 1113.8939208984375, 745.6083984375, 0.9045477509498596, 1114.29736328125, 753.7352294921875, 0.8796944618225098], "score": 2.6191565990448, "box": [1009.9849853515625, 199.49868774414062, 222.0966796875, 625.7527770996094], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0723714530467987, 0.08626919984817505, -0.010526465252041817], [-0.060612794011831284, 0.09011075645685196, -0.022638637572526932], [-0.010076834820210934, -0.09491090476512909, 0.04907527193427086], [0.06684067100286484, 0.3634779751300812, -0.27556779980659485], [-0.07856006175279617, 0.3791603446006775, -0.28448155522346497], [-0.01731860265135765, -0.2214190810918808, 0.01016409695148468], [0.04896027222275734, 0.7296269536018372, -0.10330794751644135], [0.011895242147147655, 0.7715159058570862, -0.326238751411438], [-0.015058518387377262, -0.2618192434310913, -0.029251471161842346], [0.0766075998544693, 0.7782179117202759, -0.2245829552412033], [0.00783935934305191, 0.8158314824104309, -0.45220181345939636], [-0.04781254380941391, -0.46627992391586304, -0.07901585102081299], [0.03304055333137512, -0.39741337299346924, -0.023468924686312675], [-0.10910843312740326, -0.3639916181564331, -0.06815839558839798], [-0.017146699130535126, -0.5136139988899231, -0.1405406892299652], [0.10779039561748505, -0.44794774055480957, -0.0031612347811460495], [-0.191982701420784, -0.36524659395217896, -0.11938871443271637], [0.33817318081855774, -0.3778553009033203, 0.105754554271698], [-0.20730887353420258, -0.13497976958751678, -0.23289518058300018], [0.46898993849754333, -0.4060996174812317, -0.10577477514743805], [-0.003484589047729969, -0.05275820195674896, -0.3671746551990509], [0.5032320618629456, -0.45513737201690674, -0.1652546375989914], [0.07100944966077805, -0.03504876792430878, -0.4021265208721161]]}, {"image_id": "47.jpg", "category_id": 1, "keypoints": [1257.0770263671875, 489.5051574707031, 0.9759871959686279, 1272.8564453125, 521.748291015625, 0.988444447517395, 1237.5936279296875, 521.0436401367188, 0.9898844957351685, 1262.485107421875, 454.023681640625, 0.9903313517570496, 1230.822509765625, 638.2379760742188, 0.9830498099327087, 1229.1097412109375, 660.4771728515625, 0.975882887840271, 1262.0611572265625, 409.90191650390625, 0.9852965474128723, 1210.21826171875, 776.3754272460938, 0.8591027855873108, 1267.9454345703125, 777.7622680664062, 0.9398049116134644, 1257.5953369140625, 392.7512512207031, 0.9868025779724121, 1188.101318359375, 806.58251953125, 0.8338971734046936, 1235.2279052734375, 805.25244140625, 0.9329373240470886, 1256.9552001953125, 320.1018371582031, 0.9882117509841919, 1282.81005859375, 347.08367919921875, 0.9877763986587524, 1235.651123046875, 354.5505676269531, 0.9910954236984253, 1252.5667724609375, 299.05352783203125, 0.9509177207946777, 1308.3878173828125, 330.92822265625, 0.9595537781715393, 1211.662841796875, 350.96795654296875, 0.9880553483963013, 1361.964111328125, 248.5029296875, 0.942608118057251, 1182.588134765625, 442.67889404296875, 0.9593771696090698, 1308.598876953125, 214.75921630859375, 0.9751150012016296, 1142.456787109375, 465.09716796875, 0.9348520636558533, 1300.0546875, 202.53829956054688, 0.965815544128418, 1121.3892822265625, 471.6506042480469, 0.879444420337677, 1249.2138671875, 235.25015258789062, 0.9434167146682739, 1292.6895751953125, 189.2979736328125, 0.9513342976570129, 1101.5360107421875, 475.71087646484375, 0.878096342086792, 1179.318603515625, 802.6356201171875, 0.8207706212997437, 1221.3055419921875, 801.0513916015625, 0.9318914413452148], "score": 3.155272960662842, "box": [1093.811767578125, 195.20265197753906, 302.18798828125, 640.8566741943359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04636039957404137, 0.09143572300672531, -0.04470331221818924], [-0.050964388996362686, 0.08658216893672943, 0.0438377819955349], [0.021868370473384857, -0.09990552067756653, 0.022811900824308395], [-0.08692924678325653, 0.4203053414821625, -0.19408507645130157], [-0.07082508504390717, 0.4751376509666443, 0.08663776516914368], [0.018642213195562363, -0.22883063554763794, 0.002304576337337494], [-0.14988170564174652, 0.8186768293380737, -0.23280176520347595], [0.05679481849074364, 0.8260193467140198, 0.24274370074272156], [0.0037165901158005, -0.27638086676597595, -0.021388545632362366], [-0.2219213843345642, 0.9038072228431702, -0.3045777976512909], [-0.04238099232316017, 0.9025449156761169, 0.19985750317573547], [-0.002914959331974387, -0.4841760993003845, 0.007761217653751373], [0.06913899630308151, -0.4010094404220581, -0.034661415964365005], [-0.05489325523376465, -0.3860381841659546, 0.04639395698904991], [-0.021133949980139732, -0.5412832498550415, -0.049861013889312744], [0.1388460248708725, -0.44516879320144653, -0.07210355997085571], [-0.13795332610607147, -0.4016258716583252, 0.09034048020839691], [0.25181150436401367, -0.6342043876647949, -0.2180074155330658], [-0.21235905587673187, -0.15920862555503845, 0.1302739381790161], [0.0905548483133316, -0.7609037160873413, -0.0761658251285553], [-0.3448280990123749, -0.08700531721115112, -0.077818363904953], [0.0690431296825409, -0.8087077140808105, -0.011458311229944229], [-0.39844611287117004, -0.06997156143188477, -0.13900646567344666]]}, {"image_id": "47.jpg", "category_id": 1, "keypoints": [1110.4581298828125, 474.8427429199219, 0.9829686284065247, 1129.80859375, 503.5216979980469, 0.9929090142250061, 1087.1251220703125, 507.36407470703125, 0.9915251135826111, 1110.5521240234375, 442.28619384765625, 0.991809606552124, 1095.4139404296875, 620.9479370117188, 0.9854018092155457, 1065.7481689453125, 622.099853515625, 0.9761748313903809, 1107.356689453125, 400.5560302734375, 0.9854827523231506, 1104.2918701171875, 740.9393920898438, 0.9010329246520996, 1084.3577880859375, 738.6611328125, 0.8988548517227173, 1107.09423828125, 383.96435546875, 0.9875333309173584, 1109.896484375, 771.3572998046875, 0.8610134124755859, 1069.4365234375, 769.425048828125, 0.9060564041137695, 1095.2384033203125, 311.260498046875, 0.9881354570388794, 1124.3721923828125, 338.6676025390625, 0.9879199266433716, 1071.2938232421875, 344.97601318359375, 0.9929823279380798, 1100.861572265625, 293.42156982421875, 0.9478843808174133, 1149.576171875, 324.876953125, 0.9669654965400696, 1037.1878662109375, 345.15875244140625, 0.9879441857337952, 1230.9429931640625, 323.0328063964844, 0.9724305272102356, 1027.1884765625, 427.4807434082031, 0.9456762671470642, 1283.83544921875, 284.73150634765625, 0.9802729487419128, 1095.993896484375, 453.0979309082031, 0.9407187700271606, 1295.7620849609375, 258.6971435546875, 0.9560503959655762, 1124.6104736328125, 458.32220458984375, 0.8891428709030151, 1139.2650146484375, 227.53775024414062, 0.9364769458770752, 1307.9764404296875, 236.86361694335938, 0.9243475198745728, 1154.13037109375, 451.415283203125, 0.833759605884552, 1101.7142333984375, 774.5188598632812, 0.8764616250991821, 1073.5152587890625, 775.136474609375, 0.9149919748306274], "score": 2.6777656078338623, "box": [995.8668212890625, 205.70191955566406, 334.0596923828125, 608.7642669677734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06498310714960098, 0.09112030267715454, -0.0036407243460416794], [-0.06673891097307205, 0.08716030418872833, 9.610317647457123e-05], [0.0010256136301904917, -0.10107474029064178, 0.032441772520542145], [-0.037248656153678894, 0.4057793915271759, -0.19169305264949799], [-0.13552090525627136, 0.4132285714149475, -0.19712024927139282], [-0.010508574545383453, -0.22929303348064423, 0.00015999749302864075], [-0.003320232732221484, 0.7185338139533997, 0.05607733130455017], [-0.07945984601974487, 0.7140477299690247, 0.06065547466278076], [-0.01292343344539404, -0.2738494873046875, -0.033822063356637955], [0.010715942829847336, 0.8127331137657166, -0.03593143820762634], [-0.1377655416727066, 0.8314579129219055, 0.04235658049583435], [-0.053106680512428284, -0.480488657951355, -0.050097059458494186], [0.03199680522084236, -0.40709519386291504, -0.011137673631310463], [-0.11057531833648682, -0.3765442371368408, -0.050484199076890945], [-0.039255671203136444, -0.5289252400398254, -0.116824209690094], [0.11039659380912781, -0.45071321725845337, 0.008088750764727592], [-0.19429047405719757, -0.37294358015060425, -0.09867606312036514], [0.365145206451416, -0.4606435298919678, 0.06669769436120987], [-0.22407229244709015, -0.14336882531642914, -0.2040020376443863], [0.5260539054870605, -0.576123833656311, -0.0820525512099266], [-0.015463442541658878, -0.06012462079524994, -0.32451295852661133], [0.5607606172561646, -0.6520679593086243, -0.08326120674610138], [0.058432742953300476, -0.04530338943004608, -0.35990655422210693]]}, {"image_id": "47.jpg", "category_id": 1, "keypoints": [1096.1168212890625, 475.23968505859375, 0.9742752313613892, 1120.5582275390625, 502.22540283203125, 0.9919912815093994, 1076.1148681640625, 505.5607604980469, 0.9866833090782166, 1093.8587646484375, 439.029052734375, 0.9929325580596924, 1079.93359375, 605.7205810546875, 0.9635670185089111, 1074.7264404296875, 640.7918701171875, 0.9525423049926758, 1091.04248046875, 396.54949951171875, 0.9845036864280701, 1101.572265625, 731.296142578125, 0.8777639865875244, 1110.81201171875, 748.1055908203125, 0.9612790942192078, 1091.82861328125, 382.787109375, 0.9897683262825012, 1094.5615234375, 758.92138671875, 0.8422643542289734, 1090.2135009765625, 773.8702392578125, 0.9535323977470398, 1080.690673828125, 309.33447265625, 0.9865504503250122, 1109.496826171875, 336.86474609375, 0.9881629943847656, 1058.0833740234375, 343.89801025390625, 0.9885933995246887, 1091.104248046875, 292.3633117675781, 0.9385271668434143, 1138.223876953125, 323.54595947265625, 0.9795018434524536, 1028.3944091796875, 344.9788818359375, 0.9848793148994446, 1206.30029296875, 331.1898193359375, 0.9709145426750183, 1023.7120971679688, 425.9232177734375, 0.9551603198051453, 1229.391845703125, 336.23577880859375, 0.9715409874916077, 1093.8040771484375, 450.16180419921875, 0.9547959566116333, 1234.826171875, 343.3709716796875, 0.9721814393997192, 1118.9830322265625, 457.3598937988281, 0.9133890271186829, 1099.7613525390625, 220.7626953125, 0.9527868032455444, 1224.3641357421875, 395.7513427734375, 0.9286209344863892, 1151.3184814453125, 462.05438232421875, 0.6910449266433716, 1083.0919189453125, 762.44775390625, 0.7918788194656372, 1089.2764892578125, 773.1599731445312, 0.9611698389053345], "score": 2.4731264114379883, "box": [997.6724243164062, 214.42501831054688, 201.01971435546875, 598.4811096191406], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07333918660879135, 0.08534501492977142, -0.0077638085931539536], [-0.057062532752752304, 0.09328513592481613, 0.01667691394686699], [-0.004533728584647179, -0.104179248213768, 0.025449629873037338], [-0.04951326549053192, 0.370178759098053, -0.22930066287517548], [-0.05933915078639984, 0.47911250591278076, 0.05920349434018135], [-0.01595357060432434, -0.2274426966905594, -0.024610772728919983], [0.02015761286020279, 0.7509521842002869, -0.12012121081352234], [0.06351536512374878, 0.8323498368263245, 0.20649632811546326], [-0.015526953153312206, -0.2657009959220886, -0.06644827127456665], [-0.009612408466637135, 0.8454871773719788, -0.20894622802734375], [-0.01825571060180664, 0.929050624370575, 0.1654016077518463], [-0.05110333114862442, -0.47389400005340576, -0.09260913729667664], [0.03633981943130493, -0.3995208740234375, -0.057975657284259796], [-0.1121310144662857, -0.37164443731307983, -0.07972125709056854], [-0.021420937031507492, -0.5215447545051575, -0.15476688742637634], [0.11962102353572845, -0.43858855962753296, -0.048027317970991135], [-0.19951491057872772, -0.36564379930496216, -0.1225111335515976], [0.3488909602165222, -0.423168420791626, 0.0795421302318573], [-0.2149946242570877, -0.13469438254833221, -0.23098395764827728], [0.4639676809310913, -0.37858253717422485, -0.1367512047290802], [-0.024354703724384308, -0.06157059967517853, -0.38552340865135193], [0.5064573884010315, -0.31583553552627563, -0.17323420941829681], [0.03766799718141556, -0.04152683913707733, -0.43828776478767395]]}, {"image_id": "48.jpg", "category_id": 1, "keypoints": [1257.1363525390625, 490.3545227050781, 0.9770820140838623, 1272.9171142578125, 523.696533203125, 0.9866293668746948, 1238.3560791015625, 521.7584228515625, 0.988325297832489, 1263.0931396484375, 454.3069763183594, 0.9908655881881714, 1225.0994873046875, 648.42626953125, 0.9846616387367249, 1227.17822265625, 659.8411254882812, 0.9812760353088379, 1262.435546875, 409.17803955078125, 0.9847465753555298, 1210.9620361328125, 781.861572265625, 0.8533316254615784, 1273.97021484375, 773.555908203125, 0.9294811487197876, 1258.00244140625, 391.8057861328125, 0.9861356616020203, 1190.3916015625, 806.6231689453125, 0.8293441534042358, 1240.2581787109375, 802.9794311523438, 0.941999614238739, 1258.1322021484375, 318.6932373046875, 0.987849235534668, 1283.427490234375, 345.60247802734375, 0.9891507029533386, 1236.69921875, 353.4136047363281, 0.9913285970687866, 1252.5455322265625, 297.41021728515625, 0.9523718357086182, 1308.1339111328125, 329.3749694824219, 0.9539243578910828, 1213.08935546875, 348.27783203125, 0.9887890815734863, 1368.42431640625, 246.9798583984375, 0.9402685761451721, 1179.4124755859375, 434.6392517089844, 0.9574378728866577, 1307.95849609375, 216.5552978515625, 0.9783263206481934, 1139.5379638671875, 461.9619140625, 0.9408138990402222, 1296.8194580078125, 204.55029296875, 0.9698793888092041, 1118.666015625, 467.9428405761719, 0.8917785286903381, 1243.4122314453125, 232.997802734375, 0.9524604082107544, 1288.813720703125, 188.356201171875, 0.9580988883972168, 1096.6112060546875, 469.5931396484375, 0.894405722618103, 1182.190185546875, 801.605712890625, 0.7644245624542236, 1225.4071044921875, 801.526611328125, 0.9469258785247803], "score": 3.145082473754883, "box": [1088.7618408203125, 193.8609161376953, 304.6331787109375, 638.9929046630859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04557305574417114, 0.09245538711547852, -0.04260397329926491], [-0.04931085184216499, 0.08507002145051956, 0.04772675782442093], [0.021825464442372322, -0.10042579472064972, 0.018903158605098724], [-0.09570859372615814, 0.43517521023750305, -0.1432611644268036], [-0.07446211576461792, 0.4689440131187439, 0.11447859555482864], [0.0183385219424963, -0.22999177873134613, 0.0025073476135730743], [-0.14001139998435974, 0.8360067009925842, -0.1639557182788849], [0.077455073595047, 0.8137184381484985, 0.2583692669868469], [0.0036358321085572243, -0.2786140441894531, -0.018812965601682663], [-0.22006887197494507, 0.9216827750205994, -0.2252899408340454], [-0.02027653530240059, 0.8922544717788696, 0.2167963683605194], [0.0013502081856131554, -0.4856950640678406, 0.013012077659368515], [0.07112829387187958, -0.4017999768257141, -0.031204501166939735], [-0.0518975555896759, -0.3881869912147522, 0.050922609865665436], [-0.020061172544956207, -0.5425021648406982, -0.043921127915382385], [0.1408553123474121, -0.4477977752685547, -0.06592194736003876], [-0.1338607221841812, -0.40944141149520874, 0.09422922879457474], [0.26720017194747925, -0.6322900056838989, -0.2050757110118866], [-0.2239350825548172, -0.17291896045207977, 0.13199296593666077], [0.07332122325897217, -0.7466948628425598, -0.09961231797933578], [-0.35277557373046875, -0.08758212625980377, -0.07243386656045914], [0.04249598830938339, -0.7936203479766846, -0.038393571972846985], [-0.40878498554229736, -0.07103095948696136, -0.13126206398010254]]}, {"image_id": "48.jpg", "category_id": 1, "keypoints": [1091.968994140625, 476.0733337402344, 0.9790470600128174, 1116.022216796875, 503.3215026855469, 0.9911700487136841, 1072.634521484375, 505.0824279785156, 0.98642897605896, 1090.1973876953125, 440.8749084472656, 0.9939752221107483, 1085.3399658203125, 603.5135498046875, 0.959751546382904, 1066.63623046875, 634.4606323242188, 0.9630878567695618, 1087.064697265625, 398.3800964355469, 0.9832491874694824, 1100.598388671875, 724.7833251953125, 0.8604559302330017, 1100.7960205078125, 751.8626708984375, 0.9296144247055054, 1087.726318359375, 384.1540832519531, 0.9904800653457642, 1093.458740234375, 746.6446533203125, 0.7667843699455261, 1079.0562744140625, 772.5591430664062, 0.9080239534378052, 1078.1158447265625, 311.1141052246094, 0.9838310480117798, 1105.438720703125, 337.945556640625, 0.9905691146850586, 1056.0216064453125, 346.0878601074219, 0.9887272715568542, 1089.1976318359375, 293.0745544433594, 0.9271150827407837, 1131.066162109375, 324.610107421875, 0.9808943271636963, 1027.4658203125, 347.2770080566406, 0.9869198799133301, 1201.6048583984375, 316.54705810546875, 0.9705732464790344, 1021.73876953125, 429.83758544921875, 0.9580105543136597, 1237.4136962890625, 288.0068664550781, 0.9652643203735352, 1087.2227783203125, 449.1881408691406, 0.9640405774116516, 1252.66015625, 274.8275146484375, 0.9541694521903992, 1113.9072265625, 455.7128601074219, 0.9307351112365723, 1100.921630859375, 218.4432373046875, 0.9558786153793335, 1271.62841796875, 263.616455078125, 0.9389601349830627, 1145.5799560546875, 460.1880798339844, 0.6314007043838501, 1080.0540771484375, 748.3898315429688, 0.8302686810493469, 1078.5264892578125, 773.0382690429688, 0.9190995693206787], "score": 2.4660353660583496, "box": [995.0235595703125, 240.6212921142578, 198.5198974609375, 544.7494354248047], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07212716341018677, 0.08557265996932983, -0.0049111507833004], [-0.05765208974480629, 0.09181192517280579, 0.01759999245405197], [-0.00399529654532671, -0.10385122895240784, 0.022949092090129852], [-0.03209199011325836, 0.3562794029712677, -0.24942338466644287], [-0.07464926689863205, 0.47709617018699646, 0.038341183215379715], [-0.015782207250595093, -0.227603018283844, -0.02499750256538391], [0.02056121453642845, 0.7383222579956055, -0.145518496632576], [0.036491259932518005, 0.8499947786331177, 0.12705892324447632], [-0.015691392123699188, -0.26787540316581726, -0.06434192508459091], [-0.010610622353851795, 0.8089056015014648, -0.2530066668987274], [-0.042083196341991425, 0.9137182235717773, 0.041854895651340485], [-0.04753973335027695, -0.47585269808769226, -0.08591338247060776], [0.038051217794418335, -0.39958199858665466, -0.05312991887331009], [-0.10976354032754898, -0.3749484121799469, -0.07514399290084839], [-0.015209975652396679, -0.5276938676834106, -0.14310148358345032], [0.11863847076892853, -0.4421218931674957, -0.040381185710430145], [-0.19735954701900482, -0.36838093400001526, -0.1160372719168663], [0.3505406677722931, -0.47707661986351013, 0.07433922588825226], [-0.21562553942203522, -0.1300669014453888, -0.2013411819934845], [0.5048502087593079, -0.5983153581619263, -0.07618057727813721], [-0.030696727335453033, -0.06755086779594421, -0.36434444785118103], [0.5679211020469666, -0.6528127193450928, -0.08100298792123795], [0.03332263231277466, -0.04960408806800842, -0.4143681228160858]]}, {"image_id": "49.jpg", "category_id": 1, "keypoints": [1256.369140625, 487.42572021484375, 0.9752549529075623, 1272.6982421875, 520.13525390625, 0.9881235361099243, 1236.4415283203125, 519.8441772460938, 0.9888371825218201, 1262.3970947265625, 452.5298767089844, 0.9914666414260864, 1230.62060546875, 643.9588623046875, 0.9824349880218506, 1224.248291015625, 659.7005615234375, 0.9806338548660278, 1262.446044921875, 407.4010314941406, 0.9855397343635559, 1216.1146240234375, 780.1478271484375, 0.8525602221488953, 1269.509033203125, 773.7044677734375, 0.9419360756874084, 1258.53466796875, 390.1439514160156, 0.9871560335159302, 1193.372802734375, 806.091796875, 0.8547040224075317, 1236.7703857421875, 801.1982421875, 0.9560023546218872, 1257.9049072265625, 317.2100830078125, 0.9875330328941345, 1283.886962890625, 343.8627014160156, 0.989138126373291, 1236.0074462890625, 352.3335876464844, 0.9901382923126221, 1252.73583984375, 296.12371826171875, 0.9516266584396362, 1308.840576171875, 327.63519287109375, 0.9511350989341736, 1211.5528564453125, 347.1553955078125, 0.9896675944328308, 1372.051513671875, 246.90264892578125, 0.9365922212600708, 1177.754150390625, 435.78070068359375, 0.9653887152671814, 1310.1285400390625, 215.29718017578125, 0.9762094020843506, 1136.0721435546875, 461.5924987792969, 0.9450016617774963, 1298.166259765625, 204.08804321289062, 0.9698631167411804, 1115.714599609375, 466.51409912109375, 0.8794438242912292, 1246.5755615234375, 232.24185180664062, 0.9461678266525269, 1289.3465576171875, 189.03555297851562, 0.9690960645675659, 1096.82861328125, 465.0026550292969, 0.9068809747695923, 1182.9864501953125, 799.6468505859375, 0.7743614912033081, 1223.085205078125, 799.577392578125, 0.9402496814727783], "score": 3.149092197418213, "box": [1087.5386962890625, 191.9581756591797, 306.0950927734375, 637.9190826416016], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.046429865062236786, 0.09089671820402145, -0.04583942890167236], [-0.05272022262215614, 0.08704221993684769, 0.04089115560054779], [0.02239951118826866, -0.09925660490989685, 0.025531362742185593], [-0.0816321149468422, 0.4321848154067993, -0.16888192296028137], [-0.08138840645551682, 0.473014235496521, 0.09739088267087936], [0.02181716077029705, -0.22967156767845154, 0.018072180449962616], [-0.12869176268577576, 0.8311945199966431, -0.21930193901062012], [0.0662762001156807, 0.8188455104827881, 0.24636712670326233], [0.008409866131842136, -0.2793395519256592, -0.0020668767392635345], [-0.2110651731491089, 0.9145535230636597, -0.28140199184417725], [-0.03318333625793457, 0.8957921266555786, 0.2048528492450714], [0.0044618090614676476, -0.4860328137874603, 0.03569747135043144], [0.0765380784869194, -0.4032880961894989, -0.007863912731409073], [-0.05068013072013855, -0.3872843086719513, 0.06838135421276093], [-0.016027454286813736, -0.5435665845870972, -0.020722009241580963], [0.14813944697380066, -0.44999179244041443, -0.03825363889336586], [-0.13694852590560913, -0.4083050787448883, 0.10323202610015869], [0.28149721026420593, -0.6307051181793213, -0.17704883217811584], [-0.22669342160224915, -0.1692274510860443, 0.12827454507350922], [0.09229233115911484, -0.745761513710022, -0.06266505271196365], [-0.3613971173763275, -0.08780750632286072, -0.07475987076759338], [0.05746693164110184, -0.7910934686660767, -0.002069622278213501], [-0.4174667298793793, -0.07356467843055725, -0.13448789715766907]]}, {"image_id": "49.jpg", "category_id": 1, "keypoints": [1087.150390625, 476.42633056640625, 0.9793688058853149, 1110.507080078125, 504.4062194824219, 0.9893343448638916, 1066.762939453125, 505.2752990722656, 0.9845487475395203, 1085.992919921875, 440.4666442871094, 0.9942532181739807, 1087.539794921875, 612.5742797851562, 0.9736056327819824, 1063.5816650390625, 638.2189331054688, 0.9694207310676575, 1084.4613037109375, 398.3335266113281, 0.9823660254478455, 1083.800048828125, 709.7583618164062, 0.9205217361450195, 1104.5457763671875, 747.8452758789062, 0.9032679796218872, 1085.4451904296875, 383.77716064453125, 0.9893144965171814, 1075.7410888671875, 737.6287231445312, 0.8592486381530762, 1081.73828125, 771.8438720703125, 0.9135293364524841, 1075.9849853515625, 310.5286865234375, 0.9838157892227173, 1103.2574462890625, 337.65777587890625, 0.9907158017158508, 1053.9354248046875, 345.51605224609375, 0.988351583480835, 1086.7877197265625, 292.36248779296875, 0.9298979043960571, 1129.1048583984375, 324.23974609375, 0.9805814623832703, 1025.7564697265625, 346.727783203125, 0.9872958660125732, 1205.888671875, 315.47015380859375, 0.963570237159729, 1018.5248413085938, 428.7147216796875, 0.9600474834442139, 1235.79541015625, 288.3532409667969, 0.9583236575126648, 1082.3682861328125, 448.13934326171875, 0.9621715545654297, 1249.6390380859375, 276.3712158203125, 0.9446081519126892, 1108.0821533203125, 454.99786376953125, 0.9212702512741089, 1100.281494140625, 216.72085571289062, 0.9552114605903625, 1256.17041015625, 271.1706237792969, 0.9297482967376709, 1141.0526123046875, 460.5234375, 0.6005632877349854, 1066.14599609375, 739.4762573242188, 0.9082587957382202, 1081.1544189453125, 775.0249633789062, 0.915399968624115], "score": 2.496607780456543, "box": [989.7786254882812, 241.49276733398438, 202.82281494140625, 543.9579772949219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06988577544689178, 0.08724090456962585, 0.0029866471886634827], [-0.06127098202705383, 0.08986914157867432, 0.013724289834499359], [-0.003326432779431343, -0.10400530695915222, 0.02069881185889244], [-0.010969498194754124, 0.3823810815811157, -0.22077535092830658], [-0.06951818615198135, 0.4749085605144501, 0.03795639052987099], [-0.008953173644840717, -0.2293509840965271, -0.02319367602467537], [-0.014745187945663929, 0.7300161123275757, -0.025101404637098312], [0.06487128883600235, 0.825543224811554, 0.17169970273971558], [-0.006896738428622484, -0.265729695558548, -0.06588536500930786], [-0.04971000924706459, 0.8345527648925781, -0.09787920117378235], [-0.013187178410589695, 0.896985650062561, 0.09279704093933105], [-0.038711488246917725, -0.4741508960723877, -0.07691772282123566], [0.04595308005809784, -0.3964325785636902, -0.046000417321920395], [-0.10070256888866425, -0.37290799617767334, -0.0734805166721344], [-0.007352129090577364, -0.526141881942749, -0.13433706760406494], [0.12609566748142242, -0.43874114751815796, -0.03138274699449539], [-0.18761099874973297, -0.36618202924728394, -0.11515901982784271], [0.3705950677394867, -0.4728684425354004, 0.052474599331617355], [-0.2101343870162964, -0.1284586787223816, -0.19990353286266327], [0.503118097782135, -0.5929282903671265, -0.11774161458015442], [-0.02399657666683197, -0.06403958797454834, -0.36010444164276123], [0.5660184621810913, -0.6473497152328491, -0.12187229096889496], [0.04064365476369858, -0.04453703761100769, -0.40834933519363403]]}, {"image_id": "50.jpg", "category_id": 1, "keypoints": [1255.3729248046875, 488.1878356933594, 0.9761877655982971, 1271.68603515625, 521.3925170898438, 0.9882402420043945, 1235.1004638671875, 520.815673828125, 0.9885939955711365, 1261.163330078125, 452.8979187011719, 0.990151584148407, 1230.470703125, 649.8173217773438, 0.9839795827865601, 1214.2738037109375, 656.4757080078125, 0.9809035062789917, 1262.051513671875, 407.7034912109375, 0.9868013262748718, 1214.42822265625, 788.17822265625, 0.8146394491195679, 1268.1539306640625, 772.4132080078125, 0.9340696334838867, 1257.919921875, 390.3710021972656, 0.9874111413955688, 1194.8282470703125, 811.9638671875, 0.8692204356193542, 1236.49267578125, 802.8613891601562, 0.9616917967796326, 1258.242431640625, 318.552001953125, 0.9883295893669128, 1283.791748046875, 345.60247802734375, 0.9887063503265381, 1236.7362060546875, 352.8404846191406, 0.9911342263221741, 1251.8719482421875, 297.030029296875, 0.9543467164039612, 1308.6265869140625, 328.363525390625, 0.9664009213447571, 1213.16748046875, 349.11187744140625, 0.9892423748970032, 1371.824462890625, 248.74575805664062, 0.9435691833496094, 1180.451904296875, 439.185546875, 0.9633601307868958, 1308.1077880859375, 217.404296875, 0.9762125611305237, 1130.771728515625, 461.504638671875, 0.9588159918785095, 1296.81103515625, 204.05001831054688, 0.9683878421783447, 1110.799560546875, 468.02288818359375, 0.9048841595649719, 1244.3121337890625, 232.06161499023438, 0.9491567611694336, 1284.682861328125, 183.26681518554688, 0.9684627652168274, 1089.883544921875, 471.1498718261719, 0.9134232997894287, 1186.24658203125, 805.5733642578125, 0.8197100162506104, 1223.7982177734375, 801.2509765625, 0.9334074854850769], "score": 3.136613368988037, "box": [1090.521484375, 195.36045837402344, 308.2255859375, 632.7960357666016], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04771915078163147, 0.09309986233711243, -0.04119443893432617], [-0.052417781203985214, 0.08570808172225952, 0.04536064714193344], [0.021532000973820686, -0.10104995965957642, 0.020585432648658752], [-0.07528544962406158, 0.444377064704895, -0.14498579502105713], [-0.10885806381702423, 0.4730093777179718, 0.0796283707022667], [0.022539284080266953, -0.23050957918167114, 0.004728313535451889], [-0.1252703219652176, 0.8470833897590637, -0.18090307712554932], [0.05643027648329735, 0.8054423332214355, 0.24628350138664246], [0.008518428541719913, -0.27942487597465515, -0.017139969393610954], [-0.1975117176771164, 0.9193704128265381, -0.2662424147129059], [-0.03795744851231575, 0.8889431953430176, 0.2037980556488037], [0.007328737992793322, -0.48752814531326294, 0.015875667333602905], [0.07820014655590057, -0.4029286503791809, -0.026663178578019142], [-0.04876403138041496, -0.3901052474975586, 0.05161869525909424], [-0.01621820032596588, -0.545344352722168, -0.03876638785004616], [0.14768758416175842, -0.4514855742454529, -0.05954819917678833], [-0.1325361728668213, -0.4065713882446289, 0.09461036324501038], [0.2870466709136963, -0.6366061568260193, -0.1892828345298767], [-0.21823689341545105, -0.16524848341941833, 0.12739157676696777], [0.08087466657161713, -0.7515076994895935, -0.1048857718706131], [-0.3720608651638031, -0.09603005647659302, -0.06836438924074173], [0.046119365841150284, -0.8053781390190125, -0.051071979105472565], [-0.4225030839443207, -0.07909250259399414, -0.1328372359275818]]}, {"image_id": "50.jpg", "category_id": 1, "keypoints": [1117.072265625, 470.57171630859375, 0.983505368232727, 1131.656982421875, 500.1848449707031, 0.9895199537277222, 1096.7552490234375, 503.1589050292969, 0.9902215003967285, 1122.99755859375, 436.14276123046875, 0.989790678024292, 1105.522705078125, 625.2901000976562, 0.9890835285186768, 1067.9976806640625, 631.78515625, 0.9857292771339417, 1121.81494140625, 394.28271484375, 0.9837932586669922, 1083.63037109375, 739.4847412109375, 0.9223946332931519, 1051.2242431640625, 725.419677734375, 0.9245927929878235, 1118.532958984375, 376.3370666503906, 0.9875150918960571, 1082.2921142578125, 771.00439453125, 0.8827950358390808, 1035.477783203125, 764.4930419921875, 0.9040152430534363, 1105.0875244140625, 303.152587890625, 0.9909672141075134, 1135.372802734375, 333.1750793457031, 0.9906802177429199, 1084.885986328125, 337.79571533203125, 0.9916883707046509, 1104.609375, 283.6099853515625, 0.964952290058136, 1156.6456298828125, 319.54376220703125, 0.9740771055221558, 1048.16845703125, 339.69793701171875, 0.9893022775650024, 1248.11279296875, 304.4183654785156, 0.9793649315834045, 1021.0435791015625, 422.83551025390625, 0.9600120782852173, 1289.51416015625, 247.102294921875, 0.9847387075424194, 1080.876220703125, 451.7925720214844, 0.9132930636405945, 1299.367431640625, 222.64849853515625, 0.9676464796066284, 1104.5311279296875, 458.66741943359375, 0.8552894592285156, 1132.0830078125, 220.29995727539062, 0.9634971618652344, 1306.3233642578125, 194.3289794921875, 0.9509792327880859, 1129.878173828125, 457.5904846191406, 0.7256991863250732, 1068.857177734375, 773.391845703125, 0.907631516456604, 1034.4949951171875, 767.7881469726562, 0.9349838495254517], "score": 2.930835723876953, "box": [975.8113403320312, 206.4739990234375, 364.85919189453125, 603.6677856445312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.054471455514431, 0.09424097836017609, -0.0245322547852993], [-0.06040719896554947, 0.082930788397789, 0.037918366491794586], [0.01724163629114628, -0.10266025364398956, 0.0193229578435421], [-0.025484293699264526, 0.4516611695289612, -0.12002052366733551], [-0.1455318033695221, 0.4570835828781128, 0.004120778292417526], [0.01222411822527647, -0.23342342674732208, -0.004188157618045807], [-0.07336875051259995, 0.7688655853271484, 0.11537119746208191], [-0.18709693849086761, 0.7513400316238403, 0.26816803216934204], [0.0016828980296850204, -0.28204745054244995, -0.029972471296787262], [-0.08085743337869644, 0.8894447088241577, 0.0625140517950058], [-0.2348303496837616, 0.862485408782959, 0.2159087359905243], [-0.04094339907169342, -0.4880058765411377, -0.02018265798687935], [0.05195382609963417, -0.4141804575920105, -0.01680581085383892], [-0.09523573517799377, -0.3835444450378418, -0.006745003163814545], [-0.04551738128066063, -0.5421572923660278, -0.08365942537784576], [0.12902146577835083, -0.46365559101104736, -0.013949422165751457], [-0.19056203961372375, -0.3776930570602417, -0.020492903888225555], [0.38537243008613586, -0.5066614747047424, -0.004299873486161232], [-0.2672501504421234, -0.144032284617424, -0.07897497713565826], [0.5198350548744202, -0.6972086429595947, -0.08369351923465729], [-0.08341924101114273, -0.04782433807849884, -0.224446102976799], [0.551153838634491, -0.7740771770477295, -0.0788765698671341], [-0.018748093396425247, -0.027044013142585754, -0.27188146114349365]]}, {"image_id": "50.jpg", "category_id": 1, "keypoints": [1087.54052734375, 471.3514404296875, 0.9792308211326599, 1108.7283935546875, 500.7689514160156, 0.9898339509963989, 1066.916259765625, 499.04864501953125, 0.9848747849464417, 1087.4715576171875, 435.7338562011719, 0.9934223294258118, 1092.1624755859375, 613.3646850585938, 0.9741772413253784, 1071.44970703125, 631.6826782226562, 0.9792850613594055, 1085.77490234375, 395.7744140625, 0.9835176467895508, 1027.391357421875, 716.132080078125, 0.9295103549957275, 1112.6015625, 751.0397338867188, 0.9324977993965149, 1086.2403564453125, 381.4540100097656, 0.9906178712844849, 1014.0286865234375, 750.7410888671875, 0.8786212205886841, 1086.04345703125, 779.080810546875, 0.9303327798843384, 1076.393798828125, 310.53466796875, 0.9834446907043457, 1103.384765625, 336.65472412109375, 0.9908304214477539, 1054.7470703125, 344.8465576171875, 0.9884418845176697, 1086.9931640625, 292.3392333984375, 0.9266964197158813, 1128.5887451171875, 323.49322509765625, 0.976718008518219, 1026.490234375, 346.638671875, 0.9874697923660278, 1207.1083984375, 305.40771484375, 0.9550186395645142, 1015.9835205078125, 427.9443664550781, 0.963339626789093, 1245.9346923828125, 269.8511962890625, 0.9355462193489075, 1081.1492919921875, 447.919189453125, 0.9593475461006165, 1259.177734375, 261.4524841308594, 0.9464648962020874, 1107.025390625, 455.1556396484375, 0.9095473289489746, 1096.5238037109375, 216.09759521484375, 0.9481279850006104, 1277.442626953125, 258.72357177734375, 0.8631190061569214, 1140.636474609375, 461.5435791015625, 0.5825387239456177, 1007.6113891601562, 758.2623901367188, 0.9222670197486877, 1084.8795166015625, 777.4921264648438, 0.8609166741371155], "score": 2.504866600036621, "box": [993.8109130859375, 246.1345977783203, 198.2110595703125, 526.5082244873047], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06629490852355957, 0.09005215018987656, 0.007875284180045128], [-0.06561584025621414, 0.08700217306613922, 0.014560066163539886], [0.00042252964340150356, -0.10510852932929993, 0.01755298301577568], [0.0076153092086315155, 0.4297501742839813, -0.1485949009656906], [-0.05230730399489403, 0.4722394347190857, 0.01790434494614601], [-0.007146705873310566, -0.23047298192977905, -0.026235084980726242], [-0.18708039820194244, 0.7528939843177795, -0.019310008734464645], [0.07271955162286758, 0.8218179941177368, 0.16278833150863647], [-0.007603896781802177, -0.2718266546726227, -0.06447353959083557], [-0.23469306528568268, 0.8761782050132751, -0.019541732966899872], [-0.01306457445025444, 0.9040316343307495, 0.10503405332565308], [-0.04244865104556084, -0.47937047481536865, -0.08591745793819427], [0.043503593653440475, -0.4045444130897522, -0.05076589807868004], [-0.10331610590219498, -0.37737637758255005, -0.07808137685060501], [-0.011698544025421143, -0.5314965844154358, -0.14321279525756836], [0.12321209162473679, -0.44706451892852783, -0.03283356875181198], [-0.1921088695526123, -0.36894840002059937, -0.11609257757663727], [0.3640564978122711, -0.5079845786094666, 0.04596661403775215], [-0.22432158887386322, -0.1289951503276825, -0.19074535369873047], [0.5385552644729614, -0.6675584316253662, -0.025126483291387558], [-0.029945719987154007, -0.0619317889213562, -0.3396088182926178], [0.6081677079200745, -0.7112099528312683, -0.03950902074575424], [0.03638527914881706, -0.0411476194858551, -0.3852027356624603]]}, {"image_id": "51.jpg", "category_id": 1, "keypoints": [1255.8548583984375, 488.6142883300781, 0.9778479337692261, 1272.655517578125, 521.483154296875, 0.9891072511672974, 1235.255615234375, 520.884765625, 0.9880327582359314, 1261.66064453125, 452.8818054199219, 0.9886564016342163, 1233.248779296875, 647.691162109375, 0.9811094999313354, 1215.5841064453125, 654.659423828125, 0.9803107976913452, 1263.038330078125, 407.62213134765625, 0.9879660606384277, 1218.888671875, 785.5865478515625, 0.8110877275466919, 1266.3199462890625, 775.1273803710938, 0.9309015870094299, 1259.004638671875, 389.8331298828125, 0.9883676767349243, 1196.1090087890625, 808.9234008789062, 0.8741787672042847, 1222.913330078125, 805.2882080078125, 0.9607182741165161, 1257.73291015625, 317.34228515625, 0.9896925091743469, 1283.9578857421875, 344.2984619140625, 0.9867976903915405, 1236.7869873046875, 351.9461364746094, 0.9925624132156372, 1249.2830810546875, 296.39501953125, 0.9573782682418823, 1308.9849853515625, 325.9476318359375, 0.9729480743408203, 1212.6971435546875, 348.1565246582031, 0.9899389743804932, 1372.3360595703125, 248.35137939453125, 0.9470858573913574, 1178.28271484375, 434.643798828125, 0.9731309413909912, 1308.8271484375, 214.01632690429688, 0.9726210236549377, 1131.4571533203125, 456.2442932128906, 0.9551166892051697, 1298.550048828125, 200.35287475585938, 0.9657517075538635, 1112.874755859375, 461.6849365234375, 0.9120138883590698, 1238.7701416015625, 230.59197998046875, 0.9492236375808716, 1286.3682861328125, 178.20458984375, 0.966815710067749, 1091.6046142578125, 460.20184326171875, 0.9324938058853149, 1185.375244140625, 801.5435180664062, 0.8055761456489563, 1211.52490234375, 800.1461181640625, 0.9329191446304321], "score": 3.0989437103271484, "box": [1095.869140625, 198.16847229003906, 307.9583740234375, 621.4279022216797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04912319779396057, 0.09340118616819382, -0.03907032310962677], [-0.0538000762462616, 0.08558083325624466, 0.044170208275318146], [0.020718060433864594, -0.1011250764131546, 0.020590752363204956], [-0.07167375087738037, 0.44090211391448975, -0.16063514351844788], [-0.10939767956733704, 0.4751198887825012, 0.06292841583490372], [0.022998575121164322, -0.2303057760000229, 0.0038287732750177383], [-0.11851466447114944, 0.8433836698532104, -0.2131946086883545], [0.045159682631492615, 0.8155564069747925, 0.2265750765800476], [0.009494769386947155, -0.2795946002006531, -0.0173751562833786], [-0.19726765155792236, 0.9098191261291504, -0.29780495166778564], [-0.06283047050237656, 0.8855305314064026, 0.19228821992874146], [0.003892437554895878, -0.4879409074783325, 0.013185940682888031], [0.07664861530065536, -0.40433675050735474, -0.027807578444480896], [-0.05027374252676964, -0.3898594379425049, 0.04972924292087555], [-0.02590841054916382, -0.5453600883483887, -0.03879334405064583], [0.14579905569553375, -0.455441415309906, -0.05693592131137848], [-0.13377021253108978, -0.40629124641418457, 0.0929245725274086], [0.28795090317726135, -0.6387627720832825, -0.18783888220787048], [-0.22625552117824554, -0.16789273917675018, 0.1338232457637787], [0.09524058550596237, -0.7608257532119751, -0.08241529017686844], [-0.3719913363456726, -0.10035334527492523, -0.06955241411924362], [0.06380502134561539, -0.8166704177856445, -0.028427403420209885], [-0.4228302538394928, -0.08475349843502045, -0.13420769572257996]]}, {"image_id": "51.jpg", "category_id": 1, "keypoints": [1109.596923828125, 470.0655822753906, 0.9821723103523254, 1124.81201171875, 500.7817077636719, 0.9897940754890442, 1089.022216796875, 500.87530517578125, 0.9892315864562988, 1113.640869140625, 434.8347473144531, 0.9924690127372742, 1077.7994384765625, 617.68505859375, 0.9733155369758606, 1067.346435546875, 631.2410888671875, 0.9747076034545898, 1110.2935791015625, 394.0096130371094, 0.9861456155776978, 1041.1688232421875, 734.940185546875, 0.8654519319534302, 1048.4591064453125, 736.4522705078125, 0.9471227526664734, 1106.3895263671875, 377.8836669921875, 0.9888036847114563, 1046.6513671875, 764.7159423828125, 0.7871218919754028, 1043.4615478515625, 768.1737060546875, 0.945806086063385, 1093.024658203125, 304.08984375, 0.9877253770828247, 1124.615478515625, 333.650146484375, 0.9912660717964172, 1072.406982421875, 339.1215515136719, 0.990908145904541, 1093.779052734375, 285.06951904296875, 0.9568949341773987, 1149.404541015625, 321.62017822265625, 0.9785186052322388, 1036.6083984375, 342.280517578125, 0.9870933294296265, 1228.173583984375, 320.5341796875, 0.974912166595459, 1016.340576171875, 425.9538879394531, 0.9501038193702698, 1279.961181640625, 260.39752197265625, 0.9826675653457642, 1080.187744140625, 453.96142578125, 0.9225276708602905, 1288.1639404296875, 235.48239135742188, 0.9657613039016724, 1101.758056640625, 460.2644958496094, 0.8889430165290833, 1116.822998046875, 216.8218994140625, 0.9614499807357788, 1291.565673828125, 211.10519409179688, 0.9404990077018738, 1126.1253662109375, 459.4261474609375, 0.7463364601135254, 1039.2197265625, 766.7442626953125, 0.740044116973877, 1042.567626953125, 775.3019409179688, 0.942675769329071], "score": 3.077617883682251, "box": [966.9047241210938, 207.4282684326172, 367.42169189453125, 598.6066436767578], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0551406592130661, 0.09423992782831192, -0.0250837542116642], [-0.059704914689064026, 0.08353748917579651, 0.03900934010744095], [0.016838641837239265, -0.10319370031356812, 0.0189521424472332], [-0.08573725819587708, 0.4311620593070984, -0.1306912899017334], [-0.12170498818159103, 0.4641771614551544, 0.06975290924310684], [0.004430163186043501, -0.23051008582115173, -0.016527190804481506], [-0.18868181109428406, 0.784968376159668, 0.025354571640491486], [-0.17625091969966888, 0.8124933242797852, 0.2583419382572174], [-0.008246824145317078, -0.27426475286483765, -0.04933978244662285], [-0.16738632321357727, 0.9049721956253052, -0.02632228657603264], [-0.19519808888435364, 0.9101223945617676, 0.17105108499526978], [-0.05429545417428017, -0.4802878201007843, -0.04236409440636635], [0.03973539546132088, -0.40772107243537903, -0.03492984175682068], [-0.10781193524599075, -0.37486782670021057, -0.030403733253479004], [-0.05502818524837494, -0.5318748950958252, -0.10804169625043869], [0.12238336354494095, -0.4477287828922272, -0.03726061433553696], [-0.20071963965892792, -0.36502841114997864, -0.0555216521024704], [0.38264596462249756, -0.4531099498271942, -0.012972693890333176], [-0.251748263835907, -0.12538179755210876, -0.12319041788578033], [0.5405425429344177, -0.637941837310791, -0.06001332774758339], [-0.0502336248755455, -0.031094133853912354, -0.24725374579429626], [0.5672908425331116, -0.7155461311340332, -0.04463988542556763], [0.009303703904151917, -0.011425867676734924, -0.3020334541797638]]}, {"image_id": "51.jpg", "category_id": 1, "keypoints": [1090.7310791015625, 468.9566650390625, 0.979314923286438, 1111.7535400390625, 499.5051574707031, 0.9894465208053589, 1069.33154296875, 497.0604553222656, 0.9839184284210205, 1090.9093017578125, 433.1632080078125, 0.9931380152702332, 1079.59130859375, 617.3377685546875, 0.979740560054779, 1071.7484130859375, 628.7708740234375, 0.9661444425582886, 1088.2578125, 393.19549560546875, 0.9882219433784485, 1017.8828125, 731.4031372070312, 0.9231286644935608, 1114.13037109375, 750.174560546875, 0.9147945642471313, 1088.0072021484375, 378.97613525390625, 0.9927694201469421, 1005.0504760742188, 774.923828125, 0.906256914138794, 1087.1143798828125, 774.6107788085938, 0.9193076491355896, 1076.22265625, 306.757568359375, 0.9865701198577881, 1104.7952880859375, 332.8874206542969, 0.991994321346283, 1054.802490234375, 341.77032470703125, 0.9887974858283997, 1086.732177734375, 287.3046875, 0.9425901770591736, 1130.897216796875, 320.8653564453125, 0.9786546230316162, 1025.717529296875, 344.20916748046875, 0.9892517328262329, 1214.076904296875, 306.5833740234375, 0.9425615072250366, 1008.706787109375, 426.5980224609375, 0.9696526527404785, 1246.6971435546875, 288.2984619140625, 0.9550780057907104, 1076.31884765625, 447.75146484375, 0.9510785341262817, 1262.8626708984375, 280.49249267578125, 0.9455673694610596, 1103.3170166015625, 453.4311828613281, 0.9155871272087097, 1095.462646484375, 212.37347412109375, 0.8938033580780029, 1239.5318603515625, 340.24517822265625, 0.8734418153762817, 1138.23291015625, 460.28936767578125, 0.6026901006698608, 996.7044067382812, 787.8251953125, 0.8655536770820618, 1076.125732421875, 778.3896484375, 0.9076930284500122], "score": 2.328338623046875, "box": [993.7596435546875, 256.77105712890625, 198.1051025390625, 502.34246826171875], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06502246111631393, 0.09082873910665512, 0.0043297987431287766], [-0.06597433984279633, 0.08601021766662598, 0.016290266066789627], [0.002599770436063409, -0.1046278178691864, 0.018487755209207535], [-0.04101872816681862, 0.4154599905014038, -0.1576204150915146], [-0.058673787862062454, 0.4707135558128357, 0.021665528416633606], [-0.008128147572278976, -0.23031693696975708, -0.0239923857152462], [-0.22024944424629211, 0.7580884695053101, -0.06450086832046509], [0.07045876234769821, 0.830295205116272, 0.1310860961675644], [-0.010927078314125538, -0.2705273926258087, -0.06317277252674103], [-0.2559170722961426, 0.869389533996582, -0.1256466954946518], [-0.02475825324654579, 0.9101489782333374, 0.08708848059177399], [-0.05276064947247505, -0.4763130247592926, -0.08344823122024536], [0.03680716082453728, -0.40429291129112244, -0.05262095853686333], [-0.10995599627494812, -0.3728598654270172, -0.07204081863164902], [-0.024995170533657074, -0.5272643566131592, -0.1433572769165039], [0.11950808763504028, -0.4429945647716522, -0.041950929909944534], [-0.20052611827850342, -0.3627385199069977, -0.10461172461509705], [0.37288329005241394, -0.4892173111438751, -0.006826583296060562], [-0.25033730268478394, -0.12494617700576782, -0.17385204136371613], [0.5648713111877441, -0.5925824642181396, -0.12143073976039886], [-0.05132820084691048, -0.05532744526863098, -0.31410396099090576], [0.6397764086723328, -0.6285326480865479, -0.12619395554065704], [0.015399540774524212, -0.03907957673072815, -0.3605467975139618]]}, {"image_id": "52.jpg", "category_id": 1, "keypoints": [1253.8800048828125, 488.85577392578125, 0.9769347310066223, 1271.36865234375, 521.0499877929688, 0.9891668558120728, 1233.9510498046875, 521.4899291992188, 0.9881359934806824, 1258.873779296875, 453.2532958984375, 0.9892240166664124, 1237.3233642578125, 645.1403198242188, 0.984207272529602, 1217.7138671875, 657.6668701171875, 0.9809991121292114, 1260.5191650390625, 408.2548522949219, 0.98758864402771, 1220.84765625, 785.39794921875, 0.8484764099121094, 1262.931884765625, 776.2550048828125, 0.9530048966407776, 1256.98828125, 390.7861328125, 0.9877859950065613, 1195.5740966796875, 810.7067260742188, 0.8832233548164368, 1229.0838623046875, 803.200927734375, 0.9639910459518433, 1256.770263671875, 319.0784606933594, 0.9878417253494263, 1282.1629638671875, 346.2970275878906, 0.9888641834259033, 1235.504150390625, 353.2877197265625, 0.9905807971954346, 1250.618896484375, 297.4325256347656, 0.9555145502090454, 1307.3275146484375, 328.8194580078125, 0.9695087671279907, 1211.39599609375, 349.24798583984375, 0.9898059964179993, 1374.51513671875, 249.72274780273438, 0.9424258470535278, 1176.8441162109375, 436.2901306152344, 0.9737825989723206, 1310.6640625, 215.68020629882812, 0.9782675504684448, 1125.6632080078125, 456.84820556640625, 0.9520077109336853, 1299.2716064453125, 202.00738525390625, 0.9683990478515625, 1106.6707763671875, 463.4775695800781, 0.9093529582023621, 1244.5260009765625, 231.49594116210938, 0.9499525427818298, 1287.5118408203125, 179.34979248046875, 0.9668936133384705, 1084.577392578125, 463.5445251464844, 0.929458737373352, 1183.5728759765625, 801.6240234375, 0.8065728545188904, 1218.25146484375, 799.83740234375, 0.9354531764984131], "score": 3.110280990600586, "box": [1086.9302978515625, 194.61622619628906, 315.3131103515625, 629.1530609130859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.050318643450737, 0.09099941700696945, -0.040857139974832535], [-0.05180252715945244, 0.08694514632225037, 0.04177572578191757], [0.018747668713331223, -0.10035043954849243, 0.02280590496957302], [-0.05750364065170288, 0.4361315667629242, -0.1726241260766983], [-0.09594547748565674, 0.4749126136302948, 0.06570718437433243], [0.022585554048419, -0.23050761222839355, 0.013235704973340034], [-0.111077681183815, 0.8297773599624634, -0.25039738416671753], [0.04663364216685295, 0.8211122751235962, 0.21829615533351898], [0.010363701730966568, -0.28024861216545105, -0.007122719660401344], [-0.19412919878959656, 0.900546669960022, -0.32557737827301025], [-0.05532102659344673, 0.8963872194290161, 0.1803966909646988], [0.008801152929663658, -0.4866243302822113, 0.029632991179823875], [0.07946830242872238, -0.40312233567237854, -0.013921750709414482], [-0.04678306356072426, -0.38880088925361633, 0.0631268098950386], [-0.014332088641822338, -0.5460526943206787, -0.023724542930722237], [0.1488870531320572, -0.4516463577747345, -0.045679688453674316], [-0.12963786721229553, -0.4059734046459198, 0.10651227086782455], [0.2954232692718506, -0.6322009563446045, -0.17070095241069794], [-0.22192849218845367, -0.16881683468818665, 0.1388748288154602], [0.09989871084690094, -0.752549409866333, -0.07393993437290192], [-0.37355151772499084, -0.10684379935264587, -0.05899637192487717], [0.06463849544525146, -0.807397723197937, -0.022281454876065254], [-0.4249076247215271, -0.08840173482894897, -0.12158793210983276]]}, {"image_id": "52.jpg", "category_id": 1, "keypoints": [1118.232666015625, 470.0511474609375, 0.98368239402771, 1128.08935546875, 501.91839599609375, 0.9907936453819275, 1100.100341796875, 501.1765441894531, 0.9902675151824951, 1126.2330322265625, 434.822265625, 0.9878832101821899, 1075.156005859375, 620.8073120117188, 0.9767266511917114, 1071.901611328125, 625.6989135742188, 0.9808975458145142, 1126.2899169921875, 391.6459045410156, 0.9818758368492126, 1037.0927734375, 743.5859985351562, 0.9257801175117493, 1052.5455322265625, 741.5364379882812, 0.9529404640197754, 1122.87158203125, 374.0982360839844, 0.9843063354492188, 1051.090087890625, 767.5097045898438, 0.7972875833511353, 1052.166259765625, 767.937255859375, 0.9408590793609619, 1113.642578125, 300.97100830078125, 0.9899020791053772, 1139.3724365234375, 332.66070556640625, 0.991128146648407, 1096.613525390625, 334.36383056640625, 0.9880067110061646, 1110.1346435546875, 281.53778076171875, 0.9606459140777588, 1161.982177734375, 322.2706604003906, 0.9761994481086731, 1067.3607177734375, 334.25067138671875, 0.9899957180023193, 1242.857421875, 317.8544616699219, 0.9811212420463562, 1046.492919921875, 423.12176513671875, 0.9513399004936218, 1285.3974609375, 248.51785278320312, 0.9746559858322144, 1074.9031982421875, 451.6199951171875, 0.939980685710907, 1292.323974609375, 225.13323974609375, 0.9654179811477661, 1093.0689697265625, 457.47418212890625, 0.8527430295944214, 1125.766357421875, 220.3756103515625, 0.9633157849311829, 1293.8760986328125, 199.1334228515625, 0.959345817565918, 1125.141845703125, 457.7750244140625, 0.8158337473869324, 1043.989990234375, 769.7762451171875, 0.7542989253997803, 1051.487548828125, 775.8338623046875, 0.9545683264732361], "score": 3.0557804107666016, "box": [963.5529174804688, 207.73231506347656, 382.57073974609375, 599.8550262451172], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.042153917253017426, 0.09608179330825806, -0.037286803126335144], [-0.05600797384977341, 0.08042098581790924, 0.0480496846139431], [0.027140919119119644, -0.10070787370204926, 0.017297226935625076], [-0.11231569200754166, 0.43816453218460083, -0.07920969277620316], [-0.13780079782009125, 0.45213013887405396, 0.10119971632957458], [0.02618044801056385, -0.2321539968252182, -0.002694128081202507], [-0.21683569252490997, 0.7961706519126892, 0.05589723214507103], [-0.1938570886850357, 0.821620523929596, 0.23310744762420654], [0.014999477192759514, -0.28103315830230713, -0.02758908085525036], [-0.16153158247470856, 0.8888452649116516, -0.019522283226251602], [-0.1981220841407776, 0.919588029384613, 0.14541365206241608], [-0.01730419136583805, -0.4885959029197693, -0.016682665795087814], [0.07179395109415054, -0.4109664559364319, -0.027219271287322044], [-0.07239192724227905, -0.38692760467529297, 0.009009355679154396], [-0.031093768775463104, -0.5414077043533325, -0.08003237843513489], [0.1546657830476761, -0.4486047625541687, -0.037646904587745667], [-0.16770856082439423, -0.388358473777771, 0.024096693843603134], [0.4135737121105194, -0.4630175828933716, -0.033748071640729904], [-0.22548674046993256, -0.14330677688121796, 0.012295771390199661], [0.540501594543457, -0.6719219088554382, -0.058537837117910385], [-0.12957285344600677, -0.03277099132537842, -0.19373467564582825], [0.5648242831230164, -0.7497517466545105, -0.04298287257552147], [-0.07811997085809708, -0.013541638851165771, -0.2555708587169647]]}, {"image_id": "52.jpg", "category_id": 1, "keypoints": [1091.8980712890625, 469.9448547363281, 0.9794751405715942, 1112.568603515625, 500.5277404785156, 0.9907730221748352, 1071.4805908203125, 499.301025390625, 0.9819589257240295, 1092.5968017578125, 433.56610107421875, 0.9930996894836426, 1070.56884765625, 616.2168579101562, 0.971730649471283, 1073.7069091796875, 631.5641479492188, 0.9634048342704773, 1087.8580322265625, 393.69464111328125, 0.9848628044128418, 1014.3512573242188, 737.15283203125, 0.9107904434204102, 1115.496337890625, 754.7381591796875, 0.943217933177948, 1086.20751953125, 379.9700927734375, 0.990965723991394, 1000.6927490234375, 773.0224609375, 0.9047327637672424, 1084.4404296875, 781.8436279296875, 0.9366218447685242, 1074.89990234375, 306.286865234375, 0.9843230247497559, 1103.6810302734375, 333.62249755859375, 0.9913291931152344, 1054.182861328125, 341.62017822265625, 0.985784649848938, 1083.1761474609375, 287.97137451171875, 0.9347175359725952, 1128.680908203125, 321.240478515625, 0.97957843542099, 1023.9088134765625, 343.16021728515625, 0.9868220686912537, 1210.938232421875, 303.17230224609375, 0.9532886743545532, 1006.718505859375, 427.477783203125, 0.9724902510643005, 1243.533203125, 271.50103759765625, 0.9613433480262756, 1070.7481689453125, 446.2920837402344, 0.9539138078689575, 1255.8890380859375, 258.563720703125, 0.9646831154823303, 1096.338134765625, 451.34375, 0.910485029220581, 1094.65234375, 211.55905151367188, 0.9469995498657227, 1270.156494140625, 246.43365478515625, 0.8828336000442505, 1137.6240234375, 460.5165710449219, 0.5436240434646606, 992.0330200195312, 780.6382446289062, 0.9323841333389282, 1071.2384033203125, 780.5047607421875, 0.9455664157867432], "score": 2.342315673828125, "box": [987.4119873046875, 245.67027282714844, 209.390869140625, 525.8488311767578], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06518242508172989, 0.09043813496828079, -0.010123642161488533], [-0.06178281083703041, 0.0871862918138504, 0.025125805288553238], [0.00547806266695261, -0.10421527922153473, 0.02101387083530426], [-0.06965663284063339, 0.4092455506324768, -0.16277381777763367], [-0.05424100533127785, 0.4715307950973511, 0.04966960847377777], [-0.011784729547798634, -0.2292223423719406, -0.021511312574148178], [-0.23753489553928375, 0.770421028137207, -0.16250160336494446], [0.07237378507852554, 0.8351861238479614, 0.15024998784065247], [-0.018755998462438583, -0.26847368478775024, -0.061239589005708694], [-0.280722051858902, 0.8747855424880981, -0.23088723421096802], [-0.02433936670422554, 0.9136302471160889, 0.10653188079595566], [-0.057395704090595245, -0.4754135012626648, -0.0770898163318634], [0.03345038369297981, -0.40108543634414673, -0.05717124789953232], [-0.11552370339632034, -0.3734811544418335, -0.058339621871709824], [-0.034309498965740204, -0.5269947052001953, -0.1383773386478424], [0.11527076363563538, -0.4420998692512512, -0.04786784574389458], [-0.20983223617076874, -0.36709165573120117, -0.07945224642753601], [0.3622041940689087, -0.5004458427429199, 0.010142583400011063], [-0.25943660736083984, -0.12653781473636627, -0.14001721143722534], [0.5226199626922607, -0.6565980911254883, -0.09343931823968887], [-0.07621975243091583, -0.06463761627674103, -0.30401983857154846], [0.5781952142715454, -0.7150208353996277, -0.11446265131235123], [-0.010328133590519428, -0.049461737275123596, -0.3521920442581177]]}, {"image_id": "53.jpg", "category_id": 1, "keypoints": [1123.016845703125, 471.33673095703125, 0.9858280420303345, 1130.066162109375, 503.527587890625, 0.9906495809555054, 1104.5244140625, 502.0338134765625, 0.9917263388633728, 1132.5609130859375, 435.35986328125, 0.9884636998176575, 1071.6806640625, 623.3773803710938, 0.9851252436637878, 1071.9140625, 629.1824340820312, 0.9885156154632568, 1135.2459716796875, 390.9345397949219, 0.9811479449272156, 1035.3399658203125, 749.5164794921875, 0.9056063890457153, 1054.634765625, 746.9033203125, 0.9645224213600159, 1132.7493896484375, 372.915771484375, 0.9849907159805298, 1050.114013671875, 768.7745361328125, 0.8056403994560242, 1052.220703125, 772.8819580078125, 0.9373312592506409, 1126.21630859375, 299.13519287109375, 0.9901654124259949, 1148.220947265625, 331.16119384765625, 0.9931331872940063, 1111.7257080078125, 332.84521484375, 0.9888722896575928, 1120.765625, 279.6866455078125, 0.9608174562454224, 1169.5452880859375, 319.53485107421875, 0.9826751947402954, 1090.4864501953125, 329.987060546875, 0.9861243963241577, 1265.2117919921875, 298.76287841796875, 0.9844601154327393, 1072.3031005859375, 410.50054931640625, 0.9714652895927429, 1289.7220458984375, 237.78952026367188, 0.9777984023094177, 1068.034423828125, 450.15362548828125, 0.9477317333221436, 1296.5648193359375, 216.61264038085938, 0.9686088562011719, 1076.1455078125, 455.6658630371094, 0.881208598613739, 1144.2166748046875, 222.22378540039062, 0.9682952165603638, 1301.1094970703125, 189.22976684570312, 0.927596926689148, 1108.69091796875, 454.919189453125, 0.8014703989028931, 1043.022216796875, 769.991455078125, 0.7641392946243286, 1049.13916015625, 781.6481323242188, 0.9577496647834778], "score": 3.0869245529174805, "box": [957.71533203125, 208.21678161621094, 399.0704345703125, 601.2683258056641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03838745504617691, 0.09783168137073517, -0.035076647996902466], [-0.05995285511016846, 0.07696570456027985, 0.04762294143438339], [0.030708525329828262, -0.09880216419696808, 0.016281649470329285], [-0.12771812081336975, 0.43505769968032837, -0.07023338973522186], [-0.15332622826099396, 0.4476025104522705, 0.08433602005243301], [0.03779735043644905, -0.23008032143115997, 0.0013473108410835266], [-0.2277240753173828, 0.8005563616752625, 0.04430558532476425], [-0.20294928550720215, 0.8207720518112183, 0.20532020926475525], [0.02936767414212227, -0.28052306175231934, -0.0202439296990633], [-0.16486676037311554, 0.8793054223060608, -0.039717577397823334], [-0.21537332236766815, 0.9183828234672546, 0.11885302513837814], [0.0036317254416644573, -0.48781436681747437, -0.009915357455611229], [0.0880572497844696, -0.40808117389678955, -0.03029157780110836], [-0.04908205196261406, -0.38863950967788696, 0.025109849870204926], [-0.01628122478723526, -0.5416166186332703, -0.07064228504896164], [0.16592460870742798, -0.44975346326828003, -0.051904432475566864], [-0.13185735046863556, -0.4033285975456238, 0.07090763747692108], [0.4188809394836426, -0.5042068362236023, -0.059793319553136826], [-0.18699786067008972, -0.15811540186405182, 0.07935697585344315], [0.5090340971946716, -0.7313832640647888, -0.07625611126422882], [-0.20880796015262604, -0.02101738750934601, -0.13113048672676086], [0.5350387096405029, -0.8085989356040955, -0.06291460990905762], [-0.18602654337882996, -0.001278027892112732, -0.2076808214187622]]}, {"image_id": "53.jpg", "category_id": 1, "keypoints": [1095.0047607421875, 470.94268798828125, 0.9795383214950562, 1115.2567138671875, 501.8470764160156, 0.9922259449958801, 1076.502197265625, 500.67352294921875, 0.9842248558998108, 1095.30419921875, 432.7278747558594, 0.9934225678443909, 1065.9989013671875, 616.5460205078125, 0.9675869345664978, 1077.3809814453125, 632.169189453125, 0.9546552300453186, 1088.41259765625, 392.803955078125, 0.9826652407646179, 1008.7568969726562, 748.7282104492188, 0.9054197072982788, 1115.31640625, 751.2421264648438, 0.9313269853591919, 1085.358642578125, 380.00067138671875, 0.9883478283882141, 997.3125, 784.2808837890625, 0.8869207501411438, 1088.0157470703125, 782.0828857421875, 0.9175467491149902, 1073.0498046875, 305.96685791015625, 0.9836637377738953, 1102.931884765625, 333.30426025390625, 0.9915886521339417, 1052.43359375, 341.20611572265625, 0.9863129258155823, 1080.1170654296875, 288.193115234375, 0.9284461736679077, 1128.4141845703125, 319.8092041015625, 0.9846861362457275, 1021.7899780273438, 342.18670654296875, 0.9844642281532288, 1215.6854248046875, 305.63555908203125, 0.9609125256538391, 1004.4305419921875, 426.0787353515625, 0.9698708653450012, 1243.9871826171875, 269.86480712890625, 0.9666391611099243, 1065.720458984375, 446.22308349609375, 0.9591317772865295, 1258.01806640625, 249.93429565429688, 0.9641719460487366, 1088.3955078125, 450.4975891113281, 0.9079374074935913, 1093.8648681640625, 210.45834350585938, 0.9617571234703064, 1272.1087646484375, 226.81350708007812, 0.7622556686401367, 1134.7030029296875, 461.72283935546875, 0.5246549844741821, 990.9056396484375, 792.62060546875, 0.9096695780754089, 1075.087646484375, 781.3902587890625, 0.9249879717826843], "score": 2.4334702491760254, "box": [979.7688598632812, 235.25201416015625, 216.86468505859375, 551.3484497070312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06478021293878555, 0.08990397304296494, -0.021436739712953568], [-0.05477021634578705, 0.08884038031101227, 0.03692168742418289], [0.007074316963553429, -0.10531900823116302, 0.019112270325422287], [-0.08296359330415726, 0.41908854246139526, -0.14501160383224487], [-0.049874983727931976, 0.4735262989997864, 0.09051182866096497], [-0.016739366576075554, -0.22820119559764862, -0.026424411684274673], [-0.2438969761133194, 0.784519612789154, -0.19690145552158356], [0.07063338160514832, 0.8400535583496094, 0.2047981470823288], [-0.02808377891778946, -0.2652512788772583, -0.06769631803035736], [-0.2833744287490845, 0.9000996351242065, -0.24966436624526978], [-0.01576090045273304, 0.9313796758651733, 0.16114310920238495], [-0.0707947239279747, -0.47278112173080444, -0.08482257276773453], [0.022945038974285126, -0.39953696727752686, -0.07134430855512619], [-0.1261415034532547, -0.3701651692390442, -0.05843005329370499], [-0.05166070908308029, -0.5221078395843506, -0.1493551880121231], [0.10457991808652878, -0.44249749183654785, -0.0769449919462204], [-0.22206304967403412, -0.36594635248184204, -0.07422858476638794], [0.3594108819961548, -0.4872879385948181, -0.02943875640630722], [-0.2726087272167206, -0.12417225539684296, -0.14081962406635284], [0.47814327478408813, -0.6424562931060791, -0.184106707572937], [-0.09933092445135117, -0.0587666779756546, -0.317889928817749], [0.5257575511932373, -0.7106852531433105, -0.196107879281044], [-0.0357852429151535, -0.04455794394016266, -0.37067553400993347]]}, {"image_id": "54.jpg", "category_id": 1, "keypoints": [1251.2060546875, 492.137451171875, 0.9774694442749023, 1268.52099609375, 524.4060668945312, 0.9885731339454651, 1231.3187255859375, 525.1116943359375, 0.9867570400238037, 1257.350341796875, 455.684814453125, 0.9883089661598206, 1234.6688232421875, 653.0521850585938, 0.9812420010566711, 1215.2603759765625, 660.493896484375, 0.9823933243751526, 1258.8466796875, 410.08746337890625, 0.9866952300071716, 1223.4482421875, 786.2659912109375, 0.8569775223731995, 1265.9329833984375, 776.9189453125, 0.9354989528656006, 1255.1060791015625, 392.2236022949219, 0.9880210161209106, 1197.9873046875, 811.3536376953125, 0.8784148097038269, 1239.575927734375, 806.215087890625, 0.9593671560287476, 1255.4608154296875, 319.22100830078125, 0.9872674345970154, 1280.365478515625, 346.753662109375, 0.9892032146453857, 1234.0419921875, 353.7494812011719, 0.9913129806518555, 1249.456787109375, 297.6695861816406, 0.9548555016517639, 1305.8604736328125, 329.0558166503906, 0.9667823314666748, 1210.1370849609375, 348.9310302734375, 0.9899358749389648, 1374.6385498046875, 251.1591796875, 0.9435786604881287, 1172.04150390625, 428.29791259765625, 0.9746559262275696, 1312.523193359375, 214.46835327148438, 0.9800003170967102, 1118.6173095703125, 450.3281555175781, 0.9389312267303467, 1302.2611083984375, 199.39309692382812, 0.9692180156707764, 1098.6263427734375, 454.98577880859375, 0.9226246476173401, 1239.065185546875, 231.50253295898438, 0.9486693739891052, 1295.340087890625, 176.18923950195312, 0.9692402482032776, 1076.318359375, 453.62750244140625, 0.9047470688819885, 1185.2872314453125, 802.557373046875, 0.7864669561386108, 1227.9290771484375, 806.193359375, 0.9493926763534546], "score": 3.11570405960083, "box": [1082.00927734375, 192.28872680664062, 318.52294921875, 639.1031188964844], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0488085113465786, 0.09160339832305908, -0.04152592271566391], [-0.051134541630744934, 0.08641032874584198, 0.04382693022489548], [0.01983579620718956, -0.10043638944625854, 0.02153710275888443], [-0.054910678416490555, 0.450223445892334, -0.13738775253295898], [-0.09392014145851135, 0.4740561246871948, 0.08081517368555069], [0.023125119507312775, -0.23046782612800598, 0.011175151914358139], [-0.09500829875469208, 0.8469637632369995, -0.2107428014278412], [0.06321364641189575, 0.8111764192581177, 0.2409290373325348], [0.010624404065310955, -0.2805941104888916, -0.00800870731472969], [-0.17786267399787903, 0.91609787940979, -0.2878883481025696], [-0.023587241768836975, 0.8987106680870056, 0.19254270195960999], [0.012485428713262081, -0.48732489347457886, 0.027213294059038162], [0.08095075935125351, -0.40264564752578735, -0.017621509730815887], [-0.04325110837817192, -0.39036399126052856, 0.06303619593381882], [-0.01009009126573801, -0.5459717512130737, -0.027309447526931763], [0.14999417960643768, -0.4508810043334961, -0.05062186345458031], [-0.12350264191627502, -0.4101812243461609, 0.11008784919977188], [0.29919376969337463, -0.6273075342178345, -0.17918896675109863], [-0.22990427911281586, -0.18273791670799255, 0.1646536886692047], [0.11185215413570404, -0.7556485533714294, -0.0758156031370163], [-0.3771440088748932, -0.12045431137084961, -0.036944203078746796], [0.08394552767276764, -0.8115313053131104, -0.02072855830192566], [-0.4339342415332794, -0.10622546076774597, -0.09599275141954422]]}, {"image_id": "54.jpg", "category_id": 1, "keypoints": [1100.222412109375, 473.07794189453125, 0.9743949174880981, 1119.412353515625, 504.1026306152344, 0.9913024306297302, 1081.85986328125, 503.93609619140625, 0.9849063158035278, 1102.5762939453125, 434.4155578613281, 0.994271457195282, 1065.2890625, 623.804443359375, 0.9539116621017456, 1085.4287109375, 635.1292724609375, 0.9627296328544617, 1094.222412109375, 391.9942626953125, 0.9788636565208435, 1019.1043701171875, 748.1685180664062, 0.9096925258636475, 1115.526123046875, 762.2703247070312, 0.9401689767837524, 1089.795166015625, 378.5015869140625, 0.9827083945274353, 1007.5924072265625, 771.5503540039062, 0.8245018124580383, 1097.7381591796875, 784.28662109375, 0.9382110238075256, 1076.2017822265625, 303.7517395019531, 0.9881314039230347, 1108.624755859375, 331.73040771484375, 0.9898046255111694, 1055.0777587890625, 339.3269348144531, 0.9904099702835083, 1079.0225830078125, 287.08734130859375, 0.9456593990325928, 1136.346435546875, 318.39361572265625, 0.9831568002700806, 1022.1869506835938, 339.22808837890625, 0.9827258586883545, 1221.0985107421875, 344.78369140625, 0.9730780124664307, 998.6572265625, 421.6415100097656, 0.9744523167610168, 1194.9593505859375, 377.5612487792969, 0.9782214760780334, 1062.125732421875, 444.05810546875, 0.9580647349357605, 1177.68994140625, 393.4388122558594, 0.9662760496139526, 1083.9296875, 447.9892578125, 0.9369673728942871, 1084.4183349609375, 212.47833251953125, 0.9509934186935425, 1156.8642578125, 412.9852294921875, 0.9150270223617554, 1126.1473388671875, 452.60321044921875, 0.8710229396820068, 1001.3117065429688, 771.1495361328125, 0.8550276160240173, 1085.398193359375, 783.580322265625, 0.9102181792259216], "score": 3.075348377227783, "box": [967.2332763671875, 202.30459594726562, 268.264892578125, 615.8713073730469], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.061762742698192596, 0.09127432852983475, -0.021334607154130936], [-0.05311502143740654, 0.08577403426170349, 0.04401741921901703], [0.009446266107261181, -0.10504621267318726, 0.013611171394586563], [-0.09558048099279404, 0.43233343958854675, -0.08713444322347641], [-0.03994350880384445, 0.4675837755203247, 0.11219451576471329], [-0.019522346556186676, -0.2264518141746521, -0.03069327399134636], [-0.23606130480766296, 0.8081420660018921, -0.10737326741218567], [0.053403593599796295, 0.8551889657974243, 0.15869909524917603], [-0.03415761888027191, -0.2592628598213196, -0.07378676533699036], [-0.2841842472553253, 0.8964494466781616, -0.19381749629974365], [-0.030380606651306152, 0.9569921493530273, 0.14494967460632324], [-0.07104605436325073, -0.4666294753551483, -0.09089566767215729], [0.020332738757133484, -0.3908122479915619, -0.08309692144393921], [-0.1270705610513687, -0.3668578565120697, -0.05896976217627525], [-0.06576868146657944, -0.5085635185241699, -0.16273632645606995], [0.10232062637805939, -0.4296061098575592, -0.09739875048398972], [-0.22367310523986816, -0.36687925457954407, -0.06298951059579849], [0.34914883971214294, -0.3575134575366974, -0.045594945549964905], [-0.29231956601142883, -0.12673911452293396, -0.11463113874197006], [0.24586112797260284, -0.2363736629486084, -0.2362055480480194], [-0.11036674678325653, -0.055250585079193115, -0.27920421957969666], [0.1944744735956192, -0.18996459245681763, -0.28312769532203674], [-0.049825455993413925, -0.042210400104522705, -0.33508333563804626]]}, {"image_id": "55.jpg", "category_id": 1, "keypoints": [1249.023681640625, 490.6849365234375, 0.9772671461105347, 1266.547607421875, 523.412109375, 0.9880703091621399, 1229.08984375, 522.8738403320312, 0.9887455701828003, 1255.2484130859375, 454.9012756347656, 0.9903743267059326, 1237.2398681640625, 651.1284790039062, 0.9790511727333069, 1213.6767578125, 659.1043701171875, 0.9806857705116272, 1257.32177734375, 409.5738525390625, 0.9851214289665222, 1224.2327880859375, 780.2744140625, 0.8599133491516113, 1266.39306640625, 773.7136840820312, 0.9553084373474121, 1253.6214599609375, 391.6048889160156, 0.9871009588241577, 1197.34619140625, 809.1964721679688, 0.9059556722640991, 1243.8531494140625, 806.26513671875, 0.9645252823829651, 1253.085693359375, 318.85235595703125, 0.9862035512924194, 1279.0452880859375, 346.00830078125, 0.9899715781211853, 1231.6964111328125, 353.434814453125, 0.9916011691093445, 1246.77294921875, 296.84149169921875, 0.9528526663780212, 1303.5072021484375, 329.706298828125, 0.9523876309394836, 1206.4925537109375, 348.40838623046875, 0.9891669750213623, 1371.267333984375, 251.4415283203125, 0.944204568862915, 1166.1278076171875, 430.9618835449219, 0.970082700252533, 1314.272705078125, 213.16180419921875, 0.9785350561141968, 1108.3568115234375, 451.965576171875, 0.9325424432754517, 1303.369140625, 196.29315185546875, 0.9744511246681213, 1085.9703369140625, 454.52239990234375, 0.9483025074005127, 1233.0362548828125, 230.23733520507812, 0.9447535872459412, 1299.309814453125, 171.1705322265625, 0.9684896469116211, 1062.66845703125, 452.640869140625, 0.8843798041343689, 1181.90087890625, 800.850830078125, 0.8413411378860474, 1232.687744140625, 805.3657836914062, 0.9592818021774292], "score": 3.1355395317077637, "box": [1067.29443359375, 190.2113494873047, 331.509765625, 645.7398223876953], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.048703186213970184, 0.09235645085573196, -0.04065041244029999], [-0.051803845912218094, 0.08592861890792847, 0.04468175396323204], [0.020414557307958603, -0.10105866193771362, 0.020839732140302658], [-0.043427057564258575, 0.45182523131370544, -0.14106208086013794], [-0.09242969006299973, 0.4729650914669037, 0.08201511204242706], [0.02524247020483017, -0.23129844665527344, 0.008616020902991295], [-0.0919666662812233, 0.8404245376586914, -0.24383454024791718], [0.0727974995970726, 0.8122209310531616, 0.22756391763687134], [0.012866673991084099, -0.2816976308822632, -0.010808553546667099], [-0.17583194375038147, 0.919750452041626, -0.309287965297699], [-0.0019910449627786875, 0.9094871282577515, 0.17748114466667175], [0.010910267010331154, -0.48970627784729004, 0.02160695567727089], [0.08129794150590897, -0.40541917085647583, -0.02242264524102211], [-0.043537501245737076, -0.39192330837249756, 0.058897603303194046], [-0.01201440580189228, -0.5481158494949341, -0.03298458456993103], [0.1504412740468979, -0.45171451568603516, -0.05913446471095085], [-0.12783491611480713, -0.4118250012397766, 0.09937015175819397], [0.29687896370887756, -0.6285666227340698, -0.18958161771297455], [-0.23738859593868256, -0.18359053134918213, 0.14152592420578003], [0.11647619307041168, -0.7678545713424683, -0.0884006917476654], [-0.40456876158714294, -0.12081161141395569, -0.04320009425282478], [0.0893717110157013, -0.8249032497406006, -0.03392419591546059], [-0.4628146290779114, -0.1128305196762085, -0.10212847590446472]]}, {"image_id": "55.jpg", "category_id": 1, "keypoints": [1095.1693115234375, 473.70733642578125, 0.9747600555419922, 1114.8240966796875, 504.2601623535156, 0.9893087148666382, 1076.9366455078125, 504.6120300292969, 0.9833810925483704, 1096.893310546875, 434.66741943359375, 0.9937503337860107, 1061.895263671875, 626.339111328125, 0.9581734538078308, 1083.974609375, 637.2447509765625, 0.97010737657547, 1089.63818359375, 391.53631591796875, 0.9787364602088928, 1022.2129516601562, 748.542724609375, 0.9042131304740906, 1117.0638427734375, 759.971435546875, 0.9578884840011597, 1085.6005859375, 377.56756591796875, 0.9829543232917786, 1006.5294799804688, 771.955078125, 0.8461119532585144, 1098.7711181640625, 781.443603515625, 0.9372017979621887, 1073.189697265625, 302.3869323730469, 0.986835777759552, 1104.8895263671875, 330.51416015625, 0.9888134598731995, 1051.588623046875, 338.3177490234375, 0.9887691736221313, 1076.9468994140625, 285.44317626953125, 0.9391031265258789, 1133.2828369140625, 316.0794982910156, 0.9832977652549744, 1019.2766723632812, 337.78759765625, 0.9823141098022461, 1219.506591796875, 329.9632568359375, 0.9746408462524414, 993.3926391601562, 419.38018798828125, 0.9769975543022156, 1206.2506103515625, 347.8614501953125, 0.9726762771606445, 1057.843994140625, 441.7295837402344, 0.958467423915863, 1200.5069580078125, 348.70806884765625, 0.9605944156646729, 1079.8739013671875, 445.0087890625, 0.9234194159507751, 1082.271728515625, 210.558837890625, 0.9466221928596497, 1192.2623291015625, 345.8984375, 0.9317221641540527, 1120.4407958984375, 448.52227783203125, 0.8710207939147949, 1000.765625, 770.453125, 0.8631613254547119, 1086.6390380859375, 783.4727783203125, 0.9246572256088257], "score": 3.0682263374328613, "box": [959.4403686523438, 202.94723510742188, 274.07684326171875, 617.2541809082031], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06260189414024353, 0.08994851261377335, -0.02568172663450241], [-0.052732203155756, 0.08834965527057648, 0.04001287370920181], [0.008825867436826229, -0.104829803109169, 0.018743664026260376], [-0.08914969861507416, 0.43253082036972046, -0.09535833448171616], [-0.029681209474802017, 0.4688073992729187, 0.11262974888086319], [-0.017276965081691742, -0.22851713001728058, -0.021810993552207947], [-0.21427670121192932, 0.8112732172012329, -0.14501330256462097], [0.07549551874399185, 0.8513264656066895, 0.1756148338317871], [-0.03062095120549202, -0.2635514736175537, -0.06389555335044861], [-0.28160521388053894, 0.9052461981773376, -0.21035954356193542], [-0.011050873436033726, 0.9508774876594543, 0.1604211926460266], [-0.06544665992259979, -0.4719073176383972, -0.08183034509420395], [0.025508414953947067, -0.3950870633125305, -0.07257683575153351], [-0.12323600798845291, -0.37237465381622314, -0.05072809383273125], [-0.05715247988700867, -0.5156865119934082, -0.1522541344165802], [0.10709813982248306, -0.4359778165817261, -0.0856318399310112], [-0.21997110545635223, -0.3734269142150879, -0.058657456189394], [0.36246931552886963, -0.3988667130470276, -0.03766242414712906], [-0.2951839566230774, -0.13605497777462006, -0.1147291287779808], [0.28541529178619385, -0.30492907762527466, -0.25456464290618896], [-0.1085859015583992, -0.06435663998126984, -0.27416476607322693], [0.24174240231513977, -0.29482871294021606, -0.325405478477478], [-0.04624517634510994, -0.05303575098514557, -0.32868942618370056]]}, {"image_id": "56.jpg", "category_id": 1, "keypoints": [1248.2635498046875, 491.01361083984375, 0.9782981872558594, 1267.1395263671875, 523.59228515625, 0.9886201620101929, 1227.091796875, 525.1649780273438, 0.9883450269699097, 1254.345703125, 454.5530090332031, 0.988961398601532, 1241.370361328125, 654.5260009765625, 0.9862425923347473, 1216.493896484375, 663.814697265625, 0.9776540994644165, 1256.8250732421875, 408.08319091796875, 0.9867402911186218, 1227.49169921875, 782.1314697265625, 0.8784447908401489, 1272.231689453125, 776.7880859375, 0.9530295133590698, 1253.367431640625, 389.63848876953125, 0.9873337745666504, 1200.538330078125, 809.52001953125, 0.918289065361023, 1250.6832275390625, 811.9609985351562, 0.9663205742835999, 1253.019287109375, 315.30572509765625, 0.9860172867774963, 1279.2874755859375, 342.7943115234375, 0.9895042181015015, 1230.753173828125, 350.7479553222656, 0.9902853965759277, 1247.00830078125, 292.92706298828125, 0.9565504789352417, 1304.150146484375, 326.1679382324219, 0.9547630548477173, 1204.8021240234375, 345.5299072265625, 0.9901543855667114, 1372.6556396484375, 249.6688232421875, 0.9446539282798767, 1162.202392578125, 423.6751708984375, 0.9744954109191895, 1314.9097900390625, 209.36715698242188, 0.9796054363250732, 1105.2445068359375, 447.7781677246094, 0.9363953471183777, 1303.629150390625, 191.81265258789062, 0.9745458364486694, 1084.226806640625, 447.9508972167969, 0.9444604516029358, 1231.6759033203125, 225.141357421875, 0.9537601470947266, 1299.0341796875, 168.15670776367188, 0.9676494002342224, 1060.9481201171875, 441.1741027832031, 0.8816112279891968, 1183.53173828125, 800.0103759765625, 0.858277440071106, 1239.6650390625, 808.074951171875, 0.9532490968704224], "score": 3.1409034729003906, "box": [1067.3594970703125, 187.56936645507812, 328.7432861328125, 642.4393615722656], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05131904035806656, 0.09073136746883392, -0.04274790361523628], [-0.054388780146837234, 0.08841322362422943, 0.03785356879234314], [0.019440006464719772, -0.10079005360603333, 0.027241531759500504], [-0.0302606001496315, 0.4476804733276367, -0.15967339277267456], [-0.08137260377407074, 0.4772440791130066, 0.07013621926307678], [0.026300203055143356, -0.2320265769958496, 0.025704767554998398], [-0.08516856282949448, 0.817909300327301, -0.3159838914871216], [0.09138034284114838, 0.8072170615196228, 0.22991737723350525], [0.014825479127466679, -0.28413987159729004, 0.00906522199511528], [-0.1725156009197235, 0.8963848352432251, -0.3787374496459961], [0.022788196802139282, 0.9053773283958435, 0.17192119359970093], [0.015607683919370174, -0.4919314384460449, 0.05025326833128929], [0.08602048456668854, -0.40803414583206177, 0.0035345908254384995], [-0.04179983586072922, -0.39312946796417236, 0.08273917436599731], [-0.006489359773695469, -0.5518827438354492, -0.0029542259871959686], [0.15708500146865845, -0.455726683139801, -0.029224848374724388], [-0.12620809674263, -0.4133555293083191, 0.12462696433067322], [0.306112676858902, -0.6293554306030273, -0.1619589626789093], [-0.24688392877578735, -0.189069926738739, 0.1605955958366394], [0.12971705198287964, -0.7718709707260132, -0.05668918415904045], [-0.40135887265205383, -0.1217922568321228, -0.03406035527586937], [0.10287559777498245, -0.8291335105895996, -0.0016423873603343964], [-0.46272289752960205, -0.1196381151676178, -0.09091287851333618]]}, {"image_id": "56.jpg", "category_id": 1, "keypoints": [1091.72607421875, 473.89715576171875, 0.9730647802352905, 1109.2303466796875, 504.950439453125, 0.9898228645324707, 1073.059814453125, 504.70428466796875, 0.9848793745040894, 1094.59912109375, 435.5226135253906, 0.9940917491912842, 1059.63134765625, 630.301513671875, 0.9605297446250916, 1080.152587890625, 638.3355712890625, 0.9693800210952759, 1088.287841796875, 392.3679504394531, 0.9775856137275696, 1017.7821044921875, 751.0670166015625, 0.9286958575248718, 1112.7703857421875, 761.1057739257812, 0.9382742643356323, 1084.266357421875, 377.62615966796875, 0.9820664525032043, 1000.4910888671875, 774.69677734375, 0.8598995208740234, 1098.67626953125, 785.140380859375, 0.9560838341712952, 1071.7523193359375, 301.4420166015625, 0.9873746037483215, 1103.0081787109375, 330.21539306640625, 0.9896547198295593, 1050.4371337890625, 337.6712951660156, 0.9900873899459839, 1075.29345703125, 284.1928405761719, 0.9406396150588989, 1131.04736328125, 314.52362060546875, 0.984768271446228, 1018.3079223632812, 336.2033996582031, 0.9827295541763306, 1221.9417724609375, 316.1531066894531, 0.9608281254768372, 988.9603881835938, 417.65869140625, 0.9735549688339233, 1238.50439453125, 294.039794921875, 0.9682982563972473, 1053.8428955078125, 439.3935852050781, 0.956039547920227, 1251.5223388671875, 269.3657531738281, 0.9461829662322998, 1076.228271484375, 443.07305908203125, 0.9339830875396729, 1081.73486328125, 209.91790771484375, 0.9483373165130615, 1254.882080078125, 247.09823608398438, 0.8682548403739929, 1109.7044677734375, 441.6347351074219, 0.8680519461631775, 994.3917846679688, 773.9405517578125, 0.8469546437263489, 1083.6627197265625, 784.1199951171875, 0.9582167267799377], "score": 3.130418300628662, "box": [959.176025390625, 204.48509216308594, 274.6185302734375, 608.9450836181641], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.059335529804229736, 0.092448391020298, -0.02513488009572029], [-0.05475180223584175, 0.08605124056339264, 0.04253916069865227], [0.012350782752037048, -0.10463765263557434, 0.016553204506635666], [-0.08229957520961761, 0.44387635588645935, -0.0818399116396904], [-0.0316227488219738, 0.4683016836643219, 0.11601036787033081], [-0.011911896988749504, -0.22920528054237366, -0.021198343485593796], [-0.21369460225105286, 0.8255571126937866, -0.06207830831408501], [0.0725623220205307, 0.8520832061767578, 0.18624919652938843], [-0.025214694440364838, -0.26538214087486267, -0.06212647631764412], [-0.286805123090744, 0.9196877479553223, -0.12135055661201477], [0.0050630150362849236, 0.9667609930038452, 0.1836097240447998], [-0.05931902304291725, -0.47433575987815857, -0.07126995921134949], [0.03115255758166313, -0.3969200551509857, -0.06513148546218872], [-0.11718252301216125, -0.37387529015541077, -0.04425578564405441], [-0.051650889217853546, -0.5188928842544556, -0.14133407175540924], [0.11123549193143845, -0.441405326128006, -0.07275031507015228], [-0.2136291265487671, -0.37779244780540466, -0.051298584789037704], [0.3727385401725769, -0.43940404057502747, -0.037803806364536285], [-0.29811275005340576, -0.14249345660209656, -0.1089627593755722], [0.43799567222595215, -0.5358808040618896, -0.25864851474761963], [-0.11011160910129547, -0.07238557934761047, -0.2695150077342987], [0.4771338403224945, -0.6101680994033813, -0.25975874066352844], [-0.04805391654372215, -0.06004220247268677, -0.3244318664073944]]}, {"image_id": "57.jpg", "category_id": 1, "keypoints": [1089.82177734375, 471.916748046875, 0.972410261631012, 1106.8917236328125, 503.6813659667969, 0.9891314506530762, 1070.4791259765625, 503.22271728515625, 0.9849179983139038, 1093.5950927734375, 433.017333984375, 0.9939373731613159, 1057.9215087890625, 630.7156982421875, 0.9600513577461243, 1075.8201904296875, 638.7002563476562, 0.9730401635169983, 1086.8836669921875, 390.50604248046875, 0.9747384786605835, 1012.3280029296875, 755.7161254882812, 0.9208720326423645, 1111.8843994140625, 759.2919921875, 0.9387007355690002, 1082.5848388671875, 376.0504455566406, 0.9793873429298401, 993.7916259765625, 782.742431640625, 0.8762421011924744, 1092.8729248046875, 786.295654296875, 0.9591238498687744, 1071.43310546875, 299.6903076171875, 0.9873899817466736, 1102.3203125, 328.6526794433594, 0.9896829724311829, 1049.649658203125, 335.6064758300781, 0.9894447922706604, 1074.21630859375, 283.15093994140625, 0.940646767616272, 1130.1588134765625, 313.2073974609375, 0.9827315807342529, 1017.6135864257812, 333.42828369140625, 0.9823625683784485, 1225.319580078125, 310.616943359375, 0.9494271278381348, 984.9159545898438, 416.06390380859375, 0.9695702791213989, 1241.77294921875, 290.27740478515625, 0.9707797765731812, 1045.8101806640625, 438.59735107421875, 0.9492998123168945, 1255.88232421875, 261.3144226074219, 0.961182713508606, 1069.3828125, 442.0715026855469, 0.9157101511955261, 1079.6903076171875, 209.81402587890625, 0.9518020749092102, 1254.7049560546875, 241.5142822265625, 0.8617089986801147, 1103.217529296875, 441.73529052734375, 0.8450086712837219, 986.813720703125, 784.4069213867188, 0.8365240097045898, 1078.584716796875, 785.9550170898438, 0.9614622592926025], "score": 3.130270004272461, "box": [955.6625366210938, 203.5885009765625, 279.56927490234375, 608.5802001953125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05723509564995766, 0.0940270870923996, -0.028006596490740776], [-0.05489235371351242, 0.08581948280334473, 0.04516170546412468], [0.015043191611766815, -0.10540759563446045, 0.01637965813279152], [-0.08166071027517319, 0.4466942548751831, -0.09390123188495636], [-0.03696830943226814, 0.47017350792884827, 0.11874380707740784], [-0.010875435546040535, -0.2292310893535614, -0.023317508399486542], [-0.21864444017410278, 0.8274760246276855, -0.05068465694785118], [0.07826334238052368, 0.8449896574020386, 0.22682076692581177], [-0.02515983022749424, -0.2645600736141205, -0.06525784730911255], [-0.2873886525630951, 0.921167254447937, -0.11722666025161743], [0.0006657668855041265, 0.9519660472869873, 0.20467209815979004], [-0.05545761436223984, -0.4756847321987152, -0.0742209404706955], [0.034310150891542435, -0.39599117636680603, -0.07303966581821442], [-0.11441738903522491, -0.3761374056339264, -0.04271312430500984], [-0.05016708746552467, -0.5173395872116089, -0.14617975056171417], [0.11495037376880646, -0.4402620494365692, -0.08358550071716309], [-0.21170148253440857, -0.3826587498188019, -0.04402508586645126], [0.37946346402168274, -0.44910380244255066, -0.06164142116904259], [-0.3057277500629425, -0.14433696866035461, -0.0778680294752121], [0.4600679278373718, -0.5558112859725952, -0.2745344340801239], [-0.12487198412418365, -0.0698263943195343, -0.24717412889003754], [0.4972372353076935, -0.6305959224700928, -0.2608463168144226], [-0.0639818087220192, -0.05864626169204712, -0.304652601480484]]}, {"image_id": "57.jpg", "category_id": 1, "keypoints": [1246.853515625, 493.9689025878906, 0.9804381132125854, 1266.22021484375, 527.2311401367188, 0.9891133308410645, 1225.72265625, 527.3252563476562, 0.9888539910316467, 1253.11962890625, 457.2218322753906, 0.989308774471283, 1242.608154296875, 659.3341064453125, 0.9835941195487976, 1222.047119140625, 664.384521484375, 0.9807772040367126, 1255.1221923828125, 410.5980224609375, 0.9847712516784668, 1228.648681640625, 783.5455932617188, 0.881674587726593, 1272.9071044921875, 777.3406372070312, 0.9506354331970215, 1251.421630859375, 391.86260986328125, 0.9883691668510437, 1202.0316162109375, 809.05810546875, 0.9275839924812317, 1250.7752685546875, 810.117919921875, 0.9633069634437561, 1251.1109619140625, 316.07708740234375, 0.9851827621459961, 1277.3197021484375, 344.66680908203125, 0.9892463088035583, 1228.6146240234375, 351.308837890625, 0.9925020337104797, 1245.7591552734375, 294.45672607421875, 0.9521099925041199, 1302.0230712890625, 327.50360107421875, 0.9530540108680725, 1202.708984375, 345.11029052734375, 0.9896605014801025, 1368.696533203125, 250.22933959960938, 0.9528396725654602, 1155.370361328125, 412.4710693359375, 0.971282958984375, 1313.9229736328125, 212.6202392578125, 0.9733508825302124, 1098.594970703125, 441.57073974609375, 0.9273399114608765, 1302.890380859375, 195.74295043945312, 0.9775684475898743, 1076.105712890625, 437.00067138671875, 0.9565386176109314, 1232.1309814453125, 223.8760986328125, 0.9550967216491699, 1299.1539306640625, 172.81005859375, 0.9737988710403442, 1055.6038818359375, 425.0155029296875, 0.8913859128952026, 1183.1162109375, 797.3424682617188, 0.8756783604621887, 1239.272216796875, 804.9668579101562, 0.9566842913627625], "score": 3.1261324882507324, "box": [1057.5633544921875, 187.7108917236328, 340.791748046875, 642.5181732177734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05172616243362427, 0.09221117198467255, -0.03701657056808472], [-0.053632911294698715, 0.08604368567466736, 0.04219037666916847], [0.01841784454882145, -0.10153518617153168, 0.021353144198656082], [-0.02294018119573593, 0.4537144899368286, -0.14076654613018036], [-0.059159450232982635, 0.47183066606521606, 0.09916277229785919], [0.023028140887618065, -0.23226289451122284, 0.010467920452356339], [-0.07868954539299011, 0.8250223398208618, -0.289353609085083], [0.10086339712142944, 0.8030892610549927, 0.26466476917266846], [0.011084041558206081, -0.2834930419921875, -0.00738922506570816], [-0.16640858352184296, 0.8983842730522156, -0.3564586639404297], [0.03130470588803291, 0.8901170492172241, 0.1930830031633377], [0.011529115028679371, -0.4922562837600708, 0.021065596491098404], [0.0817631185054779, -0.40603119134902954, -0.019750049337744713], [-0.045463696122169495, -0.3959317207336426, 0.05887654796242714], [-0.008622105233371258, -0.5472993850708008, -0.03801558539271355], [0.15084969997406006, -0.4543071985244751, -0.054341819137334824], [-0.12936928868293762, -0.41922616958618164, 0.09879007935523987], [0.2922173738479614, -0.6263986825942993, -0.19505096971988678], [-0.270713210105896, -0.21510399878025055, 0.16128867864608765], [0.1231914758682251, -0.7642463445663452, -0.07519784569740295], [-0.424895316362381, -0.13443629443645477, -0.02694108709692955], [0.09900159388780594, -0.8176635503768921, -0.01593032106757164], [-0.49115893244743347, -0.14592604339122772, -0.07589995861053467]]}, {"image_id": "58.jpg", "category_id": 1, "keypoints": [1215.708251953125, 498.3111572265625, 0.9813600778579712, 1233.997314453125, 530.52392578125, 0.9903074502944946, 1197.5684814453125, 527.718017578125, 0.9881482720375061, 1225.25341796875, 459.92376708984375, 0.9920576810836792, 1243.279052734375, 673.9009399414062, 0.9773417711257935, 1201.2886962890625, 667.8322143554688, 0.9802599549293518, 1226.154296875, 407.6959228515625, 0.9843805432319641, 1222.6129150390625, 785.917236328125, 0.8696447610855103, 1246.9366455078125, 782.5941162109375, 0.9323450922966003, 1223.927978515625, 388.8436584472656, 0.9859114289283752, 1196.09912109375, 813.1209106445312, 0.8525811433792114, 1201.8369140625, 812.2012939453125, 0.9533515572547913, 1232.9483642578125, 313.1099853515625, 0.9903759956359863, 1251.463623046875, 342.1551208496094, 0.9892188310623169, 1209.8209228515625, 347.14715576171875, 0.9917309284210205, 1222.4815673828125, 294.6693115234375, 0.9626816511154175, 1285.1348876953125, 322.3990783691406, 0.9807195067405701, 1195.5323486328125, 336.81396484375, 0.9815508723258972, 1353.7611083984375, 263.29632568359375, 0.9645943641662598, 1145.1055908203125, 358.9313659667969, 0.9614390134811401, 1309.7786865234375, 214.98812866210938, 0.9828478693962097, 1086.185791015625, 406.87255859375, 0.9217178225517273, 1304.70947265625, 199.8524169921875, 0.9812570214271545, 1059.9486083984375, 401.97088623046875, 0.8371182680130005, 1208.7115478515625, 224.79025268554688, 0.9584884643554688, 1300.263916015625, 178.64010620117188, 0.9532036185264587, 1065.77001953125, 381.66815185546875, 0.8404789566993713, 1189.092041015625, 816.7598876953125, 0.8683974146842957, 1194.178955078125, 816.4348754882812, 0.9467401504516602], "score": 3.134167194366455, "box": [951.5719604492188, 201.36756896972656, 443.69744873046875, 616.8052215576172], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.047338053584098816, 0.09406385570764542, -0.03150026500225067], [-0.04993988946080208, 0.07997533679008484, 0.051905058324337006], [0.019664298743009567, -0.10032355785369873, 0.010613251477479935], [0.07106594741344452, 0.47333529591560364, -0.040546126663684845], [-0.03589512035250664, 0.4626315236091614, 0.1010892242193222], [0.02553093060851097, -0.2288631796836853, -0.01113428920507431], [-0.010663616470992565, 0.8286817073822021, -0.19867728650569916], [0.10995069891214371, 0.8091123700141907, 0.2280614972114563], [0.018171563744544983, -0.2801179885864258, -0.027843741700053215], [-0.10260573774576187, 0.9208368062973022, -0.21141399443149567], [0.0012784866848960519, 0.8810601830482483, 0.23229949176311493], [0.0401407815515995, -0.48494017124176025, -0.00919942744076252], [0.09641355276107788, -0.3922644257545471, -0.05158163607120514], [-0.019591093063354492, -0.3970397710800171, 0.037357449531555176], [0.0027371984906494617, -0.5387252569198608, -0.06074419617652893], [0.16760477423667908, -0.44172924757003784, -0.0738193690776825], [-0.07138235867023468, -0.44244706630706787, 0.10148689150810242], [0.3385328948497772, -0.591533362865448, -0.199154332280159], [-0.2694346606731415, -0.3599621057510376, 0.23360036313533783], [0.20695710182189941, -0.7631592750549316, -0.08402366191148758], [-0.4427065849304199, -0.2177981734275818, 0.1170666515827179], [0.19341903924942017, -0.8264294862747192, -0.033769987523555756], [-0.5201842784881592, -0.2311197817325592, 0.09491316974163055]]}, {"image_id": "58.jpg", "category_id": 1, "keypoints": [1086.02001953125, 475.2498474121094, 0.9732061624526978, 1105.46826171875, 505.5885925292969, 0.9870707392692566, 1067.81640625, 505.51202392578125, 0.9846832156181335, 1087.623291015625, 434.39599609375, 0.9944580793380737, 1058.7784423828125, 635.2069702148438, 0.9700822830200195, 1082.2769775390625, 641.0498046875, 0.9734015464782715, 1083.8636474609375, 390.7544250488281, 0.9813435673713684, 1014.4050903320312, 759.403076171875, 0.9016635417938232, 1117.432861328125, 761.1795654296875, 0.9334640502929688, 1080.713134765625, 376.98455810546875, 0.984167754650116, 993.3216552734375, 785.996826171875, 0.8475809693336487, 1092.606689453125, 788.280517578125, 0.9544636607170105, 1070.3436279296875, 301.34100341796875, 0.9861817359924316, 1101.1190185546875, 330.2777099609375, 0.9880594611167908, 1048.516845703125, 336.8010559082031, 0.9853469133377075, 1073.57373046875, 283.7587890625, 0.938057005405426, 1130.3878173828125, 315.1429443359375, 0.9811837673187256, 1016.7980346679688, 333.95623779296875, 0.9840277433395386, 1212.371826171875, 327.5781555175781, 0.9634828567504883, 980.4539794921875, 412.5513916015625, 0.9711614847183228, 1193.406005859375, 354.3941650390625, 0.9625319838523865, 1039.8028564453125, 435.398193359375, 0.9515343308448792, 1202.033203125, 338.2716064453125, 0.9624465703964233, 1059.2713623046875, 437.6883850097656, 0.9247878789901733, 1076.9619140625, 206.49102783203125, 0.9488235712051392, 1204.6923828125, 327.1601867675781, 0.9324235320091248, 1090.8941650390625, 436.71417236328125, 0.8710266947746277, 986.3418579101562, 787.1778564453125, 0.8373394012451172, 1078.13818359375, 790.25830078125, 0.946275532245636], "score": 2.5525619983673096, "box": [967.52294921875, 199.9633026123047, 233.0421142578125, 620.3286895751953], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06198464706540108, 0.0901658833026886, -0.026534859091043472], [-0.05153042823076248, 0.08802713453769684, 0.04228287935256958], [0.009147674776613712, -0.10476689040660858, 0.017337502911686897], [-0.06839845329523087, 0.4469362199306488, -0.06912218034267426], [-0.008185888640582561, 0.46561485528945923, 0.12540318071842194], [-0.007219635881483555, -0.23007570207118988, -0.021778380498290062], [-0.20428340137004852, 0.8264526128768921, -0.07572882622480392], [0.10325562208890915, 0.8339482545852661, 0.24461831152439117], [-0.01830168068408966, -0.2662290930747986, -0.06334779411554337], [-0.2851940989494324, 0.9249292612075806, -0.1133819967508316], [0.013107304461300373, 0.9309501647949219, 0.233782097697258], [-0.04775166139006615, -0.47501474618911743, -0.08434733003377914], [0.04104126617312431, -0.3958611488342285, -0.07604318112134933], [-0.10719023644924164, -0.3778751492500305, -0.04971122741699219], [-0.04090562090277672, -0.5205695033073425, -0.15372814238071442], [0.12220139056444168, -0.4372742772102356, -0.088326595723629], [-0.2035427689552307, -0.38628244400024414, -0.05306939035654068], [0.37678977847099304, -0.4034295082092285, -0.03069704957306385], [-0.3097211718559265, -0.15575914084911346, -0.08623751997947693], [0.2877543568611145, -0.2871469259262085, -0.23216815292835236], [-0.1405179649591446, -0.0826651006937027, -0.2643727958202362], [0.32298368215560913, -0.3557087779045105, -0.26511505246162415], [-0.08587044477462769, -0.0738772600889206, -0.3270668089389801]]}, {"image_id": "59.jpg", "category_id": 1, "keypoints": [1236.0423583984375, 496.9313049316406, 0.9826686382293701, 1254.7994384765625, 531.5680541992188, 0.9921175241470337, 1216.2401123046875, 529.14892578125, 0.9890375733375549, 1245.059814453125, 457.239990234375, 0.9897032976150513, 1244.603271484375, 673.7811279296875, 0.9753022789955139, 1220.1824951171875, 675.3766479492188, 0.9771449565887451, 1244.202880859375, 407.662353515625, 0.9872767329216003, 1222.5169677734375, 793.0662841796875, 0.83655846118927, 1262.4599609375, 792.0693359375, 0.9108939170837402, 1240.2076416015625, 389.26507568359375, 0.985974133014679, 1193.1246337890625, 826.7279663085938, 0.8769519925117493, 1216.9810791015625, 830.9691162109375, 0.9466733932495117, 1242.602294921875, 312.25738525390625, 0.9905955195426941, 1266.18505859375, 341.5498046875, 0.9875248670578003, 1219.9913330078125, 347.7139892578125, 0.9913859367370605, 1230.324951171875, 293.3494873046875, 0.9607733488082886, 1295.3646240234375, 320.80975341796875, 0.9725666642189026, 1200.060546875, 337.91546630859375, 0.9824577569961548, 1358.21923828125, 251.285888671875, 0.9589969515800476, 1142.519775390625, 375.80718994140625, 0.954939067363739, 1309.8936767578125, 206.872802734375, 0.9807388186454773, 1080.9176025390625, 418.494384765625, 0.9158429503440857, 1301.31591796875, 192.5714111328125, 0.9769639372825623, 1055.1279296875, 405.00067138671875, 0.8666871786117554, 1216.8707275390625, 221.40975952148438, 0.9576328992843628, 1294.0419921875, 172.66830444335938, 0.9626682996749878, 1039.7647705078125, 360.891357421875, 0.9142866134643555, 1185.9814453125, 830.654541015625, 0.8017511963844299, 1201.15869140625, 827.2679443359375, 0.9382510185241699], "score": 3.1507833003997803, "box": [957.8865966796875, 197.6768341064453, 434.8751220703125, 621.6462249755859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.046747200191020966, 0.09320954978466034, -0.0366528145968914], [-0.050656579434871674, 0.08243086189031601, 0.04859999567270279], [0.020789463073015213, -0.10023322701454163, 0.015574060380458832], [0.014606917276978493, 0.4691855311393738, -0.09014251083135605], [-0.035804569721221924, 0.46565160155296326, 0.10208490490913391], [0.019661270081996918, -0.22908306121826172, -0.005765404552221298], [-0.06789632886648178, 0.803158700466156, -0.2929062247276306], [0.10008054971694946, 0.8142254948616028, 0.24006116390228271], [0.00430857390165329, -0.2773367166519165, -0.02650868147611618], [-0.149724081158638, 0.901988685131073, -0.26485705375671387], [0.0006911475211381912, 0.8995575308799744, 0.2419661283493042], [0.01671518385410309, -0.4822710156440735, 0.006849315017461777], [0.07886693626642227, -0.3948017954826355, -0.039895012974739075], [-0.04125155508518219, -0.3886079788208008, 0.0453396737575531], [-0.0215334203094244, -0.528571367263794, -0.050863247364759445], [0.1488650143146515, -0.44472259283065796, -0.06656426191329956], [-0.10533183068037033, -0.42629140615463257, 0.10394276678562164], [0.29175814986228943, -0.6098899245262146, -0.20884445309638977], [-0.2999894917011261, -0.2995651364326477, 0.20459941029548645], [0.16668109595775604, -0.7576292157173157, -0.05682160705327988], [-0.4688602089881897, -0.18071576952934265, 0.057211510837078094], [0.14275053143501282, -0.8141208291053772, -0.0018650703132152557], [-0.5406806468963623, -0.21733665466308594, 0.041497521102428436]]}, {"image_id": "59.jpg", "category_id": 1, "keypoints": [1084.0960693359375, 469.5480041503906, 0.9717056155204773, 1103.2825927734375, 500.81719970703125, 0.9874812364578247, 1066.1536865234375, 499.8116455078125, 0.9839056730270386, 1086.1328125, 429.22607421875, 0.9943156838417053, 1059.1031494140625, 630.5457763671875, 0.967564582824707, 1081.740966796875, 636.3927001953125, 0.970257580280304, 1081.8072509765625, 386.2365417480469, 0.9771571159362793, 1017.9200439453125, 754.4290771484375, 0.8971176743507385, 1114.3463134765625, 756.3614501953125, 0.9326530694961548, 1078.7958984375, 372.3731689453125, 0.981184720993042, 998.7103271484375, 778.422119140625, 0.8462638854980469, 1088.2845458984375, 782.569091796875, 0.9585707187652588, 1069.5164794921875, 297.2474365234375, 0.9859507083892822, 1099.8310546875, 326.56640625, 0.9875380992889404, 1047.3145751953125, 332.2962646484375, 0.9862846732139587, 1072.5343017578125, 280.5241394042969, 0.9370030760765076, 1128.3251953125, 312.22772216796875, 0.9840075969696045, 1015.4442138671875, 329.129150390625, 0.983780026435852, 1213.5408935546875, 322.134765625, 0.9620760083198547, 976.5338134765625, 409.5437316894531, 0.9666334390640259, 1204.7266845703125, 337.96832275390625, 0.9801664352416992, 1033.4925537109375, 432.7064208984375, 0.9542187452316284, 1208.5703125, 330.1048278808594, 0.9700618982315063, 1055.6441650390625, 436.12933349609375, 0.9095277786254883, 1077.2728271484375, 205.82705688476562, 0.9506328105926514, 1201.972412109375, 331.32440185546875, 0.9169930219650269, 1089.38427734375, 436.54925537109375, 0.8409781455993652, 991.3172607421875, 778.9403076171875, 0.8402867317199707, 1075.124267578125, 781.018310546875, 0.9425275325775146], "score": 3.0277273654937744, "box": [954.3213500976562, 199.76068115234375, 266.90411376953125, 612.13427734375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.061604030430316925, 0.09104640036821365, -0.02443663962185383], [-0.05271648243069649, 0.0871235579252243, 0.042725227773189545], [0.009761016815900803, -0.10510678589344025, 0.01617155224084854], [-0.06239354610443115, 0.44816190004348755, -0.07920297980308533], [-0.00038444786332547665, 0.4655342698097229, 0.1153750941157341], [-0.00793822854757309, -0.23068828880786896, -0.023420408368110657], [-0.18931880593299866, 0.8304909467697144, -0.0751701146364212], [0.10449589788913727, 0.838621199131012, 0.22431042790412903], [-0.01858685351908207, -0.2664197087287903, -0.0656915232539177], [-0.27071085572242737, 0.9284991025924683, -0.113223135471344], [0.0104732196778059, 0.9324304461479187, 0.21835941076278687], [-0.045018091797828674, -0.4760574698448181, -0.08419402688741684], [0.04271155595779419, -0.3953154683113098, -0.07764577865600586], [-0.10564704239368439, -0.3793169856071472, -0.04986020177602768], [-0.038815729320049286, -0.5191163420677185, -0.1555025577545166], [0.12458892166614532, -0.4359988570213318, -0.08847765624523163], [-0.2021150141954422, -0.3888090252876282, -0.051161251962184906], [0.3819379508495331, -0.4100794792175293, -0.040153808891773224], [-0.3132617473602295, -0.1587025374174118, -0.06376316398382187], [0.3232247531414032, -0.3225485682487488, -0.26584550738334656], [-0.15025611221790314, -0.08401177823543549, -0.246869295835495], [0.34711095690727234, -0.3773038387298584, -0.3247646987438202], [-0.09275157749652863, -0.07275436818599701, -0.30661541223526]]}, {"image_id": "60.jpg", "category_id": 1, "keypoints": [1233.0927734375, 494.36181640625, 0.9841091632843018, 1251.065673828125, 528.1764526367188, 0.9909132122993469, 1215.126220703125, 526.9691162109375, 0.9879705905914307, 1242.225341796875, 454.99127197265625, 0.9914751052856445, 1239.236083984375, 668.9068603515625, 0.9648193120956421, 1224.4119873046875, 668.5846557617188, 0.9750170111656189, 1241.6884765625, 404.41204833984375, 0.9872928857803345, 1225.803466796875, 792.635986328125, 0.8404688239097595, 1273.2117919921875, 788.0119018554688, 0.8879042267799377, 1237.5885009765625, 385.71905517578125, 0.9862968325614929, 1197.4140625, 822.0274658203125, 0.8962569832801819, 1226.0933837890625, 823.0789794921875, 0.9648493528366089, 1241.6278076171875, 308.1041259765625, 0.9904683232307434, 1264.419189453125, 337.60089111328125, 0.9862238764762878, 1218.736328125, 343.843994140625, 0.9918445348739624, 1229.1781005859375, 289.00994873046875, 0.9609262347221375, 1293.5299072265625, 317.7066650390625, 0.9715259075164795, 1199.649658203125, 334.0478210449219, 0.9832058548927307, 1354.6339111328125, 250.72927856445312, 0.9560664892196655, 1142.4107666015625, 365.26361083984375, 0.9552433490753174, 1310.1632080078125, 203.95639038085938, 0.9840414524078369, 1083.70166015625, 406.447021484375, 0.9245295524597168, 1301.665771484375, 188.44219970703125, 0.9788603186607361, 1062.2454833984375, 384.35211181640625, 0.8924475312232971, 1213.5185546875, 216.08932495117188, 0.9570492506027222, 1294.46142578125, 164.96533203125, 0.9614759683609009, 1049.71337890625, 343.5095520019531, 0.9281468391418457, 1190.0390625, 827.7337646484375, 0.8216446042060852, 1205.5953369140625, 818.6572265625, 0.9637630581855774], "score": 3.1449928283691406, "box": [958.3788452148438, 193.11683654785156, 433.91851806640625, 628.1522064208984], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04529203847050667, 0.09291897714138031, -0.03951471298933029], [-0.0459190309047699, 0.08286872506141663, 0.0527050606906414], [0.020523972809314728, -0.10069802403450012, 0.013464067131280899], [0.008421600796282291, 0.4683547616004944, -0.0956796407699585], [-0.015198647044599056, 0.462876558303833, 0.12223681807518005], [0.020731139928102493, -0.22950083017349243, -0.007707828655838966], [-0.048071496188640594, 0.8040623068809509, -0.30537018179893494], [0.13387912511825562, 0.8028697371482849, 0.269192099571228], [0.006028857082128525, -0.2786092758178711, -0.02694719284772873], [-0.13815602660179138, 0.8991671800613403, -0.29467570781707764], [0.028296837583184242, 0.8801960349082947, 0.2612139582633972], [0.019881973043084145, -0.48499321937561035, -0.003682740032672882], [0.08010443300008774, -0.39528560638427734, -0.048828400671482086], [-0.03659382462501526, -0.3933444619178772, 0.04146043211221695], [-0.019003333523869514, -0.5324679017066956, -0.05988224595785141], [0.1509503871202469, -0.438449501991272, -0.08389374613761902], [-0.09994317591190338, -0.4321554899215698, 0.1001821905374527], [0.29097652435302734, -0.5989779233932495, -0.23467470705509186], [-0.29703181982040405, -0.32762449979782104, 0.22051328420639038], [0.17726999521255493, -0.7539726495742798, -0.0805043876171112], [-0.46980375051498413, -0.20430153608322144, 0.08103001117706299], [0.15387752652168274, -0.8132959604263306, -0.02825431525707245], [-0.5271446704864502, -0.2632022202014923, 0.0793084055185318]]}, {"image_id": "60.jpg", "category_id": 1, "keypoints": [1083.12451171875, 469.4262390136719, 0.9714507460594177, 1102.223388671875, 500.7901611328125, 0.9870326519012451, 1064.723876953125, 500.3209533691406, 0.9845218658447266, 1085.796875, 429.6259765625, 0.9940890669822693, 1057.1724853515625, 631.9110107421875, 0.9700465798377991, 1081.188720703125, 637.4468383789062, 0.9745272994041443, 1081.8133544921875, 386.3250732421875, 0.9781830906867981, 1014.7576904296875, 760.83251953125, 0.8896346092224121, 1119.0986328125, 756.8256225585938, 0.9421262145042419, 1078.39306640625, 372.03607177734375, 0.9818307161331177, 996.8837890625, 785.8115844726562, 0.8686901330947876, 1094.8670654296875, 784.3941650390625, 0.9584535360336304, 1068.915771484375, 296.5911865234375, 0.9864809513092041, 1099.2208251953125, 326.3624572753906, 0.9887149333953857, 1046.5994873046875, 331.85284423828125, 0.9872108697891235, 1071.177734375, 279.735107421875, 0.9389920830726624, 1127.5706787109375, 311.8020324707031, 0.9825429320335388, 1014.5379028320312, 328.49395751953125, 0.984043300151825, 1212.002197265625, 324.22601318359375, 0.9621238112449646, 973.1409912109375, 408.0751037597656, 0.9665966033935547, 1190.114013671875, 349.7259521484375, 0.9635420441627502, 1030.626708984375, 431.4573974609375, 0.958724319934845, 1190.9554443359375, 343.0048522949219, 0.9720411896705627, 1051.60498046875, 435.1351318359375, 0.910093367099762, 1075.4383544921875, 206.17337036132812, 0.9517674446105957, 1184.3594970703125, 340.17730712890625, 0.9203975200653076, 1084.43603515625, 436.7295227050781, 0.8204084038734436, 990.8938598632812, 786.1475830078125, 0.8687463998794556, 1082.325927734375, 786.546875, 0.9406259655952454], "score": 3.0214695930480957, "box": [954.11474609375, 195.24563598632812, 265.421875, 619.6746520996094], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.060906071215867996, 0.09130781888961792, -0.025085292756557465], [-0.053729765117168427, 0.08702902495861053, 0.04157433658838272], [0.010605521500110626, -0.10473404824733734, 0.01724388264119625], [-0.07560452073812485, 0.44452857971191406, -0.07808834314346313], [0.0004114820621907711, 0.46541827917099, 0.11483106762170792], [-0.0051950146444141865, -0.2306206077337265, -0.021292703226208687], [-0.20157043635845184, 0.8275847434997559, -0.07670130580663681], [0.12104964256286621, 0.8355457782745361, 0.2187894582748413], [-0.0171001385897398, -0.26660221815109253, -0.06288032978773117], [-0.2746905982494354, 0.9244236946105957, -0.13111495971679688], [0.032844241708517075, 0.934248685836792, 0.2062445729970932], [-0.043742358684539795, -0.47615718841552734, -0.08071589469909668], [0.044005826115608215, -0.39554882049560547, -0.07431565225124359], [-0.10424351692199707, -0.3793041706085205, -0.04677177965641022], [-0.039763323962688446, -0.5192194581031799, -0.15211637318134308], [0.12530386447906494, -0.43670934438705444, -0.08695919066667557], [-0.20056624710559845, -0.3892051577568054, -0.049417365342378616], [0.38174471259117126, -0.40309208631515503, -0.03769425302743912], [-0.3179956376552582, -0.16270692646503448, -0.07081039994955063], [0.28135946393013, -0.2912549376487732, -0.2364898920059204], [-0.1525086760520935, -0.08719502389431, -0.2515706717967987], [0.282922625541687, -0.3406597971916199, -0.3042796850204468], [-0.09618742763996124, -0.0748969167470932, -0.3122343122959137]]}, {"image_id": "61.jpg", "category_id": 1, "keypoints": [1232.7755126953125, 492.2245178222656, 0.9836426377296448, 1250.73388671875, 526.013916015625, 0.9915503263473511, 1214.9677734375, 523.8679809570312, 0.9881059527397156, 1242.3349609375, 453.4198913574219, 0.9911112189292908, 1242.6434326171875, 671.0718994140625, 0.9660122990608215, 1217.00537109375, 664.0411376953125, 0.9733917117118835, 1240.2049560546875, 402.8712463378906, 0.9869804978370667, 1231.6265869140625, 799.6959228515625, 0.907287061214447, 1256.42529296875, 785.4805297851562, 0.9079744219779968, 1235.046630859375, 383.8034362792969, 0.9850230813026428, 1208.4464111328125, 824.8397216796875, 0.887324333190918, 1214.3419189453125, 819.7659301757812, 0.9646481275558472, 1239.07275390625, 306.239013671875, 0.9903849363327026, 1261.5914306640625, 336.59478759765625, 0.9865503907203674, 1216.68359375, 341.5386657714844, 0.9919673800468445, 1225.4058837890625, 287.0850830078125, 0.9601044058799744, 1291.6519775390625, 315.8512268066406, 0.97327721118927, 1198.218017578125, 330.0693664550781, 0.9781482219696045, 1350.7735595703125, 246.89398193359375, 0.9487367868423462, 1143.027099609375, 352.6338195800781, 0.9660382866859436, 1307.819580078125, 201.37686157226562, 0.9790253639221191, 1080.1854248046875, 405.6692810058594, 0.9288560152053833, 1300.382568359375, 189.36587524414062, 0.9796723127365112, 1057.896728515625, 383.774658203125, 0.9015849232673645, 1218.826171875, 214.8509521484375, 0.9482077360153198, 1294.362548828125, 171.12442016601562, 0.969014048576355, 1044.0113525390625, 337.8697509765625, 0.9332068562507629, 1201.10205078125, 830.31396484375, 0.8425511121749878, 1198.9293212890625, 820.784423828125, 0.9582547545433044], "score": 3.1627438068389893, "box": [949.82763671875, 191.3013458251953, 440.89794921875, 629.7703094482422], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04434846341609955, 0.09400220215320587, -0.037317901849746704], [-0.044899143278598785, 0.08096328377723694, 0.055955879390239716], [0.02086404524743557, -0.10095047950744629, 0.009974997490644455], [0.021974053233861923, 0.4734913408756256, -0.05013473331928253], [-0.03262978419661522, 0.4585167467594147, 0.1376674771308899], [0.01759427785873413, -0.23011580109596252, -0.010734407231211662], [-0.01719425991177559, 0.8656607866287231, -0.10850676149129868], [0.09201636910438538, 0.8158574104309082, 0.2604081928730011], [0.0005164823960512877, -0.2794139087200165, -0.02743716351687908], [-0.10603366047143936, 0.9557667970657349, -0.14322957396507263], [-0.009921585209667683, 0.8973920345306396, 0.25084513425827026], [0.014986333437263966, -0.48561862111091614, -0.0038390662521123886], [0.07454962283372879, -0.3958410322666168, -0.049776822328567505], [-0.041196059435606, -0.39391371607780457, 0.04162625968456268], [-0.026472818106412888, -0.5325294733047485, -0.05892369896173477], [0.1453331708908081, -0.44064101576805115, -0.08291789144277573], [-0.09976915270090103, -0.43733420968055725, 0.10211643576622009], [0.27202582359313965, -0.6006036996841431, -0.2442900538444519], [-0.30122753977775574, -0.35977211594581604, 0.23335608839988708], [0.16299211978912354, -0.7527511119842529, -0.08511073142290115], [-0.46981939673423767, -0.2161756455898285, 0.11058918386697769], [0.14095903933048248, -0.8056348562240601, -0.026023823767900467], [-0.5283380150794983, -0.27286478877067566, 0.10090765357017517]]}, {"image_id": "61.jpg", "category_id": 1, "keypoints": [1082.471435546875, 470.6437683105469, 0.9726059436798096, 1101.5140380859375, 502.22894287109375, 0.987695574760437, 1064.3052978515625, 501.3713073730469, 0.9846515655517578, 1085.9576416015625, 430.30908203125, 0.9935697913169861, 1054.9598388671875, 633.72509765625, 0.9696050882339478, 1080.881103515625, 637.19921875, 0.9718153476715088, 1082.05517578125, 386.9945068359375, 0.9778091311454773, 1014.281982421875, 761.2890014648438, 0.8936997652053833, 1122.262451171875, 755.8336181640625, 0.9370032548904419, 1078.2252197265625, 372.94482421875, 0.9815354943275452, 994.4393310546875, 786.001953125, 0.8733481168746948, 1098.4542236328125, 785.8917236328125, 0.9562807679176331, 1069.041015625, 297.809814453125, 0.9868932366371155, 1099.5557861328125, 327.73822021484375, 0.988990843296051, 1047.0628662109375, 332.65093994140625, 0.9866384863853455, 1070.082763671875, 280.52880859375, 0.9398849010467529, 1128.1248779296875, 313.09130859375, 0.9821210503578186, 1015.0447387695312, 328.9591369628906, 0.9843817949295044, 1206.405517578125, 335.44970703125, 0.9679258465766907, 970.7291259765625, 405.61767578125, 0.9613968133926392, 1170.9437255859375, 364.84429931640625, 0.960213303565979, 1026.119873046875, 428.484619140625, 0.9616467952728271, 1166.2572021484375, 363.029052734375, 0.9586676359176636, 1046.3123779296875, 430.88763427734375, 0.9120150208473206, 1072.9808349609375, 206.67501831054688, 0.950767993927002, 1148.3450927734375, 375.5641784667969, 0.902400553226471, 1079.0035400390625, 431.0965270996094, 0.8479084372520447, 987.3268432617188, 785.4102783203125, 0.8648043870925903, 1082.18359375, 787.3795166015625, 0.9579744338989258], "score": 2.9084253311157227, "box": [954.5122680664062, 194.81004333496094, 261.75347900390625, 620.7408599853516], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05938194319605827, 0.09208263456821442, -0.026507213711738586], [-0.052176591008901596, 0.08616869151592255, 0.04557158052921295], [0.01193460077047348, -0.10527072846889496, 0.01512746512889862], [-0.07908856123685837, 0.44550633430480957, -0.0672687292098999], [0.0018518668366596103, 0.4626849293708801, 0.12544262409210205], [-0.0027534496039152145, -0.23133884370326996, -0.024061724543571472], [-0.2007541060447693, 0.8291478753089905, -0.05098310485482216], [0.1322486847639084, 0.8275291919708252, 0.23466244339942932], [-0.016158921644091606, -0.2674243450164795, -0.06534865498542786], [-0.27779972553253174, 0.9193695783615112, -0.1111457571387291], [0.04918847605586052, 0.9308624863624573, 0.2236333191394806], [-0.041254252195358276, -0.47759807109832764, -0.08387274295091629], [0.04607880860567093, -0.395898699760437, -0.08046206831932068], [-0.10168424993753433, -0.3814864754676819, -0.04667552933096886], [-0.04083595797419548, -0.5213002562522888, -0.15499818325042725], [0.12707805633544922, -0.43662571907043457, -0.09769581258296967], [-0.1981886923313141, -0.39276623725891113, -0.04454592987895012], [0.3780350089073181, -0.36853861808776855, -0.05811695754528046], [-0.3256879448890686, -0.17159222066402435, -0.06087157875299454], [0.24433737993240356, -0.2576978802680969, -0.23664912581443787], [-0.16918469965457916, -0.09832040965557098, -0.25003212690353394], [0.20860083401203156, -0.2651295065879822, -0.3122841417789459], [-0.11584710329771042, -0.08945332467556, -0.31400591135025024]]}, {"image_id": "62.jpg", "category_id": 1, "keypoints": [1234.582275390625, 487.8768615722656, 0.9829362034797668, 1253.7989501953125, 522.5839233398438, 0.9902037382125854, 1215.4093017578125, 520.1195068359375, 0.9893612265586853, 1243.3245849609375, 448.39453125, 0.9911366105079651, 1240.750732421875, 668.227783203125, 0.9661586284637451, 1217.1983642578125, 660.5639038085938, 0.9784221053123474, 1241.5306396484375, 397.9422607421875, 0.9845812320709229, 1236.010986328125, 798.3967895507812, 0.866507887840271, 1256.4278564453125, 782.1207275390625, 0.9044811725616455, 1237.01318359375, 379.0189514160156, 0.9853261113166809, 1210.1524658203125, 825.1932373046875, 0.8730928897857666, 1207.964599609375, 813.8726806640625, 0.9548883438110352, 1239.66259765625, 300.3129577636719, 0.98991858959198, 1264.0072021484375, 330.7401428222656, 0.9864547252655029, 1216.3570556640625, 336.7167663574219, 0.991542398929596, 1226.1943359375, 281.38116455078125, 0.9581605792045593, 1293.34033203125, 309.9631652832031, 0.9721120595932007, 1196.3111572265625, 325.6504821777344, 0.980948269367218, 1355.0966796875, 242.99798583984375, 0.9523332715034485, 1135.43798828125, 346.5947265625, 0.9650135040283203, 1307.801513671875, 201.62579345703125, 0.9833402037620544, 1079.0816650390625, 388.2615966796875, 0.9445464611053467, 1296.9013671875, 188.698486328125, 0.9729018807411194, 1057.7410888671875, 350.8560791015625, 0.9349656701087952, 1211.2906494140625, 209.08529663085938, 0.9551894664764404, 1290.3797607421875, 170.77352905273438, 0.9678716063499451, 1036.8739013671875, 312.6326599121094, 0.9505383372306824, 1201.3359375, 829.6431884765625, 0.8480836153030396, 1190.8681640625, 813.919921875, 0.9647491574287415], "score": 3.173682451248169, "box": [954.2825317382812, 184.5015411376953, 435.17913818359375, 639.4385223388672], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04719847813248634, 0.09385249763727188, -0.033812060952186584], [-0.04716268554329872, 0.08084358274936676, 0.05405169725418091], [0.019176669418811798, -0.10089464485645294, 0.010036395862698555], [0.01153609063476324, 0.47353261709213257, -0.051409441977739334], [-0.03539102524518967, 0.45898228883743286, 0.13898548483848572], [0.015647418797016144, -0.22867216169834137, -0.01577191986143589], [-0.006683490239083767, 0.8706740736961365, -0.09252584725618362], [0.08827207237482071, 0.8120937943458557, 0.2777951657772064], [-7.41730909794569e-05, -0.2768797278404236, -0.0358523428440094], [-0.09764514118432999, 0.9589453339576721, -0.12687698006629944], [-0.02159009873867035, 0.8828719258308411, 0.26920285820961], [0.009875111281871796, -0.4833029508590698, -0.016986723989248276], [0.0725039690732956, -0.3937493562698364, -0.058038532733917236], [-0.046064577996730804, -0.3919526934623718, 0.02851824462413788], [-0.030342545360326767, -0.5281569361686707, -0.07460856437683105], [0.14278817176818848, -0.43679970502853394, -0.093553826212883], [-0.10913984477519989, -0.43305957317352295, 0.0854494720697403], [0.28073909878730774, -0.5929913520812988, -0.25052183866500854], [-0.3193613588809967, -0.36603641510009766, 0.2099730670452118], [0.15488950908184052, -0.7353293299674988, -0.09382788836956024], [-0.5028201937675476, -0.22817863523960114, 0.10119761526584625], [0.12310020625591278, -0.7865152359008789, -0.037755969911813736], [-0.5436940789222717, -0.29907411336898804, 0.09472624212503433]]}, {"image_id": "62.jpg", "category_id": 1, "keypoints": [1079.525634765625, 470.69049072265625, 0.9726731777191162, 1098.99072265625, 501.8316955566406, 0.9892158508300781, 1060.47998046875, 501.2160949707031, 0.9833298325538635, 1082.957275390625, 430.003662109375, 0.9939802289009094, 1055.14794921875, 632.625732421875, 0.9741283655166626, 1077.2332763671875, 637.46630859375, 0.97589510679245, 1080.4703369140625, 386.3414001464844, 0.9805043935775757, 1017.3589477539062, 757.99755859375, 0.9006041884422302, 1125.868408203125, 755.090087890625, 0.9303280115127563, 1077.4005126953125, 372.5871276855469, 0.9835610389709473, 998.85400390625, 784.481689453125, 0.8607761263847351, 1101.8726806640625, 785.6009521484375, 0.9375624060630798, 1069.1455078125, 298.3829040527344, 0.9870054721832275, 1099.34765625, 328.1134033203125, 0.9897603392601013, 1046.41943359375, 332.7005920410156, 0.9870541095733643, 1071.34912109375, 280.74468994140625, 0.9415033459663391, 1128.901123046875, 315.26416015625, 0.9815695285797119, 1014.42333984375, 329.263916015625, 0.9854106307029724, 1198.5494384765625, 346.04998779296875, 0.962645411491394, 968.4440307617188, 404.2236328125, 0.9636878371238708, 1155.092529296875, 376.47100830078125, 0.9443734884262085, 1023.2295532226562, 426.36614990234375, 0.9552332162857056, 1151.3084716796875, 372.5986022949219, 0.9491109251976013, 1042.603759765625, 428.45166015625, 0.9072459936141968, 1074.329833984375, 203.9410400390625, 0.9486907720565796, 1132.4012451171875, 385.3033142089844, 0.890925943851471, 1073.1337890625, 426.2422180175781, 0.8670103549957275, 988.1203002929688, 783.8895263671875, 0.8853513598442078, 1087.462646484375, 787.0037231445312, 0.9530803561210632], "score": 2.928236484527588, "box": [948.2948608398438, 193.4078826904297, 263.32318115234375, 622.1731109619141], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06194956600666046, 0.09260831028223038, -0.019182836636900902], [-0.05632220208644867, 0.08566352725028992, 0.04231344163417816], [0.010370109230279922, -0.10576541721820831, 0.014125058427453041], [-0.06056157499551773, 0.4523593783378601, -0.06542668491601944], [-0.0007659022230654955, 0.4638805389404297, 0.11853368580341339], [0.0013919861521571875, -0.23240305483341217, -0.02362585999071598], [-0.1750364750623703, 0.8378973603248596, -0.022668739780783653], [0.14990995824337006, 0.8213310837745667, 0.23215557634830475], [-0.009762952104210854, -0.26935386657714844, -0.06483135372400284], [-0.23797622323036194, 0.9196392893791199, -0.10706746578216553], [0.06771300733089447, 0.9214097857475281, 0.2005210667848587], [-0.0330461747944355, -0.48022860288619995, -0.08135399222373962], [0.053802549839019775, -0.39800912141799927, -0.07547786831855774], [-0.09561014175415039, -0.38390427827835083, -0.04819148778915405], [-0.02913666144013405, -0.5259666442871094, -0.15079279243946075], [0.13760967552661896, -0.43368852138519287, -0.09070420265197754], [-0.1922535002231598, -0.39435726404190063, -0.047172024846076965], [0.3760858476161957, -0.33345597982406616, -0.038172051310539246], [-0.3263450264930725, -0.1754843145608902, -0.05380423739552498], [0.22994904220104218, -0.22961203753948212, -0.21222257614135742], [-0.172414630651474, -0.10441805422306061, -0.24703726172447205], [0.20192889869213104, -0.24909047782421112, -0.2891482710838318], [-0.11998838931322098, -0.09619505703449249, -0.3121100962162018]]}, {"image_id": "63.jpg", "category_id": 1, "keypoints": [1229.697265625, 481.6346740722656, 0.9840075969696045, 1249.7388916015625, 515.6608276367188, 0.9892317652702332, 1211.091796875, 513.9722900390625, 0.9881430864334106, 1237.158203125, 443.08233642578125, 0.9927526116371155, 1241.82861328125, 659.8369750976562, 0.9671245217323303, 1221.8087158203125, 653.2144775390625, 0.9823462963104248, 1235.6536865234375, 392.8731689453125, 0.9844743609428406, 1235.4805908203125, 794.912353515625, 0.8607190847396851, 1266.27880859375, 777.9915161132812, 0.9127518534660339, 1231.9970703125, 373.9348449707031, 0.9868102073669434, 1208.130859375, 818.459228515625, 0.8481605052947998, 1219.6865234375, 807.4871826171875, 0.9603318572044373, 1235.7042236328125, 296.4547119140625, 0.989185631275177, 1259.5767822265625, 326.2120666503906, 0.98550945520401, 1211.9688720703125, 332.162109375, 0.9921669960021973, 1223.0931396484375, 277.6412353515625, 0.9583202004432678, 1289.753173828125, 306.9791564941406, 0.9735790491104126, 1193.138427734375, 321.55438232421875, 0.977862536907196, 1353.0037841796875, 239.19287109375, 0.9514185786247253, 1132.2703857421875, 338.8663635253906, 0.9729938507080078, 1306.048095703125, 199.73764038085938, 0.983913242816925, 1079.5889892578125, 376.5292053222656, 0.9567086696624756, 1295.092041015625, 187.12957763671875, 0.9712411165237427, 1059.4285888671875, 337.86651611328125, 0.9491943120956421, 1203.29736328125, 206.83694458007812, 0.9599958658218384, 1288.2957763671875, 169.53884887695312, 0.9719029068946838, 1039.1907958984375, 309.82073974609375, 0.9487419128417969, 1200.65576171875, 823.7601318359375, 0.8537499904632568, 1202.12158203125, 808.0865478515625, 0.9695794582366943], "score": 3.177973985671997, "box": [957.392333984375, 181.77210998535156, 429.6148681640625, 643.9767913818359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04967963322997093, 0.09255713224411011, -0.033512014895677567], [-0.0459611676633358, 0.08203079551458359, 0.053088441491127014], [0.016723521053791046, -0.10113346576690674, 0.010622972622513771], [0.028238199651241302, 0.4735417664051056, -0.039387792348861694], [-0.010425692424178123, 0.4594888687133789, 0.13364575803279877], [0.013088804669678211, -0.22842371463775635, -0.01724383421242237], [0.0067372992634773254, 0.8712116479873657, -0.07014188915491104], [0.12436159700155258, 0.812464714050293, 0.2612612843513489], [-0.0008208516519516706, -0.2764863073825836, -0.03879664093255997], [-0.09055820107460022, 0.9483157992362976, -0.11271947622299194], [0.013499481603503227, 0.8811050057411194, 0.25003549456596375], [0.013056864961981773, -0.4821748733520508, -0.01640787161886692], [0.07437093555927277, -0.3920568823814392, -0.05797427147626877], [-0.045315761119127274, -0.39132028818130493, 0.026734547689557076], [-0.025713393464684486, -0.5279553532600403, -0.07430817186832428], [0.14890290796756744, -0.4294058680534363, -0.09100118279457092], [-0.1075965091586113, -0.4327884912490845, 0.08412636816501617], [0.295436292886734, -0.5918757915496826, -0.2328500747680664], [-0.31818827986717224, -0.3791801929473877, 0.2140752524137497], [0.17000067234039307, -0.7295590043067932, -0.07197502255439758], [-0.508610188961029, -0.24069583415985107, 0.11934061348438263], [0.13839109241962433, -0.7793864607810974, -0.014697348698973656], [-0.5466731786727905, -0.31325799226760864, 0.1158808171749115]]}, {"image_id": "63.jpg", "category_id": 1, "keypoints": [1079.7281494140625, 470.7059631347656, 0.9728293418884277, 1099.98779296875, 500.9904479980469, 0.9884572625160217, 1060.7650146484375, 501.66119384765625, 0.98487788438797, 1082.6845703125, 430.23895263671875, 0.9946284294128418, 1057.1475830078125, 632.9180908203125, 0.9769675135612488, 1076.71826171875, 636.5767822265625, 0.9735562801361084, 1079.71728515625, 387.1081237792969, 0.9822589159011841, 1017.1482543945312, 757.0924682617188, 0.9018682837486267, 1125.9752197265625, 754.5462036132812, 0.9402216076850891, 1076.439208984375, 373.76873779296875, 0.984847903251648, 997.6202392578125, 783.17431640625, 0.8549067974090576, 1102.162353515625, 783.7552490234375, 0.9334830641746521, 1068.52734375, 299.6651611328125, 0.9871715307235718, 1097.968505859375, 329.01904296875, 0.9907093644142151, 1046.1453857421875, 334.1554260253906, 0.9862774610519409, 1069.8524169921875, 282.41424560546875, 0.9432970285415649, 1127.24951171875, 316.19390869140625, 0.9797180891036987, 1015.3190307617188, 330.7774963378906, 0.9866824150085449, 1193.844482421875, 343.853515625, 0.9572434425354004, 965.8228149414062, 402.1836853027344, 0.9628547430038452, 1146.99658203125, 381.01995849609375, 0.9504942893981934, 1019.0906372070312, 424.3390808105469, 0.958420991897583, 1144.5784912109375, 376.73297119140625, 0.9501028656959534, 1038.240478515625, 426.7814636230469, 0.9128664135932922, 1073.974609375, 204.38018798828125, 0.9469406008720398, 1128.533203125, 384.079833984375, 0.9083997011184692, 1069.968017578125, 424.8010559082031, 0.8347152471542358, 988.7816162109375, 782.341796875, 0.9133618474006653, 1087.9598388671875, 786.0919189453125, 0.9514390826225281], "score": 2.9399499893188477, "box": [943.8673706054688, 193.13490295410156, 264.51373291015625, 621.8823089599609], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06336784362792969, 0.09120327979326248, -0.021939830854535103], [-0.055415742099285126, 0.08774049580097198, 0.03959955647587776], [0.008977122604846954, -0.10564899444580078, 0.0174700990319252], [-0.06647910177707672, 0.4476357400417328, -0.0716165155172348], [-0.0025334367528557777, 0.467654824256897, 0.10767646133899689], [-0.0012229772983118892, -0.2313319444656372, -0.022824972867965698], [-0.18829040229320526, 0.8310701251029968, -0.030955050140619278], [0.15025721490383148, 0.8273758888244629, 0.2107284516096115], [-0.013052650727331638, -0.2667926549911499, -0.06525330245494843], [-0.2549373507499695, 0.912135660648346, -0.1132141649723053], [0.06573687493801117, 0.9277505278587341, 0.18677331507205963], [-0.03615525737404823, -0.4776098132133484, -0.0864788144826889], [0.0508246049284935, -0.39533209800720215, -0.07944299280643463], [-0.09888890385627747, -0.38207435607910156, -0.050665076822042465], [-0.03488725796341896, -0.5213965773582458, -0.1571185290813446], [0.13446253538131714, -0.43112194538116455, -0.09646280109882355], [-0.19574132561683655, -0.3927353024482727, -0.049985114485025406], [0.3766458034515381, -0.3344113230705261, -0.05632052943110466], [-0.3415778875350952, -0.18181905150413513, -0.06230497732758522], [0.23117777705192566, -0.21842226386070251, -0.22304265201091766], [-0.19449111819267273, -0.11146819591522217, -0.26095521450042725], [0.21130789816379547, -0.24093779921531677, -0.301734060049057], [-0.14142756164073944, -0.10208368301391602, -0.3254561722278595]]}, {"image_id": "64.jpg", "category_id": 1, "keypoints": [1229.5570068359375, 477.05755615234375, 0.9837561249732971, 1249.8017578125, 510.6319580078125, 0.9886822700500488, 1210.922119140625, 510.869384765625, 0.9875261783599854, 1236.0712890625, 439.0067138671875, 0.9925523400306702, 1243.9166259765625, 655.1937866210938, 0.9646190404891968, 1229.3287353515625, 649.2485961914062, 0.9835532307624817, 1234.6982421875, 389.4564514160156, 0.9852926731109619, 1230.9970703125, 793.228271484375, 0.8710898160934448, 1274.4774169921875, 774.917236328125, 0.9197461009025574, 1230.86572265625, 370.72344970703125, 0.9875454902648926, 1202.9547119140625, 812.3671875, 0.8355283737182617, 1230.34619140625, 802.41943359375, 0.9596174955368042, 1234.0826416015625, 293.50823974609375, 0.989398717880249, 1258.4761962890625, 322.52630615234375, 0.9854837656021118, 1210.11572265625, 329.20599365234375, 0.9921219944953918, 1220.99560546875, 275.0995788574219, 0.9595213532447815, 1288.8551025390625, 303.799072265625, 0.9712775945663452, 1191.2008056640625, 319.38623046875, 0.980309247970581, 1352.98486328125, 233.06539916992188, 0.9456461071968079, 1131.9906005859375, 335.5688171386719, 0.9753682017326355, 1305.0223388671875, 197.26089477539062, 0.982734203338623, 1078.64697265625, 380.0652160644531, 0.9537767171859741, 1292.63232421875, 187.629638671875, 0.9690766334533691, 1060.7628173828125, 343.6878662109375, 0.946929395198822, 1199.662109375, 204.78469848632812, 0.9604418873786926, 1284.944580078125, 176.12677001953125, 0.975898027420044, 1048.3414306640625, 311.858642578125, 0.9561294317245483, 1194.2064208984375, 815.8018798828125, 0.8461682796478271, 1209.9049072265625, 802.00244140625, 0.9566411972045898], "score": 3.179157257080078, "box": [957.6203002929688, 178.9860076904297, 427.33367919921875, 644.4577178955078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.051230400800704956, 0.0916450172662735, -0.03467138856649399], [-0.04481801018118858, 0.08346016705036163, 0.05250900611281395], [0.01539159007370472, -0.10181793570518494, 0.011804603040218353], [0.0351843424141407, 0.47234630584716797, -0.04064055532217026], [0.011463833972811699, 0.4581904411315918, 0.1320091187953949], [0.009786220267415047, -0.2303450107574463, -0.011258359998464584], [-0.004807571414858103, 0.8683996200561523, -0.07185015082359314], [0.1475568562746048, 0.8116158246994019, 0.2567283511161804], [-0.0022807889617979527, -0.2801508903503418, -0.030594389885663986], [-0.10705656558275223, 0.9306391477584839, -0.12603627145290375], [0.03602919355034828, 0.8800325393676758, 0.2487923800945282], [0.009286081418395042, -0.48756933212280273, -0.018211839720606804], [0.07185735553503036, -0.3960225582122803, -0.05590546876192093], [-0.04836462810635567, -0.3980087637901306, 0.02968050166964531], [-0.03063778765499592, -0.5320677757263184, -0.07626688480377197], [0.14397098124027252, -0.4401451349258423, -0.08710119128227234], [-0.11161031574010849, -0.4371999502182007, 0.08840706944465637], [0.2881642282009125, -0.6048738956451416, -0.22856974601745605], [-0.31457003951072693, -0.3889053463935852, 0.2318398356437683], [0.15899252891540527, -0.7329503893852234, -0.0626654177904129], [-0.49737200140953064, -0.2347756028175354, 0.14687539637088776], [0.12072489410638809, -0.7743707895278931, -0.002537079155445099], [-0.5338001847267151, -0.30701613426208496, 0.1323249489068985]]}, {"image_id": "64.jpg", "category_id": 1, "keypoints": [1079.7611083984375, 471.05572509765625, 0.9745303988456726, 1099.7947998046875, 501.0798034667969, 0.9857862591743469, 1061.003662109375, 503.16241455078125, 0.986982524394989, 1082.66064453125, 430.6181640625, 0.994910478591919, 1057.0439453125, 633.6325073242188, 0.9764482378959656, 1079.363525390625, 637.916015625, 0.9723727703094482, 1079.588623046875, 386.503173828125, 0.9800594449043274, 1020.3133544921875, 759.2950439453125, 0.9083279371261597, 1125.5205078125, 757.3969116210938, 0.9463703036308289, 1075.9764404296875, 373.1116027832031, 0.9843650460243225, 1002.4174194335938, 783.4591064453125, 0.8423928022384644, 1100.899169921875, 784.8343505859375, 0.923271894454956, 1067.26611328125, 299.15191650390625, 0.9871493577957153, 1097.5062255859375, 328.251220703125, 0.9916509389877319, 1045.600830078125, 333.8741760253906, 0.9867857694625854, 1068.620361328125, 281.4921569824219, 0.9445447325706482, 1126.4490966796875, 315.1391906738281, 0.9799230098724365, 1014.82568359375, 331.09423828125, 0.9856008291244507, 1178.529541015625, 368.262451171875, 0.9602797031402588, 965.5015869140625, 399.7484436035156, 0.9645987749099731, 1119.720947265625, 403.9010925292969, 0.9400272965431213, 1015.0455322265625, 422.6174621582031, 0.9587959051132202, 1105.6298828125, 406.0318298339844, 0.94338059425354, 1033.7281494140625, 424.221435546875, 0.9133461713790894, 1069.4002685546875, 204.65280151367188, 0.9466449618339539, 1072.455810546875, 416.33233642578125, 0.9016274809837341, 1064.1756591796875, 419.99359130859375, 0.8176689743995667, 996.6423950195312, 781.2640380859375, 0.9041997194290161, 1088.8189697265625, 788.133056640625, 0.9493229985237122], "score": 2.9102792739868164, "box": [956.5753784179688, 190.13009643554688, 233.98077392578125, 631.3324279785156], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06249980255961418, 0.09012977033853531, -0.028505459427833557], [-0.05320322886109352, 0.08945202827453613, 0.039177630096673965], [0.00964929349720478, -0.10525016486644745, 0.0209713913500309], [-0.06676452606916428, 0.44568783044815063, -0.08189893513917923], [0.004852140787988901, 0.46835052967071533, 0.10614606738090515], [-0.0013364370679482818, -0.2322891801595688, -0.015301108360290527], [-0.17840148508548737, 0.8324049711227417, -0.047239337116479874], [0.14797155559062958, 0.8318063616752625, 0.20867875218391418], [-0.014020923525094986, -0.26802337169647217, -0.05745081603527069], [-0.24417036771774292, 0.9130743145942688, -0.13063187897205353], [0.0589640848338604, 0.9274583458900452, 0.18155495822429657], [-0.038926009088754654, -0.4792139530181885, -0.07627162337303162], [0.048827942460775375, -0.39715492725372314, -0.07387901097536087], [-0.09981457889080048, -0.383050799369812, -0.038187816739082336], [-0.03756117820739746, -0.5234339237213135, -0.1466168314218521], [0.1313284933567047, -0.43346327543258667, -0.09588983654975891], [-0.1969699114561081, -0.39215922355651855, -0.033393505960702896], [0.3162081241607666, -0.24561189115047455, -0.09019500017166138], [-0.3457106649875641, -0.18421606719493866, -0.05461098998785019], [0.15115632116794586, -0.1435847133398056, -0.24737538397312164], [-0.21040792763233185, -0.11221753060817719, -0.2606717646121979], [0.10001520067453384, -0.13344581425189972, -0.31361883878707886], [-0.15994007885456085, -0.10523365437984467, -0.32760071754455566]]}, {"image_id": "65.jpg", "category_id": 1, "keypoints": [1234.8355712890625, 475.2342834472656, 0.9829038977622986, 1254.6785888671875, 508.97747802734375, 0.9887550473213196, 1216.2247314453125, 509.28546142578125, 0.9887511134147644, 1241.2091064453125, 437.14007568359375, 0.9926913380622864, 1245.1451416015625, 654.5661010742188, 0.9681224822998047, 1230.8116455078125, 648.9758911132812, 0.9859769344329834, 1239.3994140625, 387.5487060546875, 0.9838277697563171, 1232.1995849609375, 793.0841674804688, 0.8616864085197449, 1275.2667236328125, 775.0577392578125, 0.9250132441520691, 1234.4549560546875, 368.849365234375, 0.9859870076179504, 1204.2703857421875, 812.6262817382812, 0.8226445317268372, 1232.1519775390625, 801.787109375, 0.9568595886230469, 1235.5699462890625, 290.8868408203125, 0.9894794821739197, 1261.3931884765625, 319.5777893066406, 0.9839458465576172, 1212.7342529296875, 327.22540283203125, 0.9932020902633667, 1221.5362548828125, 271.38128662109375, 0.9558025598526001, 1289.5096435546875, 300.2415771484375, 0.9691237211227417, 1192.7685546875, 317.694580078125, 0.9868487119674683, 1352.662841796875, 227.63638305664062, 0.9333345890045166, 1128.77880859375, 338.8458557128906, 0.9758807420730591, 1305.191650390625, 194.87088012695312, 0.9798921942710876, 1072.306396484375, 387.773681640625, 0.9546314477920532, 1293.002685546875, 185.47918701171875, 0.969558835029602, 1052.3555908203125, 353.57623291015625, 0.9478079080581665, 1196.2725830078125, 203.00323486328125, 0.9636666774749756, 1285.9869384765625, 174.33477783203125, 0.9666600823402405, 1036.899658203125, 325.68804931640625, 0.9302960634231567, 1195.508544921875, 814.809326171875, 0.824607253074646, 1215.841552734375, 800.344482421875, 0.950789213180542], "score": 3.1798815727233887, "box": [959.53125, 175.9121551513672, 425.90576171875, 649.8869171142578], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.050108976662158966, 0.0913621336221695, -0.037609897553920746], [-0.04435821622610092, 0.084398552775383, 0.05185751989483833], [0.016310814768075943, -0.10175551474094391, 0.013585440814495087], [0.023227298632264137, 0.47106003761291504, -0.0594949945807457], [0.00174930808134377, 0.4596560001373291, 0.13652403652668], [0.009860063903033733, -0.2309534102678299, -0.005750315263867378], [-0.01653524674475193, 0.8678160309791565, -0.08826754987239838], [0.13569076359272003, 0.8124619126319885, 0.26686984300613403], [-0.005085167475044727, -0.2807055711746216, -0.023514466360211372], [-0.11974037438631058, 0.933210551738739, -0.13704927265644073], [0.023846274241805077, 0.8807109594345093, 0.2588353455066681], [0.0003499437589198351, -0.48851895332336426, -0.007566148415207863], [0.06503456830978394, -0.39954882860183716, -0.04840151220560074], [-0.053642529994249344, -0.3962510824203491, 0.03999858722090721], [-0.03993454575538635, -0.5330044031143188, -0.06532758474349976], [0.13389523327350616, -0.44676274061203003, -0.08280684053897858], [-0.11883411556482315, -0.4334855079650879, 0.09819620847702026], [0.267288476228714, -0.606995701789856, -0.23971182107925415], [-0.3315841853618622, -0.36873549222946167, 0.21984615921974182], [0.14000552892684937, -0.726804256439209, -0.06588876247406006], [-0.5098162889480591, -0.2127259224653244, 0.12802796065807343], [0.10645182430744171, -0.7651693820953369, -0.0009180568158626556], [-0.5509215593338013, -0.28089094161987305, 0.10692769289016724]]}, {"image_id": "65.jpg", "category_id": 1, "keypoints": [1079.392333984375, 469.4992980957031, 0.9747551679611206, 1099.568603515625, 499.57940673828125, 0.9864875674247742, 1060.82861328125, 501.54876708984375, 0.9871056079864502, 1082.5927734375, 429.18603515625, 0.9950373768806458, 1056.2542724609375, 633.817138671875, 0.976729154586792, 1078.1790771484375, 635.9989624023438, 0.9725044965744019, 1078.889404296875, 384.6651306152344, 0.982433021068573, 1019.4788818359375, 761.0840454101562, 0.9002458453178406, 1124.9266357421875, 756.06591796875, 0.9414181709289551, 1075.505859375, 371.097412109375, 0.9850515723228455, 1000.5117797851562, 783.1150512695312, 0.8372811079025269, 1097.4556884765625, 783.5494384765625, 0.9209021329879761, 1067.768798828125, 296.7511901855469, 0.9873592257499695, 1097.6243896484375, 326.5572204589844, 0.9910441637039185, 1045.249267578125, 331.0989990234375, 0.9869797229766846, 1069.9798583984375, 279.13482666015625, 0.9462754726409912, 1126.3272705078125, 314.04705810546875, 0.9808722138404846, 1013.68798828125, 327.25738525390625, 0.9868729710578918, 1168.5184326171875, 379.0279541015625, 0.9559674859046936, 963.1638793945312, 397.6122741699219, 0.9620456099510193, 1111.626220703125, 408.2731018066406, 0.9487230777740479, 1011.200927734375, 419.4651794433594, 0.9639350771903992, 1096.355224609375, 410.6343688964844, 0.9475579857826233, 1030.259033203125, 422.2099304199219, 0.9126362800598145, 1070.26806640625, 202.83013916015625, 0.9496655464172363, 1063.5194091796875, 421.7237548828125, 0.8872961401939392, 1061.053955078125, 418.47467041015625, 0.816544234752655, 994.685302734375, 780.0425415039062, 0.8965582847595215, 1083.013671875, 787.078125, 0.9444838762283325], "score": 2.9299821853637695, "box": [953.2849731445312, 189.1940460205078, 238.15509033203125, 630.8049774169922], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06227608770132065, 0.09060010313987732, -0.027758115902543068], [-0.05241392180323601, 0.08889055252075195, 0.0416075699031353], [0.009740528650581837, -0.10571405291557312, 0.018916986882686615], [-0.06684450060129166, 0.4475964307785034, -0.07382731139659882], [-0.0009742277907207608, 0.46778640151023865, 0.11568625271320343], [-0.0023740408942103386, -0.23309651017189026, -0.016487184911966324], [-0.17734397947788239, 0.8349515795707703, -0.038073595613241196], [0.1432299017906189, 0.8312564492225647, 0.21816977858543396], [-0.01450344454497099, -0.26949939131736755, -0.05831238627433777], [-0.24795375764369965, 0.9088813066482544, -0.12390616536140442], [0.0488894060254097, 0.9226270318031311, 0.19381679594516754], [-0.03629500791430473, -0.4812955856323242, -0.07567806541919708], [0.050294823944568634, -0.3979140520095825, -0.07324659079313278], [-0.09880130738019943, -0.3856344223022461, -0.038720861077308655], [-0.032459430396556854, -0.5258767008781433, -0.14585302770137787], [0.1333433836698532, -0.4330151081085205, -0.09524160623550415], [-0.1957562416791916, -0.39763712882995605, -0.035888753831386566], [0.27728626132011414, -0.21182134747505188, -0.0920468419790268], [-0.34491240978240967, -0.18920361995697021, -0.05228773504495621], [0.10872422903776169, -0.12235316634178162, -0.253524512052536], [-0.2116033136844635, -0.11883401870727539, -0.260560542345047], [0.05479228124022484, -0.11176291108131409, -0.3175525367259979], [-0.16040095686912537, -0.10871613025665283, -0.3266333341598511]]}, {"image_id": "66.jpg", "category_id": 1, "keypoints": [1230.94970703125, 471.7156066894531, 0.9844595789909363, 1251.338134765625, 504.8577575683594, 0.9890996217727661, 1212.939208984375, 505.3710632324219, 0.988305389881134, 1237.5931396484375, 433.491455078125, 0.9935685396194458, 1245.117919921875, 650.0787353515625, 0.9677753448486328, 1231.9210205078125, 644.4791259765625, 0.985004723072052, 1235.6024169921875, 383.3323974609375, 0.9820793271064758, 1231.1070556640625, 791.3268432617188, 0.8670240640640259, 1274.46923828125, 771.5865478515625, 0.9251248240470886, 1230.4857177734375, 364.77294921875, 0.9853381514549255, 1202.13232421875, 810.328125, 0.8143392205238342, 1234.672607421875, 800.4076538085938, 0.9668986797332764, 1232.8739013671875, 287.593994140625, 0.9888385534286499, 1257.7579345703125, 316.43914794921875, 0.9837946891784668, 1210.35546875, 323.5981140136719, 0.9926043748855591, 1218.5078125, 268.4217529296875, 0.955676794052124, 1286.52880859375, 297.1146240234375, 0.9630184173583984, 1191.892822265625, 313.87457275390625, 0.9853325486183167, 1349.019775390625, 227.5849609375, 0.9373334646224976, 1130.8055419921875, 339.05816650390625, 0.9746401906013489, 1301.9293212890625, 195.1070556640625, 0.9819847941398621, 1071.4521484375, 387.38385009765625, 0.955767810344696, 1291.0037841796875, 183.58395385742188, 0.9718540906906128, 1050.1982421875, 358.19549560546875, 0.9284809231758118, 1191.3040771484375, 201.0361328125, 0.9585335850715637, 1284.128173828125, 163.26806640625, 0.9716837406158447, 1035.487060546875, 320.10308837890625, 0.9424866437911987, 1192.9864501953125, 814.1802368164062, 0.84115070104599, 1212.7740478515625, 799.7909545898438, 0.962924599647522], "score": 3.1798412799835205, "box": [958.6178588867188, 178.0782928466797, 425.35980224609375, 645.0741729736328], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05074228346347809, 0.09156881272792816, -0.036047324538230896], [-0.042649973183870316, 0.08362437039613724, 0.054355647414922714], [0.015213899314403534, -0.102206289768219, 0.010979663580656052], [0.0343935489654541, 0.4721536636352539, -0.03656243532896042], [0.015101222321391106, 0.45738914608955383, 0.13686636090278625], [0.008285789750516415, -0.23129692673683167, -0.009193666279315948], [-0.0052843112498521805, 0.8695106506347656, -0.03935794532299042], [0.1440260261297226, 0.8163391947746277, 0.25343167781829834], [-0.00718289241194725, -0.2810822129249573, -0.02641397900879383], [-0.11305848509073257, 0.9351568222045898, -0.0762847363948822], [0.037400081753730774, 0.892250657081604, 0.24446430802345276], [0.004954420030117035, -0.48853617906570435, -0.009878935292363167], [0.06526452302932739, -0.39793860912323, -0.053721342235803604], [-0.049689941108226776, -0.39761781692504883, 0.039512749761343], [-0.03694232553243637, -0.5334246158599854, -0.06619930267333984], [0.1340705007314682, -0.4438821077346802, -0.08992581069469452], [-0.10849682986736298, -0.4356840252876282, 0.10368511080741882], [0.2681981027126312, -0.5992600321769714, -0.2506371736526489], [-0.3079148530960083, -0.35910964012145996, 0.2397054135799408], [0.14067429304122925, -0.7191580533981323, -0.07735975086688995], [-0.48865339159965515, -0.21003487706184387, 0.14209510385990143], [0.1107809767127037, -0.7645920515060425, -0.01527775451540947], [-0.5366073250770569, -0.2739883363246918, 0.12249830365180969]]}, {"image_id": "66.jpg", "category_id": 1, "keypoints": [1081.0130615234375, 470.225830078125, 0.97417813539505, 1101.19384765625, 500.7148132324219, 0.9852119088172913, 1062.1676025390625, 502.909912109375, 0.9863184690475464, 1084.216796875, 429.4425048828125, 0.9949103593826294, 1056.9725341796875, 635.6085205078125, 0.9763338565826416, 1079.0999755859375, 637.4505615234375, 0.9702290296554565, 1080.0767822265625, 385.0635681152344, 0.9816587567329407, 1017.015625, 763.8756103515625, 0.9020916223526001, 1124.5987548828125, 757.4874877929688, 0.9473650455474854, 1076.3299560546875, 371.70166015625, 0.9841967821121216, 995.1680908203125, 789.829345703125, 0.8518099784851074, 1096.710205078125, 784.9630737304688, 0.9234473705291748, 1067.1572265625, 296.95501708984375, 0.9868629574775696, 1097.55810546875, 326.5152587890625, 0.9915398359298706, 1045.8048095703125, 331.6845703125, 0.9880239963531494, 1069.2642822265625, 279.152099609375, 0.9490102529525757, 1126.263916015625, 313.4985656738281, 0.9795083403587341, 1014.41455078125, 328.7567138671875, 0.9857012033462524, 1178.2916259765625, 367.2581787109375, 0.9640561938285828, 960.7267456054688, 395.5589599609375, 0.9582879543304443, 1111.19140625, 405.62445068359375, 0.9470000863075256, 1007.9520874023438, 417.5955810546875, 0.9619784355163574, 1094.1922607421875, 407.8661804199219, 0.9462095499038696, 1026.552734375, 421.0055847167969, 0.9195222854614258, 1065.7589111328125, 200.49948120117188, 0.9448404908180237, 1061.4224853515625, 417.11663818359375, 0.8530957102775574, 1058.5604248046875, 419.18341064453125, 0.8518142700195312, 986.43896484375, 788.94482421875, 0.9140765070915222, 1081.053466796875, 789.251708984375, 0.9487704634666443], "score": 2.7841625213623047, "box": [953.96826171875, 185.5447998046875, 236.3629150390625, 638.3260498046875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06177457049489021, 0.09055881947278976, -0.029762182384729385], [-0.05210161954164505, 0.08943817019462585, 0.041386254131793976], [0.01031485479325056, -0.10575658082962036, 0.020115727558732033], [-0.06864812970161438, 0.4471830725669861, -0.07383862137794495], [-0.0017880338709801435, 0.4665803611278534, 0.12450841069221497], [-0.003608241444453597, -0.2329474687576294, -0.01632942445576191], [-0.1877824366092682, 0.8329563140869141, -0.048289231956005096], [0.13856130838394165, 0.829096794128418, 0.2360764741897583], [-0.0168014969676733, -0.2682512402534485, -0.05901031941175461], [-0.2612389922142029, 0.9129393100738525, -0.12609504163265228], [0.04297109693288803, 0.9218147993087769, 0.22411614656448364], [-0.04213668033480644, -0.47991934418678284, -0.07826529443264008], [0.04594375938177109, -0.39772990345954895, -0.07658690959215164], [-0.10270028561353683, -0.3835694491863251, -0.03913343697786331], [-0.03871200978755951, -0.5238603353500366, -0.14888373017311096], [0.12843692302703857, -0.4340241253376007, -0.09953706711530685], [-0.19997471570968628, -0.39306607842445374, -0.033027030527591705], [0.3124832510948181, -0.24474045634269714, -0.09258491545915604], [-0.3592612147331238, -0.19352135062217712, -0.06234195828437805], [0.13550125062465668, -0.1413407027721405, -0.23603278398513794], [-0.22942566871643066, -0.12315353751182556, -0.2729600667953491], [0.07805448770523071, -0.13151857256889343, -0.2972128391265869], [-0.17881067097187042, -0.11108237504959106, -0.3392941951751709]]}, {"image_id": "67.jpg", "category_id": 1, "keypoints": [1234.1907958984375, 473.3658142089844, 0.9848929047584534, 1255.106689453125, 506.53704833984375, 0.9919511675834656, 1218.282958984375, 507.0633239746094, 0.9881663918495178, 1240.062255859375, 435.0329895019531, 0.9928480386734009, 1248.533447265625, 652.9509887695312, 0.9725244641304016, 1229.81640625, 647.1637573242188, 0.980219304561615, 1236.270263671875, 384.50323486328125, 0.9813536405563354, 1236.487060546875, 795.3291625976562, 0.8921440243721008, 1264.4642333984375, 772.359130859375, 0.934302031993866, 1230.128173828125, 366.2406311035156, 0.9833155274391174, 1205.6448974609375, 811.8080444335938, 0.8112362623214722, 1221.65087890625, 802.8868408203125, 0.958580732345581, 1229.7962646484375, 288.23052978515625, 0.9894812107086182, 1254.8328857421875, 317.35540771484375, 0.9852213263511658, 1209.952392578125, 324.6597595214844, 0.9915202260017395, 1214.6181640625, 268.2694396972656, 0.9570598006248474, 1283.849609375, 297.16351318359375, 0.9749943614006042, 1189.808349609375, 316.1380615234375, 0.9856856465339661, 1341.0936279296875, 230.39633178710938, 0.9291553497314453, 1130.1346435546875, 350.05377197265625, 0.9735637903213501, 1301.3099365234375, 190.29083251953125, 0.9724200367927551, 1062.1138916015625, 408.957275390625, 0.9524400234222412, 1293.08154296875, 179.6026611328125, 0.9679168462753296, 1035.502685546875, 401.5999755859375, 0.908963680267334, 1185.377685546875, 196.95297241210938, 0.9525076746940613, 1289.371337890625, 161.1983642578125, 0.966513991355896, 1015.4801635742188, 377.0008544921875, 0.9164463877677917, 1200.6075439453125, 815.3536376953125, 0.8214964866638184, 1202.3658447265625, 805.8108520507812, 0.9695882797241211], "score": 3.1740543842315674, "box": [943.91748046875, 182.13124084472656, 442.076171875, 639.5390472412109], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.052304867655038834, 0.09105236828327179, -0.03524085134267807], [-0.03779870644211769, 0.08313465118408203, 0.05862656608223915], [0.012307679280638695, -0.10299809277057648, 0.007204253226518631], [0.03498784080147743, 0.47131216526031494, -0.03784782439470291], [-0.0003105213399976492, 0.46039044857025146, 0.1355748027563095], [0.00242065847851336, -0.22986094653606415, -0.023075737059116364], [0.0021540599409490824, 0.8690182566642761, -0.029304204508662224], [0.10965145379304886, 0.8248434066772461, 0.25389936566352844], [-0.015795813873410225, -0.2780712842941284, -0.04210624098777771], [-0.10914622247219086, 0.9226905107498169, -0.07420399785041809], [0.0027118513826280832, 0.8982991576194763, 0.23446716368198395], [-0.012673595920205116, -0.4854150414466858, -0.018906060606241226], [0.05113780125975609, -0.3989965319633484, -0.06638865172863007], [-0.06276216357946396, -0.390533447265625, 0.028073161840438843], [-0.05582797899842262, -0.531640350818634, -0.0731048732995987], [0.11882298439741135, -0.44588738679885864, -0.10370588302612305], [-0.12456020712852478, -0.42329925298690796, 0.09248997271060944], [0.23932117223739624, -0.5940877199172974, -0.2809753119945526], [-0.3170590102672577, -0.3176547884941101, 0.2184859663248062], [0.13993677496910095, -0.7335699200630188, -0.10410764813423157], [-0.485469788312912, -0.17018888890743256, 0.09912607073783875], [0.11874036490917206, -0.7779384255409241, -0.037812333554029465], [-0.5574477314949036, -0.1882731169462204, 0.0635327696800232]]}, {"image_id": "67.jpg", "category_id": 1, "keypoints": [1082.5753173828125, 469.15631103515625, 0.97580486536026, 1103.5665283203125, 498.7402648925781, 0.9861346483230591, 1064.0640869140625, 501.03778076171875, 0.9863433241844177, 1085.6826171875, 428.6856384277344, 0.9945520162582397, 1055.4920654296875, 631.7659301757812, 0.9740394949913025, 1079.4864501953125, 637.7544555664062, 0.9758113026618958, 1081.537353515625, 384.56439208984375, 0.9812672734260559, 1020.2991943359375, 764.317138671875, 0.9214845895767212, 1127.6746826171875, 757.9019775390625, 0.9325169324874878, 1078.06103515625, 371.0531005859375, 0.9831149578094482, 1002.616455078125, 787.08203125, 0.8194202184677124, 1100.16259765625, 782.2691650390625, 0.9387717247009277, 1068.7154541015625, 298.3599853515625, 0.9863995909690857, 1099.380126953125, 327.08648681640625, 0.9915041327476501, 1047.18505859375, 332.57275390625, 0.9893056750297546, 1071.6331787109375, 278.84100341796875, 0.9481927156448364, 1127.0262451171875, 315.32220458984375, 0.9804244637489319, 1015.3801879882812, 330.13897705078125, 0.9846861362457275, 1165.2418212890625, 388.8047180175781, 0.9586279392242432, 960.8511962890625, 393.99041748046875, 0.9608923196792603, 1103.7452392578125, 409.629638671875, 0.947773814201355, 1005.5518798828125, 416.90740966796875, 0.9613635540008545, 1086.1240234375, 411.7565002441406, 0.9520429968833923, 1023.911376953125, 419.8445739746094, 0.9188092947006226, 1060.649169921875, 202.77548217773438, 0.9492968916893005, 1058.179931640625, 415.3404541015625, 0.8194430470466614, 1056.8145751953125, 417.7762145996094, 0.8497717380523682, 994.3652954101562, 784.00927734375, 0.8889685273170471, 1086.601806640625, 788.8702392578125, 0.9443467259407043], "score": 2.6471052169799805, "box": [954.716064453125, 177.72923278808594, 240.2969970703125, 658.5729522705078], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0628044605255127, 0.08924197405576706, -0.028342008590698242], [-0.05209118872880936, 0.08948298543691635, 0.03885361924767494], [0.008626481518149376, -0.10448217391967773, 0.020746447145938873], [-0.07727110385894775, 0.43951350450515747, -0.08842134475708008], [-0.0027941735461354256, 0.4686553478240967, 0.1095166951417923], [-0.0037448862567543983, -0.23111146688461304, -0.01553872600197792], [-0.18141824007034302, 0.8279846906661987, -0.11541850864887238], [0.14431214332580566, 0.8289574384689331, 0.21357619762420654], [-0.01596229150891304, -0.2670970559120178, -0.05709988996386528], [-0.251720666885376, 0.9113448858261108, -0.1915399581193924], [0.04459170252084732, 0.9168679714202881, 0.20997075736522675], [-0.04242492467164993, -0.47694507241249084, -0.07595978677272797], [0.04539911448955536, -0.3960140645503998, -0.07174922525882721], [-0.10245959460735321, -0.3805461823940277, -0.039314813911914825], [-0.036534447222948074, -0.5264216661453247, -0.14264452457427979], [0.12774913012981415, -0.429921418428421, -0.09551199525594711], [-0.19910158216953278, -0.3882431089878082, -0.03478006273508072], [0.24762634932994843, -0.1963648796081543, -0.11348932981491089], [-0.3638339340686798, -0.19414883852005005, -0.06138620525598526], [0.06665538251399994, -0.13106325268745422, -0.27166497707366943], [-0.2381441295146942, -0.12011376023292542, -0.2721262276172638], [0.005865379236638546, -0.12171825766563416, -0.3287794291973114], [-0.18896405398845673, -0.1095312237739563, -0.33908167481422424]]}, {"image_id": "68.jpg", "category_id": 1, "keypoints": [1228.9776611328125, 471.05633544921875, 0.9844458103179932, 1251.2152099609375, 503.8431091308594, 0.9900937676429749, 1211.65185546875, 505.033447265625, 0.9877838492393494, 1234.837890625, 432.24395751953125, 0.993784487247467, 1244.78173828125, 650.29150390625, 0.9722973108291626, 1228.9530029296875, 643.8515014648438, 0.980474054813385, 1231.929443359375, 380.969970703125, 0.9819036722183228, 1231.6644287109375, 794.9158935546875, 0.8523221611976624, 1268.970703125, 767.1229248046875, 0.9166824817657471, 1226.9892578125, 362.3668212890625, 0.9859958291053772, 1200.174560546875, 812.5517578125, 0.7647793292999268, 1230.1534423828125, 796.5672607421875, 0.9654322266578674, 1229.4542236328125, 283.21795654296875, 0.9900721311569214, 1254.676513671875, 312.6439208984375, 0.9849358201026917, 1206.993408203125, 319.87750244140625, 0.9915147423744202, 1214.8792724609375, 264.23248291015625, 0.9538264870643616, 1285.541015625, 293.285888671875, 0.9757273197174072, 1188.9859619140625, 310.89239501953125, 0.9852394461631775, 1345.25732421875, 219.7781982421875, 0.9144669771194458, 1129.7449951171875, 334.86761474609375, 0.973808765411377, 1300.334228515625, 192.51412963867188, 0.9802013635635376, 1070.6513671875, 389.9942321777344, 0.9540078639984131, 1289.409423828125, 185.463134765625, 0.9711167812347412, 1047.181884765625, 375.17523193359375, 0.9166090488433838, 1181.65283203125, 195.18734741210938, 0.9615088105201721, 1282.581787109375, 177.58755493164062, 0.9602572321891785, 1042.2978515625, 338.4553527832031, 0.9479950070381165, 1196.261962890625, 814.738525390625, 0.797953188419342, 1212.2344970703125, 799.9658203125, 0.964728832244873], "score": 3.1834917068481445, "box": [955.15087890625, 171.1163330078125, 424.9293212890625, 660.05615234375], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.054063208401203156, 0.09024184942245483, -0.0341760516166687], [-0.040530942380428314, 0.0842118114233017, 0.05483640730381012], [0.01171339675784111, -0.10263855755329132, 0.00980730727314949], [0.03640206903219223, 0.47017931938171387, -0.04497555270791054], [0.01290467195212841, 0.4569318890571594, 0.14274358749389648], [0.005236205644905567, -0.23026366531848907, -0.018361825495958328], [0.00039174617268145084, 0.86732017993927, -0.044862404465675354], [0.1381581425666809, 0.8166190385818481, 0.25903210043907166], [-0.009698426350951195, -0.27966564893722534, -0.03698698431253433], [-0.11361834406852722, 0.9282338619232178, -0.06812239438295364], [0.03338707610964775, 0.894790768623352, 0.249945268034935], [0.00023674149997532368, -0.48644930124282837, -0.014082642272114754], [0.06164863333106041, -0.39787757396698, -0.06021031737327576], [-0.05371027812361717, -0.3935888409614563, 0.032091960310935974], [-0.0419037826359272, -0.5306513905525208, -0.0707734003663063], [0.1328093707561493, -0.442066490650177, -0.09371508657932281], [-0.11147193610668182, -0.4294612407684326, 0.09828124195337296], [0.25379976630210876, -0.5879559516906738, -0.27230939269065857], [-0.30349212884902954, -0.358029842376709, 0.2466306835412979], [0.13645094633102417, -0.6917749047279358, -0.08266657590866089], [-0.47416314482688904, -0.1974143236875534, 0.15000654757022858], [0.1085830107331276, -0.7223106622695923, -0.011350376531481743], [-0.5419245958328247, -0.2387416809797287, 0.12863832712173462]]}, {"image_id": "68.jpg", "category_id": 1, "keypoints": [1081.5975341796875, 470.0688781738281, 0.9759700298309326, 1100.857177734375, 500.9625549316406, 0.9854187369346619, 1063.524658203125, 502.6345520019531, 0.9876812100410461, 1085.521240234375, 429.31219482421875, 0.9947901368141174, 1056.097412109375, 635.8505249023438, 0.9704530239105225, 1078.703125, 638.162353515625, 0.9672455191612244, 1080.3399658203125, 385.16265869140625, 0.9796271920204163, 1017.6690063476562, 765.5547485351562, 0.9078400135040283, 1127.8770751953125, 759.3819580078125, 0.9391832947731018, 1075.9512939453125, 372.01910400390625, 0.9854133725166321, 995.7560424804688, 791.2571411132812, 0.8339819312095642, 1098.2393798828125, 785.4879760742188, 0.9092953205108643, 1068.136474609375, 297.1866455078125, 0.9871505498886108, 1097.7763671875, 326.9110107421875, 0.9921123385429382, 1047.273193359375, 331.4300537109375, 0.9877660274505615, 1069.214111328125, 279.552978515625, 0.9504368901252747, 1126.378662109375, 314.48443603515625, 0.9778469800949097, 1016.4708251953125, 327.480224609375, 0.9833478331565857, 1178.5572509765625, 365.09051513671875, 0.9749557971954346, 957.4292602539062, 391.2842712402344, 0.9599325060844421, 1104.82177734375, 401.501953125, 0.9465134739875793, 1002.3139038085938, 411.5670471191406, 0.9558349251747131, 1084.9334716796875, 407.002197265625, 0.9484195113182068, 1023.1784057617188, 415.98541259765625, 0.9195262789726257, 1064.3829345703125, 200.51885986328125, 0.9490501880645752, 1057.6705322265625, 414.02081298828125, 0.8187624216079712, 1054.1954345703125, 413.350341796875, 0.8403258919715881, 983.8067626953125, 791.3793334960938, 0.9070852398872375, 1079.1541748046875, 789.7265625, 0.939866304397583], "score": 2.879241943359375, "box": [953.5086669921875, 186.7736358642578, 234.6397705078125, 640.3738250732422], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05881456658244133, 0.09136110544204712, -0.033594854176044464], [-0.049403466284275055, 0.08874411880970001, 0.04628736898303032], [0.01248920988291502, -0.10584820806980133, 0.018116574734449387], [-0.06263603270053864, 0.4536445438861847, -0.06377498060464859], [-0.004112767055630684, 0.46740132570266724, 0.1299891620874405], [-0.0048927804455161095, -0.23081336915493011, -0.022805195301771164], [-0.1755293905735016, 0.8407762050628662, -0.018452782183885574], [0.1435299664735794, 0.8235031366348267, 0.25629544258117676], [-0.01988459937274456, -0.2645617127418518, -0.0660325288772583], [-0.24422906339168549, 0.9129908084869385, -0.10766702890396118], [0.043434228748083115, 0.9122692942619324, 0.2613876760005951], [-0.041426315903663635, -0.4759064316749573, -0.09199897944927216], [0.04424348101019859, -0.39136308431625366, -0.09487250447273254], [-0.1005217432975769, -0.3831579089164734, -0.04333660006523132], [-0.04096318036317825, -0.5183615684509277, -0.16342693567276], [0.12511469423770905, -0.42497551441192627, -0.12595506012439728], [-0.19626322388648987, -0.39649927616119385, -0.028190676122903824], [0.3130730390548706, -0.23985041677951813, -0.14884231984615326], [-0.3708118200302124, -0.20727576315402985, -0.04048438370227814], [0.12385684251785278, -0.1435539871454239, -0.28230369091033936], [-0.2492077350616455, -0.142041876912117, -0.25838834047317505], [0.06244705989956856, -0.12483595311641693, -0.337395042181015], [-0.19648616015911102, -0.12804506719112396, -0.3228451609611511]]}, {"image_id": "69.jpg", "category_id": 1, "keypoints": [1230.7626953125, 472.6507873535156, 0.9845643043518066, 1252.8232421875, 505.8348083496094, 0.9890212416648865, 1214.0399169921875, 507.2400207519531, 0.9890228509902954, 1236.60400390625, 433.5177001953125, 0.9927106499671936, 1247.5384521484375, 651.972412109375, 0.9707097411155701, 1234.5196533203125, 646.436279296875, 0.9829038381576538, 1233.177001953125, 382.15167236328125, 0.9824762344360352, 1233.4964599609375, 793.5449829101562, 0.8449514508247375, 1270.1512451171875, 770.8958740234375, 0.9162577986717224, 1228.013671875, 363.793701171875, 0.987125039100647, 1205.307861328125, 809.5703125, 0.7442786693572998, 1228.23974609375, 797.8560791015625, 0.9594098925590515, 1227.44140625, 284.3997497558594, 0.9897686839103699, 1253.7847900390625, 312.5069274902344, 0.9842817783355713, 1205.9249267578125, 322.08953857421875, 0.9919223785400391, 1213.9002685546875, 265.78741455078125, 0.9554052948951721, 1284.7730712890625, 291.6317138671875, 0.9749202728271484, 1187.47509765625, 313.7152404785156, 0.9849393367767334, 1344.9384765625, 219.517333984375, 0.9162566661834717, 1128.73876953125, 343.3067626953125, 0.9765733480453491, 1302.8507080078125, 190.37979125976562, 0.9751819968223572, 1062.3311767578125, 400.0997619628906, 0.9435744285583496, 1292.2449951171875, 182.94091796875, 0.9702789783477783, 1041.8453369140625, 393.4485168457031, 0.8812300562858582, 1185.0167236328125, 195.31478881835938, 0.9617598056793213, 1285.814697265625, 174.01458740234375, 0.9685546159744263, 1049.95361328125, 347.36700439453125, 0.9441335201263428, 1203.257080078125, 807.7960205078125, 0.7314371466636658, 1211.790771484375, 799.6835327148438, 0.9605146050453186], "score": 3.1754913330078125, "box": [959.5910034179688, 168.03018188476562, 422.18377685546875, 664.3394470214844], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05346795171499252, 0.08952462673187256, -0.03717123717069626], [-0.03984523564577103, 0.08547990769147873, 0.05356532335281372], [0.012035252526402473, -0.10248580574989319, 0.012027453631162643], [0.03787657991051674, 0.4692917764186859, -0.05784209817647934], [0.02163875848054886, 0.4581737220287323, 0.13689777255058289], [0.004172675311565399, -0.2304101586341858, -0.01400749571621418], [-0.00340327899903059, 0.8656206727027893, -0.07923536747694016], [0.13473625481128693, 0.825897216796875, 0.24086230993270874], [-0.01149141788482666, -0.27967047691345215, -0.032485682517290115], [-0.11542892456054688, 0.9249393939971924, -0.11388024687767029], [0.024348001927137375, 0.8966206312179565, 0.23871004581451416], [-0.0109944399446249, -0.4870721697807312, -0.012030038982629776], [0.05477834492921829, -0.4007936120033264, -0.05662637948989868], [-0.06125183776021004, -0.3924349546432495, 0.03487793728709221], [-0.05144820734858513, -0.531624436378479, -0.06955638527870178], [0.12406518310308456, -0.447151780128479, -0.09131546318531036], [-0.12174368649721146, -0.42647719383239746, 0.09970720112323761], [0.24836422502994537, -0.6034057140350342, -0.25868213176727295], [-0.3119531273841858, -0.33546823263168335, 0.23967361450195312], [0.14514097571372986, -0.7103654742240906, -0.06250345706939697], [-0.48633185029029846, -0.18463030457496643, 0.1339777708053589], [0.11804413050413132, -0.7422996759414673, 0.008567139506340027], [-0.5627838969230652, -0.20844629406929016, 0.11513273417949677]]}, {"image_id": "69.jpg", "category_id": 1, "keypoints": [1081.158203125, 470.69146728515625, 0.9834372997283936, 1099.013671875, 501.0157775878906, 0.9877371191978455, 1064.5045166015625, 503.09942626953125, 0.9895140528678894, 1084.893310546875, 431.4447021484375, 0.9933517575263977, 1055.3204345703125, 634.109130859375, 0.9672701358795166, 1085.517333984375, 639.124755859375, 0.9805569052696228, 1080.5634765625, 386.982421875, 0.9721819758415222, 1018.5685424804688, 765.1734008789062, 0.9220849871635437, 1134.2275390625, 762.28857421875, 0.9492486119270325, 1076.7203369140625, 373.302734375, 0.980713963508606, 999.4769287109375, 785.6390991210938, 0.8582475185394287, 1104.056640625, 787.9864501953125, 0.9459452033042908, 1069.0377197265625, 299.16375732421875, 0.9880243539810181, 1099.232421875, 327.76397705078125, 0.989467978477478, 1047.4130859375, 334.70233154296875, 0.9881435036659241, 1068.7667236328125, 278.7886962890625, 0.9444738030433655, 1125.4442138671875, 316.09967041015625, 0.9815905094146729, 1014.8155517578125, 333.28045654296875, 0.9838079214096069, 1161.878173828125, 367.4034423828125, 0.9722040891647339, 957.660400390625, 387.1396484375, 0.9435603022575378, 1096.7562255859375, 398.0506591796875, 0.933822751045227, 1002.6957397460938, 411.10040283203125, 0.9523322582244873, 1078.162109375, 397.6226501464844, 0.9160745739936829, 1017.9901123046875, 414.48626708984375, 0.9408985376358032, 1070.5123291015625, 201.44912719726562, 0.9508447647094727, 1040.995361328125, 405.31060791015625, 0.8386019468307495, 1042.6832275390625, 409.80401611328125, 0.827194333076477, 991.2513427734375, 782.404541015625, 0.8841654658317566, 1086.36279296875, 789.2723999023438, 0.9431645274162292], "score": 2.9520041942596436, "box": [946.0712890625, 195.35208129882812, 211.6376953125, 627.4935607910156], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.057444192469120026, 0.09071072936058044, -0.03702130168676376], [-0.04741585999727249, 0.08939408510923386, 0.04667897894978523], [0.013046923093497753, -0.10541704297065735, 0.019187167286872864], [-0.06294787675142288, 0.4523262083530426, -0.077736996114254], [0.013686910271644592, 0.4685078263282776, 0.11725103855133057], [-0.0035670208744704723, -0.23219817876815796, -0.017141930758953094], [-0.17016437649726868, 0.8409594297409058, -0.03341441601514816], [0.16079825162887573, 0.8335532546043396, 0.21446526050567627], [-0.016387823969125748, -0.2701795995235443, -0.05742551386356354], [-0.24154900014400482, 0.9089928865432739, -0.12373657524585724], [0.05958409979939461, 0.9207330942153931, 0.22249719500541687], [-0.03882424905896187, -0.48234957456588745, -0.07119915634393692], [0.04747766628861427, -0.39867639541625977, -0.07616674900054932], [-0.09852428734302521, -0.3864325284957886, -0.030294831842184067], [-0.041933946311473846, -0.5319690108299255, -0.13806669414043427], [0.12733697891235352, -0.4325946569442749, -0.10918475687503815], [-0.1961686611175537, -0.3906342387199402, -0.031132511794567108], [0.2747650146484375, -0.2178841233253479, -0.15688632428646088], [-0.37122172117233276, -0.22141188383102417, -0.11539162695407867], [0.09051591902971268, -0.12752443552017212, -0.3010038137435913], [-0.24972102046012878, -0.14614614844322205, -0.3300502896308899], [0.04207714647054672, -0.1253587007522583, -0.37027573585510254], [-0.2056492120027542, -0.13319379091262817, -0.4008218050003052]]}, {"image_id": "70.jpg", "category_id": 1, "keypoints": [1232.8553466796875, 471.4690856933594, 0.9846447110176086, 1254.917236328125, 504.7095642089844, 0.989896833896637, 1215.8819580078125, 506.33551025390625, 0.9890581369400024, 1238.8887939453125, 432.0532531738281, 0.9930645227432251, 1247.497802734375, 652.2363891601562, 0.9700497388839722, 1230.8050537109375, 646.104248046875, 0.9826565980911255, 1235.6146240234375, 380.2755126953125, 0.9786743521690369, 1234.8511962890625, 794.3135375976562, 0.8633906841278076, 1266.2952880859375, 771.1417846679688, 0.9143000245094299, 1229.8878173828125, 361.7901611328125, 0.9856385588645935, 1208.03857421875, 810.5953369140625, 0.7405986785888672, 1228.804931640625, 797.103271484375, 0.954754114151001, 1229.3170166015625, 281.4045715332031, 0.9892065525054932, 1255.5721435546875, 310.209716796875, 0.9839560389518738, 1208.1158447265625, 319.4607849121094, 0.9917103052139282, 1214.7576904296875, 262.10491943359375, 0.9486995935440063, 1285.7490234375, 289.6702575683594, 0.971643328666687, 1188.7298583984375, 311.2083740234375, 0.9839203953742981, 1346.854736328125, 214.51419067382812, 0.9094836711883545, 1128.1488037109375, 341.32568359375, 0.9747824668884277, 1299.99951171875, 188.70706176757812, 0.977536141872406, 1057.8795166015625, 403.0859680175781, 0.9537123441696167, 1289.508544921875, 182.22891235351562, 0.9657695293426514, 1034.50390625, 393.7032470703125, 0.9068790078163147, 1184.405517578125, 192.95108032226562, 0.959678590297699, 1282.68798828125, 175.1114501953125, 0.9561631083488464, 1028.241943359375, 353.3433532714844, 0.9347288608551025, 1210.3155517578125, 808.5812377929688, 0.726102352142334, 1214.6055908203125, 800.5046997070312, 0.9599830508232117], "score": 3.1745991706848145, "box": [957.075927734375, 170.77276611328125, 423.817626953125, 660.985107421875], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05375457555055618, 0.09001082181930542, -0.03575994446873665], [-0.040163323283195496, 0.08484756946563721, 0.054470621049404144], [0.011959688737988472, -0.10272404551506042, 0.010811451822519302], [0.03290092200040817, 0.46973204612731934, -0.055101536214351654], [0.006745532620698214, 0.4591105282306671, 0.14090532064437866], [0.004862683359533548, -0.23027026653289795, -0.017276549711823463], [-0.003267108928412199, 0.8672827482223511, -0.06357640027999878], [0.11903499066829681, 0.8296502232551575, 0.23633667826652527], [-0.012116262689232826, -0.2787517309188843, -0.03672613203525543], [-0.11245144158601761, 0.9282933473587036, -0.10411734133958817], [0.010944440960884094, 0.903858482837677, 0.23165446519851685], [-0.01221650093793869, -0.4865484833717346, -0.019168896600604057], [0.05312279611825943, -0.3999175429344177, -0.06392284482717514], [-0.06112615764141083, -0.392304003238678, 0.030095398426055908], [-0.05378032848238945, -0.5307784676551819, -0.07614072412252426], [0.1253550946712494, -0.4370761513710022, -0.10352427512407303], [-0.12221165746450424, -0.4248895049095154, 0.09523031115531921], [0.2474737912416458, -0.6001755595207214, -0.2660943269729614], [-0.3142503499984741, -0.33433997631073, 0.23323345184326172], [0.12630458176136017, -0.6986920237541199, -0.07565294951200485], [-0.48848041892051697, -0.1796228289604187, 0.13270285725593567], [0.10008783638477325, -0.7275349497795105, -0.0028839632868766785], [-0.5615304112434387, -0.20754054188728333, 0.10699718445539474]]}, {"image_id": "70.jpg", "category_id": 1, "keypoints": [1080.692138671875, 470.53143310546875, 0.9837597608566284, 1097.8790283203125, 500.8909606933594, 0.9870618581771851, 1064.9833984375, 502.40948486328125, 0.9884462952613831, 1084.8389892578125, 431.1001892089844, 0.9934635758399963, 1052.83935546875, 633.92333984375, 0.9642249345779419, 1087.141357421875, 636.791748046875, 0.9810526371002197, 1080.7706298828125, 385.9784851074219, 0.9712222218513489, 1020.2606201171875, 763.3609619140625, 0.9266398549079895, 1134.9022216796875, 760.1881103515625, 0.9405776262283325, 1076.718994140625, 372.2945556640625, 0.9802123308181763, 1002.7191772460938, 782.845458984375, 0.8631629347801208, 1105.2117919921875, 785.250732421875, 0.9418846368789673, 1069.8251953125, 298.28106689453125, 0.9883260130882263, 1099.6463623046875, 326.94610595703125, 0.9889800548553467, 1048.5035400390625, 333.24853515625, 0.988720178604126, 1068.951416015625, 277.95654296875, 0.9445992708206177, 1125.7738037109375, 315.95880126953125, 0.9787462949752808, 1015.8391723632812, 332.1935729980469, 0.9840125441551208, 1157.3564453125, 374.5579833984375, 0.9719969630241394, 956.6824951171875, 386.00323486328125, 0.9406554698944092, 1089.9991455078125, 400.3973083496094, 0.9206399917602539, 1000.039306640625, 410.94439697265625, 0.9521210789680481, 1070.7225341796875, 400.4789123535156, 0.9156020879745483, 1015.8614501953125, 415.65594482421875, 0.9385731816291809, 1067.4263916015625, 201.08358764648438, 0.9497818946838379, 1034.9605712890625, 407.70391845703125, 0.8199597597122192, 1039.885986328125, 411.561767578125, 0.8290058374404907, 996.3199462890625, 780.10986328125, 0.8814772963523865, 1089.2474365234375, 787.1087646484375, 0.9410048723220825], "score": 2.9192614555358887, "box": [945.70458984375, 194.1227569580078, 212.047119140625, 630.5984954833984], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.055164363235235214, 0.09109671413898468, -0.038634371012449265], [-0.04464072734117508, 0.08845572173595428, 0.05034927278757095], [0.013983828946948051, -0.10533231496810913, 0.016807103529572487], [-0.06831967830657959, 0.45235371589660645, -0.06769730895757675], [0.020260533317923546, 0.46495187282562256, 0.1284925937652588], [-0.001675606006756425, -0.23261824250221252, -0.01795548014342785], [-0.1652252972126007, 0.8433510661125183, -0.027876021340489388], [0.1641702950000763, 0.8290983438491821, 0.23032143712043762], [-0.015200567431747913, -0.2711159884929657, -0.05730149894952774], [-0.23353971540927887, 0.9104651212692261, -0.12086918205022812], [0.06291750818490982, 0.9156819581985474, 0.23963749408721924], [-0.03452008217573166, -0.48321133852005005, -0.06945095956325531], [0.04989087954163551, -0.398243248462677, -0.07775694876909256], [-0.0940542221069336, -0.3882828950881958, -0.02684180997312069], [-0.03924867883324623, -0.5318568348884583, -0.1369992196559906], [0.12881310284137726, -0.42957979440689087, -0.11471986025571823], [-0.1914016753435135, -0.39169955253601074, -0.02283395640552044], [0.24834580719470978, -0.19917869567871094, -0.1646273285150528], [-0.371437132358551, -0.22411569952964783, -0.09777649492025375], [0.05898358300328255, -0.122325599193573, -0.3091021478176117], [-0.2573019564151764, -0.14770621061325073, -0.3154709041118622], [0.008916649036109447, -0.11905115842819214, -0.3769104480743408], [-0.21427811682224274, -0.13166537880897522, -0.3859948515892029]]}, {"image_id": "71.jpg", "category_id": 1, "keypoints": [1232.0223388671875, 470.5772705078125, 0.984971821308136, 1253.587646484375, 503.7157287597656, 0.9880548715591431, 1215.4100341796875, 505.57122802734375, 0.9869917631149292, 1237.5509033203125, 431.12469482421875, 0.9927449226379395, 1246.013427734375, 652.0523681640625, 0.9680973291397095, 1233.869384765625, 645.5105590820312, 0.9823670983314514, 1233.7562255859375, 378.94451904296875, 0.9809816479682922, 1232.312255859375, 795.895751953125, 0.8525614142417908, 1272.8720703125, 771.5350341796875, 0.9134518504142761, 1227.7108154296875, 360.26458740234375, 0.9860647916793823, 1204.1043701171875, 808.907958984375, 0.7259394526481628, 1242.7733154296875, 799.5914306640625, 0.9605977535247803, 1228.1104736328125, 280.69830322265625, 0.9894477128982544, 1253.4713134765625, 309.32794189453125, 0.9839526414871216, 1207.0472412109375, 318.5562744140625, 0.9911497831344604, 1214.198974609375, 260.8294677734375, 0.946445882320404, 1283.4722900390625, 290.19439697265625, 0.9750676155090332, 1187.6080322265625, 310.8914794921875, 0.9848534464836121, 1344.97705078125, 211.752685546875, 0.910406231880188, 1128.97021484375, 338.9483337402344, 0.972687840461731, 1298.23193359375, 187.947265625, 0.9740015864372253, 1063.208251953125, 394.8453674316406, 0.9571079015731812, 1287.588623046875, 181.59817504882812, 0.9638964533805847, 1041.5438232421875, 373.0422668457031, 0.9453005790710449, 1194.3267822265625, 192.0364990234375, 0.9559118151664734, 1279.8455810546875, 175.07980346679688, 0.9547863602638245, 1050.1964111328125, 320.269775390625, 0.9296836256980896, 1201.5985107421875, 808.547607421875, 0.740513801574707, 1224.6641845703125, 802.1780395507812, 0.9606858491897583], "score": 3.176051139831543, "box": [959.9160766601562, 170.05422973632812, 423.74261474609375, 661.3970031738281], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05317918211221695, 0.08974478393793106, -0.037978045642375946], [-0.03878677263855934, 0.08554098010063171, 0.05489872395992279], [0.012103457003831863, -0.10292689502239227, 0.011427689343690872], [0.03230715170502663, 0.4701695442199707, -0.05399584025144577], [0.017481593415141106, 0.45895862579345703, 0.14200039207935333], [0.0023980664554983377, -0.23056404292583466, -0.014950906857848167], [-0.005957268178462982, 0.8684869408607483, -0.057527292519807816], [0.13863366842269897, 0.8250858187675476, 0.24698476493358612], [-0.018134893849492073, -0.27771490812301636, -0.03447283059358597], [-0.1228594109416008, 0.9183284044265747, -0.09210896492004395], [0.042863208800554276, 0.9150264859199524, 0.2511110305786133], [-0.01114024966955185, -0.4853890538215637, -0.01289132609963417], [0.049714408814907074, -0.3977358341217041, -0.06223557889461517], [-0.060958605259656906, -0.3915534019470215, 0.03673674166202545], [-0.05097748711705208, -0.5309479832649231, -0.06990528106689453], [0.12392883002758026, -0.4340621829032898, -0.09927500784397125], [-0.11895004659891129, -0.42127907276153564, 0.10621796548366547], [0.24432173371315002, -0.6027837991714478, -0.258089154958725], [-0.30578604340553284, -0.3374587893486023, 0.25604796409606934], [0.1165047138929367, -0.698424756526947, -0.06991992890834808], [-0.4816727936267853, -0.18610842525959015, 0.1521013379096985], [0.09006911516189575, -0.7267305254936218, 0.003180205821990967], [-0.5367514491081238, -0.23914842307567596, 0.12109744548797607]]}, {"image_id": "71.jpg", "category_id": 1, "keypoints": [1081.5947265625, 471.0528259277344, 0.9830904006958008, 1098.2222900390625, 501.2752685546875, 0.984857976436615, 1065.8521728515625, 503.21868896484375, 0.9892198443412781, 1086.1744384765625, 431.62225341796875, 0.9928440451622009, 1053.1627197265625, 633.140869140625, 0.9594519734382629, 1085.1845703125, 637.0406494140625, 0.9787817001342773, 1081.3018798828125, 386.4073181152344, 0.9706748127937317, 1020.8765258789062, 765.4915771484375, 0.925667941570282, 1134.494384765625, 759.9981079101562, 0.9374266266822815, 1076.658935546875, 372.9008483886719, 0.9800916314125061, 1000.4176635742188, 784.1602783203125, 0.855372428894043, 1103.3626708984375, 784.8660888671875, 0.9378132820129395, 1069.148193359375, 298.0914611816406, 0.9882129430770874, 1099.192138671875, 326.86614990234375, 0.9885717630386353, 1048.487060546875, 333.5018005371094, 0.9893419742584229, 1067.52392578125, 277.6872253417969, 0.9450972676277161, 1124.84423828125, 315.74371337890625, 0.9786557555198669, 1015.4423217773438, 332.51824951171875, 0.9845069646835327, 1145.0989990234375, 388.36767578125, 0.9623361229896545, 956.0081176757812, 385.8587646484375, 0.9386094808578491, 1070.91796875, 409.8878173828125, 0.9241100549697876, 999.2216796875, 409.93865966796875, 0.9516305923461914, 1047.457763671875, 408.8082580566406, 0.9001672267913818, 1013.9537353515625, 414.2183532714844, 0.9361147284507751, 1068.219482421875, 201.23150634765625, 0.9483570456504822, 1022.07470703125, 410.52166748046875, 0.7902939915657043, 1036.2940673828125, 409.7970886230469, 0.8293296098709106, 993.7388305664062, 780.1690673828125, 0.879169225692749, 1083.6807861328125, 786.24267578125, 0.9323439598083496], "score": 2.970582962036133, "box": [944.3167724609375, 191.8308563232422, 212.829833984375, 635.8214263916016], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.053588733077049255, 0.09172452241182327, -0.04121064394712448], [-0.043820127844810486, 0.08891193568706512, 0.051753703504800797], [0.015477629378437996, -0.1059732586145401, 0.01705891638994217], [-0.07117896527051926, 0.45390331745147705, -0.06625588238239288], [0.013745586387813091, 0.4664909243583679, 0.13606895506381989], [-0.0030591099057346582, -0.23297001421451569, -0.018546465784311295], [-0.164567232131958, 0.8455143570899963, -0.008841242641210556], [0.16241344809532166, 0.8299097418785095, 0.24135805666446686], [-0.018410025164484978, -0.2711822986602783, -0.05804763734340668], [-0.24747106432914734, 0.9139091372489929, -0.08898493647575378], [0.06039128080010414, 0.9140569567680359, 0.2642669975757599], [-0.03863069787621498, -0.4843558669090271, -0.06982291489839554], [0.045946311205625534, -0.3991650342941284, -0.08213816583156586], [-0.09649885445833206, -0.3890584707260132, -0.023986458778381348], [-0.045269809663295746, -0.5326132774353027, -0.13746486604213715], [0.12237619608640671, -0.43017399311065674, -0.12542256712913513], [-0.19428592920303345, -0.39242708683013916, -0.017185337841510773], [0.18583834171295166, -0.18322016298770905, -0.19932134449481964], [-0.37470927834510803, -0.22636766731739044, -0.09856751561164856], [-0.0182181503623724, -0.11983789503574371, -0.33196839690208435], [-0.26144763827323914, -0.15247009694576263, -0.31896495819091797], [-0.07058190554380417, -0.11933977901935577, -0.398725301027298], [-0.2215225249528885, -0.1375385969877243, -0.39211875200271606]]}, {"image_id": "72.jpg", "category_id": 1, "keypoints": [1224.6217041015625, 468.3561706542969, 0.9848924279212952, 1247.2568359375, 500.2301940917969, 0.9910235404968262, 1208.754150390625, 503.0249328613281, 0.9880460500717163, 1230.76806640625, 429.5413818359375, 0.993384599685669, 1246.8193359375, 647.7388305664062, 0.9735714793205261, 1228.7281494140625, 644.4617919921875, 0.9795507192611694, 1228.4713134765625, 377.0705871582031, 0.9824600219726562, 1230.9632568359375, 792.692138671875, 0.8515169620513916, 1269.9869384765625, 770.4337158203125, 0.9191867709159851, 1223.5296630859375, 357.9819030761719, 0.9867632389068604, 1200.880126953125, 807.5054321289062, 0.7470180988311768, 1238.8194580078125, 794.365478515625, 0.962759792804718, 1225.9346923828125, 279.00018310546875, 0.9903885126113892, 1249.95458984375, 307.6488037109375, 0.9858786463737488, 1204.311279296875, 316.2555236816406, 0.9912611246109009, 1212.1505126953125, 259.54754638671875, 0.9505192041397095, 1282.2708740234375, 288.2777404785156, 0.9746960401535034, 1185.9859619140625, 307.98565673828125, 0.9855155348777771, 1344.3016357421875, 211.74639892578125, 0.9189350008964539, 1127.5291748046875, 338.8890075683594, 0.9707297682762146, 1297.4066162109375, 187.5633544921875, 0.9769302606582642, 1057.920166015625, 396.2724609375, 0.9616543650627136, 1287.6485595703125, 181.29229736328125, 0.9663314819335938, 1034.5218505859375, 386.7524719238281, 0.9198015928268433, 1189.5692138671875, 192.72262573242188, 0.9628188014030457, 1280.6917724609375, 175.7015380859375, 0.9592869877815247, 1026.993896484375, 350.5228271484375, 0.9223142862319946, 1198.890869140625, 808.849853515625, 0.7571448683738708, 1221.01611328125, 798.6879272460938, 0.9612938761711121], "score": 3.178255558013916, "box": [956.299072265625, 167.25662231445312, 421.224853515625, 664.4208679199219], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05474983528256416, 0.0886111930012703, -0.03649745136499405], [-0.038659390062093735, 0.08565108478069305, 0.05346518009901047], [0.010397495701909065, -0.10236300528049469, 0.011700943112373352], [0.05101209133863449, 0.46706944704055786, -0.06604328006505966], [0.01995168626308441, 0.45967090129852295, 0.12744274735450745], [0.008305477909743786, -0.23071564733982086, -0.013642190024256706], [0.0035309353843331337, 0.8585247993469238, -0.1166808009147644], [0.14610816538333893, 0.8236987590789795, 0.22329017519950867], [-0.008616696111857891, -0.2794216275215149, -0.032169219106435776], [-0.1125701367855072, 0.9123149514198303, -0.14507760107517242], [0.04224610701203346, 0.9030703902244568, 0.2206707000732422], [0.00168184086214751, -0.48564499616622925, -0.007481295615434647], [0.06167202070355415, -0.39775949716567993, -0.056330692023038864], [-0.050592999905347824, -0.3923262357711792, 0.03928579017519951], [-0.03897565230727196, -0.5320371389389038, -0.06348761916160583], [0.13600683212280273, -0.436278760433197, -0.08967456221580505], [-0.10729971528053284, -0.4249762296676636, 0.10785910487174988], [0.26251137256622314, -0.6018532514572144, -0.24464981257915497], [-0.29872286319732666, -0.32838642597198486, 0.24064260721206665], [0.13674591481685638, -0.6971842050552368, -0.056836336851119995], [-0.48062723875045776, -0.1767149716615677, 0.15228700637817383], [0.11122532188892365, -0.7263158559799194, 0.015715718269348145], [-0.5564538836479187, -0.20719052851200104, 0.1456565409898758]]}, {"image_id": "72.jpg", "category_id": 1, "keypoints": [1080.990234375, 471.3634033203125, 0.9826633334159851, 1098.38671875, 501.869384765625, 0.9863327145576477, 1065.0972900390625, 503.7491760253906, 0.9890882968902588, 1085.455078125, 431.6750183105469, 0.9937689900398254, 1052.6146240234375, 633.3273315429688, 0.9635701775550842, 1085.76318359375, 638.039306640625, 0.9796491265296936, 1080.7412109375, 386.2479248046875, 0.9705864191055298, 1020.5577392578125, 765.369873046875, 0.9223170280456543, 1133.89306640625, 759.6900634765625, 0.9384390711784363, 1076.349365234375, 372.5130615234375, 0.979556679725647, 1000.1714477539062, 784.0716552734375, 0.858532726764679, 1104.093505859375, 784.2718505859375, 0.9393830895423889, 1069.5482177734375, 297.775390625, 0.9887235760688782, 1099.2100830078125, 326.8316650390625, 0.9888102412223816, 1048.512451171875, 332.89276123046875, 0.9898167848587036, 1068.8173828125, 276.8338623046875, 0.9456717371940613, 1124.9639892578125, 316.30145263671875, 0.9785869121551514, 1015.56884765625, 331.3658447265625, 0.9839582443237305, 1143.2823486328125, 391.55474853515625, 0.9651222825050354, 954.3908081054688, 384.707275390625, 0.939327597618103, 1071.2945556640625, 410.9151611328125, 0.9175658822059631, 997.03173828125, 409.2620544433594, 0.9515701532363892, 1050.997314453125, 409.7479248046875, 0.9268568754196167, 1012.5753173828125, 413.941162109375, 0.9317165613174438, 1068.0396728515625, 200.45037841796875, 0.9489694833755493, 1024.317626953125, 410.8112487792969, 0.8006728291511536, 1036.0274658203125, 410.2253112792969, 0.820901095867157, 992.3989868164062, 779.8524169921875, 0.8809082508087158, 1085.09033203125, 786.176025390625, 0.9414759874343872], "score": 2.94773530960083, "box": [944.4080810546875, 189.99017333984375, 212.251953125, 637.8320922851562], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05533181503415108, 0.09157086163759232, -0.038847558200359344], [-0.044792771339416504, 0.08873008191585541, 0.05096042901277542], [0.014247369021177292, -0.106024831533432, 0.01671973615884781], [-0.0716080442070961, 0.45142316818237305, -0.07976537942886353], [0.01619695872068405, 0.4662203788757324, 0.1325039565563202], [-0.002584841102361679, -0.2331695258617401, -0.018749557435512543], [-0.16495639085769653, 0.8436750173568726, -0.028932124376296997], [0.16308952867984772, 0.830072820186615, 0.23771482706069946], [-0.017130538821220398, -0.27199026942253113, -0.05783326178789139], [-0.24486657977104187, 0.9092988967895508, -0.11410751193761826], [0.06154859811067581, 0.9158820509910583, 0.2552778422832489], [-0.035511650145053864, -0.4851881265640259, -0.06830741465091705], [0.04858681559562683, -0.3995257019996643, -0.07942341268062592], [-0.09497285634279251, -0.39004653692245483, -0.024567648768424988], [-0.03978138789534569, -0.5357662439346313, -0.13440662622451782], [0.12664753198623657, -0.4293917417526245, -0.12031272798776627], [-0.19257918000221252, -0.39502859115600586, -0.0178107637912035], [0.18348854780197144, -0.1778670847415924, -0.18255725502967834], [-0.3797261416912079, -0.22862952947616577, -0.0805099606513977], [-0.019609786570072174, -0.1189243495464325, -0.3182790279388428], [-0.26655808091163635, -0.15274256467819214, -0.30004292726516724], [-0.07064702361822128, -0.1189156174659729, -0.3859397768974304], [-0.22423717379570007, -0.1367473602294922, -0.3714943826198578]]}, {"image_id": "73.jpg", "category_id": 1, "keypoints": [1225.1773681640625, 469.0053405761719, 0.9856335520744324, 1249.1358642578125, 500.50592041015625, 0.9918316602706909, 1209.183349609375, 503.9969482421875, 0.9882294535636902, 1230.6539306640625, 429.5102233886719, 0.9938149452209473, 1248.8248291015625, 648.6798706054688, 0.9743272662162781, 1225.9586181640625, 646.3544311523438, 0.9762426614761353, 1227.480224609375, 376.7363586425781, 0.9814186096191406, 1233.1884765625, 790.0360107421875, 0.8515163660049438, 1267.441162109375, 769.6480712890625, 0.9255704283714294, 1222.0316162109375, 357.56732177734375, 0.987028956413269, 1205.30615234375, 806.1798095703125, 0.7684007287025452, 1236.7200927734375, 797.9403076171875, 0.9672020077705383, 1222.88037109375, 277.8741455078125, 0.9906193614006042, 1248.5076904296875, 306.430419921875, 0.9870381355285645, 1201.1839599609375, 315.3956298828125, 0.9898168444633484, 1209.5277099609375, 258.2835998535156, 0.9548769593238831, 1280.052001953125, 285.59130859375, 0.9739932417869568, 1182.3619384765625, 306.0868225097656, 0.9850003123283386, 1342.172119140625, 210.74191284179688, 0.9341510534286499, 1121.948486328125, 343.23687744140625, 0.9681466817855835, 1295.036865234375, 183.97421264648438, 0.9743053913116455, 1049.3258056640625, 403.85357666015625, 0.9561276435852051, 1284.584716796875, 179.98294067382812, 0.968690037727356, 1023.3267211914062, 401.42376708984375, 0.9140729904174805, 1176.490966796875, 193.00497436523438, 0.9629888534545898, 1278.5740966796875, 179.46771240234375, 0.9650476574897766, 1014.958984375, 368.6285095214844, 0.9258413910865784, 1206.310302734375, 804.7049560546875, 0.7360995411872864, 1219.751708984375, 802.342041015625, 0.9652888178825378], "score": 3.178356885910034, "box": [948.3048095703125, 172.42819213867188, 430.0419921875, 654.9414978027344], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05762811750173569, 0.08784545958042145, -0.033836670219898224], [-0.03821408748626709, 0.08573810756206512, 0.05365878343582153], [0.007866274565458298, -0.10273517668247223, 0.010539395734667778], [0.05406699329614639, 0.4663364291191101, -0.06444482505321503], [0.011784685775637627, 0.4614192843437195, 0.12595094740390778], [0.004161167424172163, -0.23068241775035858, -0.01629023626446724], [0.004298018291592598, 0.8540124893188477, -0.1376391500234604], [0.14097656309604645, 0.8294270038604736, 0.20062534511089325], [-0.013774562627077103, -0.27880626916885376, -0.035348035395145416], [-0.10909053683280945, 0.917393684387207, -0.15542590618133545], [0.045168258249759674, 0.9183553457260132, 0.2049577832221985], [-0.007611820474267006, -0.4853290319442749, -0.011299831792712212], [0.056094177067279816, -0.39803171157836914, -0.05645063519477844], [-0.06103282421827316, -0.3914891481399536, 0.033212848007678986], [-0.04703066498041153, -0.5316196084022522, -0.06828263401985168], [0.1282714307308197, -0.4414101243019104, -0.08866806328296661], [-0.12105916440486908, -0.42802631855010986, 0.0969163030385971], [0.25743207335472107, -0.6055610179901123, -0.24298229813575745], [-0.3096526265144348, -0.3158341646194458, 0.2212962806224823], [0.1409352421760559, -0.7045047283172607, -0.051052629947662354], [-0.48931148648262024, -0.16408906877040863, 0.1284431368112564], [0.10955184698104858, -0.727461576461792, 0.021452507004141808], [-0.569660484790802, -0.1709192842245102, 0.11342255771160126]]}, {"image_id": "73.jpg", "category_id": 1, "keypoints": [1082.41943359375, 472.689453125, 0.9823850393295288, 1098.623046875, 502.6108703613281, 0.984417736530304, 1066.7213134765625, 504.8330993652344, 0.989402174949646, 1087.6466064453125, 433.58477783203125, 0.9928121566772461, 1051.92919921875, 633.3494873046875, 0.9600744247436523, 1086.509033203125, 636.9461059570312, 0.9801568388938904, 1082.2108154296875, 387.9667663574219, 0.9683741927146912, 1019.4661254882812, 762.938720703125, 0.9337190985679626, 1132.4228515625, 760.5755004882812, 0.9398083090782166, 1077.0919189453125, 374.0479736328125, 0.9801183938980103, 1000.5333251953125, 780.4711303710938, 0.8697712421417236, 1100.85546875, 784.7947998046875, 0.9381188750267029, 1068.8927001953125, 299.1004638671875, 0.9883247017860413, 1098.9217529296875, 327.94573974609375, 0.9885871410369873, 1049.4820556640625, 334.6036376953125, 0.9888870120048523, 1067.0184326171875, 278.22479248046875, 0.9473621249198914, 1123.6650390625, 317.6643371582031, 0.9767712950706482, 1016.5045776367188, 334.0528564453125, 0.9844691157341003, 1135.2540283203125, 395.7575378417969, 0.9616773724555969, 956.9615478515625, 385.8013000488281, 0.9405892491340637, 1059.6915283203125, 413.15570068359375, 0.9384582042694092, 998.2485961914062, 408.5962219238281, 0.954349935054779, 1036.3948974609375, 411.8359069824219, 0.8811967968940735, 1012.6708374023438, 413.538818359375, 0.9359652996063232, 1073.76025390625, 199.32672119140625, 0.9528801441192627, 1017.9424438476562, 412.3887939453125, 0.7841566801071167, 1034.2569580078125, 409.1379699707031, 0.8338327407836914, 994.1630249023438, 775.93212890625, 0.8980883955955505, 1081.862548828125, 785.0911865234375, 0.933810293674469], "score": 2.8184077739715576, "box": [944.5684814453125, 195.55599975585938, 212.426025390625, 630.0998229980469], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05185014009475708, 0.09222786873579025, -0.042283277958631516], [-0.04310270771384239, 0.08844560384750366, 0.05312936007976532], [0.016670510172843933, -0.10592468082904816, 0.016333354637026787], [-0.07780614495277405, 0.45286691188812256, -0.06321945041418076], [0.016448266804218292, 0.4663652181625366, 0.13407865166664124], [-0.0027411223854869604, -0.23345403373241425, -0.016855256631970406], [-0.17363277077674866, 0.8438775539398193, -0.0065352339297533035], [0.15620335936546326, 0.8347945809364319, 0.23357310891151428], [-0.01941905915737152, -0.27285850048065186, -0.054615043103694916], [-0.25272056460380554, 0.9093261361122131, -0.09273657947778702], [0.05149775743484497, 0.9170501828193665, 0.2503371834754944], [-0.04102233052253723, -0.4858955144882202, -0.06544669717550278], [0.04335226118564606, -0.40111875534057617, -0.08120054006576538], [-0.09659695625305176, -0.3903597593307495, -0.017379743978381157], [-0.04831850528717041, -0.5358257293701172, -0.13176347315311432], [0.11861186474561691, -0.43005263805389404, -0.12781290709972382], [-0.19404426217079163, -0.3927188515663147, -0.006499597802758217], [0.1495085060596466, -0.1826706975698471, -0.21877409517765045], [-0.37568604946136475, -0.23047231137752533, -0.09247515350580215], [-0.06041790544986725, -0.1300143450498581, -0.3467269539833069], [-0.2657288908958435, -0.15872417390346527, -0.3151705861091614], [-0.11333197355270386, -0.13015617430210114, -0.41303837299346924], [-0.22693072259426117, -0.1419817954301834, -0.38853344321250916]]}, {"image_id": "74.jpg", "category_id": 1, "keypoints": [1225.3472900390625, 469.1844787597656, 0.9857735633850098, 1248.68896484375, 500.6350402832031, 0.9918041229248047, 1208.369140625, 504.21868896484375, 0.9883071780204773, 1231.7430419921875, 429.52471923828125, 0.9931925535202026, 1248.2098388671875, 649.817138671875, 0.9696991443634033, 1223.7552490234375, 646.7744140625, 0.9784027934074402, 1229.049072265625, 376.8287658691406, 0.9808849692344666, 1231.34619140625, 792.368896484375, 0.8829688429832458, 1263.9432373046875, 773.1597290039062, 0.9265111088752747, 1223.4571533203125, 357.4476013183594, 0.9873924255371094, 1205.7308349609375, 808.2069091796875, 0.7555750608444214, 1232.7518310546875, 798.1570434570312, 0.9636532664299011, 1223.3270263671875, 277.5880126953125, 0.9902719855308533, 1249.4866943359375, 306.3668212890625, 0.9865620136260986, 1202.047119140625, 315.3841857910156, 0.9904577136039734, 1209.044189453125, 257.8264465332031, 0.9495174884796143, 1281.1517333984375, 285.76904296875, 0.9745942950248718, 1182.337158203125, 306.8877868652344, 0.9845943450927734, 1343.0142822265625, 207.341064453125, 0.9298197627067566, 1121.6156005859375, 342.2396240234375, 0.9683782458305359, 1294.21533203125, 184.75057983398438, 0.9710984826087952, 1048.2728271484375, 403.3537902832031, 0.9572445750236511, 1284.2115478515625, 179.51043701171875, 0.963735818862915, 1021.2484741210938, 398.29608154296875, 0.9333678483963013, 1178.90966796875, 190.59506225585938, 0.9628745913505554, 1278.688720703125, 177.19293212890625, 0.9586396217346191, 1013.450439453125, 367.57684326171875, 0.8990286588668823, 1207.594482421875, 807.0626220703125, 0.745322585105896, 1218.31689453125, 801.7205810546875, 0.9627548456192017], "score": 3.1789557933807373, "box": [953.84130859375, 171.4571533203125, 423.047607421875, 655.9954223632812], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05669500678777695, 0.08885486423969269, -0.031634263694286346], [-0.040659353137016296, 0.08439205586910248, 0.05330463498830795], [0.009235892444849014, -0.1022697240114212, 0.009755430743098259], [0.053783439099788666, 0.46774107217788696, -0.05044605955481529], [0.00566929392516613, 0.45976632833480835, 0.12714383006095886], [0.0074273995123803616, -0.22961662709712982, -0.019517455250024796], [0.00530911423265934, 0.8610499501228333, -0.07114795595407486], [0.12843838334083557, 0.8292133212089539, 0.20091214776039124], [-0.01003049686551094, -0.27742743492126465, -0.03925717622041702], [-0.10305330157279968, 0.9228793978691101, -0.11056944727897644], [0.0262849610298872, 0.9101376533508301, 0.19457682967185974], [-0.008439883589744568, -0.48394644260406494, -0.020494485273957253], [0.05670581012964249, -0.39718037843704224, -0.06368587911128998], [-0.05912073701620102, -0.39029115438461304, 0.02657676301896572], [-0.0491555780172348, -0.5291271805763245, -0.07749459147453308], [0.12797251343727112, -0.4411693811416626, -0.0962938517332077], [-0.12101095914840698, -0.423469603061676, 0.08986424654722214], [0.2569330334663391, -0.6124582886695862, -0.24189972877502441], [-0.31151124835014343, -0.3166067600250244, 0.2148696631193161], [0.12954279780387878, -0.7015417814254761, -0.05277270823717117], [-0.4891899824142456, -0.16662363708019257, 0.11690004914999008], [0.102182537317276, -0.7279112339019775, 0.019932786002755165], [-0.5685917139053345, -0.1808413714170456, 0.10346989333629608]]}, {"image_id": "74.jpg", "category_id": 1, "keypoints": [1080.5872802734375, 472.3865966796875, 0.9815266728401184, 1097.654296875, 502.93243408203125, 0.9842841029167175, 1064.84716796875, 504.4646301269531, 0.9893674254417419, 1085.4810791015625, 433.0585021972656, 0.993355929851532, 1051.18115234375, 634.140625, 0.9641212821006775, 1085.20068359375, 638.6841430664062, 0.9805923104286194, 1080.7664794921875, 386.9422607421875, 0.9690938591957092, 1017.2938232421875, 765.374267578125, 0.9252788424491882, 1135.4466552734375, 763.1032104492188, 0.9444895386695862, 1075.90576171875, 372.7552185058594, 0.9793703556060791, 999.3479614257812, 785.3280029296875, 0.868507981300354, 1102.9144287109375, 787.53466796875, 0.9430251717567444, 1069.3670654296875, 298.02117919921875, 0.9885935187339783, 1098.58740234375, 327.05279541015625, 0.9883700013160706, 1049.2105712890625, 333.5834655761719, 0.9901038408279419, 1067.2298583984375, 276.5731201171875, 0.9452088475227356, 1123.4720458984375, 316.79156494140625, 0.9768128991127014, 1016.9136352539062, 332.567626953125, 0.9849576354026794, 1138.1263427734375, 393.9764404296875, 0.9655665159225464, 955.93310546875, 385.1278076171875, 0.9400415420532227, 1060.8780517578125, 412.496826171875, 0.936215877532959, 995.9371337890625, 407.5636291503906, 0.9530556201934814, 1036.513916015625, 410.744140625, 0.8955581188201904, 1010.871826171875, 412.8739929199219, 0.9280142188072205, 1069.701171875, 199.91128540039062, 0.9541100859642029, 1016.8946533203125, 410.3777770996094, 0.780712366104126, 1033.224853515625, 409.7553405761719, 0.8374660015106201, 992.8408203125, 782.9217529296875, 0.8901529312133789, 1082.7353515625, 787.9566650390625, 0.9319279789924622], "score": 2.896113872528076, "box": [944.5934448242188, 194.13336181640625, 210.13031005859375, 628.958251953125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0532497838139534, 0.09177959710359573, -0.04082684591412544], [-0.04360575973987579, 0.08842776715755463, 0.05219651013612747], [0.015499232336878777, -0.10566432774066925, 0.016375858336687088], [-0.075575090944767, 0.4520219564437866, -0.0711381733417511], [0.016582272946834564, 0.46559393405914307, 0.13557574152946472], [-0.0014626046176999807, -0.23387812077999115, -0.014217663556337357], [-0.17401613295078278, 0.8417690396308899, -0.012635398656129837], [0.16644287109375, 0.8299056887626648, 0.23400285840034485], [-0.01728365197777748, -0.2739458680152893, -0.051324017345905304], [-0.2445126324892044, 0.9117030501365662, -0.10240326076745987], [0.06241874024271965, 0.9108144044876099, 0.2581252157688141], [-0.033996377140283585, -0.4871295094490051, -0.05455950275063515], [0.04805915430188179, -0.40122318267822266, -0.07366931438446045], [-0.09123153239488602, -0.3914802074432373, -0.009621351957321167], [-0.041978951543569565, -0.5390427708625793, -0.11920275539159775], [0.122818723320961, -0.42965632677078247, -0.12086541950702667], [-0.18805290758609772, -0.39541780948638916, 0.0034781545400619507], [0.16342245042324066, -0.18379084765911102, -0.21151447296142578], [-0.37505480647087097, -0.2307756096124649, -0.06365825235843658], [-0.048112113028764725, -0.12891142070293427, -0.33527135848999023], [-0.27096042037010193, -0.16117100417613983, -0.28956368565559387], [-0.1015147790312767, -0.1298704892396927, -0.40095677971839905], [-0.23140569031238556, -0.14367465674877167, -0.36213910579681396]]}, {"image_id": "75.jpg", "category_id": 1, "keypoints": [1226.96875, 467.624267578125, 0.9851821064949036, 1250.8167724609375, 499.46240234375, 0.9909860491752625, 1210.02392578125, 503.6816101074219, 0.9885929822921753, 1232.6300048828125, 427.9845275878906, 0.9938229918479919, 1249.3319091796875, 650.8658447265625, 0.9712934494018555, 1227.4468994140625, 646.5030517578125, 0.9767109751701355, 1229.26025390625, 375.57537841796875, 0.9843802452087402, 1231.5086669921875, 792.570556640625, 0.8357582092285156, 1266.2547607421875, 774.1555786132812, 0.9171698689460754, 1223.52392578125, 356.8232421875, 0.9879045486450195, 1201.4537353515625, 811.5098876953125, 0.7557411789894104, 1228.927978515625, 800.7099609375, 0.9630431532859802, 1222.160400390625, 276.73101806640625, 0.9902122616767883, 1248.510009765625, 304.98614501953125, 0.9841474294662476, 1202.1700439453125, 314.77520751953125, 0.9920737743377686, 1206.5997314453125, 258.442138671875, 0.9552313685417175, 1280.3243408203125, 284.55419921875, 0.973375678062439, 1182.95361328125, 306.16650390625, 0.9859414100646973, 1343.993408203125, 204.25054931640625, 0.9203487038612366, 1123.6041259765625, 340.6968994140625, 0.9671571254730225, 1298.229248046875, 183.51364135742188, 0.9766647219657898, 1054.47705078125, 399.4296875, 0.9628592133522034, 1288.99169921875, 176.6375732421875, 0.9672478437423706, 1028.9718017578125, 393.43829345703125, 0.9212136268615723, 1181.9378662109375, 192.54678344726562, 0.966246485710144, 1283.0244140625, 170.78201293945312, 0.9680609107017517, 1020.7269897460938, 367.6090087890625, 0.9347878098487854, 1195.0361328125, 813.325439453125, 0.7613479495048523, 1205.4658203125, 803.88916015625, 0.9555106163024902], "score": 3.1813955307006836, "box": [955.1409912109375, 162.7670135498047, 420.7132568359375, 671.9795074462891], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05673667788505554, 0.08771047741174698, -0.03706775978207588], [-0.03979221731424332, 0.08738024532794952, 0.050763633102178574], [0.009363722056150436, -0.10252520442008972, 0.014240365475416183], [0.05073836073279381, 0.468090683221817, -0.0626930445432663], [0.011995062232017517, 0.46380487084388733, 0.12641467154026031], [0.004664464853703976, -0.23086890578269958, -0.008722048252820969], [-0.005169685930013657, 0.8566756248474121, -0.13878187537193298], [0.13102185726165771, 0.832290530204773, 0.2241637110710144], [-0.014781555160880089, -0.2786369323730469, -0.027417153120040894], [-0.11432205140590668, 0.920849084854126, -0.17448259890079498], [0.023871954530477524, 0.908051609992981, 0.22078438103199005], [-0.01282777264714241, -0.4858953058719635, -0.004418538883328438], [0.051063936203718185, -0.3999941051006317, -0.052406419068574905], [-0.061783406883478165, -0.3908427655696869, 0.04310807213187218], [-0.05812538415193558, -0.529691219329834, -0.05864564701914787], [0.12518088519573212, -0.43950971961021423, -0.08560223877429962], [-0.1213635802268982, -0.42424896359443665, 0.10913492739200592], [0.2540237009525299, -0.6116483211517334, -0.23355303704738617], [-0.3100542426109314, -0.31867095828056335, 0.24165038764476776], [0.13068315386772156, -0.6978727579116821, -0.03828679397702217], [-0.48961615562438965, -0.16441211104393005, 0.14929063618183136], [0.1062953919172287, -0.7294325828552246, 0.03403163328766823], [-0.5672532916069031, -0.18157920241355896, 0.12772004306316376]]}, {"image_id": "75.jpg", "category_id": 1, "keypoints": [1080.99072265625, 471.9189758300781, 0.9820956587791443, 1097.80517578125, 501.45220947265625, 0.9837934970855713, 1065.2552490234375, 503.7018737792969, 0.9895489811897278, 1086.4619140625, 432.93994140625, 0.9931150674819946, 1051.487548828125, 633.9505004882812, 0.962820291519165, 1087.21630859375, 637.8097534179688, 0.9796851277351379, 1082.279052734375, 387.2881774902344, 0.9710058569908142, 1020.6661376953125, 766.45068359375, 0.9135265350341797, 1135.299560546875, 762.12841796875, 0.9440155625343323, 1077.18994140625, 373.28436279296875, 0.9797465801239014, 1001.9124145507812, 784.6629638671875, 0.8657948970794678, 1105.165283203125, 787.7754516601562, 0.9460551738739014, 1070.1378173828125, 299.2491760253906, 0.9885680079460144, 1099.5399169921875, 327.6929626464844, 0.9879658222198486, 1050.311279296875, 334.59893798828125, 0.9910037517547607, 1067.8082275390625, 277.68438720703125, 0.9456600546836853, 1123.843505859375, 318.30609130859375, 0.9749773144721985, 1017.5137939453125, 334.40234375, 0.9851937294006348, 1129.932861328125, 401.19293212890625, 0.9604088068008423, 957.17529296875, 385.3674011230469, 0.9396950006484985, 1053.6575927734375, 416.64349365234375, 0.9418975710868835, 996.7047119140625, 408.2030944824219, 0.951590359210968, 1032.94482421875, 415.9502868652344, 0.912020742893219, 1008.9183349609375, 412.55914306640625, 0.925125002861023, 1068.1861572265625, 201.19277954101562, 0.9546607136726379, 1012.40771484375, 413.5405578613281, 0.8431453704833984, 1029.3931884765625, 410.04791259765625, 0.8489689826965332, 993.9930419921875, 780.0369262695312, 0.8796469569206238, 1087.4423828125, 790.147705078125, 0.9463387131690979], "score": 2.9606170654296875, "box": [944.4075317382812, 192.1676788330078, 208.84735107421875, 634.3282928466797], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.052009277045726776, 0.0911417305469513, -0.043074510991573334], [-0.04355898126959801, 0.08890260756015778, 0.05084003880620003], [0.0163396168500185, -0.10489983856678009, 0.018143828958272934], [-0.07529789954423904, 0.4518481194972992, -0.07332958281040192], [0.021030837669968605, 0.4669644832611084, 0.12547597289085388], [0.0016625949647277594, -0.23338682949543, -0.011485446244478226], [-0.1664266735315323, 0.8467314839363098, -0.05346792936325073], [0.16591677069664001, 0.8348298072814941, 0.2157512903213501], [-0.014923763461411, -0.27322590351104736, -0.04822121933102608], [-0.24203380942344666, 0.9119652509689331, -0.14236602187156677], [0.06541579961776733, 0.9220288991928101, 0.22962665557861328], [-0.033776141703128815, -0.4857023358345032, -0.05462981387972832], [0.04857813939452171, -0.40042126178741455, -0.07364997267723083], [-0.08907395601272583, -0.3904269337654114, -0.0072103142738342285], [-0.04225759208202362, -0.538085401058197, -0.11884218454360962], [0.12153854966163635, -0.425989031791687, -0.1247233897447586], [-0.18597844243049622, -0.39176303148269653, 0.004152266308665276], [0.13348381221294403, -0.1821776181459427, -0.22730809450149536], [-0.3688236176967621, -0.23287247121334076, -0.0836295485496521], [-0.07705694437026978, -0.13522104918956757, -0.355150431394577], [-0.26600202918052673, -0.16231916844844818, -0.30943670868873596], [-0.12466873228549957, -0.13396398723125458, -0.4249449670314789], [-0.23279012739658356, -0.14692045748233795, -0.3853996694087982]]}, {"image_id": "76.jpg", "category_id": 1, "keypoints": [1226.760498046875, 467.440185546875, 0.9853376150131226, 1250.539794921875, 499.6617736816406, 0.9907473921775818, 1209.7352294921875, 503.7372741699219, 0.9879561066627502, 1232.2528076171875, 427.72271728515625, 0.9933030009269714, 1249.9461669921875, 650.7067260742188, 0.9729802012443542, 1227.1773681640625, 646.3251953125, 0.9776812195777893, 1229.203369140625, 375.14410400390625, 0.9837721586227417, 1232.540283203125, 792.548583984375, 0.8425546884536743, 1265.2088623046875, 773.7006225585938, 0.9209297299385071, 1223.4774169921875, 356.427490234375, 0.9873167872428894, 1201.2640380859375, 812.4091796875, 0.7698650360107422, 1221.1820068359375, 799.5484619140625, 0.9556658864021301, 1222.138916015625, 276.00555419921875, 0.9907079935073853, 1248.472900390625, 303.9833984375, 0.9833140969276428, 1201.8568115234375, 314.50714111328125, 0.9922510981559753, 1206.15087890625, 258.05181884765625, 0.9533901214599609, 1280.35546875, 283.74310302734375, 0.9751713275909424, 1182.1121826171875, 306.564453125, 0.9852370619773865, 1344.08203125, 202.03369140625, 0.9153051376342773, 1122.1339111328125, 340.5223388671875, 0.9670348167419434, 1296.6202392578125, 183.53500366210938, 0.9759496450424194, 1052.4835205078125, 398.13568115234375, 0.9631898403167725, 1286.892822265625, 178.35745239257812, 0.9656270742416382, 1028.8677978515625, 390.038330078125, 0.9395749568939209, 1182.0740966796875, 193.40496826171875, 0.9682328104972839, 1280.4945068359375, 178.08438110351562, 0.966049075126648, 1025.9915771484375, 364.7845764160156, 0.9304014444351196, 1195.54296875, 812.3204345703125, 0.7615218758583069, 1199.20947265625, 802.8659057617188, 0.9567143321037292], "score": 3.1816277503967285, "box": [952.468017578125, 162.38331604003906, 424.6348876953125, 672.6864471435547], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05623791366815567, 0.08761285990476608, -0.038024935871362686], [-0.03946347534656525, 0.08755069226026535, 0.050721947103738785], [0.009688600897789001, -0.1024811863899231, 0.01466367393732071], [0.05261921510100365, 0.4677993059158325, -0.062056828290224075], [0.012419694103300571, 0.4635671377182007, 0.12679490447044373], [0.005185123533010483, -0.23121502995491028, -0.00638621486723423], [-0.0025546506512910128, 0.8546717166900635, -0.14537470042705536], [0.12955859303474426, 0.8341654539108276, 0.21728889644145966], [-0.014577212743461132, -0.2790510356426239, -0.02465100586414337], [-0.1117066740989685, 0.9195518493652344, -0.17957906424999237], [0.016495224088430405, 0.9007477760314941, 0.21890988945960999], [-0.012116636149585247, -0.48603448271751404, 0.0007735844701528549], [0.051539625972509384, -0.40055838227272034, -0.04834459349513054], [-0.06129354611039162, -0.3905462324619293, 0.047245074063539505], [-0.05802325904369354, -0.5282490253448486, -0.05414508655667305], [0.1264568716287613, -0.4397474229335785, -0.08023525774478912], [-0.12204626202583313, -0.4214923679828644, 0.11346487700939178], [0.2526678442955017, -0.6121968030929565, -0.22973230481147766], [-0.31357771158218384, -0.31728532910346985, 0.24256271123886108], [0.1257849782705307, -0.6907563209533691, -0.03369336947798729], [-0.4940614104270935, -0.16610175371170044, 0.14748933911323547], [0.09993167221546173, -0.7165910005569458, 0.04034379497170448], [-0.568551778793335, -0.19029691815376282, 0.12202686071395874]]}, {"image_id": "76.jpg", "category_id": 1, "keypoints": [1080.3719482421875, 472.3947448730469, 0.9817627668380737, 1097.9794921875, 502.4068603515625, 0.984533965587616, 1064.553955078125, 504.1048278808594, 0.9877733588218689, 1084.97412109375, 433.2321472167969, 0.9930981397628784, 1050.2857666015625, 634.5848999023438, 0.9654899835586548, 1086.866943359375, 638.3469848632812, 0.978651225566864, 1081.3294677734375, 387.445556640625, 0.9685633778572083, 1020.4964599609375, 765.8298950195312, 0.9238919019699097, 1134.1234130859375, 760.48388671875, 0.9352232217788696, 1076.6715087890625, 373.35882568359375, 0.9778574109077454, 1003.632080078125, 784.9930419921875, 0.8669080138206482, 1104.38916015625, 786.60595703125, 0.9437458515167236, 1069.8095703125, 299.39056396484375, 0.9889312386512756, 1099.32373046875, 327.7203674316406, 0.988030195236206, 1049.90087890625, 335.0041809082031, 0.9913588762283325, 1067.3294677734375, 277.458740234375, 0.9466893076896667, 1124.1180419921875, 318.37353515625, 0.9736636281013489, 1017.5015869140625, 335.04705810546875, 0.9852273464202881, 1133.028564453125, 398.72412109375, 0.962872326374054, 957.1788940429688, 386.32781982421875, 0.9410892128944397, 1056.5584716796875, 416.2081604003906, 0.9385623931884766, 993.2959594726562, 407.6982116699219, 0.9522034525871277, 1035.895751953125, 414.61083984375, 0.9134312272071838, 1006.3507080078125, 412.8076477050781, 0.9269806146621704, 1065.712890625, 201.821533203125, 0.9533554315567017, 1016.0122680664062, 412.4913024902344, 0.807594358921051, 1027.2835693359375, 411.00885009765625, 0.8517323732376099, 996.7305908203125, 780.9780883789062, 0.8814830780029297, 1090.6680908203125, 789.1974487304688, 0.9418667554855347], "score": 2.9844696521759033, "box": [945.9161376953125, 192.13858032226562, 207.7744140625, 637.3612976074219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.054050546139478683, 0.09064218401908875, -0.04042379558086395], [-0.04372791945934296, 0.08859139680862427, 0.050273798406124115], [0.014422889798879623, -0.10473555326461792, 0.017356568947434425], [-0.07664616405963898, 0.44945845007896423, -0.07107694447040558], [0.021617358550429344, 0.4657820761203766, 0.1249193325638771], [0.001016592956148088, -0.23315995931625366, -0.012349717319011688], [-0.16482147574424744, 0.843008816242218, -0.03902812302112579], [0.16554903984069824, 0.8305006623268127, 0.22361686825752258], [-0.014202073216438293, -0.27301841974258423, -0.049283839762210846], [-0.23350399732589722, 0.9124631881713867, -0.12978102266788483], [0.0661698654294014, 0.9189326763153076, 0.23299682140350342], [-0.03284863382577896, -0.48479193449020386, -0.05422228202223778], [0.04940611124038696, -0.3998379111289978, -0.07251454144716263], [-0.08852411806583405, -0.38942331075668335, -0.008585292845964432], [-0.041686609387397766, -0.5383236408233643, -0.11746545881032944], [0.12364005297422409, -0.4253290891647339, -0.12108427286148071], [-0.1848648339509964, -0.39013683795928955, 0.004191460087895393], [0.14467105269432068, -0.18146881461143494, -0.2202254682779312], [-0.3687872588634491, -0.22975757718086243, -0.07608477771282196], [-0.06420901417732239, -0.12955373525619507, -0.3474062979221344], [-0.27262789011001587, -0.16169142723083496, -0.3047560751438141], [-0.1134241372346878, -0.13047754764556885, -0.4157038927078247], [-0.23724210262298584, -0.14437711238861084, -0.37894773483276367]]}, {"image_id": "77.jpg", "category_id": 1, "keypoints": [1225.576904296875, 467.2334899902344, 0.9851940870285034, 1250.091552734375, 499.3059387207031, 0.9911900162696838, 1208.0648193359375, 502.73553466796875, 0.9882971048355103, 1231.28662109375, 427.67620849609375, 0.9935907125473022, 1251.87841796875, 649.790283203125, 0.9780494570732117, 1223.809814453125, 647.0874633789062, 0.9787095785140991, 1227.4425048828125, 374.6669921875, 0.9830657839775085, 1235.7015380859375, 793.3609619140625, 0.8426365852355957, 1254.626953125, 775.8949584960938, 0.9050427675247192, 1221.4984130859375, 355.7890625, 0.9871773719787598, 1200.5360107421875, 812.572998046875, 0.7675172090530396, 1202.5509033203125, 797.1163330078125, 0.9492588043212891, 1220.581787109375, 274.48590087890625, 0.9900206327438354, 1246.9676513671875, 304.0738830566406, 0.9845286011695862, 1199.6910400390625, 312.86688232421875, 0.9913619160652161, 1205.1826171875, 256.37646484375, 0.9502429366111755, 1279.7498779296875, 283.37835693359375, 0.9770522713661194, 1179.1348876953125, 303.7520751953125, 0.9868250489234924, 1344.4976806640625, 204.10931396484375, 0.9239931702613831, 1120.610107421875, 338.363525390625, 0.964285671710968, 1295.4351806640625, 183.02365112304688, 0.9779117107391357, 1052.434326171875, 394.1668701171875, 0.9572577476501465, 1285.334228515625, 176.71466064453125, 0.9661974310874939, 1026.42626953125, 387.75579833984375, 0.9499874114990234, 1184.060302734375, 188.31329345703125, 0.9661813378334045, 1278.0802001953125, 172.47067260742188, 0.9615089893341064, 1013.7235107421875, 370.5370178222656, 0.906242311000824, 1194.096435546875, 811.2191162109375, 0.7419945001602173, 1182.4686279296875, 799.48583984375, 0.9515548348426819], "score": 3.1807613372802734, "box": [949.7528686523438, 163.61541748046875, 427.49664306640625, 670.38232421875], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.057699378579854965, 0.08834061026573181, -0.033409483730793], [-0.0406903475522995, 0.08604958653450012, 0.05194476991891861], [0.008764141239225864, -0.10274061560630798, 0.01182093471288681], [0.05991148576140404, 0.4682176411151886, -0.059302590787410736], [0.006126423366367817, 0.4628535509109497, 0.12617385387420654], [0.0032276955898851156, -0.23068490624427795, -0.013495944440364838], [0.009995722211897373, 0.8591684103012085, -0.12240567803382874], [0.10278665274381638, 0.8361916542053223, 0.2270345687866211], [-0.016180429607629776, -0.2781825363636017, -0.03279127925634384], [-0.10061624646186829, 0.9140548706054688, -0.16732972860336304], [-0.018689408898353577, 0.8854327201843262, 0.2246306836605072], [-0.014082997106015682, -0.4853998124599457, -0.01130761206150055], [0.0507681705057621, -0.3989250361919403, -0.056733325123786926], [-0.06470001488924026, -0.3909322917461395, 0.03542950004339218], [-0.05894981697201729, -0.5285170078277588, -0.06651276350021362], [0.12513679265975952, -0.439978688955307, -0.08726441115140915], [-0.12695656716823578, -0.4249632656574249, 0.09851912409067154], [0.2571384012699127, -0.6092270612716675, -0.2350081503391266], [-0.3136059641838074, -0.3189513385295868, 0.23270580172538757], [0.12167368084192276, -0.6959704160690308, -0.04869077354669571], [-0.4990997016429901, -0.1654103398323059, 0.1528923511505127], [0.09327287971973419, -0.7260574102401733, 0.022659115493297577], [-0.5724923014640808, -0.18178394436836243, 0.11955109983682632]]}, {"image_id": "77.jpg", "category_id": 1, "keypoints": [1081.9141845703125, 471.6634521484375, 0.9828827381134033, 1098.405029296875, 501.6128845214844, 0.9827398657798767, 1066.5322265625, 503.68133544921875, 0.9881132245063782, 1087.2694091796875, 432.299560546875, 0.9934344291687012, 1048.864990234375, 633.9727172851562, 0.9661707282066345, 1086.6744384765625, 638.7241821289062, 0.9776784181594849, 1082.133544921875, 386.8258056640625, 0.9688856601715088, 1018.3091430664062, 765.426025390625, 0.9237422347068787, 1137.39599609375, 763.4447021484375, 0.9518287181854248, 1076.6378173828125, 373.00299072265625, 0.9790661334991455, 998.9047241210938, 784.3287353515625, 0.8647758960723877, 1106.246826171875, 790.3472900390625, 0.9471231698989868, 1069.6243896484375, 298.93701171875, 0.988689124584198, 1098.8631591796875, 327.5072937011719, 0.9876731038093567, 1050.4031982421875, 334.39312744140625, 0.9908031225204468, 1065.994140625, 277.2709655761719, 0.9483198523521423, 1123.328125, 318.6802978515625, 0.9717409610748291, 1018.0908813476562, 334.535888671875, 0.985895037651062, 1131.9329833984375, 397.7381286621094, 0.964820921421051, 956.931396484375, 384.61376953125, 0.9384302496910095, 1056.6131591796875, 415.7052917480469, 0.9305999279022217, 992.816650390625, 407.0162658691406, 0.9553616642951965, 1035.29296875, 416.2456970214844, 0.9273948669433594, 1005.8848266601562, 413.0914306640625, 0.9296514987945557, 1066.736572265625, 200.63787841796875, 0.9527953267097473, 1011.5680541992188, 414.63995361328125, 0.8407599329948425, 1026.984130859375, 411.3297119140625, 0.8502972722053528, 992.1456909179688, 780.9769287109375, 0.8873810768127441, 1091.666015625, 792.33642578125, 0.9454589486122131], "score": 2.906242847442627, "box": [945.60791015625, 195.08309936523438, 207.6888427734375, 630.6752624511719], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05056559666991234, 0.09027722477912903, -0.04539583623409271], [-0.04208531230688095, 0.08922871947288513, 0.050505563616752625], [0.016728388145565987, -0.10411436855792999, 0.018978886306285858], [-0.08431404829025269, 0.4477109909057617, -0.0726604163646698], [0.016970476135611534, 0.46867626905441284, 0.11816471815109253], [-0.0011337497271597385, -0.23241157829761505, -0.009225497022271156], [-0.17376354336738586, 0.8395417332649231, -0.027314238250255585], [0.1678525060415268, 0.8337722420692444, 0.20373019576072693], [-0.01891140080988407, -0.2716773748397827, -0.0456717312335968], [-0.25148430466651917, 0.9075238108634949, -0.11165003478527069], [0.06745631992816925, 0.9212867617607117, 0.21031208336353302], [-0.036997947841882706, -0.4834386706352234, -0.05372672528028488], [0.044317420572042465, -0.3978126645088196, -0.07327037304639816], [-0.09142640978097916, -0.3890741467475891, -0.0045557040721178055], [-0.04897196590900421, -0.5365405678749084, -0.1168762817978859], [0.11657397449016571, -0.4211127758026123, -0.12580357491970062], [-0.187738299369812, -0.38952475786209106, 0.008595351129770279], [0.13540787994861603, -0.1839965432882309, -0.24039360880851746], [-0.3707989454269409, -0.23489533364772797, -0.08381301164627075], [-0.07809936255216599, -0.12919007241725922, -0.358256459236145], [-0.2748081088066101, -0.1636228710412979, -0.31150585412979126], [-0.12671321630477905, -0.12524281442165375, -0.4268702268600464], [-0.23995476961135864, -0.14386658370494843, -0.38532423973083496]]}, {"image_id": "78.jpg", "category_id": 1, "keypoints": [1226.2802734375, 465.1583251953125, 0.9850035309791565, 1250.1259765625, 497.9892578125, 0.9908545613288879, 1208.109130859375, 500.9091491699219, 0.9874120354652405, 1232.3514404296875, 425.74969482421875, 0.992706298828125, 1250.0435791015625, 648.119140625, 0.9782664775848389, 1221.6541748046875, 644.9880981445312, 0.9793511629104614, 1228.361328125, 373.06719970703125, 0.9831963777542114, 1239.7935791015625, 791.8326416015625, 0.8281660079956055, 1243.0272216796875, 778.0296630859375, 0.9009826183319092, 1222.2564697265625, 354.250244140625, 0.9871975183486938, 1206.5904541015625, 811.8928833007812, 0.7762047052383423, 1187.8214111328125, 798.891357421875, 0.9410462975502014, 1220.14892578125, 273.24127197265625, 0.9894681572914124, 1246.9554443359375, 302.7061767578125, 0.9857460260391235, 1199.559814453125, 311.8824157714844, 0.991648256778717, 1205.183349609375, 255.5244903564453, 0.9491023421287537, 1278.9371337890625, 282.60748291015625, 0.9752412438392639, 1178.1512451171875, 303.03082275390625, 0.9874131083488464, 1345.50439453125, 201.59854125976562, 0.9361704587936401, 1118.728515625, 340.963134765625, 0.9612953662872314, 1295.938232421875, 182.62265014648438, 0.9757016897201538, 1052.0579833984375, 396.1520080566406, 0.9552209377288818, 1285.051025390625, 176.02914428710938, 0.9649724364280701, 1023.9212646484375, 389.5269470214844, 0.9585714936256409, 1183.7012939453125, 187.93280029296875, 0.9668805599212646, 1277.787841796875, 173.47494506835938, 0.965760350227356, 1011.353759765625, 373.433837890625, 0.9035400748252869, 1201.0880126953125, 808.1578369140625, 0.7381322979927063, 1173.922119140625, 798.7891845703125, 0.9470006227493286], "score": 3.1772384643554688, "box": [951.4469604492188, 163.81475830078125, 426.36419677734375, 670.3851928710938], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0566096231341362, 0.0891740545630455, -0.03409227356314659], [-0.04270560294389725, 0.08604813367128372, 0.05101827532052994], [0.01055916491895914, -0.10285481810569763, 0.013012558221817017], [0.05417116358876228, 0.46954092383384705, -0.059251103550195694], [-0.0012320502428337932, 0.4631834328174591, 0.12926273047924042], [0.0039668818935751915, -0.23119226098060608, -0.00985567457973957], [0.01986931636929512, 0.8619933128356934, -0.1286313384771347], [0.06725802272558212, 0.8450237512588501, 0.22484427690505981], [-0.016181807965040207, -0.2785949110984802, -0.029044171795248985], [-0.08728872984647751, 0.9203774929046631, -0.17807357013225555], [-0.05574820935726166, 0.8910024166107178, 0.22006136178970337], [-0.016069237142801285, -0.4857620298862457, -0.0023621320724487305], [0.05041908845305443, -0.4008300006389618, -0.04908878728747368], [-0.06697974354028702, -0.38962313532829285, 0.04137132316827774], [-0.05981071665883064, -0.5275449752807617, -0.0593147911131382], [0.12666185200214386, -0.4410570561885834, -0.07684987783432007], [-0.13139116764068604, -0.4224558174610138, 0.1034182608127594], [0.26194125413894653, -0.6153583526611328, -0.21631307899951935], [-0.31850436329841614, -0.30678293108940125, 0.229725643992424], [0.12303746491670609, -0.6963119506835938, -0.02923053503036499], [-0.5013362765312195, -0.15362247824668884, 0.14187197387218475], [0.09080875664949417, -0.7277201414108276, 0.040163688361644745], [-0.57257479429245, -0.1684296727180481, 0.10299010574817657]]}, {"image_id": "78.jpg", "category_id": 1, "keypoints": [1081.7225341796875, 471.441650390625, 0.9828179478645325, 1098.2015380859375, 501.4160461425781, 0.9834727048873901, 1066.123046875, 503.6160583496094, 0.9878990650177002, 1087.223876953125, 432.02593994140625, 0.9934887290000916, 1049.4027099609375, 633.27099609375, 0.9654207825660706, 1086.6292724609375, 637.819580078125, 0.9790779948234558, 1082.2916259765625, 386.6229553222656, 0.9688230752944946, 1018.7509765625, 766.3320922851562, 0.9193364381790161, 1135.5001220703125, 760.536376953125, 0.9405680894851685, 1076.8515625, 372.7440185546875, 0.9792073965072632, 1000.7227172851562, 785.2735595703125, 0.8656929731369019, 1103.70654296875, 786.6280517578125, 0.9452738165855408, 1069.708740234375, 298.90850830078125, 0.9888455271720886, 1098.965576171875, 327.209716796875, 0.9878869652748108, 1050.5008544921875, 334.5596923828125, 0.9912096261978149, 1066.38134765625, 276.97119140625, 0.9484186768531799, 1123.3348388671875, 318.55938720703125, 0.9719721078872681, 1018.3009033203125, 335.11932373046875, 0.9860156774520874, 1130.439208984375, 397.2218017578125, 0.9654054641723633, 956.3504028320312, 385.7284240722656, 0.940801203250885, 1054.4383544921875, 415.056640625, 0.9307071566581726, 991.5048217773438, 406.57073974609375, 0.9581840634346008, 1033.324462890625, 414.9510803222656, 0.9215906262397766, 1004.443359375, 412.434814453125, 0.9266020655632019, 1064.9814453125, 201.22006225585938, 0.9520589113235474, 1012.1945190429688, 413.54150390625, 0.8248682022094727, 1025.6961669921875, 410.9215393066406, 0.8539188504219055, 993.40673828125, 781.2399291992188, 0.8828842043876648, 1087.5775146484375, 788.8640747070312, 0.947347104549408], "score": 2.9482998847961426, "box": [945.9173583984375, 194.26573181152344, 207.040283203125, 632.3786773681641], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.050735004246234894, 0.09060672670602798, -0.04506656154990196], [-0.04273345693945885, 0.08920884877443314, 0.05047488957643509], [0.016947293654084206, -0.10433879494667053, 0.019010821357369423], [-0.08295789361000061, 0.44822660088539124, -0.07844733446836472], [0.017763912677764893, 0.4672069847583771, 0.12621939182281494], [-0.00011828367132693529, -0.2330513298511505, -0.00796445831656456], [-0.17282745242118835, 0.8423095941543579, -0.0530877560377121], [0.16535626351833344, 0.8307199478149414, 0.2257634401321411], [-0.017834337428212166, -0.27280667424201965, -0.04407734051346779], [-0.24424001574516296, 0.9088454246520996, -0.1441367268562317], [0.06309626251459122, 0.9159109592437744, 0.2365230917930603], [-0.03641850873827934, -0.48496344685554504, -0.04917770251631737], [0.04519880935549736, -0.3997146785259247, -0.07017108052968979], [-0.09070860594511032, -0.3897008001804352, -0.0011295638978481293], [-0.04756048694252968, -0.5388894081115723, -0.1117156371474266], [0.11795931309461594, -0.42277792096138, -0.12239386141300201], [-0.1869809478521347, -0.38899174332618713, 0.013477211818099022], [0.1329060196876526, -0.18372687697410583, -0.2342718243598938], [-0.3730417788028717, -0.23270204663276672, -0.07078870385885239], [-0.08038890361785889, -0.12970158457756042, -0.3535941243171692], [-0.2783917486667633, -0.16526660323143005, -0.3005732595920563], [-0.12982605397701263, -0.12717598676681519, -0.4218561351299286], [-0.2434604912996292, -0.1458924114704132, -0.37462377548217773]]}, {"image_id": "79.jpg", "category_id": 1, "keypoints": [1223.04296875, 461.9396667480469, 0.985217273235321, 1246.6048583984375, 495.0484924316406, 0.9908027052879333, 1205.33837890625, 496.7191162109375, 0.9874908328056335, 1229.161865234375, 422.4599304199219, 0.99367755651474, 1252.061279296875, 645.9598388671875, 0.9796889424324036, 1216.807861328125, 642.6165771484375, 0.9780772924423218, 1225.5980224609375, 370.08074951171875, 0.9810292720794678, 1242.5177001953125, 791.69287109375, 0.8288423418998718, 1232.272705078125, 778.29833984375, 0.9101219773292542, 1219.75927734375, 351.82537841796875, 0.9872212409973145, 1202.564208984375, 817.3610229492188, 0.7809461355209351, 1179.0225830078125, 796.924560546875, 0.9321642518043518, 1218.6417236328125, 272.26995849609375, 0.98970627784729, 1245.0614013671875, 301.26995849609375, 0.9847623705863953, 1198.74365234375, 309.7070007324219, 0.9915526509284973, 1202.73828125, 253.65142822265625, 0.9488850235939026, 1277.9630126953125, 282.483642578125, 0.9752412438392639, 1178.5908203125, 301.093505859375, 0.9866427779197693, 1342.929931640625, 201.22122192382812, 0.9165086150169373, 1120.72607421875, 342.2367858886719, 0.9586790204048157, 1292.1627197265625, 181.536376953125, 0.9770269989967346, 1051.9810791015625, 392.99102783203125, 0.9582769274711609, 1282.3494873046875, 174.94845581054688, 0.9660349488258362, 1023.8580322265625, 388.2920227050781, 0.9506782293319702, 1182.5189208984375, 187.65750122070312, 0.9695658683776855, 1274.8887939453125, 168.89974975585938, 0.9592331051826477, 1005.0235595703125, 378.8802795410156, 0.9033629894256592, 1192.796630859375, 817.870849609375, 0.7587230205535889, 1164.1224365234375, 796.7994995117188, 0.9387252926826477], "score": 3.1780240535736084, "box": [947.4943237304688, 160.70457458496094, 427.94744873046875, 676.7097320556641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05575668439269066, 0.0898551195859909, -0.033747680485248566], [-0.041675351560115814, 0.08509578555822372, 0.053438179194927216], [0.010935574769973755, -0.1030183881521225, 0.01094832830131054], [0.06773830950260162, 0.4703478217124939, -0.05410228669643402], [-0.005779540631920099, 0.46167755126953125, 0.13701452314853668], [0.004855906590819359, -0.2311175912618637, -0.012927418574690819], [0.03839267045259476, 0.8676276803016663, -0.09089429676532745], [0.04518136382102966, 0.8461192846298218, 0.23329903185367584], [-0.015619559213519096, -0.27741384506225586, -0.03429633378982544], [-0.07065451145172119, 0.9332796931266785, -0.12449663877487183], [-0.07868099212646484, 0.8897952437400818, 0.23676978051662445], [-0.01128736138343811, -0.4851566553115845, -0.013482743874192238], [0.05183523893356323, -0.39796125888824463, -0.06056717038154602], [-0.06166818365454674, -0.3911285996437073, 0.03503593057394028], [-0.05692736431956291, -0.5293596386909485, -0.0669322982430458], [0.12909527122974396, -0.4296068549156189, -0.09550999850034714], [-0.12211400270462036, -0.42360198497772217, 0.10103655606508255], [0.2578372061252594, -0.601131021976471, -0.24438177049160004], [-0.2986513078212738, -0.3014969229698181, 0.2362910360097885], [0.11144453287124634, -0.6844668388366699, -0.0641874149441719], [-0.4891793131828308, -0.15869967639446259, 0.14726318418979645], [0.08493910729885101, -0.7149572968482971, 0.007961148396134377], [-0.5629642605781555, -0.16929136216640472, 0.11193106323480606]]}, {"image_id": "79.jpg", "category_id": 1, "keypoints": [1080.7685546875, 470.9924621582031, 0.9827090501785278, 1097.59619140625, 500.5987854003906, 0.9848218560218811, 1065.6295166015625, 503.1950378417969, 0.9874761700630188, 1086.0369873046875, 431.7835388183594, 0.9933427572250366, 1050.359375, 632.8865966796875, 0.9658105373382568, 1086.7381591796875, 637.2630004882812, 0.9780862927436829, 1081.34228515625, 386.3667297363281, 0.9691070318222046, 1020.7919311523438, 765.5983276367188, 0.9216241836547852, 1137.86669921875, 760.281982421875, 0.9394874572753906, 1075.99462890625, 372.470703125, 0.9789681434631348, 1003.8311767578125, 786.2381591796875, 0.8661925196647644, 1105.27978515625, 787.116943359375, 0.945864737033844, 1069.0439453125, 299.38031005859375, 0.9887791872024536, 1098.448974609375, 327.1389465332031, 0.9876102805137634, 1049.974609375, 334.86322021484375, 0.9916312098503113, 1065.4937744140625, 277.03997802734375, 0.9477287530899048, 1122.9444580078125, 318.31634521484375, 0.9717937111854553, 1018.191162109375, 335.3052062988281, 0.9853681325912476, 1133.5887451171875, 398.5536804199219, 0.965300440788269, 955.3350830078125, 386.54840087890625, 0.9418073892593384, 1054.132568359375, 415.27703857421875, 0.9218047857284546, 987.4483642578125, 404.5773010253906, 0.9584517478942871, 1034.1856689453125, 414.9800720214844, 0.9375536441802979, 1001.0980224609375, 410.0145263671875, 0.9252043962478638, 1064.8624267578125, 201.56268310546875, 0.9495546817779541, 1011.8132934570312, 412.5758056640625, 0.8328267335891724, 1022.5934448242188, 409.0860595703125, 0.8434631824493408, 996.9324951171875, 783.8131103515625, 0.8910002112388611, 1090.357666015625, 789.5449829101562, 0.944985568523407], "score": 2.953622341156006, "box": [947.0747680664062, 192.12152099609375, 203.52154541015625, 636.8060913085938], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05178292468190193, 0.0898810550570488, -0.04446778818964958], [-0.042121052742004395, 0.08930590003728867, 0.05002480745315552], [0.015594282187521458, -0.10391345620155334, 0.018868686631321907], [-0.0779280811548233, 0.44944193959236145, -0.07770807296037674], [0.02007603645324707, 0.46832531690597534, 0.12039027363061905], [0.00010397075675427914, -0.2321666181087494, -0.008521469309926033], [-0.16460128128528595, 0.8436890244483948, -0.04514390230178833], [0.17334379255771637, 0.8308016657829285, 0.21466434001922607], [-0.017294866964221, -0.272003710269928, -0.044152602553367615], [-0.2314150631427765, 0.9163682460784912, -0.13469363749027252], [0.07102669775485992, 0.9159082770347595, 0.2218700498342514], [-0.0356370210647583, -0.483368456363678, -0.05012897402048111], [0.045505449175834656, -0.3982154130935669, -0.07055205851793289], [-0.0895792618393898, -0.3886869549751282, -0.0018052924424409866], [-0.04727167636156082, -0.5382307767868042, -0.11169619858264923], [0.11809946596622467, -0.4216614365577698, -0.12206922471523285], [-0.18459641933441162, -0.38861602544784546, 0.017265954986214638], [0.1434050351381302, -0.1811743974685669, -0.2287082076072693], [-0.375718891620636, -0.22950810194015503, -0.04791375994682312], [-0.07360880076885223, -0.13165283203125, -0.34269481897354126], [-0.288405179977417, -0.1691133677959442, -0.2824200987815857], [-0.12474605441093445, -0.1297069787979126, -0.40943193435668945], [-0.2520519495010376, -0.15117326378822327, -0.3559107780456543]]}, {"image_id": "80.jpg", "category_id": 1, "keypoints": [1217.3447265625, 461.5813293457031, 0.9853479266166687, 1240.044189453125, 494.86065673828125, 0.9905313849449158, 1199.796630859375, 496.08953857421875, 0.9884017109870911, 1223.6790771484375, 422.1123046875, 0.9942501783370972, 1251.5166015625, 643.601806640625, 0.9774384498596191, 1205.5731201171875, 640.6235961914062, 0.9784591197967529, 1219.7783203125, 369.765869140625, 0.9786359667778015, 1247.6357421875, 788.6942138671875, 0.8280263543128967, 1219.0438232421875, 778.8993530273438, 0.9220438003540039, 1214.2431640625, 351.261962890625, 0.9867708683013916, 1210.376953125, 815.6578369140625, 0.8245589733123779, 1167.3138427734375, 795.0467529296875, 0.9315863847732544, 1213.6748046875, 272.05047607421875, 0.989460825920105, 1239.7098388671875, 301.03253173828125, 0.9870338439941406, 1192.8544921875, 309.2841491699219, 0.9906919598579407, 1198.169921875, 254.27191162109375, 0.9561455845832825, 1274.4517822265625, 282.1636657714844, 0.9787524342536926, 1173.1632080078125, 301.07611083984375, 0.9872390627861023, 1343.2930908203125, 201.8675537109375, 0.9377472400665283, 1116.0230712890625, 347.99798583984375, 0.956979513168335, 1291.1385498046875, 182.64688110351562, 0.979245126247406, 1043.5533447265625, 401.7565612792969, 0.9637129306793213, 1280.0391845703125, 179.13290405273438, 0.9668997526168823, 1014.0485229492188, 409.57000732421875, 0.9055191278457642, 1174.763916015625, 188.00360107421875, 0.9684000611305237, 1272.2816162109375, 181.2320556640625, 0.9633813500404358, 998.8199462890625, 405.1854248046875, 0.8911949396133423, 1198.117431640625, 813.0258178710938, 0.7722302079200745, 1151.735595703125, 794.150634765625, 0.935550332069397], "score": 3.1803455352783203, "box": [943.4344482421875, 161.73753356933594, 431.0888671875, 674.7951812744141], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.055078402161598206, 0.09023474901914597, -0.03235505521297455], [-0.042391423135995865, 0.08396276086568832, 0.05372881889343262], [0.011488550342619419, -0.10260134935379028, 0.009969433769583702], [0.0823059156537056, 0.4687572121620178, -0.055224984884262085], [-0.021067477762699127, 0.459949254989624, 0.13962715864181519], [0.004506202880293131, -0.23033562302589417, -0.015594571828842163], [0.06667082756757736, 0.8626906871795654, -0.11230846494436264], [0.022749148309230804, 0.8456152677536011, 0.22690705955028534], [-0.013570692390203476, -0.27782875299453735, -0.03603410720825195], [-0.03952789306640625, 0.9363924264907837, -0.13504357635974884], [-0.10208382457494736, 0.8849633932113647, 0.23083993792533875], [-0.011366166174411774, -0.4851316511631012, -0.017315661534667015], [0.05410636588931084, -0.39798983931541443, -0.06030973047018051], [-0.0631585642695427, -0.3915059268474579, 0.029679996892809868], [-0.05744938924908638, -0.5288865566253662, -0.07089003175497055], [0.1318027526140213, -0.43305185437202454, -0.0899878442287445], [-0.12278041243553162, -0.42300912737846375, 0.09653925895690918], [0.27510765194892883, -0.604828953742981, -0.22254961729049683], [-0.29183468222618103, -0.28669026494026184, 0.22563496232032776], [0.12192652374505997, -0.6865735054016113, -0.04871217906475067], [-0.4805348515510559, -0.14460042119026184, 0.13442355394363403], [0.0860244408249855, -0.7079023122787476, 0.02230907790362835], [-0.5489227175712585, -0.1250402331352234, 0.09329194575548172]]}, {"image_id": "80.jpg", "category_id": 1, "keypoints": [1082.3868408203125, 471.9068603515625, 0.9823914766311646, 1098.2734375, 501.74566650390625, 0.9835365414619446, 1066.897705078125, 504.14404296875, 0.9869642853736877, 1088.46337890625, 432.7520751953125, 0.9936600923538208, 1049.631103515625, 633.056640625, 0.9637791514396667, 1086.460205078125, 637.152587890625, 0.9797773957252502, 1082.4002685546875, 387.0242919921875, 0.9686980843544006, 1017.2831420898438, 765.1519775390625, 0.9293185472488403, 1135.451416015625, 760.5726318359375, 0.9431464076042175, 1076.3333740234375, 372.925048828125, 0.9794589281082153, 997.1453247070312, 784.5360107421875, 0.8695542812347412, 1104.29150390625, 787.2462768554688, 0.9483916759490967, 1070.2578125, 299.279541015625, 0.9887975454330444, 1098.6512451171875, 327.92755126953125, 0.9877171516418457, 1051.2625732421875, 334.60992431640625, 0.9912935495376587, 1066.1431884765625, 276.99652099609375, 0.9496302604675293, 1123.447265625, 319.70257568359375, 0.9727069735527039, 1019.4969482421875, 334.50421142578125, 0.9853943586349487, 1128.136962890625, 399.49072265625, 0.9682408571243286, 956.281005859375, 385.5321044921875, 0.9392032027244568, 1048.9173583984375, 413.9512634277344, 0.9297274351119995, 988.5916748046875, 403.9912414550781, 0.9641060829162598, 1027.87255859375, 414.5877990722656, 0.9263802170753479, 1001.5761108398438, 410.0502014160156, 0.9260354042053223, 1065.9910888671875, 201.98147583007812, 0.95321124792099, 1005.74609375, 413.6679992675781, 0.8412681818008423, 1021.6764526367188, 409.3400573730469, 0.8517232537269592, 990.1559448242188, 781.3394165039062, 0.9009249210357666, 1087.0771484375, 788.408447265625, 0.9481378197669983], "score": 2.9110124111175537, "box": [947.737060546875, 196.6627197265625, 202.410888671875, 627.9324340820312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.048969559371471405, 0.09153115749359131, -0.04529675096273422], [-0.04179698973894119, 0.08833251148462296, 0.05287782847881317], [0.018051285296678543, -0.10450601577758789, 0.01712440699338913], [-0.0847427025437355, 0.4499358832836151, -0.06867095828056335], [0.016637202352285385, 0.46620917320251465, 0.13097499310970306], [-0.0017120474949479103, -0.2331847846508026, -0.007939983159303665], [-0.17806603014469147, 0.8397902250289917, -0.010158117860555649], [0.16427987813949585, 0.8313878774642944, 0.22468127310276031], [-0.021299410611391068, -0.2738368511199951, -0.04206230863928795], [-0.2573907971382141, 0.9086127281188965, -0.09256003797054291], [0.06385784596204758, 0.918702244758606, 0.2358480542898178], [-0.035595182329416275, -0.4864560663700104, -0.04367664456367493], [0.043475355952978134, -0.39984384179115295, -0.06861644983291626], [-0.09023268520832062, -0.3916458785533905, 0.004904855042695999], [-0.048850126564502716, -0.5415678024291992, -0.10468922555446625], [0.11704062670469284, -0.4214436709880829, -0.12035197019577026], [-0.18522909283638, -0.3933895528316498, 0.026185322552919388], [0.12479608505964279, -0.18129479885101318, -0.23088635504245758], [-0.37692320346832275, -0.23523101210594177, -0.040465738624334335], [-0.09710826724767685, -0.1369507908821106, -0.33803457021713257], [-0.2890591621398926, -0.173402339220047, -0.27456408739089966], [-0.15122701227664948, -0.132717102766037, -0.4025735855102539], [-0.25499874353408813, -0.15388274192810059, -0.3489992022514343]]}, {"image_id": "81.jpg", "category_id": 1, "keypoints": [1216.540283203125, 462.2131042480469, 0.9856194257736206, 1240.3548583984375, 495.86627197265625, 0.9911067485809326, 1198.49169921875, 497.1804504394531, 0.9875702857971191, 1222.326416015625, 423.25128173828125, 0.9931960105895996, 1254.0299072265625, 643.1222534179688, 0.9749151468276978, 1208.031005859375, 641.7039794921875, 0.9751718640327454, 1219.4373779296875, 370.8584899902344, 0.9807058572769165, 1248.7066650390625, 788.3602905273438, 0.8220252394676208, 1221.4486083984375, 780.46337890625, 0.917563796043396, 1214.311279296875, 352.15826416015625, 0.9878930449485779, 1212.64697265625, 814.8758544921875, 0.8174846172332764, 1166.7890625, 799.4422607421875, 0.9339207410812378, 1214.7808837890625, 272.1038818359375, 0.9890565276145935, 1240.0869140625, 301.6407470703125, 0.9871745109558105, 1193.1295166015625, 309.6637878417969, 0.9903904795646667, 1199.16552734375, 254.8742218017578, 0.9585422277450562, 1274.6151123046875, 281.5625, 0.979815661907196, 1174.7003173828125, 299.17083740234375, 0.9880492091178894, 1340.6944580078125, 202.12808227539062, 0.9417645335197449, 1117.166748046875, 340.9712219238281, 0.9576006531715393, 1291.9710693359375, 182.71875, 0.9759882688522339, 1050.3309326171875, 393.0908203125, 0.9630044102668762, 1281.8153076171875, 180.43569946289062, 0.9699212908744812, 1024.485107421875, 396.5462341308594, 0.9290909171104431, 1173.736328125, 187.72235107421875, 0.9686139822006226, 1276.37353515625, 186.74114990234375, 0.9686254262924194, 1030.686767578125, 381.9674377441406, 0.8777937889099121, 1199.2498779296875, 813.2120361328125, 0.7545206546783447, 1154.4017333984375, 797.6094970703125, 0.9422135949134827], "score": 3.178867816925049, "box": [943.431884765625, 165.37086486816406, 430.446044921875, 668.6960906982422], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05724770203232765, 0.08956170827150345, -0.030552420765161514], [-0.04382515698671341, 0.08466903865337372, 0.05151093751192093], [0.010121893137693405, -0.10269863903522491, 0.011000607162714005], [0.08954846858978271, 0.46719449758529663, -0.06233212724328041], [-0.013130342587828636, 0.4617515802383423, 0.13006186485290527], [0.005509288981556892, -0.22996269166469574, -0.01718229241669178], [0.06906189024448395, 0.8595232963562012, -0.12928631901741028], [0.030342357233166695, 0.8485342264175415, 0.21329379081726074], [-0.012424536049365997, -0.27697134017944336, -0.03886450082063675], [-0.033461254090070724, 0.9286808967590332, -0.17344516515731812], [-0.09342246502637863, 0.8915279507637024, 0.21349260210990906], [-0.0063303373754024506, -0.4838351011276245, -0.015930699184536934], [0.05786115676164627, -0.39628636837005615, -0.06010234355926514], [-0.06043285131454468, -0.39030909538269043, 0.028734013438224792], [-0.05230116844177246, -0.5252234935760498, -0.07144742459058762], [0.13521204888820648, -0.43317514657974243, -0.08858756721019745], [-0.11734072864055634, -0.429935097694397, 0.09370937943458557], [0.2742493152618408, -0.6071205139160156, -0.22303107380867004], [-0.29339703917503357, -0.30545079708099365, 0.22560429573059082], [0.14601661264896393, -0.687257707118988, -0.029234670102596283], [-0.4758588373661041, -0.16082637012004852, 0.12573236227035522], [0.11178291589021683, -0.7046056389808655, 0.043732404708862305], [-0.5376790761947632, -0.1503642052412033, 0.07253076136112213]]}, {"image_id": "81.jpg", "category_id": 1, "keypoints": [1082.61083984375, 470.73297119140625, 0.9825114607810974, 1099.782958984375, 500.12298583984375, 0.9841490387916565, 1066.32177734375, 503.2513732910156, 0.9861594438552856, 1088.462890625, 431.574462890625, 0.9935244917869568, 1052.329345703125, 633.54931640625, 0.9676487445831299, 1086.5537109375, 637.9393310546875, 0.978499174118042, 1083.3729248046875, 386.6239013671875, 0.9687260985374451, 1018.8557739257812, 765.5740966796875, 0.9212726354598999, 1135.8629150390625, 759.9457397460938, 0.9341042041778564, 1077.7449951171875, 372.8835144042969, 0.9789100885391235, 1003.0529174804688, 787.1846923828125, 0.8657485246658325, 1103.25, 785.5186767578125, 0.9447492957115173, 1069.8408203125, 299.677490234375, 0.9891432523727417, 1099.658935546875, 327.40850830078125, 0.9876985549926758, 1050.793701171875, 335.0803527832031, 0.99164217710495, 1066.9693603515625, 277.4835205078125, 0.9495697617530823, 1124.20068359375, 319.21099853515625, 0.9701087474822998, 1018.4033813476562, 335.76690673828125, 0.9854187369346619, 1129.897705078125, 398.334716796875, 0.9648593068122864, 955.6617431640625, 385.80487060546875, 0.9388416409492493, 1051.6834716796875, 414.7774658203125, 0.921536922454834, 987.64501953125, 403.74249267578125, 0.9660516381263733, 1030.7109375, 415.954345703125, 0.9393834471702576, 999.99267578125, 409.7058410644531, 0.9288032054901123, 1068.358154296875, 200.30966186523438, 0.9537734389305115, 1005.34912109375, 415.7955322265625, 0.8563429713249207, 1020.6771850585938, 409.40167236328125, 0.8282279968261719, 995.7249755859375, 785.2000732421875, 0.8814420700073242, 1088.347900390625, 786.797607421875, 0.9444074630737305], "score": 2.9799859523773193, "box": [947.3668823242188, 194.2425537109375, 202.96197509765625, 634.7151489257812], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05132882297039032, 0.0900731310248375, -0.044761598110198975], [-0.043847084045410156, 0.08938157558441162, 0.048540472984313965], [0.01664889231324196, -0.10374002158641815, 0.020270872861146927], [-0.07769724726676941, 0.44874852895736694, -0.08082456141710281], [0.015543493442237377, 0.46882814168930054, 0.1148362010717392], [0.00025180145166814327, -0.23150943219661713, -0.010212799534201622], [-0.17523188889026642, 0.8391229510307312, -0.04234752804040909], [0.16383491456508636, 0.8281077146530151, 0.22485482692718506], [-0.017855649814009666, -0.27034497261047363, -0.046840980648994446], [-0.23442873358726501, 0.9106374979019165, -0.13791242241859436], [0.05936984717845917, 0.9106506109237671, 0.2302972972393036], [-0.03931998461484909, -0.4815354347229004, -0.05697312206029892], [0.043363600969314575, -0.39713847637176514, -0.07534682750701904], [-0.0923646092414856, -0.38685745000839233, -0.007164297625422478], [-0.049167074263095856, -0.5356547832489014, -0.11953631788492203], [0.11635943502187729, -0.41873347759246826, -0.12740463018417358], [-0.1878581941127777, -0.38598746061325073, 0.010458245873451233], [0.1272866278886795, -0.17879055440425873, -0.23665198683738708], [-0.3791176378726959, -0.22987882792949677, -0.05982501059770584], [-0.09280574321746826, -0.12886391580104828, -0.343632310628891], [-0.2910507917404175, -0.16904450953006744, -0.2935030460357666], [-0.1454537957906723, -0.1233767420053482, -0.4089992642402649], [-0.25835248827934265, -0.14964039623737335, -0.3683328628540039]]}, {"image_id": "82.jpg", "category_id": 1, "keypoints": [1214.181640625, 460.59149169921875, 0.9853543043136597, 1237.99169921875, 494.07415771484375, 0.990277886390686, 1196.41943359375, 496.2408752441406, 0.9869423508644104, 1219.5797119140625, 421.4831848144531, 0.9930353164672852, 1254.5042724609375, 641.025634765625, 0.973568320274353, 1207.714111328125, 640.965087890625, 0.974891722202301, 1216.474853515625, 369.22381591796875, 0.9809327125549316, 1249.1131591796875, 786.302490234375, 0.8350430727005005, 1222.449951171875, 780.1725463867188, 0.9262268543243408, 1211.622314453125, 350.5190124511719, 0.9885686635971069, 1210.3524169921875, 809.6603393554688, 0.807807445526123, 1167.88916015625, 798.4508056640625, 0.9338104128837585, 1212.390380859375, 271.56707763671875, 0.989368736743927, 1237.95654296875, 300.326171875, 0.9879091382026672, 1190.1240234375, 309.11541748046875, 0.9909963011741638, 1197.8057861328125, 253.96051025390625, 0.9612689018249512, 1273.5279541015625, 280.67706298828125, 0.9810265898704529, 1171.706787109375, 299.7342529296875, 0.9885479211807251, 1341.2689208984375, 200.63815307617188, 0.9371405839920044, 1116.7276611328125, 348.060302734375, 0.948021411895752, 1289.2032470703125, 180.94638061523438, 0.9741734266281128, 1050.3353271484375, 393.0015869140625, 0.9647082090377808, 1279.843994140625, 178.80599975585938, 0.9687724113464355, 1025.5384521484375, 393.742919921875, 0.9328241348266602, 1173.3798828125, 185.67913818359375, 0.9693385362625122, 1275.9561767578125, 186.85379028320312, 0.9662035703659058, 1040.2989501953125, 372.8084716796875, 0.8812000155448914, 1195.780517578125, 805.7453002929688, 0.7255241870880127, 1154.5914306640625, 796.30810546875, 0.9439569711685181], "score": 3.1785085201263428, "box": [940.251220703125, 166.01608276367188, 433.539794921875, 668.1223449707031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05801861360669136, 0.0889643207192421, -0.030740464106202126], [-0.043257035315036774, 0.08519721776247025, 0.05104319006204605], [0.009203363209962845, -0.10252180695533752, 0.011336581781506538], [0.09764575213193893, 0.46664732694625854, -0.06314129382371902], [-0.008062020875513554, 0.46277153491973877, 0.1289607733488083], [0.004217298235744238, -0.2298966944217682, -0.014744415879249573], [0.07452145963907242, 0.8536015748977661, -0.15900780260562897], [0.038480550050735474, 0.8519275188446045, 0.20257355272769928], [-0.01273133885115385, -0.2772025167942047, -0.03619803488254547], [-0.03434457257390022, 0.913758397102356, -0.20126985013484955], [-0.08521165698766708, 0.8942711353302002, 0.21157869696617126], [-0.006334676407277584, -0.4835973083972931, -0.011564653366804123], [0.05814969167113304, -0.39628705382347107, -0.05524492263793945], [-0.06126289442181587, -0.3900369107723236, 0.031418003141880035], [-0.05018174275755882, -0.5267213582992554, -0.06739442050457001], [0.13728421926498413, -0.4311846196651459, -0.08054082840681076], [-0.11893821507692337, -0.4264408051967621, 0.0972665473818779], [0.278969943523407, -0.6037354469299316, -0.21489228308200836], [-0.2835569381713867, -0.28388866782188416, 0.22643348574638367], [0.145067498087883, -0.6826663017272949, -0.024050703272223473], [-0.4719001352787018, -0.15352526307106018, 0.11723495274782181], [0.11483066529035568, -0.6995402574539185, 0.050751395523548126], [-0.5363214612007141, -0.1493462324142456, 0.06630300730466843]]}, {"image_id": "82.jpg", "category_id": 1, "keypoints": [1080.6378173828125, 470.9521789550781, 0.9821833968162537, 1097.84033203125, 500.3828125, 0.9843853116035461, 1064.7535400390625, 503.39727783203125, 0.9866655468940735, 1086.25537109375, 431.98345947265625, 0.9934248924255371, 1051.7720947265625, 632.7298583984375, 0.9681094884872437, 1085.83740234375, 637.287109375, 0.9778358936309814, 1081.572265625, 386.79931640625, 0.9682145714759827, 1017.860107421875, 766.5219116210938, 0.9216241240501404, 1136.466552734375, 758.9072265625, 0.9338542222976685, 1075.99951171875, 372.81103515625, 0.9788041114807129, 1001.1530151367188, 787.529296875, 0.8704877495765686, 1102.736083984375, 784.6910400390625, 0.9460451006889343, 1069.3321533203125, 300.03106689453125, 0.9890621304512024, 1098.2825927734375, 327.86407470703125, 0.9883893728256226, 1050.34521484375, 335.21759033203125, 0.9916436076164246, 1065.841064453125, 277.6340026855469, 0.9489835500717163, 1122.9786376953125, 319.60357666015625, 0.969337522983551, 1018.8146362304688, 335.67724609375, 0.9856695532798767, 1131.4930419921875, 397.040283203125, 0.9640926122665405, 954.854248046875, 386.1676025390625, 0.9421800971031189, 1051.177734375, 414.5196838378906, 0.917417049407959, 985.4239501953125, 403.12420654296875, 0.9614517688751221, 1030.79833984375, 415.11212158203125, 0.9347296953201294, 998.4631958007812, 408.640869140625, 0.9268288016319275, 1066.34423828125, 201.15695190429688, 0.95377516746521, 1006.6099853515625, 413.5514831542969, 0.8456470966339111, 1018.7705078125, 408.304931640625, 0.8336453437805176, 994.4852905273438, 784.6016845703125, 0.8882733583450317, 1087.3402099609375, 786.716064453125, 0.9433994889259338], "score": 2.96323823928833, "box": [947.5374755859375, 193.0309295654297, 203.0340576171875, 636.3988189697266], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05178659036755562, 0.08968855440616608, -0.045072127133607864], [-0.04353061318397522, 0.08976072818040848, 0.04818347468972206], [0.016188424080610275, -0.10375621914863586, 0.02068888396024704], [-0.07487398386001587, 0.44916749000549316, -0.08342162519693375], [0.01856347918510437, 0.4683513045310974, 0.11783020198345184], [0.0010074925376102328, -0.23246675729751587, -0.006109297275543213], [-0.1724453568458557, 0.8397467732429504, -0.044928211718797684], [0.1710391789674759, 0.8277212381362915, 0.22247307002544403], [-0.017004363238811493, -0.2724549174308777, -0.04152296483516693], [-0.23740532994270325, 0.9126921892166138, -0.1356237381696701], [0.0658656433224678, 0.9091436862945557, 0.2314896285533905], [-0.0343889519572258, -0.4842468500137329, -0.04671198129653931], [0.04641213268041611, -0.39866435527801514, -0.06794010102748871], [-0.08874792605638504, -0.38951271772384644, 0.001641400158405304], [-0.045852500945329666, -0.5391145944595337, -0.10835856199264526], [0.12037430703639984, -0.42070573568344116, -0.11848609149456024], [-0.18343044817447662, -0.38955771923065186, 0.023413676768541336], [0.1397615373134613, -0.18270477652549744, -0.23104068636894226], [-0.3788835108280182, -0.23245036602020264, -0.03202397748827934], [-0.08082620799541473, -0.13111168146133423, -0.3365049660205841], [-0.29543131589889526, -0.17468029260635376, -0.2683091163635254], [-0.13529279828071594, -0.12699750065803528, -0.40052589774131775], [-0.2614254951477051, -0.1567457616329193, -0.34297436475753784]]}, {"image_id": "83.jpg", "category_id": 1, "keypoints": [1210.3934326171875, 462.0543518066406, 0.985224187374115, 1234.778564453125, 496.0866394042969, 0.9894603490829468, 1192.493896484375, 497.999755859375, 0.987998902797699, 1216.0377197265625, 422.94696044921875, 0.9933530688285828, 1253.9150390625, 642.3277587890625, 0.9767168164253235, 1199.8271484375, 641.3200073242188, 0.976158082485199, 1212.1214599609375, 369.3970947265625, 0.9792990684509277, 1252.3134765625, 786.0595703125, 0.837437629699707, 1217.46630859375, 782.7173461914062, 0.9200536012649536, 1207.1314697265625, 350.3843078613281, 0.9880794286727905, 1213.275146484375, 809.9693603515625, 0.829099178314209, 1163.048828125, 799.52001953125, 0.9346872568130493, 1206.633056640625, 271.31494140625, 0.9912893772125244, 1232.821044921875, 299.12188720703125, 0.9897566437721252, 1184.5528564453125, 309.00738525390625, 0.9907257556915283, 1191.0743408203125, 252.88572692871094, 0.9644113779067993, 1269.826171875, 278.9266052246094, 0.9834075570106506, 1166.956298828125, 300.2492370605469, 0.9882018566131592, 1341.6981201171875, 197.511962890625, 0.948828399181366, 1115.132568359375, 347.61993408203125, 0.9503213763237, 1286.654296875, 179.29098510742188, 0.9738068580627441, 1043.6546630859375, 396.5736389160156, 0.9640917181968689, 1277.119873046875, 179.73733520507812, 0.9705204963684082, 1021.0776977539062, 397.3324279785156, 0.9254377484321594, 1170.00830078125, 186.97171020507812, 0.9689603447914124, 1272.4534912109375, 191.3677978515625, 0.9637238383293152, 1048.9417724609375, 365.65478515625, 0.8874834775924683, 1194.3426513671875, 804.1907958984375, 0.7170441150665283, 1149.3143310546875, 796.0211791992188, 0.9341166615486145], "score": 3.181610107421875, "box": [936.8372802734375, 168.30238342285156, 440.0428466796875, 663.7794647216797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05774185061454773, 0.08857645839452744, -0.03194469213485718], [-0.04363952949643135, 0.08577732741832733, 0.04948281869292259], [0.009561233222484589, -0.10239191353321075, 0.013090699911117554], [0.10316035896539688, 0.4633362293243408, -0.07377971708774567], [-0.01861172914505005, 0.4625396132469177, 0.12891194224357605], [0.0028849260415881872, -0.230394646525383, -0.011562975123524666], [0.08841376006603241, 0.8437279462814331, -0.18920746445655823], [0.03448476642370224, 0.8505043983459473, 0.19593819975852966], [-0.01443466730415821, -0.2782396078109741, -0.031818680465221405], [-0.022902654483914375, 0.9087201952934265, -0.21349720656871796], [-0.08949198573827744, 0.8901335000991821, 0.20950111746788025], [-0.010701529681682587, -0.4843723177909851, -0.0035635512322187424], [0.0554887056350708, -0.3984154462814331, -0.04779615253210068], [-0.06540068984031677, -0.3893823027610779, 0.036961521953344345], [-0.055662691593170166, -0.5281850695610046, -0.058138277381658554], [0.13582579791545868, -0.4323838949203491, -0.07101021707057953], [-0.12193873524665833, -0.42467784881591797, 0.10462681949138641], [0.28139230608940125, -0.6013013124465942, -0.20413516461849213], [-0.27723872661590576, -0.2849311828613281, 0.24612078070640564], [0.13790205121040344, -0.6755238771438599, -0.01939362660050392], [-0.4639953076839447, -0.15411736071109772, 0.13667522370815277], [0.10693283379077911, -0.6821741461753845, 0.05660853162407875], [-0.5236780643463135, -0.14967234432697296, 0.08045870065689087]]}, {"image_id": "83.jpg", "category_id": 1, "keypoints": [1081.5479736328125, 470.1051940917969, 0.9827519655227661, 1099.0980224609375, 499.4905700683594, 0.9854909181594849, 1064.454345703125, 502.4242248535156, 0.9850153923034668, 1087.29638671875, 431.2063903808594, 0.9934670329093933, 1052.1798095703125, 632.9378662109375, 0.971363365650177, 1083.83837890625, 637.7366333007812, 0.9766322374343872, 1083.1541748046875, 386.3799743652344, 0.9692419767379761, 1018.9420166015625, 765.69140625, 0.9224690794944763, 1134.0318603515625, 758.8795166015625, 0.9337171912193298, 1077.732421875, 372.4850769042969, 0.9804528951644897, 1003.50146484375, 787.5148315429688, 0.8746628165245056, 1103.184326171875, 785.5404052734375, 0.9435462355613708, 1069.8505859375, 299.6377868652344, 0.9888836741447449, 1099.6866455078125, 327.5182189941406, 0.9878705143928528, 1050.8570556640625, 335.2669982910156, 0.9919461011886597, 1066.1241455078125, 277.19775390625, 0.9515360593795776, 1123.82568359375, 319.67596435546875, 0.9688225984573364, 1018.9852294921875, 336.15765380859375, 0.9862689971923828, 1131.4044189453125, 394.98553466796875, 0.9611636400222778, 955.3389282226562, 386.3353271484375, 0.9401612281799316, 1051.4163818359375, 413.647216796875, 0.9216940402984619, 984.31494140625, 402.64910888671875, 0.9631286263465881, 1031.8592529296875, 414.6636962890625, 0.9366614818572998, 996.6502075195312, 408.4485168457031, 0.931831955909729, 1066.7972412109375, 200.49911499023438, 0.9532041549682617, 1007.82763671875, 414.27703857421875, 0.8407951593399048, 1017.4473266601562, 409.94317626953125, 0.8365468978881836, 996.81787109375, 785.33984375, 0.8877450823783875, 1090.203369140625, 787.923095703125, 0.9474806785583496], "score": 2.993020534515381, "box": [947.4779052734375, 194.0651397705078, 202.269287109375, 636.6024017333984], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05226030945777893, 0.08941624313592911, -0.04387958347797394], [-0.04658852517604828, 0.08949446678161621, 0.044554054737091064], [0.016461404040455818, -0.10260242223739624, 0.022798778489232063], [-0.075339674949646, 0.44625258445739746, -0.0971905067563057], [0.010065978392958641, 0.4698297679424286, 0.1059664860367775], [0.00293963635340333, -0.23151054978370667, -0.0029207542538642883], [-0.17207863926887512, 0.8368492722511292, -0.06876825541257858], [0.16146665811538696, 0.8284754157066345, 0.21047550439834595], [-0.014591386541724205, -0.2710484564304352, -0.038625217974185944], [-0.23096349835395813, 0.9107834696769714, -0.16224893927574158], [0.06084764748811722, 0.9152857661247253, 0.20918793976306915], [-0.03589501976966858, -0.4815581440925598, -0.04515537992119789], [0.04691499099135399, -0.39778047800064087, -0.06279119104146957], [-0.08972162008285522, -0.38620054721832275, 0.0012568160891532898], [-0.047974515706300735, -0.5364217758178711, -0.10677061229944229], [0.12050704658031464, -0.418964684009552, -0.11347118765115738], [-0.18494611978530884, -0.3846284747123718, 0.01800181157886982], [0.1360945701599121, -0.18867236375808716, -0.24027377367019653], [-0.3760347068309784, -0.23030370473861694, -0.05459025502204895], [-0.08109419047832489, -0.13430383801460266, -0.34969350695610046], [-0.2957698404788971, -0.1735999584197998, -0.29155150055885315], [-0.13308930397033691, -0.1290367841720581, -0.4152480363845825], [-0.26339539885520935, -0.154798686504364, -0.36635690927505493]]}, {"image_id": "84.jpg", "category_id": 1, "keypoints": [1217.5399169921875, 459.98284912109375, 0.9850651621818542, 1241.4027099609375, 493.7331237792969, 0.9900679588317871, 1199.0657958984375, 496.39398193359375, 0.9872040748596191, 1223.127197265625, 421.3136291503906, 0.9922738075256348, 1253.81884765625, 639.6165771484375, 0.9792392253875732, 1206.09228515625, 638.8251953125, 0.9722287654876709, 1220.2021484375, 368.09716796875, 0.9821045398712158, 1252.6385498046875, 785.053955078125, 0.8406124711036682, 1222.14404296875, 779.985595703125, 0.9273101687431335, 1214.8309326171875, 349.23492431640625, 0.9880043864250183, 1218.2359619140625, 808.381591796875, 0.8275942802429199, 1171.645263671875, 798.798095703125, 0.9358123540878296, 1212.788818359375, 268.9232177734375, 0.9896565079689026, 1239.7293701171875, 296.75384521484375, 0.9888364672660828, 1192.145751953125, 307.75592041015625, 0.9913021922111511, 1197.6622314453125, 251.00674438476562, 0.9610782861709595, 1272.9176025390625, 276.43035888671875, 0.9803864359855652, 1172.2667236328125, 299.80438232421875, 0.9867101907730103, 1344.27099609375, 190.67337036132812, 0.9512706398963928, 1114.6239013671875, 344.67376708984375, 0.9577350616455078, 1289.6553955078125, 180.4451904296875, 0.974373996257782, 1041.146484375, 391.59088134765625, 0.9694921374320984, 1277.83984375, 183.64132690429688, 0.9713592529296875, 1020.1431274414062, 389.5406494140625, 0.9535117745399475, 1173.5137939453125, 187.17825317382812, 0.9660225510597229, 1271.604736328125, 199.92855834960938, 0.9517712593078613, 1044.73828125, 361.2180480957031, 0.8790268301963806, 1202.43701171875, 803.044189453125, 0.7345417737960815, 1161.191162109375, 795.5977783203125, 0.9476650357246399], "score": 3.1793928146362305, "box": [940.0189819335938, 169.3825225830078, 438.76031494140625, 661.7050018310547], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05658489465713501, 0.08827993273735046, -0.0351821593940258], [-0.04410027712583542, 0.08683392405509949, 0.04753177613019943], [0.010818559676408768, -0.1020880937576294, 0.01601705700159073], [0.08396226167678833, 0.46376046538352966, -0.08703846484422684], [-0.0196645800024271, 0.4641990661621094, 0.12547701597213745], [0.005795368459075689, -0.23096981644630432, -0.00452764704823494], [0.072646364569664, 0.8515772819519043, -0.17661955952644348], [0.029226412996649742, 0.8538017272949219, 0.1885969340801239], [-0.009987080469727516, -0.2805502116680145, -0.021917667239904404], [-0.03323783725500107, 0.917804479598999, -0.21720382571220398], [-0.09285377711057663, 0.9003305435180664, 0.1986442506313324], [-0.012380722910165787, -0.48616018891334534, 0.012046266347169876], [0.05568671226501465, -0.40362033247947693, -0.036160845309495926], [-0.06312000751495361, -0.388193279504776, 0.05120456963777542], [-0.05755191296339035, -0.5300681591033936, -0.04229358211159706], [0.13373303413391113, -0.44017478823661804, -0.06353838741779327], [-0.1248825192451477, -0.41946902871131897, 0.11651111394166946], [0.2743854224681854, -0.6180622577667236, -0.19050219655036926], [-0.2982029616832733, -0.2875215709209442, 0.244317889213562], [0.132572203874588, -0.669888973236084, 0.003287799656391144], [-0.4928124248981476, -0.16026654839515686, 0.1442255973815918], [0.0976831465959549, -0.6666988134384155, 0.07793845236301422], [-0.5517042279243469, -0.16324156522750854, 0.08690477162599564]]}, {"image_id": "84.jpg", "category_id": 1, "keypoints": [1081.798095703125, 469.833984375, 0.9832584261894226, 1098.8504638671875, 499.4451599121094, 0.9853611588478088, 1065.1705322265625, 501.9443054199219, 0.9856346249580383, 1087.8275146484375, 430.89520263671875, 0.9939576983451843, 1052.0362548828125, 631.8760375976562, 0.9681745171546936, 1085.8070068359375, 635.5658569335938, 0.9796538352966309, 1082.697265625, 385.78424072265625, 0.9700307846069336, 1019.9417114257812, 763.0802001953125, 0.9298837184906006, 1133.5494384765625, 758.5164184570312, 0.9341773986816406, 1077.2193603515625, 371.5859375, 0.9806814789772034, 1002.0820922851562, 784.8115234375, 0.8799376487731934, 1103.47314453125, 784.9771728515625, 0.9479592442512512, 1070.76953125, 298.12567138671875, 0.988840639591217, 1099.7628173828125, 326.21588134765625, 0.9879019856452942, 1051.281494140625, 333.89111328125, 0.9912230968475342, 1067.6668701171875, 275.2378845214844, 0.9504486322402954, 1124.42822265625, 317.87908935546875, 0.9720750451087952, 1019.5497436523438, 334.327392578125, 0.9857347011566162, 1131.085693359375, 393.88238525390625, 0.9624649882316589, 955.7386474609375, 386.2171325683594, 0.93895024061203, 1051.9710693359375, 412.7381896972656, 0.921003520488739, 982.0922241210938, 401.72808837890625, 0.9602501392364502, 1032.71875, 414.14617919921875, 0.9361191391944885, 993.9544677734375, 407.2147216796875, 0.9384559988975525, 1070.52001953125, 199.38937377929688, 0.9526529908180237, 1008.1849975585938, 415.14056396484375, 0.8404581546783447, 1014.5086669921875, 408.1483154296875, 0.8497040271759033, 994.9075317382812, 783.013427734375, 0.8993734121322632, 1089.4151611328125, 787.169677734375, 0.9505981802940369], "score": 3.043468475341797, "box": [947.7620239257812, 196.9237060546875, 202.72833251953125, 630.2467041015625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05129702389240265, 0.09062497317790985, -0.04329334944486618], [-0.04543684050440788, 0.08867525309324265, 0.04801953583955765], [0.01709149405360222, -0.10348391532897949, 0.02004702389240265], [-0.07694560289382935, 0.4494432806968689, -0.07790783047676086], [0.015490108169615269, 0.4673062562942505, 0.1159488782286644], [0.0008098355028778315, -0.23211044073104858, -0.006567163392901421], [-0.17047767341136932, 0.8392195105552673, -0.029182102531194687], [0.15946730971336365, 0.8306368589401245, 0.21635302901268005], [-0.016829757019877434, -0.27244535088539124, -0.041656963527202606], [-0.23853765428066254, 0.9136830568313599, -0.11599602550268173], [0.05988075211644173, 0.9188048839569092, 0.2209380567073822], [-0.03375672176480293, -0.4840053915977478, -0.046421296894550323], [0.04734485596418381, -0.3984469175338745, -0.06564328074455261], [-0.08942154049873352, -0.389235258102417, -0.0001378338783979416], [-0.04417141154408455, -0.5398465394973755, -0.10740537941455841], [0.12200106680393219, -0.42103099822998047, -0.1146029606461525], [-0.18470890820026398, -0.38911324739456177, 0.01771046221256256], [0.1352797895669937, -0.1870265007019043, -0.23540204763412476], [-0.37562835216522217, -0.23055878281593323, -0.04693982005119324], [-0.08302083611488342, -0.13132664561271667, -0.34264007210731506], [-0.3012491464614868, -0.1750124990940094, -0.28635236620903015], [-0.13583990931510925, -0.12491807341575623, -0.4076324701309204], [-0.2694675326347351, -0.15667679905891418, -0.36170175671577454]]}, {"image_id": "85.jpg", "category_id": 1, "keypoints": [1213.8287353515625, 460.88262939453125, 0.9856383800506592, 1238.2286376953125, 495.855712890625, 0.9904284477233887, 1194.89208984375, 497.4700622558594, 0.988111674785614, 1219.150634765625, 422.060791015625, 0.9927798509597778, 1255.6070556640625, 641.373291015625, 0.9780252575874329, 1199.8948974609375, 641.4617919921875, 0.9753837585449219, 1216.1796875, 368.4635314941406, 0.9822190999984741, 1250.85791015625, 786.4877319335938, 0.8346648812294006, 1215.2396240234375, 782.5323486328125, 0.9293901920318604, 1211.2689208984375, 349.13226318359375, 0.9884181022644043, 1213.7645263671875, 809.4214477539062, 0.8309146165847778, 1161.0238037109375, 800.1170043945312, 0.9381405711174011, 1209.1898193359375, 268.0504150390625, 0.9900822639465332, 1236.4093017578125, 296.76837158203125, 0.9893587231636047, 1187.7081298828125, 306.9896240234375, 0.9905470013618469, 1194.417236328125, 250.121826171875, 0.9639606475830078, 1271.1168212890625, 275.9263916015625, 0.9800674915313721, 1167.9031982421875, 298.38238525390625, 0.9885342717170715, 1343.7572021484375, 190.84552001953125, 0.9531105756759644, 1109.23095703125, 348.3398742675781, 0.9473055601119995, 1288.550537109375, 178.97207641601562, 0.9748692512512207, 1026.273681640625, 397.625244140625, 0.9725170731544495, 1277.3466796875, 181.5865478515625, 0.9729138612747192, 998.3849487304688, 403.45294189453125, 0.9515265822410583, 1168.56103515625, 185.36758422851562, 0.9616901278495789, 1271.74853515625, 199.08499145507812, 0.9578264355659485, 1007.8887329101562, 390.49468994140625, 0.8827590942382812, 1195.7645263671875, 803.3614501953125, 0.7298156023025513, 1148.5938720703125, 796.4693603515625, 0.9382228255271912], "score": 3.179976463317871, "box": [937.8097534179688, 168.34329223632812, 437.47943115234375, 663.7991027832031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05761164799332619, 0.08885207772254944, -0.032329559326171875], [-0.04526583477854729, 0.08616235852241516, 0.04794073477387428], [0.010384703055024147, -0.10258571803569794, 0.01465003564953804], [0.09768065810203552, 0.46291035413742065, -0.08495184779167175], [-0.0264428798109293, 0.4636421203613281, 0.1262078583240509], [0.004336890764534473, -0.23069356381893158, -0.010855266824364662], [0.07457778602838516, 0.8432019352912903, -0.20050640404224396], [0.020805632695555687, 0.852108359336853, 0.19693438708782196], [-0.010012091137468815, -0.2805941700935364, -0.028940485790371895], [-0.032508645206689835, 0.9032499194145203, -0.2473418414592743], [-0.10385832190513611, 0.8927611112594604, 0.19911058247089386], [-0.012586546130478382, -0.48650795221328735, 0.005064023658633232], [0.05685807019472122, -0.403566837310791, -0.04090883210301399], [-0.06531880795955658, -0.38864439725875854, 0.04247082397341728], [-0.05629274994134903, -0.5295925736427307, -0.051134996116161346], [0.13284973800182343, -0.44872498512268066, -0.06083489581942558], [-0.1260318160057068, -0.4217601418495178, 0.10818083584308624], [0.2842633128166199, -0.6182584762573242, -0.1867879033088684], [-0.2957572340965271, -0.2796694040298462, 0.22982066869735718], [0.14492587745189667, -0.6741347908973694, 0.007740307599306107], [-0.5000290870666504, -0.15565435588359833, 0.1462254673242569], [0.10907246172428131, -0.6722912192344666, 0.08209040760993958], [-0.5668308734893799, -0.13989169895648956, 0.10074402391910553]]}, {"image_id": "85.jpg", "category_id": 1, "keypoints": [1081.129638671875, 469.1863708496094, 0.9827511310577393, 1097.7911376953125, 498.927734375, 0.9838026165962219, 1064.7552490234375, 501.4026794433594, 0.9843683838844299, 1087.00244140625, 430.71630859375, 0.9936069250106812, 1053.0308837890625, 630.771240234375, 0.9702261686325073, 1086.2921142578125, 634.8206787109375, 0.9787444472312927, 1082.3929443359375, 386.1152648925781, 0.9696627259254456, 1019.04052734375, 764.4310913085938, 0.9275391697883606, 1135.5120849609375, 756.8974609375, 0.9350759983062744, 1076.58984375, 372.1007080078125, 0.9804465174674988, 1001.994384765625, 786.0762939453125, 0.8809096217155457, 1102.9979248046875, 783.1250610351562, 0.9447056651115417, 1070.1728515625, 299.73455810546875, 0.9889576435089111, 1099.06005859375, 327.60687255859375, 0.9873068928718567, 1051.115966796875, 334.92950439453125, 0.9919853806495667, 1066.0240478515625, 277.5308837890625, 0.9526025652885437, 1123.244140625, 319.71734619140625, 0.9673163890838623, 1019.7584228515625, 335.6029052734375, 0.9864715933799744, 1126.354248046875, 394.9279479980469, 0.9528921842575073, 954.240966796875, 386.3925476074219, 0.939690113067627, 1048.1287841796875, 412.8529968261719, 0.9175321459770203, 980.24462890625, 400.26776123046875, 0.9588532447814941, 1028.0115966796875, 415.4098815917969, 0.9369067549705505, 991.9475708007812, 405.5231018066406, 0.9245039224624634, 1066.966064453125, 201.28445434570312, 0.9544851183891296, 1000.0585327148438, 416.28668212890625, 0.8851972222328186, 1011.498779296875, 407.7514343261719, 0.8125243186950684, 995.3552856445312, 783.3203125, 0.9020495414733887, 1088.966796875, 785.2928466796875, 0.9484562277793884], "score": 3.0611891746520996, "box": [947.230224609375, 193.5676727294922, 202.27099609375, 635.7899932861328], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05060748755931854, 0.0900726318359375, -0.04514707997441292], [-0.04505479335784912, 0.08918538689613342, 0.04737798869609833], [0.017561662942171097, -0.10322102904319763, 0.021270200610160828], [-0.07310841977596283, 0.4496983587741852, -0.08587543666362762], [0.018371880054473877, 0.4677900969982147, 0.11201474815607071], [0.0017166873440146446, -0.23210632801055908, -0.004125222563743591], [-0.1704614758491516, 0.8389005064964294, -0.042478594928979874], [0.166935533285141, 0.8292643427848816, 0.21146759390830994], [-0.01708522066473961, -0.272536963224411, -0.03849067538976669], [-0.23632150888442993, 0.9140504598617554, -0.13039574027061462], [0.06337463110685349, 0.9128724932670593, 0.21207952499389648], [-0.03323013707995415, -0.4841788411140442, -0.04291696101427078], [0.046922821551561356, -0.39826518297195435, -0.06454674899578094], [-0.08796742558479309, -0.38967931270599365, 0.00516047328710556], [-0.046533383429050446, -0.5389719009399414, -0.10427999496459961], [0.1193552315235138, -0.41904008388519287, -0.11760547012090683], [-0.1822396069765091, -0.3891661763191223, 0.02826368808746338], [0.12144692987203598, -0.19112691283226013, -0.2496798038482666], [-0.37762171030044556, -0.23464244604110718, -0.03188525140285492], [-0.09989999979734421, -0.13691860437393188, -0.35090532898902893], [-0.3042733073234558, -0.18383729457855225, -0.2725057303905487], [-0.15523366630077362, -0.1275508999824524, -0.41341832280158997], [-0.2735351622104645, -0.16639000177383423, -0.3485177159309387]]}, {"image_id": "86.jpg", "category_id": 1, "keypoints": [1216.246337890625, 459.4198303222656, 0.9850668907165527, 1239.776123046875, 494.75457763671875, 0.9902119636535645, 1196.7120361328125, 496.0332946777344, 0.9871551394462585, 1221.991943359375, 420.9973449707031, 0.9925234913825989, 1255.0155029296875, 637.8565673828125, 0.9757965803146362, 1199.10302734375, 639.1224975585938, 0.9734476208686829, 1219.140625, 367.64984130859375, 0.9823111891746521, 1251.11279296875, 783.7327880859375, 0.8359909653663635, 1214.72314453125, 780.2539672851562, 0.9318107962608337, 1213.8409423828125, 348.39263916015625, 0.987587034702301, 1216.3406982421875, 806.0651245117188, 0.8321660757064819, 1161.5628662109375, 798.0162353515625, 0.9379505515098572, 1210.9583740234375, 266.57989501953125, 0.989162266254425, 1238.838623046875, 295.4757080078125, 0.9889266490936279, 1190.0206298828125, 306.16534423828125, 0.9907920956611633, 1196.201904296875, 249.00994873046875, 0.9612421989440918, 1272.0032958984375, 275.2539367675781, 0.9798870086669922, 1169.0731201171875, 298.2685546875, 0.988358199596405, 1343.3773193359375, 189.33349609375, 0.9467804431915283, 1108.7047119140625, 346.03814697265625, 0.9508389830589294, 1288.5709228515625, 179.94091796875, 0.9761437773704529, 1026.539794921875, 397.109619140625, 0.9703465104103088, 1276.766357421875, 183.851318359375, 0.9699764847755432, 998.5599975585938, 400.82330322265625, 0.950257420539856, 1169.2294921875, 185.262451171875, 0.9617049098014832, 1270.2340087890625, 205.26480102539062, 0.947571337223053, 1019.5084228515625, 378.60968017578125, 0.910440981388092, 1198.857666015625, 799.33740234375, 0.7343345880508423, 1149.3802490234375, 793.6754150390625, 0.9389253258705139], "score": 3.1796910762786865, "box": [935.8746337890625, 169.16134643554688, 441.29248046875, 661.8708801269531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05604248121380806, 0.0895162895321846, -0.0336226150393486], [-0.04688530042767525, 0.08603638410568237, 0.04688219726085663], [0.012296240776777267, -0.10230088233947754, 0.016042940318584442], [0.09028400480747223, 0.4626599848270416, -0.09602832049131393], [-0.03493132069706917, 0.4641689360141754, 0.12358108907938004], [0.00580573407933116, -0.23055747151374817, -0.008318094536662102], [0.06834474205970764, 0.8389104604721069, -0.22495132684707642], [0.012834195047616959, 0.8536190986633301, 0.18962916731834412], [-0.009573999792337418, -0.28032708168029785, -0.0260588638484478], [-0.03911532834172249, 0.9024374485015869, -0.26613906025886536], [-0.11141550540924072, 0.8955554962158203, 0.1938123106956482], [-0.013542842119932175, -0.4861794412136078, 0.009288515895605087], [0.056120213121175766, -0.4041304290294647, -0.03816647082567215], [-0.06504425406455994, -0.3875846564769745, 0.0467732772231102], [-0.05768259987235069, -0.5288056135177612, -0.046789031475782394], [0.13146615028381348, -0.4495638906955719, -0.06018903851509094], [-0.12814907729625702, -0.41781648993492126, 0.1117301806807518], [0.27526918053627014, -0.6174564361572266, -0.197006493806839], [-0.30599650740623474, -0.27979576587677, 0.22650820016860962], [0.13920986652374268, -0.6663861274719238, 0.00179281085729599], [-0.5095503330230713, -0.15082451701164246, 0.14858639240264893], [0.10489237308502197, -0.6608437299728394, 0.07673449069261551], [-0.5788703560829163, -0.13983356952667236, 0.1054314598441124]]}, {"image_id": "86.jpg", "category_id": 1, "keypoints": [1081.48095703125, 469.7737121582031, 0.9823015928268433, 1098.6488037109375, 499.21075439453125, 0.9854283928871155, 1064.7562255859375, 502.32879638671875, 0.9845715165138245, 1087.2957763671875, 431.0218811035156, 0.9934762120246887, 1052.9268798828125, 631.9816284179688, 0.972204327583313, 1085.512451171875, 636.0606689453125, 0.979610025882721, 1082.8507080078125, 386.0675048828125, 0.9694753289222717, 1018.3290405273438, 763.32666015625, 0.9367188215255737, 1131.4501953125, 758.3489990234375, 0.9319198131561279, 1077.12353515625, 371.8552551269531, 0.9807455539703369, 1002.7095336914062, 783.2273559570312, 0.8787750601768494, 1104.6396484375, 784.8883056640625, 0.9448083639144897, 1070.0595703125, 299.5302734375, 0.9891465902328491, 1099.611572265625, 327.03839111328125, 0.9874408841133118, 1051.163330078125, 335.40142822265625, 0.9923014044761658, 1065.3641357421875, 276.55389404296875, 0.9526122212409973, 1123.9696044921875, 318.76531982421875, 0.9672883749008179, 1020.2793579101562, 336.0394592285156, 0.9864516258239746, 1127.6912841796875, 393.0167541503906, 0.9551838636398315, 954.710693359375, 387.1878662109375, 0.9413452744483948, 1049.8624267578125, 413.3187255859375, 0.9169678688049316, 978.7332153320312, 399.5881652832031, 0.9559792280197144, 1030.3372802734375, 415.5709228515625, 0.9368090033531189, 990.5637817382812, 404.4688415527344, 0.928504467010498, 1062.05224609375, 201.52166748046875, 0.9521732330322266, 1004.99560546875, 416.13616943359375, 0.8616845011711121, 1011.0418701171875, 406.70001220703125, 0.8167819380760193, 997.5652465820312, 779.5523681640625, 0.9014454483985901, 1092.4796142578125, 786.9456787109375, 0.9446972608566284], "score": 3.0381762981414795, "box": [948.8670043945312, 191.94969177246094, 200.00433349609375, 639.6923370361328], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05179945006966591, 0.08949054032564163, -0.04443490505218506], [-0.045889925211668015, 0.08947465568780899, 0.0454842709004879], [0.016678795218467712, -0.102773517370224, 0.022330012172460556], [-0.07352371513843536, 0.44838327169418335, -0.08785903453826904], [0.015226589515805244, 0.46858006715774536, 0.10977227985858917], [0.0024071799125522375, -0.23192986845970154, -0.0016043353825807571], [-0.17388156056404114, 0.8361823558807373, -0.040053579956293106], [0.15512439608573914, 0.8334492444992065, 0.208765909075737], [-0.016013043001294136, -0.27265456318855286, -0.03554874658584595], [-0.23696334660053253, 0.9077262878417969, -0.13269521296024323], [0.06059293448925018, 0.9269096851348877, 0.20784364640712738], [-0.034614577889442444, -0.4836997091770172, -0.03820747882127762], [0.046530332416296005, -0.3990510404109955, -0.059745270758867264], [-0.08839341998100281, -0.3882797658443451, 0.008425390347838402], [-0.04915457218885422, -0.5399374961853027, -0.09799268841743469], [0.1192815750837326, -0.42102017998695374, -0.11145471036434174], [-0.18214987218379974, -0.38790300488471985, 0.03246582671999931], [0.12318985164165497, -0.1939515769481659, -0.24478770792484283], [-0.37750372290611267, -0.23261377215385437, -0.025239083915948868], [-0.09575049579143524, -0.13345205783843994, -0.34728726744651794], [-0.30972370505332947, -0.18595218658447266, -0.2682018280029297], [-0.15011203289031982, -0.12482514977455139, -0.41056546568870544], [-0.27909204363822937, -0.16970294713974, -0.34436333179473877]]}, {"image_id": "87.jpg", "category_id": 1, "keypoints": [1218.2047119140625, 458.4603576660156, 0.9846035242080688, 1242.0020751953125, 492.71319580078125, 0.9901705980300903, 1198.8798828125, 494.4488830566406, 0.9874257445335388, 1224.1995849609375, 419.3591003417969, 0.9922187328338623, 1253.5181884765625, 638.8179931640625, 0.9758850336074829, 1200.517822265625, 638.3974609375, 0.978064239025116, 1220.907470703125, 366.5165100097656, 0.9835198521614075, 1250.6552734375, 785.3492431640625, 0.8353922367095947, 1218.7694091796875, 777.2425537109375, 0.9197809100151062, 1215.2528076171875, 347.41375732421875, 0.9886420369148254, 1215.7205810546875, 805.8475341796875, 0.8223479986190796, 1167.168212890625, 795.1006469726562, 0.9308883547782898, 1210.350830078125, 267.0104675292969, 0.989125669002533, 1239.58935546875, 295.190673828125, 0.9886431097984314, 1190.0662841796875, 306.0721435546875, 0.9915019273757935, 1195.447021484375, 249.67730712890625, 0.9574134349822998, 1273.094482421875, 274.63946533203125, 0.9795026779174805, 1167.8026123046875, 298.6126708984375, 0.9882324934005737, 1347.021240234375, 189.05569458007812, 0.9549599885940552, 1107.7579345703125, 349.9690246582031, 0.9513437747955322, 1289.7191162109375, 179.57815551757812, 0.9761191606521606, 1024.4530029296875, 398.7469177246094, 0.966237485408783, 1276.81298828125, 183.28085327148438, 0.9670670628547668, 997.05810546875, 403.281982421875, 0.9533048868179321, 1167.563720703125, 185.68548583984375, 0.9617053866386414, 1269.305908203125, 202.31271362304688, 0.9538171291351318, 997.396728515625, 393.3420104980469, 0.8980878591537476, 1198.98046875, 798.070068359375, 0.7013366222381592, 1157.019775390625, 792.1075439453125, 0.9457906484603882], "score": 3.1790895462036133, "box": [936.7510375976562, 168.33670043945312, 443.36810302734375, 661.6007385253906], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05708117038011551, 0.08969592303037643, -0.03031991794705391], [-0.046388301998376846, 0.08493372797966003, 0.04866298288106918], [0.010982301086187363, -0.10231584310531616, 0.01305825263261795], [0.08402525633573532, 0.4677743911743164, -0.06261584162712097], [-0.036046531051397324, 0.4625145494937897, 0.13024073839187622], [0.0054842280223965645, -0.23053857684135437, -0.009774627164006233], [0.07138419896364212, 0.8624312877655029, -0.11652427911758423], [0.020624404773116112, 0.8465615510940552, 0.21805864572525024], [-0.013591189868748188, -0.2778227627277374, -0.029719481244683266], [-0.03562542423605919, 0.9186119437217712, -0.16785481572151184], [-0.1030961126089096, 0.8895940780639648, 0.22018826007843018], [-0.019823571667075157, -0.48349952697753906, 0.001972036436200142], [0.051707830280065536, -0.40121740102767944, -0.04099384695291519], [-0.07195894420146942, -0.38556379079818726, 0.03881745785474777], [-0.06439889967441559, -0.5255270600318909, -0.054220110177993774], [0.13003453612327576, -0.44063448905944824, -0.0624956414103508], [-0.14125244319438934, -0.4143902063369751, 0.09708444029092789], [0.2790580689907074, -0.6167640089988708, -0.18252047896385193], [-0.3141225278377533, -0.26876115798950195, 0.21011126041412354], [0.1287800669670105, -0.6657898426055908, 0.005648605525493622], [-0.5198541879653931, -0.1456775665283203, 0.12832757830619812], [0.09216398000717163, -0.6613505482673645, 0.079358771443367], [-0.5913954377174377, -0.1322888731956482, 0.09010188281536102]]}, {"image_id": "87.jpg", "category_id": 1, "keypoints": [1081.5546875, 468.95550537109375, 0.9837558269500732, 1098.44189453125, 498.4873962402344, 0.9840530157089233, 1064.34228515625, 500.6741027832031, 0.9836626648902893, 1088.1268310546875, 430.9066162109375, 0.9931414723396301, 1053.218994140625, 630.1094970703125, 0.9729178547859192, 1084.9202880859375, 634.3782348632812, 0.9799956679344177, 1083.2423095703125, 385.98211669921875, 0.9697937369346619, 1021.1409912109375, 761.193359375, 0.9328902959823608, 1132.0596923828125, 759.7698364257812, 0.9432618021965027, 1077.716552734375, 371.53021240234375, 0.9807915687561035, 1001.4510498046875, 781.331298828125, 0.8810794353485107, 1103.4598388671875, 787.32421875, 0.9398365020751953, 1071.7626953125, 299.1597900390625, 0.989013135433197, 1100.875732421875, 327.0010986328125, 0.9870588779449463, 1052.5284423828125, 334.4345703125, 0.9918479323387146, 1068.3094482421875, 276.4519958496094, 0.9523628354072571, 1125.4466552734375, 319.0430908203125, 0.96956467628479, 1021.4354858398438, 334.73077392578125, 0.9860934019088745, 1127.1788330078125, 393.649658203125, 0.9600955247879028, 957.4480590820312, 386.6458740234375, 0.9398952722549438, 1047.4246826171875, 412.4385986328125, 0.9226621389389038, 978.2028198242188, 400.890380859375, 0.9543619155883789, 1027.30517578125, 414.93804931640625, 0.9380202889442444, 988.6213989257812, 406.2191162109375, 0.9206661581993103, 1069.6710205078125, 203.03598022460938, 0.9529967308044434, 997.2118530273438, 415.3540344238281, 0.900592565536499, 1007.6171875, 408.5767822265625, 0.8316352367401123, 994.4404907226562, 778.0806274414062, 0.911253809928894, 1092.89306640625, 789.2426147460938, 0.9434501528739929], "score": 3.042375087738037, "box": [947.8262939453125, 199.0547637939453, 202.648193359375, 626.9304656982422], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049968186765909195, 0.09037996083498001, -0.04486619681119919], [-0.04734882712364197, 0.08878833055496216, 0.0454670786857605], [0.018675506114959717, -0.10244283080101013, 0.02251662313938141], [-0.07507554441690445, 0.44960322976112366, -0.08484109491109848], [0.013246000744402409, 0.46883687376976013, 0.10377821326255798], [0.002913114381954074, -0.2315976917743683, -0.0010250639170408249], [-0.16856004297733307, 0.8390250205993652, -0.03671351820230484], [0.15429265797138214, 0.8377864360809326, 0.18403348326683044], [-0.01496803853660822, -0.27318692207336426, -0.034290850162506104], [-0.24759288132190704, 0.9126724004745483, -0.1142176166176796], [0.05822530761361122, 0.9292565584182739, 0.1754194051027298], [-0.028721656650304794, -0.48465731739997864, -0.0313120037317276], [0.05052706226706505, -0.3987627327442169, -0.054999083280563354], [-0.08479554951190948, -0.38926956057548523, 0.012634754180908203], [-0.040152981877326965, -0.5404229164123535, -0.09218160808086395], [0.12391195446252823, -0.4197290241718292, -0.1062435656785965], [-0.179042786359787, -0.3898424804210663, 0.03463296964764595], [0.12205419689416885, -0.19008687138557434, -0.23525485396385193], [-0.36999085545539856, -0.23165327310562134, -0.0297134630382061], [-0.09697075933218002, -0.1348085105419159, -0.34054186940193176], [-0.3109850287437439, -0.1790696084499359, -0.2737622857093811], [-0.15261106193065643, -0.12552976608276367, -0.40261441469192505], [-0.28320208191871643, -0.16113203763961792, -0.35064205527305603]]}, {"image_id": "88.jpg", "category_id": 1, "keypoints": [1223.186279296875, 459.5972900390625, 0.9852834939956665, 1247.2249755859375, 494.0509948730469, 0.9904943704605103, 1203.361572265625, 495.7350769042969, 0.9879118800163269, 1228.908203125, 420.53314208984375, 0.9917945861816406, 1253.9263916015625, 642.467041015625, 0.9769588708877563, 1202.7838134765625, 640.515380859375, 0.9806612730026245, 1225.03759765625, 367.8027648925781, 0.9838764667510986, 1252.1607666015625, 786.601806640625, 0.8469687700271606, 1220.0316162109375, 777.813720703125, 0.9226385951042175, 1218.8961181640625, 348.67755126953125, 0.9878792762756348, 1217.4898681640625, 808.4969482421875, 0.8350589275360107, 1168.23291015625, 797.0660400390625, 0.9354033470153809, 1212.1766357421875, 266.6054382324219, 0.9889925718307495, 1242.53369140625, 295.0745849609375, 0.9879274368286133, 1192.6839599609375, 306.57061767578125, 0.9922034740447998, 1196.8193359375, 249.89378356933594, 0.959424614906311, 1274.717529296875, 273.21600341796875, 0.9743707776069641, 1169.5791015625, 298.5432434082031, 0.9895154237747192, 1347.228515625, 189.287841796875, 0.9498676061630249, 1106.7203369140625, 346.617919921875, 0.956567108631134, 1293.682373046875, 178.45748901367188, 0.9760388135910034, 1022.7108764648438, 399.3409423828125, 0.9626545906066895, 1281.5142822265625, 180.51998901367188, 0.9659344553947449, 996.1608276367188, 404.14862060546875, 0.9525370001792908, 1164.495361328125, 186.202392578125, 0.963342547416687, 1274.8255615234375, 195.870849609375, 0.9525390863418579, 987.1333618164062, 398.99847412109375, 0.8980242013931274, 1200.9493408203125, 802.5108642578125, 0.7469192743301392, 1158.0693359375, 794.8202514648438, 0.9449729323387146], "score": 3.1799392700195312, "box": [940.8009033203125, 167.01173400878906, 437.874755859375, 663.7833709716797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05667632445693016, 0.0895368680357933, -0.03219571337103844], [-0.046246789395809174, 0.08562228828668594, 0.048047538846731186], [0.01149238832294941, -0.10249277949333191, 0.014508828520774841], [0.0721067413687706, 0.46872588992118835, -0.05114171653985977], [-0.04147478565573692, 0.46251994371414185, 0.13169291615486145], [0.003382689319550991, -0.23117277026176453, -0.006887918338179588], [0.06606456637382507, 0.8667996525764465, -0.06394289433956146], [0.013099750503897667, 0.8463049530982971, 0.2212923765182495], [-0.01744925044476986, -0.2779066264629364, -0.026985734701156616], [-0.035008545964956284, 0.9222357273101807, -0.12704147398471832], [-0.10990682244300842, 0.8916993141174316, 0.21814969182014465], [-0.026645414531230927, -0.48385804891586304, 0.005744472146034241], [0.045925140380859375, -0.4027702212333679, -0.03868692368268967], [-0.07702893763780594, -0.38469111919403076, 0.04292093589901924], [-0.07225643843412399, -0.5238776803016663, -0.05113472044467926], [0.12211283296346664, -0.4460992217063904, -0.0616619773209095], [-0.1476787030696869, -0.41472434997558594, 0.09951309859752655], [0.2675282061100006, -0.6204215288162231, -0.18833544850349426], [-0.3294675648212433, -0.2784600257873535, 0.21005356311798096], [0.1299963891506195, -0.674246072769165, 0.008132461458444595], [-0.5311800837516785, -0.14929908514022827, 0.12784674763679504], [0.09578710049390793, -0.6755175590515137, 0.08326408267021179], [-0.6010610461235046, -0.13500380516052246, 0.08671601116657257]]}, {"image_id": "88.jpg", "category_id": 1, "keypoints": [1082.212890625, 468.8009948730469, 0.9826032519340515, 1099.0474853515625, 498.28179931640625, 0.9861037731170654, 1064.7550048828125, 501.01177978515625, 0.9829798936843872, 1088.364990234375, 430.3773498535156, 0.9932336807250977, 1053.0269775390625, 630.1735229492188, 0.9729399085044861, 1084.7908935546875, 635.3886108398438, 0.9783945679664612, 1084.191650390625, 385.7320556640625, 0.9717793464660645, 1017.27490234375, 764.1827392578125, 0.9279091954231262, 1133.7740478515625, 757.3477783203125, 0.9359109401702881, 1078.868896484375, 371.4275817871094, 0.981120228767395, 1001.338623046875, 787.5153198242188, 0.874197244644165, 1103.9168701171875, 784.5634765625, 0.9351102709770203, 1071.4464111328125, 299.26953125, 0.9890048503875732, 1101.3946533203125, 326.63104248046875, 0.9872547388076782, 1052.744873046875, 335.04095458984375, 0.9925565719604492, 1067.7872314453125, 276.5040283203125, 0.9526649713516235, 1125.986328125, 318.7580261230469, 0.9679672122001648, 1021.619384765625, 336.160400390625, 0.9872837662696838, 1127.22412109375, 392.28472900390625, 0.9608237743377686, 955.0650024414062, 386.78997802734375, 0.9406208992004395, 1048.597412109375, 412.633056640625, 0.9164355993270874, 977.85107421875, 401.4251403808594, 0.9561277031898499, 1028.723876953125, 414.99737548828125, 0.9397680759429932, 988.7855224609375, 406.884033203125, 0.9267116785049438, 1066.9205322265625, 201.24530029296875, 0.9537389278411865, 1000.9830322265625, 416.7614440917969, 0.880530834197998, 1009.17138671875, 409.73089599609375, 0.8302897214889526, 994.0797729492188, 785.7277221679688, 0.8937211036682129, 1091.3277587890625, 786.4611206054688, 0.9377049803733826], "score": 3.084765672683716, "box": [947.4645385742188, 194.9055938720703, 202.56707763671875, 635.0946502685547], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.050857048481702805, 0.08974799513816833, -0.04452742636203766], [-0.047965746372938156, 0.08908364176750183, 0.04356667026877403], [0.017918704077601433, -0.10187751054763794, 0.023658402264118195], [-0.07588614523410797, 0.44641855359077454, -0.10161180794239044], [0.010854002088308334, 0.4696621298789978, 0.10175895690917969], [0.0038251986261457205, -0.23097842931747437, -8.723698556423187e-05], [-0.1790791153907776, 0.8358969688415527, -0.08267362415790558], [0.15912459790706635, 0.8322607278823853, 0.19636587798595428], [-0.01340806670486927, -0.2719348073005676, -0.03412489593029022], [-0.23768861591815948, 0.9126466512680054, -0.17389672994613647], [0.060688890516757965, 0.9209952354431152, 0.18817158043384552], [-0.0322834849357605, -0.4824748933315277, -0.0324099063873291], [0.04897885024547577, -0.3985610902309418, -0.05465647950768471], [-0.08613032847642899, -0.38617804646492004, 0.011408288031816483], [-0.04417116567492485, -0.5380444526672363, -0.09345430135726929], [0.12242098152637482, -0.4193258583545685, -0.1053462028503418], [-0.17987826466560364, -0.3842768967151642, 0.034029651433229446], [0.11874343454837799, -0.19406837224960327, -0.2418242245912552], [-0.376198410987854, -0.23180580139160156, -0.027722779661417007], [-0.10091230273246765, -0.13382315635681152, -0.3427422046661377], [-0.3112209737300873, -0.1783471703529358, -0.27004721760749817], [-0.1566549837589264, -0.1248616874217987, -0.4045827090740204], [-0.2822955846786499, -0.16027840971946716, -0.34632760286331177]]}, {"image_id": "89.jpg", "category_id": 1, "keypoints": [1226.4056396484375, 462.439697265625, 0.9853673577308655, 1251.0211181640625, 496.52398681640625, 0.990303635597229, 1206.5758056640625, 497.99542236328125, 0.9873753786087036, 1232.0040283203125, 422.6529541015625, 0.9912956953048706, 1257.009521484375, 648.9592895507812, 0.977666437625885, 1205.4163818359375, 644.5454711914062, 0.9809095859527588, 1227.576904296875, 370.12451171875, 0.9830156564712524, 1251.3070068359375, 792.885498046875, 0.8521466851234436, 1219.2542724609375, 780.9092407226562, 0.9210494160652161, 1221.5428466796875, 351.04827880859375, 0.9888511300086975, 1208.5965576171875, 818.3119506835938, 0.827556848526001, 1164.146728515625, 801.21826171875, 0.9315115213394165, 1216.5501708984375, 266.64044189453125, 0.9884987473487854, 1245.839599609375, 297.4345703125, 0.9858492016792297, 1196.041015625, 306.65948486328125, 0.9917113780975342, 1201.81201171875, 250.54522705078125, 0.9493001103401184, 1277.7593994140625, 276.2716064453125, 0.9726001024246216, 1172.3646240234375, 298.15814208984375, 0.9878362417221069, 1345.3809814453125, 190.79666137695312, 0.9347528219223022, 1107.0909423828125, 340.64349365234375, 0.9578565359115601, 1296.4373779296875, 175.46517944335938, 0.9731531739234924, 1019.7181396484375, 398.7730712890625, 0.9627149105072021, 1285.1597900390625, 175.42266845703125, 0.9671116471290588, 992.3365478515625, 402.4703369140625, 0.9511658549308777, 1176.224853515625, 181.50732421875, 0.9653304815292358, 1278.6722412109375, 187.91964721679688, 0.963790237903595, 980.45703125, 396.40216064453125, 0.9357162714004517, 1193.900146484375, 816.80322265625, 0.7766560316085815, 1151.04736328125, 801.3328857421875, 0.9365038871765137], "score": 3.179962635040283, "box": [944.4874267578125, 163.603515625, 432.48779296875, 669.7313842773438], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.058038704097270966, 0.08987078815698624, -0.02886711061000824], [-0.045848943293094635, 0.08472979068756104, 0.05008329078555107], [0.010132724419236183, -0.10284850001335144, 0.011462811380624771], [0.07243362814188004, 0.4705541133880615, -0.035127826035022736], [-0.04293053224682808, 0.4637632966041565, 0.12866102159023285], [0.0009689746657386422, -0.22990745306015015, -0.016435030847787857], [0.05819908156991005, 0.8694421648979187, -0.018088139593601227], [0.0034291711635887623, 0.8456557393074036, 0.23459471762180328], [-0.018914086744189262, -0.27576112747192383, -0.039051324129104614], [-0.04843105748295784, 0.926125168800354, -0.07022305577993393], [-0.11979679018259048, 0.8904357552528381, 0.22844186425209045], [-0.025866150856018066, -0.48302608728408813, -0.016591079533100128], [0.04494768753647804, -0.39927059412002563, -0.058410078287124634], [-0.07587405294179916, -0.3863813877105713, 0.026655495166778564], [-0.06977609544992447, -0.5208998322486877, -0.07613381743431091], [0.11940615624189377, -0.4424043893814087, -0.08616048097610474], [-0.14460158348083496, -0.4167357087135315, 0.0850171446800232], [0.25831690430641174, -0.626171886920929, -0.20819343626499176], [-0.33719730377197266, -0.29488468170166016, 0.19565512239933014], [0.1374877244234085, -0.6933184862136841, -0.0043176449835300446], [-0.5389302372932434, -0.1584453582763672, 0.12395721673965454], [0.10401613265275955, -0.7018365263938904, 0.07070380449295044], [-0.6136970520019531, -0.14701935648918152, 0.09129191935062408]]}, {"image_id": "89.jpg", "category_id": 1, "keypoints": [1082.0374755859375, 469.2708740234375, 0.9823715090751648, 1098.855224609375, 498.87774658203125, 0.9875307083129883, 1064.482421875, 501.4217834472656, 0.9834473729133606, 1087.9755859375, 430.79193115234375, 0.9931825399398804, 1053.2685546875, 631.0034790039062, 0.9727029800415039, 1086.203125, 635.2603149414062, 0.9797248244285583, 1084.16552734375, 386.0254821777344, 0.970067024230957, 1017.3289184570312, 763.1397705078125, 0.9290897250175476, 1135.345703125, 756.2185668945312, 0.9323595762252808, 1078.9718017578125, 371.65948486328125, 0.9801064729690552, 1002.8784790039062, 785.688720703125, 0.8730775713920593, 1104.3153076171875, 782.3087158203125, 0.9405776262283325, 1072.364013671875, 299.5927429199219, 0.989193856716156, 1101.89990234375, 326.79083251953125, 0.9872963428497314, 1053.49462890625, 335.6251220703125, 0.9926981925964355, 1068.418212890625, 276.4087219238281, 0.9530773162841797, 1126.3077392578125, 318.42578125, 0.9687740206718445, 1022.8119506835938, 336.844970703125, 0.9872318506240845, 1131.9608154296875, 389.0207824707031, 0.9644858837127686, 955.9828491210938, 387.6535949707031, 0.9421802759170532, 1050.2198486328125, 412.0415954589844, 0.9244423508644104, 977.23583984375, 401.5832214355469, 0.9573419094085693, 1030.7740478515625, 414.1392517089844, 0.93952876329422, 987.8992309570312, 406.55706787109375, 0.9222151637077332, 1068.355712890625, 201.2261962890625, 0.95367431640625, 1005.37890625, 415.3274230957031, 0.8733476400375366, 1007.9566040039062, 408.8463134765625, 0.8305600881576538, 997.40576171875, 784.3430786132812, 0.8954131603240967, 1092.4976806640625, 784.3291015625, 0.9433053135871887], "score": 3.087986469268799, "box": [946.6937255859375, 194.43284606933594, 204.7591552734375, 634.7973785400391], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0514453649520874, 0.09026530385017395, -0.04312083497643471], [-0.04826396703720093, 0.08873510360717773, 0.04430169239640236], [0.017621980980038643, -0.10235995054244995, 0.02265816554427147], [-0.07421153038740158, 0.4492384195327759, -0.08792595565319061], [0.015534922480583191, 0.46775954961776733, 0.10831691324710846], [0.00428021652624011, -0.23124957084655762, -0.0027153342962265015], [-0.1777036488056183, 0.8364632725715637, -0.0399019718170166], [0.16464869678020477, 0.827477216720581, 0.21347619593143463], [-0.012534761801362038, -0.27225419878959656, -0.037022706121206284], [-0.23276449739933014, 0.9129213094711304, -0.13370941579341888], [0.06273028999567032, 0.9126948118209839, 0.2094302773475647], [-0.029600221663713455, -0.4831938147544861, -0.035349249839782715], [0.05079061910510063, -0.39850902557373047, -0.058532629162073135], [-0.08388455212116241, -0.3873342275619507, 0.009291093796491623], [-0.04219993203878403, -0.5398289561271667, -0.09521567821502686], [0.12351319938898087, -0.4207063317298889, -0.1098746508359909], [-0.17701318860054016, -0.3852887749671936, 0.03489169850945473], [0.1326950490474701, -0.19973647594451904, -0.25322696566581726], [-0.3741198480129242, -0.23246970772743225, -0.024224359542131424], [-0.0868808850646019, -0.13463753461837769, -0.35173898935317993], [-0.3140049874782562, -0.18127143383026123, -0.26847848296165466], [-0.14090675115585327, -0.12638482451438904, -0.41530898213386536], [-0.28603312373161316, -0.16458305716514587, -0.345539391040802]]}, {"image_id": "90.jpg", "category_id": 1, "keypoints": [1222.3187255859375, 460.2549743652344, 0.9856031537055969, 1245.9422607421875, 494.4715270996094, 0.9907013177871704, 1203.0286865234375, 495.6459655761719, 0.9871795177459717, 1228.5289306640625, 421.10614013671875, 0.9919440150260925, 1253.114501953125, 643.55419921875, 0.9753918647766113, 1203.9569091796875, 641.1624145507812, 0.9831758737564087, 1224.829833984375, 368.5962829589844, 0.983116865158081, 1252.4871826171875, 786.4361572265625, 0.8471426367759705, 1220.713134765625, 777.8868408203125, 0.9243097305297852, 1218.5130615234375, 349.5438232421875, 0.988166332244873, 1216.927734375, 809.80126953125, 0.8370652198791504, 1171.4415283203125, 798.7098388671875, 0.933204174041748, 1213.197998046875, 267.10638427734375, 0.9897492527961731, 1242.12060546875, 296.3890380859375, 0.987236738204956, 1194.05078125, 306.67095947265625, 0.9917313456535339, 1197.5302734375, 250.07752990722656, 0.958203136920929, 1274.8463134765625, 275.1990966796875, 0.9773964285850525, 1171.5654296875, 298.6417236328125, 0.9886831045150757, 1346.743408203125, 189.56866455078125, 0.9453923106193542, 1109.4874267578125, 343.74749755859375, 0.9550391435623169, 1292.917724609375, 178.30892944335938, 0.975878894329071, 1030.057861328125, 395.8175354003906, 0.9582279920578003, 1281.4796142578125, 180.7171630859375, 0.9649785757064819, 1005.4675903320312, 398.9847412109375, 0.9450280666351318, 1172.2178955078125, 183.65081787109375, 0.9635525941848755, 1275.2669677734375, 195.98751831054688, 0.954998254776001, 1007.5072021484375, 385.99371337890625, 0.9148626923561096, 1202.30224609375, 805.5576782226562, 0.760912299156189, 1162.533935546875, 797.0529174804688, 0.9436221122741699], "score": 3.178605079650879, "box": [939.7382202148438, 166.46371459960938, 439.76068115234375, 664.6960754394531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05601729452610016, 0.09042701125144958, -0.031027046963572502], [-0.04525558650493622, 0.08434312790632248, 0.051268886774778366], [0.011744719929993153, -0.10271449387073517, 0.011482130736112595], [0.07344138622283936, 0.4705656170845032, -0.04076119512319565], [-0.03639497235417366, 0.4612879157066345, 0.13739362359046936], [0.004849318414926529, -0.23098646104335785, -0.010757356882095337], [0.07388485223054886, 0.868972897529602, -0.016519969329237938], [0.017937984317541122, 0.8406268358230591, 0.24732287228107452], [-0.016083983704447746, -0.27756744623184204, -0.03081984631717205], [-0.027199730277061462, 0.9271969199180603, -0.07716518640518188], [-0.10298648476600647, 0.8914746046066284, 0.24492843449115753], [-0.02334729954600334, -0.4845942258834839, -0.006517244502902031], [0.04692211002111435, -0.4015042185783386, -0.05052392557263374], [-0.07216759771108627, -0.38743728399276733, 0.036962542682886124], [-0.07012563943862915, -0.5262285470962524, -0.06104421988129616], [0.12172893434762955, -0.44350874423980713, -0.07919658720493317], [-0.13973937928676605, -0.41742146015167236, 0.09693025052547455], [0.2665310204029083, -0.620215654373169, -0.20426726341247559], [-0.32381632924079895, -0.28676384687423706, 0.2114672213792801], [0.12803582847118378, -0.6752224564552307, -0.008366812020540237], [-0.5210925936698914, -0.1547316163778305, 0.12202860414981842], [0.09614939987659454, -0.6753523945808411, 0.06780031323432922], [-0.5907011032104492, -0.14398713409900665, 0.07931903004646301]]}, {"image_id": "90.jpg", "category_id": 1, "keypoints": [1081.289794921875, 470.1067810058594, 0.982871413230896, 1099.2840576171875, 499.7677917480469, 0.9861239194869995, 1063.3096923828125, 501.5674743652344, 0.9831169843673706, 1087.3780517578125, 431.7811279296875, 0.9927711486816406, 1053.2491455078125, 631.06640625, 0.9726559519767761, 1083.7720947265625, 635.5825805664062, 0.9786163568496704, 1082.7763671875, 386.5099792480469, 0.9653395414352417, 1016.789794921875, 760.4226684570312, 0.942131519317627, 1131.0299072265625, 759.4464111328125, 0.9415749907493591, 1077.8817138671875, 371.84307861328125, 0.9795441627502441, 998.9774169921875, 783.2688598632812, 0.8774205446243286, 1100.67626953125, 787.0853271484375, 0.9482443928718567, 1072.2901611328125, 299.06951904296875, 0.9891757965087891, 1101.4085693359375, 327.38519287109375, 0.9878054261207581, 1052.24658203125, 334.3240966796875, 0.9913465976715088, 1069.7855224609375, 275.3887634277344, 0.9529117941856384, 1126.85107421875, 319.7122802734375, 0.9734134078025818, 1021.5908203125, 333.68975830078125, 0.985791027545929, 1134.45751953125, 392.8652038574219, 0.961517870426178, 959.024169921875, 388.5979309082031, 0.9421812295913696, 1050.5330810546875, 411.4082946777344, 0.9324463605880737, 977.4127807617188, 402.4800109863281, 0.9541457891464233, 1033.0535888671875, 412.59405517578125, 0.9344637393951416, 987.3569946289062, 407.0897521972656, 0.9107323288917542, 1070.637451171875, 202.89443969726562, 0.9524545669555664, 1010.17431640625, 412.6888732910156, 0.8388017416000366, 1005.08935546875, 408.3580017089844, 0.863442599773407, 991.6920166015625, 782.3412475585938, 0.9102711081504822, 1086.513671875, 787.502197265625, 0.9532983303070068], "score": 3.0593373775482178, "box": [947.17822265625, 201.964111328125, 205.517578125, 622.3240356445312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05259059742093086, 0.09108593314886093, -0.040539052337408066], [-0.04893879219889641, 0.08826679736375809, 0.045084841549396515], [0.017034318298101425, -0.10317008197307587, 0.021243784576654434], [-0.07476995140314102, 0.44872331619262695, -0.08832894265651703], [0.011279464699327946, 0.46799659729003906, 0.10738180577754974], [0.0024102942552417517, -0.23268936574459076, -0.002568453550338745], [-0.1806463897228241, 0.8331450819969177, -0.02511553466320038], [0.15401148796081543, 0.8357442617416382, 0.19180305302143097], [-0.01363859511911869, -0.27504342794418335, -0.035998012870550156], [-0.2474893480539322, 0.9106734991073608, -0.11013010144233704], [0.055484551936388016, 0.9251219034194946, 0.18906961381435394], [-0.026445873081684113, -0.48672282695770264, -0.030139505863189697], [0.05314194783568382, -0.4006904363632202, -0.052739519625902176], [-0.0843413844704628, -0.3908690810203552, 0.010614950209856033], [-0.035303521901369095, -0.5452778935432434, -0.08890265226364136], [0.12963707745075226, -0.4211401343345642, -0.09957253932952881], [-0.17832235991954803, -0.3943929672241211, 0.03373359143733978], [0.14714401960372925, -0.18413077294826508, -0.21385517716407776], [-0.3660773038864136, -0.227101668715477, -0.01653490588068962], [-0.07051177322864532, -0.13209690153598785, -0.3241819143295288], [-0.3134148418903351, -0.1751524955034256, -0.2624397873878479], [-0.12518960237503052, -0.12583206593990326, -0.3875970244407654], [-0.28703564405441284, -0.15919159352779388, -0.3403390645980835]]}, {"image_id": "91.jpg", "category_id": 1, "keypoints": [1223.860107421875, 461.739501953125, 0.9863932132720947, 1248.0023193359375, 495.7812805175781, 0.9905785322189331, 1204.620849609375, 496.939453125, 0.9875335097312927, 1229.919189453125, 422.2730712890625, 0.9917617440223694, 1254.99951171875, 645.6326904296875, 0.9740573763847351, 1205.2581787109375, 642.5436401367188, 0.9824790358543396, 1225.6270751953125, 369.91571044921875, 0.9835130572319031, 1252.09130859375, 790.4984130859375, 0.8672700524330139, 1220.117919921875, 778.85546875, 0.9236941933631897, 1219.0849609375, 350.8702087402344, 0.9885045886039734, 1209.5230712890625, 815.1116943359375, 0.836105227470398, 1169.1597900390625, 797.9521484375, 0.9332473278045654, 1214.130859375, 267.3740234375, 0.9890008568763733, 1242.945068359375, 297.97357177734375, 0.9860284328460693, 1194.6839599609375, 307.13385009765625, 0.9914986491203308, 1198.4219970703125, 250.90016174316406, 0.9566904902458191, 1275.64453125, 276.18499755859375, 0.9769098162651062, 1172.1123046875, 298.4783630371094, 0.9888794422149658, 1345.0074462890625, 189.270751953125, 0.9368178844451904, 1109.712890625, 343.7236633300781, 0.9516812562942505, 1292.0694580078125, 179.04019165039062, 0.9750072360038757, 1028.940185546875, 397.006591796875, 0.9583975672721863, 1280.976318359375, 181.94207763671875, 0.9633752107620239, 1003.1666870117188, 400.87762451171875, 0.9447904825210571, 1172.2144775390625, 182.99734497070312, 0.9654494524002075, 1275.936279296875, 197.46060180664062, 0.9537029266357422, 1008.021484375, 386.62579345703125, 0.9262436032295227, 1194.5657958984375, 810.85302734375, 0.7596403360366821, 1157.173828125, 797.5531005859375, 0.9447057843208313], "score": 3.1781163215637207, "box": [937.6685791015625, 164.18531799316406, 442.3223876953125, 668.6104583740234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05678507313132286, 0.09031670540571213, -0.029418202117085457], [-0.04449159651994705, 0.08380046486854553, 0.052503712475299835], [0.01074983086436987, -0.10278157889842987, 0.009763916954398155], [0.07384444028139114, 0.47054916620254517, -0.03724163770675659], [-0.03667018935084343, 0.46161311864852905, 0.13475249707698822], [0.002597011858597398, -0.2303529530763626, -0.015271982178092003], [0.070029616355896, 0.8669157028198242, 0.008270760998129845], [0.012871909886598587, 0.839458703994751, 0.2512396275997162], [-0.018659014254808426, -0.2760050296783447, -0.03678715601563454], [-0.03741619735956192, 0.9224486947059631, -0.043050892651081085], [-0.10995931923389435, 0.8848984241485596, 0.24549727141857147], [-0.02555800974369049, -0.4832610487937927, -0.017489856109023094], [0.044182371348142624, -0.39914387464523315, -0.05988386273384094], [-0.07397535443305969, -0.38735508918762207, 0.02863532491028309], [-0.07285595685243607, -0.5237925052642822, -0.0724090188741684], [0.11776956915855408, -0.44214046001434326, -0.08974601328372955], [-0.14035801589488983, -0.4187740087509155, 0.08893901109695435], [0.25919488072395325, -0.6242293119430542, -0.21068133413791656], [-0.32522737979888916, -0.2877509593963623, 0.2014935314655304], [0.12557165324687958, -0.6760888695716858, -0.010745329782366753], [-0.5248188376426697, -0.153681680560112, 0.1209518164396286], [0.09304890036582947, -0.6739428639411926, 0.06502576917409897], [-0.5957748293876648, -0.14140690863132477, 0.0811438262462616]]}, {"image_id": "91.jpg", "category_id": 1, "keypoints": [1081.136474609375, 469.45025634765625, 0.9831128716468811, 1098.9617919921875, 498.9183654785156, 0.9855630993843079, 1063.372802734375, 500.73431396484375, 0.9833449125289917, 1087.3394775390625, 431.3096618652344, 0.9929425716400146, 1053.3087158203125, 629.7072143554688, 0.9719946384429932, 1083.05322265625, 634.4987182617188, 0.9773115515708923, 1082.3653564453125, 386.36968994140625, 0.9670203924179077, 1019.1057739257812, 760.78125, 0.9391212463378906, 1130.4249267578125, 759.0667724609375, 0.940759003162384, 1077.267822265625, 371.9036865234375, 0.9798481464385986, 1000.2561645507812, 782.0313720703125, 0.8768231272697449, 1101.4296875, 787.3670654296875, 0.9449042677879333, 1072.0029296875, 299.6201171875, 0.9892614483833313, 1100.5977783203125, 327.69390869140625, 0.9879996180534363, 1052.2220458984375, 334.636962890625, 0.9908795356750488, 1069.3016357421875, 275.8223876953125, 0.9517190456390381, 1126.24609375, 319.98944091796875, 0.9733436107635498, 1021.9173583984375, 334.4284973144531, 0.9858828186988831, 1136.01904296875, 392.8164367675781, 0.9652531147003174, 958.5792236328125, 389.17999267578125, 0.9414709806442261, 1050.95751953125, 412.1907043457031, 0.9338910579681396, 977.3698120117188, 404.0033264160156, 0.9564711451530457, 1032.94287109375, 413.56298828125, 0.9332780241966248, 987.3765869140625, 408.95587158203125, 0.9141887426376343, 1070.414794921875, 202.82705688476562, 0.953173816204071, 1008.2396240234375, 412.7742004394531, 0.8478866815567017, 1005.401123046875, 409.8226318359375, 0.8670623898506165, 993.130859375, 779.0646362304688, 0.9106265902519226, 1089.373291015625, 789.4852905273438, 0.949616551399231], "score": 3.033026933670044, "box": [947.7257080078125, 201.42153930664062, 206.177734375, 623.1630554199219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05214114859700203, 0.09122776985168457, -0.04047650843858719], [-0.0483388677239418, 0.08793103694915771, 0.0460788793861866], [0.01714259944856167, -0.10313744843006134, 0.020366255193948746], [-0.07466334104537964, 0.44902539253234863, -0.0871584564447403], [0.009739820845425129, 0.46837079524993896, 0.10478292405605316], [0.0014510435285046697, -0.2321992665529251, -0.00482628308236599], [-0.1737920492887497, 0.8365789651870728, -0.03499118238687515], [0.15236522257328033, 0.8377227187156677, 0.18041709065437317], [-0.015229943208396435, -0.27398931980133057, -0.03852885961532593], [-0.24844588339328766, 0.9132921099662781, -0.11384034156799316], [0.056911274790763855, 0.9298710823059082, 0.17238178849220276], [-0.026801880449056625, -0.48550665378570557, -0.03218209743499756], [0.05187537893652916, -0.39913874864578247, -0.055999159812927246], [-0.08449555933475494, -0.38998323678970337, 0.009203474968671799], [-0.03613409399986267, -0.5440508723258972, -0.09087592363357544], [0.1290695071220398, -0.4197930693626404, -0.10133752226829529], [-0.17782460153102875, -0.392331600189209, 0.034408729523420334], [0.15368206799030304, -0.18258826434612274, -0.213530033826828], [-0.3667548596858978, -0.22652427852153778, -0.015425007790327072], [-0.06316997110843658, -0.129294291138649, -0.32439079880714417], [-0.3132677376270294, -0.17227451503276825, -0.26045411825180054], [-0.11857421696186066, -0.12258659303188324, -0.3869922161102295], [-0.28646132349967957, -0.15532778203487396, -0.3378852903842926]]}, {"image_id": "92.jpg", "category_id": 1, "keypoints": [1217.349609375, 459.13739013671875, 0.9856579303741455, 1240.2781982421875, 493.60888671875, 0.9896882772445679, 1197.7291259765625, 494.5491943359375, 0.9865282773971558, 1224.4481201171875, 419.8375244140625, 0.9919720888137817, 1251.9251708984375, 641.2490844726562, 0.9762240648269653, 1198.3531494140625, 639.6577758789062, 0.9837190508842468, 1221.1826171875, 367.3302001953125, 0.9832330942153931, 1253.982666015625, 785.18505859375, 0.860281765460968, 1216.583740234375, 777.648681640625, 0.9160258173942566, 1215.0748291015625, 347.97406005859375, 0.9892436861991882, 1221.8172607421875, 808.1895751953125, 0.8606606125831604, 1169.6505126953125, 796.720703125, 0.9341008067131042, 1212.1495361328125, 266.01446533203125, 0.9891603589057922, 1240.63720703125, 295.9814453125, 0.9877485632896423, 1191.0384521484375, 305.1026611328125, 0.9916989207267761, 1196.1866455078125, 248.39337158203125, 0.9545984268188477, 1274.5528564453125, 275.7239990234375, 0.9813929200172424, 1168.2548828125, 297.18084716796875, 0.989145040512085, 1346.3353271484375, 188.73028564453125, 0.9453819990158081, 1106.14208984375, 344.3768310546875, 0.9521359205245972, 1288.8260498046875, 178.8016357421875, 0.9750612378120422, 1021.97119140625, 396.82769775390625, 0.9610229730606079, 1277.095703125, 182.0604248046875, 0.9679448008537292, 994.1558227539062, 403.0234375, 0.9486911296844482, 1169.1170654296875, 183.22708129882812, 0.9636568427085876, 1271.1761474609375, 199.234130859375, 0.9562098383903503, 987.733642578125, 398.8240661621094, 0.91634601354599, 1205.9716796875, 802.5137939453125, 0.7762223482131958, 1160.1724853515625, 795.0133056640625, 0.9442588686943054], "score": 3.1802892684936523, "box": [936.5546875, 166.2273712158203, 443.77783203125, 664.1186370849609], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.055347125977277756, 0.09155410528182983, -0.02836921438574791], [-0.04689954221248627, 0.08273598551750183, 0.052132733166217804], [0.01276412419974804, -0.10277187824249268, 0.009704342111945152], [0.08440764993429184, 0.47030407190322876, -0.037715695798397064], [-0.03921952098608017, 0.4598029553890228, 0.1347087323665619], [0.007914045825600624, -0.23076096177101135, -0.015942318364977837], [0.09129723161458969, 0.8682616949081421, -0.02430550567805767], [0.01822574809193611, 0.8388054966926575, 0.2408880889415741], [-0.011579949408769608, -0.2777097821235657, -0.03669751435518265], [-0.0072463941760361195, 0.9301892518997192, -0.0851864218711853], [-0.10329160839319229, 0.8877928256988525, 0.23715907335281372], [-0.014956023544073105, -0.4851745367050171, -0.016128189861774445], [0.05486276373267174, -0.3997650742530823, -0.05628340691328049], [-0.06744164228439331, -0.38987261056900024, 0.027248403057456017], [-0.061044204980134964, -0.5266118049621582, -0.07154141366481781], [0.13123348355293274, -0.4408726692199707, -0.08208461850881577], [-0.13579855859279633, -0.4194117784500122, 0.08662249147891998], [0.275492787361145, -0.6200644373893738, -0.20308825373649597], [-0.31692153215408325, -0.2847450077533722, 0.20005089044570923], [0.12430901825428009, -0.6702780723571777, -0.016013460233807564], [-0.5186111927032471, -0.15637513995170593, 0.11670158803462982], [0.09093950688838959, -0.6672817468643188, 0.05937877297401428], [-0.5907763838768005, -0.13888639211654663, 0.08125902712345123]]}, {"image_id": "92.jpg", "category_id": 1, "keypoints": [1082.50830078125, 468.50018310546875, 0.9829422235488892, 1099.9617919921875, 498.40753173828125, 0.9854468107223511, 1064.522705078125, 500.36102294921875, 0.9829006195068359, 1088.823974609375, 430.65155029296875, 0.9926458597183228, 1052.9451904296875, 629.514892578125, 0.9721450805664062, 1083.9967041015625, 634.8125610351562, 0.9781959056854248, 1084.16259765625, 385.5745544433594, 0.9702956080436707, 1017.2694091796875, 760.4293212890625, 0.9394912123680115, 1133.064697265625, 757.4385986328125, 0.9414445757865906, 1078.6805419921875, 371.0308837890625, 0.9808043241500854, 1000.6349487304688, 783.0025634765625, 0.8739126920700073, 1101.601806640625, 784.0224609375, 0.9401921629905701, 1073.0628662109375, 299.17449951171875, 0.9892681241035461, 1102.0723876953125, 326.58489990234375, 0.987329363822937, 1053.810302734375, 334.49609375, 0.9917362928390503, 1069.58251953125, 275.66693115234375, 0.9520511627197266, 1126.54248046875, 318.8001708984375, 0.9690824747085571, 1023.4472045898438, 334.9506530761719, 0.9867832660675049, 1127.20849609375, 390.51788330078125, 0.9623266458511353, 957.9868774414062, 388.7449951171875, 0.9462063908576965, 1046.7755126953125, 411.6612854003906, 0.9287713170051575, 975.2093505859375, 403.8077392578125, 0.9558534026145935, 1026.4595947265625, 413.47576904296875, 0.936401903629303, 984.1361694335938, 408.9312438964844, 0.9144643545150757, 1074.5396728515625, 200.89065551757812, 0.9547263979911804, 996.9375, 411.8163757324219, 0.9045365452766418, 1002.6987915039062, 410.3907470703125, 0.8428266048431396, 994.3978271484375, 780.9715576171875, 0.9068376421928406, 1089.032958984375, 786.0241088867188, 0.948043942451477], "score": 3.0433919429779053, "box": [947.33984375, 199.11827087402344, 206.3759765625, 628.0501861572266], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05107254534959793, 0.09088566899299622, -0.04229241982102394], [-0.04863428324460983, 0.08816388994455338, 0.04507598280906677], [0.018068939447402954, -0.10254572331905365, 0.021777251735329628], [-0.07877173274755478, 0.44768649339675903, -0.08867566287517548], [0.008586460724473, 0.468783974647522, 0.10323890298604965], [0.002704753540456295, -0.23151220381259918, -0.002895226702094078], [-0.18168732523918152, 0.8333887457847595, -0.03136183321475983], [0.15674518048763275, 0.8328099846839905, 0.19218431413173676], [-0.014925001189112663, -0.27301424741744995, -0.036293186247348785], [-0.24414405226707458, 0.9094623327255249, -0.12065044045448303], [0.05499640107154846, 0.9179356694221497, 0.18506477773189545], [-0.02784343995153904, -0.4842601418495178, -0.03147704899311066], [0.05077841877937317, -0.39834272861480713, -0.056386590003967285], [-0.08380060642957687, -0.388813853263855, 0.012066526338458061], [-0.03918308764696121, -0.541283130645752, -0.09121812134981155], [0.1247347816824913, -0.4191146492958069, -0.10663178563117981], [-0.17698822915554047, -0.38912129402160645, 0.03764745593070984], [0.11926456540822983, -0.19450141489505768, -0.24406741559505463], [-0.3685842454433441, -0.22884927690029144, -0.01894485019147396], [-0.09880716353654861, -0.13359834253787994, -0.34805941581726074], [-0.3198462426662445, -0.17423926293849945, -0.26477164030075073], [-0.15492138266563416, -0.12615610659122467, -0.4098661243915558], [-0.2958243191242218, -0.15675760805606842, -0.3429449498653412]]}, {"image_id": "93.jpg", "category_id": 1, "keypoints": [1219.734130859375, 460.29705810546875, 0.9852195382118225, 1243.2340087890625, 494.6689147949219, 0.9901117086410522, 1200.4542236328125, 496.09051513671875, 0.9871373772621155, 1226.5220947265625, 420.8687438964844, 0.991905152797699, 1255.224365234375, 643.8068237304688, 0.9779078960418701, 1202.454833984375, 642.1202392578125, 0.9843997955322266, 1223.3824462890625, 368.0265808105469, 0.9837343096733093, 1254.115966796875, 785.9390869140625, 0.871488094329834, 1221.055908203125, 779.2059326171875, 0.9145326018333435, 1217.0948486328125, 348.58306884765625, 0.9888638854026794, 1219.695556640625, 809.0250244140625, 0.8484714031219482, 1172.9617919921875, 798.489501953125, 0.9355998635292053, 1212.774658203125, 265.8687744140625, 0.9892213344573975, 1241.8458251953125, 295.62237548828125, 0.9881593585014343, 1192.805908203125, 305.70831298828125, 0.99183189868927, 1197.2008056640625, 248.99334716796875, 0.9533548951148987, 1274.4500732421875, 274.52313232421875, 0.9771840572357178, 1169.173828125, 298.201171875, 0.9895301461219788, 1347.065673828125, 188.10589599609375, 0.9469884634017944, 1104.329345703125, 344.124755859375, 0.9507433176040649, 1292.2607421875, 178.63491821289062, 0.9759450554847717, 1016.4888305664062, 397.46905517578125, 0.9618485569953918, 1280.253173828125, 182.71444702148438, 0.9646707773208618, 989.9164428710938, 400.67742919921875, 0.9505886435508728, 1169.87646484375, 182.7926025390625, 0.9641735553741455, 1273.3623046875, 202.65603637695312, 0.9462820887565613, 984.7566528320312, 392.224609375, 0.9347332119941711, 1203.9266357421875, 802.9315185546875, 0.7682816386222839, 1165.6962890625, 797.1600341796875, 0.95281982421875], "score": 3.179161548614502, "box": [937.6605834960938, 167.78150939941406, 442.10235595703125, 660.9877166748047], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05620690807700157, 0.09075433015823364, -0.029856035485863686], [-0.046287212520837784, 0.08400394022464752, 0.05100387707352638], [0.011947674676775932, -0.10287195444107056, 0.011265821754932404], [0.08649560809135437, 0.46987980604171753, -0.03201939910650253], [-0.035352226346731186, 0.4625639319419861, 0.12797492742538452], [0.007685160264372826, -0.23112791776657104, -0.012523552402853966], [0.08609678596258163, 0.8676332831382751, -0.002547750249505043], [0.02365293726325035, 0.8419685959815979, 0.23420241475105286], [-0.012494424358010292, -0.27808883786201477, -0.0327080562710762], [-0.012506287544965744, 0.9247591495513916, -0.0681455135345459], [-0.09824354946613312, 0.8903229236602783, 0.2293148636817932], [-0.0182915311306715, -0.4854622483253479, -0.009152675047516823], [0.052164461463689804, -0.40149760246276855, -0.051558151841163635], [-0.06903782486915588, -0.3888048529624939, 0.03366563841700554], [-0.06454276293516159, -0.5261114239692688, -0.06490884721279144], [0.12687566876411438, -0.44525355100631714, -0.07820536196231842], [-0.13958850502967834, -0.41673094034194946, 0.09140460193157196], [0.27383527159690857, -0.6241503357887268, -0.19709858298301697], [-0.3292332589626312, -0.28543657064437866, 0.19527627527713776], [0.1346370279788971, -0.6737290620803833, -0.00039694830775260925], [-0.5349641442298889, -0.15796774625778198, 0.11980137228965759], [0.10182182490825653, -0.6684022545814514, 0.07522433996200562], [-0.6105198860168457, -0.14753371477127075, 0.08862198889255524]]}, {"image_id": "93.jpg", "category_id": 1, "keypoints": [1082.713134765625, 469.2281188964844, 0.9826950430870056, 1100.4281005859375, 499.26922607421875, 0.9857672452926636, 1064.943115234375, 500.8717041015625, 0.9824378490447998, 1088.778076171875, 431.10882568359375, 0.9926443099975586, 1053.0775146484375, 630.74365234375, 0.9720571041107178, 1082.952392578125, 634.103515625, 0.9789780378341675, 1083.946533203125, 386.20172119140625, 0.969803512096405, 1015.3031005859375, 762.7124633789062, 0.9394147396087646, 1131.789794921875, 755.4066772460938, 0.9330987930297852, 1078.60888671875, 371.70623779296875, 0.9811907410621643, 998.3610229492188, 785.9332275390625, 0.860928475856781, 1100.70458984375, 782.989990234375, 0.9435794949531555, 1073.21484375, 299.50152587890625, 0.9892683625221252, 1102.029296875, 327.36114501953125, 0.9877227544784546, 1053.380126953125, 334.90618896484375, 0.9909871816635132, 1070.5538330078125, 275.571044921875, 0.9511241316795349, 1126.770263671875, 319.83306884765625, 0.9700179100036621, 1022.7454833984375, 335.5885925292969, 0.9861729145050049, 1129.6588134765625, 390.97662353515625, 0.9634133577346802, 958.061279296875, 389.3387145996094, 0.9447678923606873, 1048.0904541015625, 411.62432861328125, 0.9305950999259949, 974.8077392578125, 403.8045654296875, 0.9548565745353699, 1029.577392578125, 412.8158874511719, 0.9356368184089661, 983.8067626953125, 408.4154357910156, 0.9097700715065002, 1074.51904296875, 200.68231201171875, 0.9543024301528931, 1002.3599853515625, 410.8105163574219, 0.8845319151878357, 1001.4305419921875, 408.70123291015625, 0.8583018183708191, 991.6940307617188, 784.060791015625, 0.8978319764137268, 1086.967041015625, 785.52734375, 0.9488652944564819], "score": 3.052354574203491, "box": [947.108154296875, 200.3488311767578, 208.0806884765625, 627.2920379638672], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.051878347992897034, 0.09130701422691345, -0.040362369269132614], [-0.04802896827459335, 0.08765465021133423, 0.04668623208999634], [0.01723596081137657, -0.10316222906112671, 0.01983494870364666], [-0.07837238907814026, 0.4471719563007355, -0.09116721153259277], [0.00562675204128027, 0.46794718503952026, 0.10922985523939133], [0.001337357796728611, -0.2317684292793274, -0.007312582805752754], [-0.18671481311321259, 0.8323302268981934, -0.04217657446861267], [0.15398359298706055, 0.8297940492630005, 0.20555108785629272], [-0.0157926082611084, -0.2727911174297333, -0.041649095714092255], [-0.24857383966445923, 0.9083681106567383, -0.1319180428981781], [0.05430413782596588, 0.9172551035881042, 0.19731321930885315], [-0.028806444257497787, -0.4841422438621521, -0.040746018290519714], [0.050225578248500824, -0.3977872133255005, -0.06297661364078522], [-0.08542659878730774, -0.38940608501434326, 0.003657212480902672], [-0.03796391189098358, -0.5421333312988281, -0.10002753138542175], [0.12494580447673798, -0.41778355836868286, -0.11250468343496323], [-0.1790638417005539, -0.38892149925231934, 0.027817638590931892], [0.12682290375232697, -0.18855899572372437, -0.24200960993766785], [-0.370710164308548, -0.22711724042892456, -0.02355257235467434], [-0.0896897092461586, -0.12999778985977173, -0.3504135012626648], [-0.3233044445514679, -0.17418301105499268, -0.2699267268180847], [-0.14371038973331451, -0.12396395206451416, -0.4142330586910248], [-0.299002081155777, -0.15805131196975708, -0.3483128547668457]]}, {"image_id": "94.jpg", "category_id": 1, "keypoints": [1222.0703125, 461.7768249511719, 0.985763430595398, 1245.9735107421875, 495.30426025390625, 0.9899281859397888, 1202.0328369140625, 497.4394836425781, 0.9885269403457642, 1228.687255859375, 422.13348388671875, 0.9912633895874023, 1253.8773193359375, 644.6188354492188, 0.9782043695449829, 1203.5103759765625, 642.3182373046875, 0.9852887988090515, 1225.827392578125, 369.6039733886719, 0.9833756685256958, 1250.7156982421875, 787.5147705078125, 0.8427387475967407, 1216.0216064453125, 778.16259765625, 0.9168731570243835, 1219.14404296875, 350.2056579589844, 0.9882609844207764, 1218.79833984375, 808.2821655273438, 0.850029706954956, 1169.2432861328125, 797.3980712890625, 0.9343679547309875, 1212.8199462890625, 266.86810302734375, 0.9891687631607056, 1243.43359375, 296.45361328125, 0.9877714514732361, 1193.2833251953125, 307.27239990234375, 0.9925392270088196, 1195.985107421875, 250.26177978515625, 0.95210200548172, 1275.1103515625, 275.3768310546875, 0.977499783039093, 1168.8348388671875, 299.63372802734375, 0.9894218444824219, 1348.9473876953125, 186.1463623046875, 0.9455767869949341, 1101.1546630859375, 346.14410400390625, 0.9601179361343384, 1293.6771240234375, 178.53924560546875, 0.9732139706611633, 1013.3497314453125, 398.51922607421875, 0.9570441246032715, 1281.20703125, 182.95840454101562, 0.9637714624404907, 988.5072021484375, 401.3638916015625, 0.9511113166809082, 1166.4012451171875, 186.82858276367188, 0.9630702137947083, 1272.9342041015625, 201.7137451171875, 0.9550113677978516, 978.6607055664062, 395.88018798828125, 0.9379850029945374, 1204.0804443359375, 801.3883056640625, 0.7489689588546753, 1161.275390625, 795.692626953125, 0.9411752820014954], "score": 3.178499221801758, "box": [938.2794799804688, 168.587646484375, 443.11956787109375, 659.3258056640625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05729465186595917, 0.09063436836004257, -0.029594721272587776], [-0.04760787636041641, 0.08492301404476166, 0.0490809865295887], [0.011584021151065826, -0.10310685634613037, 0.012774556875228882], [0.07640668004751205, 0.47142085433006287, -0.041255079209804535], [-0.037824224680662155, 0.4644235372543335, 0.12759506702423096], [0.008081781677901745, -0.2314811646938324, -0.010415641590952873], [0.06861115247011185, 0.8717144727706909, -0.029724175110459328], [0.005491891410201788, 0.8459357619285583, 0.24007844924926758], [-0.013979144394397736, -0.27741193771362305, -0.03134698420763016], [-0.03157421201467514, 0.9281492829322815, -0.09424667060375214], [-0.11633680760860443, 0.8953086137771606, 0.23329582810401917], [-0.022934943437576294, -0.4848279356956482, -0.0049501340836286545], [0.0491548553109169, -0.4023938775062561, -0.04822849482297897], [-0.07267026603221893, -0.38672834634780884, 0.03636739030480385], [-0.07107359915971756, -0.5232898592948914, -0.06054285541176796], [0.12353994697332382, -0.44503188133239746, -0.0780150443315506], [-0.14577597379684448, -0.41476303339004517, 0.09107650816440582], [0.2689279317855835, -0.62510746717453, -0.1993013620376587], [-0.3407590687274933, -0.2836727797985077, 0.1876109540462494], [0.1263919174671173, -0.669621467590332, -0.0025661177933216095], [-0.5417611598968506, -0.1605089008808136, 0.09169389307498932], [0.09282445162534714, -0.6634315848350525, 0.07295681536197662], [-0.6136429309844971, -0.15060991048812866, 0.05203499272465706]]}, {"image_id": "94.jpg", "category_id": 1, "keypoints": [1084.1107177734375, 469.6565856933594, 0.9822375178337097, 1100.768798828125, 499.78997802734375, 0.9851756691932678, 1066.3087158203125, 501.57904052734375, 0.9832344651222229, 1090.77099609375, 431.5428771972656, 0.9930079579353333, 1053.2318115234375, 631.0233764648438, 0.9714244604110718, 1083.3275146484375, 634.6813354492188, 0.9778477549552917, 1086.0318603515625, 386.6448059082031, 0.9688249230384827, 1013.9742431640625, 764.0927124023438, 0.9407866597175598, 1130.0694580078125, 756.781982421875, 0.9246912598609924, 1080.3994140625, 372.13690185546875, 0.9799159169197083, 995.8622436523438, 787.5821533203125, 0.8630772233009338, 1097.865234375, 782.963134765625, 0.9473618865013123, 1075.0457763671875, 299.85638427734375, 0.9892224073410034, 1103.79345703125, 327.46893310546875, 0.9871623516082764, 1055.7774658203125, 335.6907958984375, 0.9918699264526367, 1071.63818359375, 276.09588623046875, 0.9526637196540833, 1127.8170166015625, 319.763427734375, 0.9683778285980225, 1025.3017578125, 336.47705078125, 0.9870905876159668, 1126.85205078125, 390.21710205078125, 0.9622095227241516, 958.614501953125, 388.4985656738281, 0.9442649483680725, 1045.822021484375, 412.7995910644531, 0.9286943674087524, 973.8230590820312, 403.3756103515625, 0.9530580639839172, 1025.4932861328125, 415.11798095703125, 0.9331783652305603, 982.2877807617188, 408.12188720703125, 0.9068177342414856, 1074.955810546875, 201.69854736328125, 0.9547547101974487, 997.2482299804688, 414.5430908203125, 0.9011991620063782, 1000.1964721679688, 408.40643310546875, 0.8572276830673218, 989.29248046875, 786.2582397460938, 0.9017374515533447, 1082.0791015625, 785.3597412109375, 0.9495715498924255], "score": 3.064256429672241, "box": [947.1033325195312, 198.93043518066406, 208.91619873046875, 630.3957977294922], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049701135605573654, 0.09200381487607956, -0.04284219071269035], [-0.04796893894672394, 0.08770701289176941, 0.04788392782211304], [0.019334616139531136, -0.10330408811569214, 0.020079702138900757], [-0.08152715116739273, 0.44886454939842224, -0.09069141000509262], [0.003122317371889949, 0.4689810574054718, 0.11265494674444199], [0.0031083773355931044, -0.2317310869693756, -0.007039399817585945], [-0.19482247531414032, 0.8364439010620117, -0.06385479867458344], [0.14580540359020233, 0.8344491124153137, 0.21080172061920166], [-0.01494107861071825, -0.2729526460170746, -0.04097485542297363], [-0.2620530128479004, 0.9156568050384521, -0.14736056327819824], [0.04256909713149071, 0.9187442064285278, 0.21397998929023743], [-0.027573008090257645, -0.4851040244102478, -0.0398770347237587], [0.050732504576444626, -0.39842694997787476, -0.06523115932941437], [-0.08300026506185532, -0.39032673835754395, 0.006961913779377937], [-0.038651127368211746, -0.5421715974807739, -0.09946152567863464], [0.12301796674728394, -0.41872167587280273, -0.11870066076517105], [-0.17601829767227173, -0.38974201679229736, 0.034643225371837616], [0.11273152381181717, -0.19119328260421753, -0.25261494517326355], [-0.37335628271102905, -0.23325806856155396, -0.016688697040081024], [-0.10539605468511581, -0.12691649794578552, -0.3565083146095276], [-0.3301958441734314, -0.17895057797431946, -0.26449325680732727], [-0.16241075098514557, -0.11807727813720703, -0.41777050495147705], [-0.3074890077114105, -0.16250470280647278, -0.3436725437641144]]}, {"image_id": "95.jpg", "category_id": 1, "keypoints": [1223.278076171875, 460.2613830566406, 0.9861823320388794, 1247.07861328125, 494.1238708496094, 0.9899716377258301, 1203.1878662109375, 495.6815185546875, 0.9882851243019104, 1229.8385009765625, 420.1826171875, 0.9907811284065247, 1254.453125, 644.189453125, 0.9757688641548157, 1204.4512939453125, 641.3825073242188, 0.9847361445426941, 1225.7601318359375, 367.88018798828125, 0.9838547706604004, 1253.837890625, 788.1815185546875, 0.8637281656265259, 1219.841552734375, 779.2837524414062, 0.9155436754226685, 1219.232421875, 348.6432189941406, 0.989151656627655, 1221.737548828125, 809.8726196289062, 0.8629333972930908, 1174.2701416015625, 798.848388671875, 0.9330974221229553, 1213.604248046875, 265.22900390625, 0.9884294271469116, 1244.5323486328125, 295.69781494140625, 0.9876331686973572, 1193.017578125, 305.42059326171875, 0.9919517040252686, 1197.0428466796875, 247.90321350097656, 0.9515383839607239, 1277.05810546875, 274.861572265625, 0.976832389831543, 1168.52587890625, 297.449951171875, 0.9894806742668152, 1349.703857421875, 185.9793701171875, 0.9479031562805176, 1101.0, 345.91522216796875, 0.9576898217201233, 1291.9820556640625, 178.94879150390625, 0.977059006690979, 1015.6357421875, 399.99365234375, 0.9506797194480896, 1279.061767578125, 182.04464721679688, 0.9624063968658447, 988.166015625, 404.57989501953125, 0.9421718716621399, 1171.5762939453125, 180.92153930664062, 0.9669975638389587, 1272.1134033203125, 196.9188232421875, 0.953302264213562, 973.4873046875, 403.01300048828125, 0.9289714097976685, 1206.96240234375, 802.8547973632812, 0.7688159346580505, 1166.8975830078125, 796.877685546875, 0.9521500468254089], "score": 3.1776533126831055, "box": [941.2977905273438, 164.9006805419922, 435.47149658203125, 665.8289337158203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05750461295247078, 0.09115958958864212, -0.026724498718976974], [-0.04748200252652168, 0.08353209495544434, 0.051092635840177536], [0.011182493530213833, -0.10311146080493927, 0.009857375174760818], [0.07600612938404083, 0.4724429249763489, -0.02937348373234272], [-0.03799791261553764, 0.4623650908470154, 0.1338358223438263], [0.004511898383498192, -0.23061053454875946, -0.01636548340320587], [0.07804307341575623, 0.8708890080451965, 0.011853490024805069], [0.012620834633708, 0.8423821330070496, 0.2482890486717224], [-0.015390818938612938, -0.2763703465461731, -0.03929400071501732], [-0.020488018169999123, 0.9284161925315857, -0.05402984842658043], [-0.10830993950366974, 0.8935346007347107, 0.2411973476409912], [-0.026388488709926605, -0.48436838388442993, -0.02507014386355877], [0.04737929254770279, -0.40031349658966064, -0.060914915055036545], [-0.07667628675699234, -0.38859039545059204, 0.019925877451896667], [-0.07399122416973114, -0.5135537981987, -0.0864969938993454], [0.1210622563958168, -0.44438105821609497, -0.08948421478271484], [-0.14923398196697235, -0.4174068570137024, 0.07442383468151093], [0.2684498131275177, -0.6289343237876892, -0.20135602355003357], [-0.342123419046402, -0.28165745735168457, 0.16868680715560913], [0.11175457388162613, -0.6710088849067688, -0.015201348811388016], [-0.5454055070877075, -0.15033744275569916, 0.08985495567321777], [0.07408206909894943, -0.6683584451675415, 0.05843813344836235], [-0.6196986436843872, -0.13659356534481049, 0.05653372034430504]]}, {"image_id": "95.jpg", "category_id": 1, "keypoints": [1084.620849609375, 470.16650390625, 0.9817663431167603, 1101.119873046875, 500.15234375, 0.9849833250045776, 1066.6624755859375, 501.98394775390625, 0.9831035733222961, 1091.4329833984375, 431.7627868652344, 0.9930754899978638, 1053.428466796875, 630.5957641601562, 0.9722923636436462, 1083.259033203125, 635.2500610351562, 0.978104829788208, 1087.183837890625, 386.8669738769531, 0.9708650708198547, 1013.709228515625, 763.33984375, 0.9393742680549622, 1129.9073486328125, 756.5773315429688, 0.9225180745124817, 1081.5814208984375, 372.49114990234375, 0.981224775314331, 997.0386352539062, 787.02685546875, 0.8574880361557007, 1098.8255615234375, 782.7071533203125, 0.9458616971969604, 1075.954833984375, 300.2886962890625, 0.989135205745697, 1105.0911865234375, 327.8301696777344, 0.986657440662384, 1056.582275390625, 336.2923583984375, 0.9924484491348267, 1072.57177734375, 276.6033630371094, 0.9521737098693848, 1128.8775634765625, 319.87127685546875, 0.9673961997032166, 1025.669677734375, 337.3755187988281, 0.987298309803009, 1124.083740234375, 388.6612548828125, 0.961889386177063, 958.7804565429688, 388.68011474609375, 0.9443804621696472, 1045.63916015625, 412.6798095703125, 0.9296075701713562, 973.5106811523438, 403.596435546875, 0.954120934009552, 1025.7322998046875, 414.6942138671875, 0.9339070320129395, 981.23583984375, 408.1188659667969, 0.9088120460510254, 1072.6025390625, 203.12576293945312, 0.9529595375061035, 997.6637573242188, 414.38311767578125, 0.8989584445953369, 999.2208862304688, 408.293701171875, 0.8593035936355591, 991.2357788085938, 785.5618896484375, 0.8929227590560913, 1083.8126220703125, 785.83056640625, 0.9461427330970764], "score": 3.0982909202575684, "box": [947.129150390625, 198.29092407226562, 208.9376220703125, 631.4408264160156], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04956550896167755, 0.09189997613430023, -0.04362817853689194], [-0.048769716173410416, 0.0880913957953453, 0.04673289880156517], [0.019812459126114845, -0.10318891704082489, 0.02138318493962288], [-0.08272019028663635, 0.4475057125091553, -0.09900496900081635], [0.0011084821308031678, 0.4697415232658386, 0.11173629760742188], [0.005212610121816397, -0.23212839663028717, -0.00467982143163681], [-0.19794166088104248, 0.8353064060211182, -0.0781562328338623], [0.14418795704841614, 0.8344042897224426, 0.21395927667617798], [-0.012856729328632355, -0.27315670251846313, -0.039000943303108215], [-0.26006582379341125, 0.9151179790496826, -0.1651962399482727], [0.04214296489953995, 0.9204269647598267, 0.21598103642463684], [-0.026754064485430717, -0.4855080842971802, -0.038497403264045715], [0.05249998718500137, -0.3991706967353821, -0.06276476383209229], [-0.08234847337007523, -0.39040178060531616, 0.00791160762310028], [-0.03775634244084358, -0.5420348644256592, -0.09860789775848389], [0.1241154819726944, -0.4202515482902527, -0.1170654147863388], [-0.17625755071640015, -0.3887401819229126, 0.032983578741550446], [0.10156793147325516, -0.19952945411205292, -0.2609586715698242], [-0.37420305609703064, -0.23415632545948029, -0.022874433547258377], [-0.11694689840078354, -0.1293502002954483, -0.36078599095344543], [-0.33225661516189575, -0.17959679663181305, -0.27109870314598083], [-0.1739148199558258, -0.12121598422527313, -0.4223557412624359], [-0.31114888191223145, -0.16350357234477997, -0.3509243428707123]]}, {"image_id": "96.jpg", "category_id": 1, "keypoints": [1222.926513671875, 461.8730163574219, 0.9858724474906921, 1246.442626953125, 496.0498046875, 0.989181637763977, 1202.743896484375, 497.51220703125, 0.9879590272903442, 1229.71533203125, 421.6178283691406, 0.990669846534729, 1254.22900390625, 648.1281127929688, 0.9812070727348328, 1203.4605712890625, 643.95947265625, 0.9862275123596191, 1226.4395751953125, 368.8101806640625, 0.9827009439468384, 1251.95361328125, 788.7193603515625, 0.8730978965759277, 1217.38525390625, 780.6390380859375, 0.910456120967865, 1219.7490234375, 349.4122314453125, 0.988340437412262, 1218.5655517578125, 810.624755859375, 0.8665236830711365, 1171.7249755859375, 800.35546875, 0.9348028302192688, 1213.9368896484375, 265.5762939453125, 0.988629937171936, 1244.9561767578125, 295.7440185546875, 0.9880456924438477, 1193.79931640625, 306.1080322265625, 0.9925832152366638, 1196.6759033203125, 248.43167114257812, 0.9484398365020752, 1276.47216796875, 275.302978515625, 0.9752086997032166, 1169.0927734375, 298.2843933105469, 0.9895676374435425, 1348.9281005859375, 185.0123291015625, 0.9449489712715149, 1098.1627197265625, 343.21826171875, 0.9625078439712524, 1292.610595703125, 178.03549194335938, 0.9747185111045837, 1009.13916015625, 397.7353210449219, 0.9557584524154663, 1280.35546875, 182.79708862304688, 0.9625991582870483, 982.6278686523438, 399.60516357421875, 0.9513095617294312, 1167.59765625, 182.94915771484375, 0.964657723903656, 1272.6810302734375, 201.461669921875, 0.9516317248344421, 964.0458984375, 396.15655517578125, 0.9554423093795776, 1204.115234375, 804.5692138671875, 0.7930158972740173, 1162.6795654296875, 798.2813720703125, 0.9474272131919861], "score": 3.173732280731201, "box": [940.8460083007812, 167.66575622558594, 437.22406005859375, 659.9219512939453], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.056472741067409515, 0.09140273183584213, -0.02866280823945999], [-0.0473388209939003, 0.08379166573286057, 0.051157206296920776], [0.012216325849294662, -0.10326007008552551, 0.010796276852488518], [0.0764070525765419, 0.47209930419921875, -0.023723112419247627], [-0.03941231966018677, 0.46272724866867065, 0.13169202208518982], [0.007188000716269016, -0.23148015141487122, -0.013599438592791557], [0.07519906014204025, 0.8683563470840454, 0.032946452498435974], [0.007782414555549622, 0.8415145874023438, 0.2507522702217102], [-0.013802519999444485, -0.2776896059513092, -0.035064853727817535], [-0.023990586400032043, 0.924370288848877, -0.0333823636174202], [-0.11307715624570847, 0.8926336765289307, 0.24096199870109558], [-0.02326779067516327, -0.4857669770717621, -0.014841822907328606], [0.049248628318309784, -0.40220263600349426, -0.05517613887786865], [-0.07312460243701935, -0.3888169229030609, 0.02899104915559292], [-0.0713583454489708, -0.52445387840271, -0.07039383798837662], [0.12309927493333817, -0.4448522627353668, -0.08626796305179596], [-0.14624027907848358, -0.4171813428401947, 0.08352643251419067], [0.2666817605495453, -0.6285140514373779, -0.2039937674999237], [-0.3479844033718109, -0.2924456298351288, 0.17402006685733795], [0.119559146463871, -0.6709706783294678, -0.01033882237970829], [-0.551751971244812, -0.16477259993553162, 0.09106358140707016], [0.08633773773908615, -0.6635187864303589, 0.06519877165555954], [-0.6269721388816833, -0.1580197811126709, 0.05746562033891678]]}, {"image_id": "96.jpg", "category_id": 1, "keypoints": [1083.791015625, 470.07806396484375, 0.9829397201538086, 1100.64013671875, 500.4599609375, 0.9858834147453308, 1066.6671142578125, 501.49774169921875, 0.9818767309188843, 1090.07666015625, 431.8410339355469, 0.9930605292320251, 1052.6865234375, 631.5244140625, 0.9726380109786987, 1083.533447265625, 633.7764892578125, 0.9795601963996887, 1085.312255859375, 387.0539855957031, 0.9700404405593872, 1015.1806640625, 765.4058227539062, 0.9318798184394836, 1132.303955078125, 756.0055541992188, 0.9299313426017761, 1080.0484619140625, 372.7367858886719, 0.9808021187782288, 996.699951171875, 788.0115966796875, 0.8528857231140137, 1100.748779296875, 782.8572998046875, 0.9445587992668152, 1075.4322509765625, 300.3761901855469, 0.9891113638877869, 1103.7095947265625, 328.29217529296875, 0.987133800983429, 1055.5943603515625, 335.83648681640625, 0.991439163684845, 1072.590576171875, 276.653076171875, 0.9501794576644897, 1128.1009521484375, 320.59521484375, 0.9690488576889038, 1024.8829345703125, 336.0859375, 0.9867321848869324, 1124.58984375, 391.76226806640625, 0.9645256996154785, 958.7188110351562, 388.4703369140625, 0.9452614188194275, 1043.4249267578125, 411.51092529296875, 0.9351531863212585, 973.5022583007812, 403.6954345703125, 0.9554683566093445, 1020.904052734375, 413.6197509765625, 0.9343004822731018, 980.5772094726562, 407.8949279785156, 0.9024659395217896, 1074.275390625, 202.64031982421875, 0.9548699855804443, 991.1678466796875, 410.44183349609375, 0.888524055480957, 996.4810180664062, 408.3379821777344, 0.8494472503662109, 990.0093994140625, 786.820068359375, 0.8904804587364197, 1085.2330322265625, 785.756103515625, 0.9486782550811768], "score": 3.1064822673797607, "box": [947.5309448242188, 201.73980712890625, 208.36468505859375, 626.2108154296875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049967676401138306, 0.09204082936048508, -0.04186379536986351], [-0.04630373790860176, 0.08720271289348602, 0.049884896725416183], [0.01845317706465721, -0.10359025001525879, 0.0180167518556118], [-0.0822327509522438, 0.4481476843357086, -0.08812305331230164], [0.0046676089987158775, 0.46699923276901245, 0.11962975561618805], [0.001978154294192791, -0.23157274723052979, -0.010749584063887596], [-0.18998965620994568, 0.8364543318748474, -0.06165580824017525], [0.1522315889596939, 0.8300131559371948, 0.21613161265850067], [-0.015143037773668766, -0.27256545424461365, -0.045273274183273315], [-0.26048341393470764, 0.9149099588394165, -0.14279837906360626], [0.05138970538973808, 0.9165921807289124, 0.22260557115077972], [-0.025774387642741203, -0.4845128655433655, -0.045215122401714325], [0.05190134793519974, -0.3970702886581421, -0.069114550948143], [-0.08257973939180374, -0.3905599117279053, 0.0011850874871015549], [-0.03546387702226639, -0.5420259237289429, -0.10461847484111786], [0.12557990849018097, -0.4175332188606262, -0.1203460693359375], [-0.17543701827526093, -0.3916459083557129, 0.028853122144937515], [0.10760492831468582, -0.1889113187789917, -0.25050631165504456], [-0.3711167871952057, -0.23413631319999695, -0.022931810468435287], [-0.11241015046834946, -0.13173982501029968, -0.353329062461853], [-0.3287479281425476, -0.17836415767669678, -0.269991397857666], [-0.1719467043876648, -0.12384814023971558, -0.4120252728462219], [-0.3094938397407532, -0.1631530523300171, -0.3501235246658325]]}, {"image_id": "97.jpg", "category_id": 1, "keypoints": [1224.29248046875, 460.760498046875, 0.9862666130065918, 1248.054931640625, 494.99603271484375, 0.9903300404548645, 1203.67529296875, 496.3901672363281, 0.9891537427902222, 1230.8934326171875, 420.85284423828125, 0.9904886484146118, 1253.9630126953125, 646.1017456054688, 0.9783620834350586, 1202.061767578125, 642.5042114257812, 0.9872316718101501, 1226.787841796875, 368.72161865234375, 0.9836135506629944, 1251.296142578125, 788.547119140625, 0.867807149887085, 1217.6202392578125, 781.1925048828125, 0.9145985841751099, 1219.9224853515625, 349.43548583984375, 0.9888078570365906, 1218.047607421875, 811.5335693359375, 0.8714722990989685, 1172.174560546875, 801.2708740234375, 0.9361234903335571, 1213.064208984375, 265.02508544921875, 0.9883156418800354, 1244.4697265625, 295.46527099609375, 0.9881095886230469, 1193.2723388671875, 305.822509765625, 0.9920948147773743, 1196.2142333984375, 247.8472442626953, 0.9481630325317383, 1276.192138671875, 274.38916015625, 0.9768619537353516, 1168.5186767578125, 298.07037353515625, 0.9886009097099304, 1346.2120361328125, 186.26217651367188, 0.9337083101272583, 1098.7532958984375, 345.46563720703125, 0.9580888152122498, 1289.7005615234375, 178.61666870117188, 0.9756501317024231, 1009.0230712890625, 397.8369140625, 0.9545470476150513, 1277.89794921875, 184.34658813476562, 0.9600415825843811, 981.8709106445312, 399.55609130859375, 0.9520303010940552, 1173.085693359375, 181.03338623046875, 0.9648556709289551, 1271.13916015625, 207.22650146484375, 0.9405314922332764, 965.4428100585938, 395.12799072265625, 0.9517737627029419, 1203.1416015625, 806.2346801757812, 0.7978209257125854, 1165.8392333984375, 799.8192749023438, 0.9554591178894043], "score": 3.175258159637451, "box": [938.6530151367188, 166.0535125732422, 438.59344482421875, 661.8876495361328], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05728316679596901, 0.09145165234804153, -0.026371560990810394], [-0.048265330493450165, 0.08333534747362137, 0.05079159885644913], [0.011673873290419579, -0.10326370596885681, 0.010023575276136398], [0.07190216332674026, 0.4720930755138397, -0.02931276708841324], [-0.046494439244270325, 0.4622962176799774, 0.12993989884853363], [0.004262378439307213, -0.23090466856956482, -0.016521481797099113], [0.06928599625825882, 0.8684494495391846, 0.02315329946577549], [0.004314261954277754, 0.8407086133956909, 0.2470846325159073], [-0.01790720410645008, -0.27577751874923706, -0.03945165127515793], [-0.027822747826576233, 0.9261634349822998, -0.044526346027851105], [-0.1160033643245697, 0.8928849697113037, 0.23815418779850006], [-0.02885715290904045, -0.483625203371048, -0.01974564418196678], [0.04451487958431244, -0.40049615502357483, -0.05908589065074921], [-0.07851492613554001, -0.38653603196144104, 0.023675641044974327], [-0.07617323100566864, -0.5226329565048218, -0.07570942491292953], [0.11854275315999985, -0.4435119330883026, -0.08894322067499161], [-0.15096931159496307, -0.4144962728023529, 0.07910862565040588], [0.2570250630378723, -0.6230870485305786, -0.2179240733385086], [-0.3474304974079132, -0.283915638923645, 0.17211680114269257], [0.11211596429347992, -0.6671372652053833, -0.023330925032496452], [-0.5537953972816467, -0.16058099269866943, 0.08989978581666946], [0.08160880208015442, -0.6570777893066406, 0.0529349222779274], [-0.6292819380760193, -0.15438780188560486, 0.057054124772548676]]}, {"image_id": "97.jpg", "category_id": 1, "keypoints": [1082.66796875, 470.5081787109375, 0.9825791716575623, 1099.9603271484375, 500.64990234375, 0.986664354801178, 1065.196044921875, 501.5845031738281, 0.9826135635375977, 1088.7115478515625, 432.17181396484375, 0.9931497573852539, 1052.61669921875, 631.9373168945312, 0.9717367887496948, 1083.99462890625, 634.7277221679688, 0.979572594165802, 1084.9603271484375, 387.48553466796875, 0.968085527420044, 1015.1527709960938, 764.65869140625, 0.9341385960578918, 1131.225341796875, 757.1126708984375, 0.9198892712593079, 1080.35302734375, 373.3425598144531, 0.9790052771568298, 997.9511108398438, 787.3372192382812, 0.8514959216117859, 1101.386962890625, 783.1250610351562, 0.9442970752716064, 1076.082763671875, 300.7493896484375, 0.9889017939567566, 1104.3701171875, 328.97186279296875, 0.9872679710388184, 1055.6837158203125, 336.21881103515625, 0.9909218549728394, 1073.4783935546875, 277.13311767578125, 0.9487411379814148, 1129.323974609375, 321.32666015625, 0.9704172611236572, 1025.3065185546875, 336.1215515136719, 0.9866534471511841, 1131.65771484375, 391.24298095703125, 0.967750608921051, 959.724365234375, 388.1200866699219, 0.9478358030319214, 1044.0809326171875, 411.3953552246094, 0.9364193081855774, 972.1799926757812, 402.86541748046875, 0.9500538110733032, 1022.802001953125, 413.3255310058594, 0.9354403018951416, 978.7523193359375, 406.35107421875, 0.8861554861068726, 1079.0394287109375, 201.65203857421875, 0.9550289511680603, 993.65478515625, 411.28436279296875, 0.8776202201843262, 994.3025512695312, 405.91583251953125, 0.8593908548355103, 992.0238647460938, 786.4525146484375, 0.8844003677368164, 1087.1055908203125, 785.7098388671875, 0.947500467300415], "score": 3.077773332595825, "box": [947.4647216796875, 202.3313751220703, 208.150390625, 626.4393768310547], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.051207467913627625, 0.09185919165611267, -0.0406721793115139], [-0.047497134655714035, 0.0873338058590889, 0.048443377017974854], [0.017730332911014557, -0.10339808464050293, 0.018610984086990356], [-0.0795534998178482, 0.44922488927841187, -0.08666616678237915], [0.008629468269646168, 0.46701154112815857, 0.11812075972557068], [0.004157709889113903, -0.23094996809959412, -0.01190168410539627], [-0.18844261765480042, 0.8381099700927734, -0.06387967616319656], [0.15211394429206848, 0.831407904624939, 0.21806330978870392], [-0.011106028221547604, -0.27156850695610046, -0.04748602584004402], [-0.2540799677371979, 0.9163467884063721, -0.14924150705337524], [0.052461788058280945, 0.9192415475845337, 0.22607176005840302], [-0.021428264677524567, -0.483249694108963, -0.04992205277085304], [0.056473508477211, -0.39559969305992126, -0.07116690278053284], [-0.0791722983121872, -0.39001885056495667, -0.003765169531106949], [-0.030516188591718674, -0.5404638051986694, -0.10957115888595581], [0.1314736306667328, -0.4159052073955536, -0.12018074095249176], [-0.17147575318813324, -0.39223232865333557, 0.024983569979667664], [0.13231141865253448, -0.18128636479377747, -0.24128782749176025], [-0.36989954113960266, -0.2331346869468689, -0.010649364441633224], [-0.08677676320075989, -0.12705349922180176, -0.3481740355491638], [-0.33445242047309875, -0.17884251475334167, -0.259461373090744], [-0.1458403766155243, -0.11935558915138245, -0.407341331243515], [-0.31702110171318054, -0.16579845547676086, -0.34038737416267395]]}, {"image_id": "98.jpg", "category_id": 1, "keypoints": [1223.211181640625, 460.50067138671875, 0.9862314462661743, 1247.361572265625, 494.88818359375, 0.9901760220527649, 1202.956298828125, 496.49981689453125, 0.9892075657844543, 1229.463623046875, 420.6535949707031, 0.9904564023017883, 1254.2626953125, 646.358154296875, 0.9799914956092834, 1203.3902587890625, 644.1929931640625, 0.9867274165153503, 1225.3204345703125, 368.4804382324219, 0.9833149313926697, 1249.5648193359375, 789.3565673828125, 0.8652694225311279, 1219.3974609375, 782.35791015625, 0.9225226044654846, 1218.48779296875, 349.1333923339844, 0.9885690212249756, 1214.1949462890625, 811.876708984375, 0.8581923246383667, 1173.177734375, 802.4899291992188, 0.9396529197692871, 1211.47412109375, 265.36328125, 0.9881916642189026, 1242.824462890625, 295.4913330078125, 0.9882998466491699, 1191.7974853515625, 306.1089172363281, 0.9922091364860535, 1194.0618896484375, 248.43821716308594, 0.9476563930511475, 1274.51123046875, 275.04229736328125, 0.9785228371620178, 1166.932373046875, 298.7854919433594, 0.9890514016151428, 1346.4149169921875, 184.72918701171875, 0.937050461769104, 1095.861328125, 346.0289611816406, 0.959879994392395, 1290.16455078125, 179.90731811523438, 0.9761907458305359, 1006.9654541015625, 397.7939758300781, 0.953804612159729, 1278.1661376953125, 185.00405883789062, 0.9637547731399536, 979.1920166015625, 399.55859375, 0.951803982257843, 1170.4639892578125, 182.52435302734375, 0.9643726944923401, 1270.9488525390625, 205.3094482421875, 0.948465883731842, 958.929443359375, 397.0008239746094, 0.9558917284011841, 1199.6611328125, 808.363525390625, 0.7980707883834839, 1165.0172119140625, 801.6491088867188, 0.9568551778793335], "score": 3.175356864929199, "box": [938.06640625, 165.73428344726562, 439.170654296875, 662.4054260253906], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.057782962918281555, 0.09077028185129166, -0.02739252895116806], [-0.04752672091126442, 0.08411799371242523, 0.050068702548742294], [0.010976124554872513, -0.1031247228384018, 0.010965391993522644], [0.07442404329776764, 0.4714387059211731, -0.03524324297904968], [-0.040641941130161285, 0.46367084980010986, 0.12683525681495667], [0.003464282024651766, -0.23088060319423676, -0.014629187062382698], [0.06523395329713821, 0.8690585494041443, 0.006824372336268425], [0.011569597758352757, 0.841990053653717, 0.24402427673339844], [-0.018621165305376053, -0.2758302688598633, -0.037342458963394165], [-0.0356312021613121, 0.9247324466705322, -0.056917253881692886], [-0.10896427184343338, 0.8933982253074646, 0.2340759038925171], [-0.029812052845954895, -0.48330146074295044, -0.015574080869555473], [0.04363130405545235, -0.4006919860839844, -0.05557471141219139], [-0.07933178544044495, -0.38579344749450684, 0.026756830513477325], [-0.07799798995256424, -0.5211485028266907, -0.07159648835659027], [0.11932875216007233, -0.44213688373565674, -0.08309081941843033], [-0.15227986872196198, -0.41243982315063477, 0.08200331032276154], [0.25992700457572937, -0.6237166523933411, -0.20702053606510162], [-0.3510988652706146, -0.28315842151641846, 0.17190130054950714], [0.11315076053142548, -0.6597021222114563, -0.01212884858250618], [-0.5555999875068665, -0.1609332412481308, 0.08343781530857086], [0.08136548101902008, -0.651360273361206, 0.0637836754322052], [-0.6303015351295471, -0.15470124781131744, 0.04893288388848305]]}, {"image_id": "98.jpg", "category_id": 1, "keypoints": [1084.8182373046875, 471.3672180175781, 0.9815219044685364, 1101.383056640625, 502.20428466796875, 0.9867185354232788, 1067.20458984375, 502.5389404296875, 0.9821678400039673, 1091.2509765625, 432.7838439941406, 0.9932945966720581, 1052.2098388671875, 633.5645141601562, 0.9698479771614075, 1083.135498046875, 636.23388671875, 0.97993403673172, 1086.9593505859375, 387.5923156738281, 0.9716768860816956, 1012.397216796875, 766.4485473632812, 0.9366580843925476, 1131.936279296875, 756.983642578125, 0.9321779012680054, 1081.607666015625, 373.08050537109375, 0.9810154438018799, 995.5599975585938, 789.2164306640625, 0.8507937788963318, 1098.3941650390625, 784.3682861328125, 0.9361066818237305, 1076.825927734375, 300.169189453125, 0.9890702366828918, 1105.16650390625, 328.23748779296875, 0.986943781375885, 1056.8851318359375, 336.33123779296875, 0.9913509488105774, 1073.5966796875, 276.0455322265625, 0.9506942629814148, 1129.5726318359375, 320.2117919921875, 0.9706655144691467, 1026.6507568359375, 336.80462646484375, 0.9868921637535095, 1130.917724609375, 386.291748046875, 0.9674044251441956, 959.5689086914062, 387.9161376953125, 0.9458603858947754, 1047.4996337890625, 410.34942626953125, 0.9356861710548401, 971.6597900390625, 403.2184143066406, 0.952897846698761, 1026.6224365234375, 412.4420471191406, 0.9347155094146729, 979.3157348632812, 407.7076416015625, 0.8992104530334473, 1074.383544921875, 202.1556396484375, 0.9544575810432434, 999.1338500976562, 410.4187316894531, 0.9004269242286682, 996.4329223632812, 408.19989013671875, 0.8625906705856323, 989.4536743164062, 789.0955810546875, 0.8931785225868225, 1084.2310791015625, 787.81494140625, 0.9436934590339661], "score": 3.058140277862549, "box": [948.2871704101562, 201.08457946777344, 207.67010498046875, 626.1469268798828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04989505186676979, 0.0931798443198204, -0.03944597765803337], [-0.04774113744497299, 0.08601327240467072, 0.05065041780471802], [0.018992338329553604, -0.10380251705646515, 0.016525952145457268], [-0.08496968448162079, 0.44941556453704834, -0.07578224688768387], [0.0001597327645868063, 0.4655953049659729, 0.12376896291971207], [0.0035750882234424353, -0.23202241957187653, -0.01261601410806179], [-0.19812804460525513, 0.8337759971618652, -0.024994084611535072], [0.14826558530330658, 0.8245635032653809, 0.23372897505760193], [-0.013607848435640335, -0.2729935646057129, -0.04722873866558075], [-0.26031675934791565, 0.9090757369995117, -0.11542778462171555], [0.04529189690947533, 0.9088706374168396, 0.23575425148010254], [-0.025380641222000122, -0.48494166135787964, -0.04721050709486008], [0.052843574434518814, -0.3978767991065979, -0.07091007381677628], [-0.08178838342428207, -0.39064300060272217, -0.0009334590286016464], [-0.03605272248387337, -0.5434260368347168, -0.10557815432548523], [0.1271098256111145, -0.4196224808692932, -0.12079083174467087], [-0.17401033639907837, -0.3911692500114441, 0.028864020481705666], [0.12373175472021103, -0.19571079313755035, -0.2601776421070099], [-0.3741573989391327, -0.23653270304203033, -0.014044580981135368], [-0.09428826719522476, -0.1293584257364273, -0.36193719506263733], [-0.3399799168109894, -0.1809626668691635, -0.2624794542789459], [-0.1515790820121765, -0.121208056807518, -0.42283353209495544], [-0.3196723163127899, -0.1653057187795639, -0.34228771924972534]]}, {"image_id": "99.jpg", "category_id": 1, "keypoints": [1222.6397705078125, 462.21270751953125, 0.9858978390693665, 1246.979736328125, 496.5174865722656, 0.9894025325775146, 1203.17431640625, 498.1485595703125, 0.9884932041168213, 1228.7691650390625, 421.9393005371094, 0.9909901022911072, 1254.5745849609375, 648.535888671875, 0.9792478084564209, 1204.5306396484375, 645.38916015625, 0.9855589866638184, 1224.2130126953125, 369.569580078125, 0.9825196266174316, 1248.7352294921875, 791.0154418945312, 0.866891622543335, 1217.884033203125, 782.1421508789062, 0.9207258224487305, 1217.0179443359375, 350.219482421875, 0.9886981844902039, 1211.1968994140625, 814.1805419921875, 0.8551954030990601, 1170.5682373046875, 802.0088500976562, 0.9346497058868408, 1209.10595703125, 266.2060546875, 0.988074541091919, 1240.86572265625, 296.2909240722656, 0.9881744384765625, 1189.8702392578125, 306.970703125, 0.9921988844871521, 1192.2591552734375, 249.56808471679688, 0.9458335041999817, 1272.1676025390625, 275.11895751953125, 0.9782218337059021, 1165.1722412109375, 299.05328369140625, 0.9894713759422302, 1345.420166015625, 184.38043212890625, 0.9437763094902039, 1095.9757080078125, 344.9454650878906, 0.9664813876152039, 1289.6434326171875, 178.43222045898438, 0.9746326208114624, 1007.0546264648438, 398.66326904296875, 0.9549625515937805, 1278.52001953125, 181.39505004882812, 0.9641965627670288, 980.4365844726562, 400.193603515625, 0.9514223337173462, 1166.67822265625, 182.47830200195312, 0.9665088057518005, 1271.9239501953125, 195.75143432617188, 0.9517781734466553, 962.0758666992188, 399.6538391113281, 0.9486721754074097, 1196.45068359375, 810.0800170898438, 0.7896935939788818, 1162.17822265625, 801.0031127929688, 0.9546279907226562], "score": 3.1785671710968018, "box": [935.8653564453125, 167.16799926757812, 444.8428955078125, 661.4479675292969], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.057852428406476974, 0.09053351730108261, -0.028942305594682693], [-0.04565824940800667, 0.08459100872278214, 0.05152355879545212], [0.010585188865661621, -0.10357536375522614, 0.010683219879865646], [0.07706144452095032, 0.47122305631637573, -0.026822909712791443], [-0.03645281866192818, 0.4644780158996582, 0.1271904706954956], [0.0020871306769549847, -0.2316087931394577, -0.014464767649769783], [0.06541754305362701, 0.8682504892349243, 0.023162372410297394], [0.009223101660609245, 0.8432773351669312, 0.24697411060333252], [-0.0209965780377388, -0.27639085054397583, -0.03697393834590912], [-0.038071516901254654, 0.9242016077041626, -0.036380015313625336], [-0.11224816739559174, 0.893522322177887, 0.23998969793319702], [-0.03431176766753197, -0.484575092792511, -0.01822035200893879], [0.039622772485017776, -0.4020346403121948, -0.05840388685464859], [-0.08213908225297928, -0.3869469165802002, 0.026634424924850464], [-0.0813133642077446, -0.5217347145080566, -0.0757501944899559], [0.11391115933656693, -0.4436227083206177, -0.09010788053274155], [-0.15479934215545654, -0.4154801368713379, 0.08181662112474442], [0.25672462582588196, -0.6251292824745178, -0.21214106678962708], [-0.3506307899951935, -0.2888626456260681, 0.1822555959224701], [0.1069486141204834, -0.6647233366966248, -0.01984364539384842], [-0.5556395649909973, -0.16216696798801422, 0.10078790783882141], [0.07573342323303223, -0.6629166603088379, 0.05692801624536514], [-0.6317828893661499, -0.15642665326595306, 0.06905097514390945]]}, {"image_id": "99.jpg", "category_id": 1, "keypoints": [1083.2442626953125, 470.94598388671875, 0.9829765558242798, 1100.4066162109375, 501.23699951171875, 0.9853832721710205, 1065.4215087890625, 501.9280090332031, 0.9822558164596558, 1089.7786865234375, 432.9567565917969, 0.9927816987037659, 1052.63134765625, 632.4171142578125, 0.9726441502571106, 1083.3560791015625, 634.2786865234375, 0.9802795648574829, 1085.83154296875, 388.060791015625, 0.9709066152572632, 1014.1966552734375, 765.6634521484375, 0.9372605681419373, 1131.6962890625, 755.533447265625, 0.9227383732795715, 1080.799560546875, 373.7169494628906, 0.9797497391700745, 995.6326293945312, 789.1246337890625, 0.8565683364868164, 1100.351806640625, 782.893798828125, 0.9459403157234192, 1076.405517578125, 300.9156494140625, 0.9889794588088989, 1104.490966796875, 329.51385498046875, 0.9874709844589233, 1056.501220703125, 336.4744873046875, 0.9913498163223267, 1073.82861328125, 276.99163818359375, 0.9491085410118103, 1129.119873046875, 322.2847900390625, 0.9691030979156494, 1025.985595703125, 336.36004638671875, 0.987035870552063, 1131.788818359375, 388.3781433105469, 0.9671252965927124, 960.6324462890625, 386.5479736328125, 0.9468017220497131, 1041.0257568359375, 409.3778991699219, 0.9436917304992676, 971.33837890625, 401.9951477050781, 0.9539281725883484, 1019.3330688476562, 412.0890808105469, 0.9331173300743103, 976.880859375, 405.349609375, 0.8860782384872437, 1079.355712890625, 201.964111328125, 0.9556760191917419, 990.7679443359375, 410.0831604003906, 0.8802539706230164, 990.4857788085938, 404.0977478027344, 0.8802680969238281, 988.0728149414062, 788.2166748046875, 0.8936415314674377, 1085.7049560546875, 786.1650390625, 0.9504902958869934], "score": 3.0138511657714844, "box": [948.0394897460938, 202.396240234375, 208.77508544921875, 626.0177612304688], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05033447593450546, 0.09259813278913498, -0.040797773748636246], [-0.048244182020425797, 0.08696085214614868, 0.04899723827838898], [0.018889648839831352, -0.10364338755607605, 0.01840726099908352], [-0.08154454082250595, 0.4496616721153259, -0.08528358489274979], [0.005807958077639341, 0.46627315878868103, 0.12231748551130295], [0.0063737682066857815, -0.23242256045341492, -0.007808953523635864], [-0.19224858283996582, 0.8377132415771484, -0.05379331111907959], [0.1528245508670807, 0.8274848461151123, 0.22971059381961823], [-0.010048432275652885, -0.2733961045742035, -0.0427616722881794], [-0.2600543200969696, 0.9152714014053345, -0.1383209526538849], [0.05243620648980141, 0.9151393175125122, 0.22993053495883942], [-0.02260400913655758, -0.48543450236320496, -0.04806359484791756], [0.056124668568372726, -0.3981265723705292, -0.0693930983543396], [-0.07899346202611923, -0.39211711287498474, 0.00037259235978126526], [-0.03161567822098732, -0.5438908338546753, -0.1064424142241478], [0.13169384002685547, -0.41761401295661926, -0.11838295310735703], [-0.17128214240074158, -0.3944486081600189, 0.030141009017825127], [0.13334882259368896, -0.18806692957878113, -0.249192014336586], [-0.3712155818939209, -0.23875665664672852, -0.01289287768304348], [-0.0854572132229805, -0.1334945261478424, -0.3570394814014435], [-0.3407555818557739, -0.1822240948677063, -0.26205411553382874], [-0.14342135190963745, -0.12387707829475403, -0.41723424196243286], [-0.3258236050605774, -0.16931864619255066, -0.3436698615550995]]}, {"image_id": "100.jpg", "category_id": 1, "keypoints": [1218.720703125, 461.8714294433594, 0.986129105091095, 1243.39892578125, 495.912109375, 0.9892355799674988, 1199.007080078125, 497.6456604003906, 0.9886968731880188, 1224.8115234375, 421.6020202636719, 0.9908281564712524, 1253.45166015625, 647.2900390625, 0.9781317114830017, 1198.752197265625, 643.6495361328125, 0.9871466755867004, 1220.6358642578125, 369.0997619628906, 0.9829502105712891, 1249.6290283203125, 790.4962158203125, 0.8725512027740479, 1214.3641357421875, 779.9998168945312, 0.9217093586921692, 1213.953369140625, 349.86724853515625, 0.9888021349906921, 1214.803466796875, 813.3525390625, 0.8791515231132507, 1168.544677734375, 799.5975952148438, 0.9291037321090698, 1206.450927734375, 267.07086181640625, 0.9883260130882263, 1238.1278076171875, 296.4141845703125, 0.9885886907577515, 1186.904296875, 307.35699462890625, 0.992051899433136, 1189.7445068359375, 250.19129943847656, 0.946393609046936, 1270.2655029296875, 275.9254455566406, 0.9806609153747559, 1162.73974609375, 300.01593017578125, 0.9895139336585999, 1344.4088134765625, 185.75979614257812, 0.9423792362213135, 1091.9915771484375, 346.19049072265625, 0.9676686525344849, 1288.94189453125, 179.16104125976562, 0.9755701422691345, 1005.3043212890625, 399.91650390625, 0.9468069076538086, 1277.33349609375, 181.86224365234375, 0.9633728265762329, 977.4564208984375, 402.27276611328125, 0.9438275694847107, 1163.4075927734375, 184.50537109375, 0.9652448296546936, 1269.96337890625, 194.64987182617188, 0.9529164433479309, 955.1817016601562, 402.66949462890625, 0.9420198202133179, 1200.4415283203125, 807.6517333984375, 0.8060383200645447, 1162.6103515625, 798.3037719726562, 0.9511948823928833], "score": 3.1811957359313965, "box": [937.5643920898438, 165.97776794433594, 439.25091552734375, 663.7957916259766], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05884222686290741, 0.09045033901929855, -0.026490993797779083], [-0.046430740505456924, 0.08413194864988327, 0.05123003572225571], [0.009780388325452805, -0.1034320592880249, 0.00971619226038456], [0.08439081162214279, 0.47094103693962097, -0.023311570286750793], [-0.041382621973752975, 0.46384572982788086, 0.12869971990585327], [0.0031130476854741573, -0.23136845231056213, -0.015134982764720917], [0.07960899919271469, 0.8662277460098267, 0.0397971048951149], [0.010487194173038006, 0.8397058248519897, 0.2549055218696594], [-0.01802174560725689, -0.2767985761165619, -0.03785041347146034], [-0.019716694951057434, 0.9224742650985718, -0.025984225794672966], [-0.11039982736110687, 0.89018714427948, 0.24352967739105225], [-0.03191152215003967, -0.4845501482486725, -0.019392868503928185], [0.04295370727777481, -0.40219494700431824, -0.05740471929311752], [-0.08071988075971603, -0.38706937432289124, 0.023962443694472313], [-0.07832248508930206, -0.5221586227416992, -0.07704140990972519], [0.11875414848327637, -0.44341787695884705, -0.085089311003685], [-0.15388785302639008, -0.4143846333026886, 0.07863749563694], [0.26281243562698364, -0.6229207515716553, -0.2085593044757843], [-0.35174760222435, -0.28847619891166687, 0.17579497396945953], [0.11533528566360474, -0.6643496751785278, -0.015019537881016731], [-0.5525174736976624, -0.16093173623085022, 0.0857083797454834], [0.08205991983413696, -0.6632537841796875, 0.06076156347990036], [-0.6285514235496521, -0.15318360924720764, 0.05444267392158508]]}, {"image_id": "100.jpg", "category_id": 1, "keypoints": [1084.7567138671875, 470.87860107421875, 0.9820351600646973, 1101.2745361328125, 501.6026916503906, 0.9858508110046387, 1066.634765625, 502.3583068847656, 0.982443630695343, 1091.452392578125, 432.51824951171875, 0.9932054877281189, 1052.638916015625, 632.583984375, 0.9734684228897095, 1084.121337890625, 635.2311401367188, 0.9809631109237671, 1086.7529296875, 387.6213073730469, 0.9721908569335938, 1014.3305053710938, 765.6211547851562, 0.9367325305938721, 1132.4830322265625, 755.310302734375, 0.9250739812850952, 1081.3338623046875, 373.22698974609375, 0.9808351993560791, 995.9281005859375, 789.4404296875, 0.8569743633270264, 1100.5445556640625, 783.0923461914062, 0.944694995880127, 1076.958251953125, 300.19708251953125, 0.9889934062957764, 1105.332763671875, 328.200927734375, 0.987247109413147, 1057.3096923828125, 336.2093200683594, 0.9915962815284729, 1073.4564208984375, 276.58685302734375, 0.9505645036697388, 1129.653076171875, 320.208740234375, 0.9669342637062073, 1027.569091796875, 336.3954772949219, 0.9875108599662781, 1126.8179931640625, 384.064208984375, 0.9685618877410889, 960.4904174804688, 387.2461242675781, 0.9453766345977783, 1041.81640625, 408.9549255371094, 0.9407991766929626, 971.0352172851562, 402.3968505859375, 0.950822114944458, 1018.0105590820312, 412.0379943847656, 0.9385916590690613, 976.8992309570312, 406.4945068359375, 0.8919326663017273, 1073.2999267578125, 202.23590087890625, 0.9541206955909729, 989.0210571289062, 408.7388610839844, 0.8847042322158813, 992.8974609375, 407.3128967285156, 0.854823112487793, 988.4508666992188, 788.5654296875, 0.8943793773651123, 1085.87646484375, 786.5447998046875, 0.9518452882766724], "score": 3.0392136573791504, "box": [948.03515625, 199.64088439941406, 207.669921875, 628.7332000732422], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04932854697108269, 0.09311579912900925, -0.04130971059203148], [-0.048535220324993134, 0.08670638501644135, 0.049553364515304565], [0.019934549927711487, -0.1037331074476242, 0.018276305869221687], [-0.08479835838079453, 0.4494119882583618, -0.08549217879772186], [0.004111297428607941, 0.4659137725830078, 0.12496695667505264], [0.003002768149599433, -0.23118506371974945, -0.012411346659064293], [-0.19482122361660004, 0.8370438814163208, -0.04439599812030792], [0.15218020975589752, 0.8258383870124817, 0.23628538846969604], [-0.014441825449466705, -0.27196192741394043, -0.04731021076440811], [-0.2619372606277466, 0.9158031940460205, -0.12855227291584015], [0.05148905888199806, 0.9133610129356384, 0.23574289679527283], [-0.024034155532717705, -0.4845917820930481, -0.04791560769081116], [0.05307919532060623, -0.3965238928794861, -0.0729207694530487], [-0.08085194230079651, -0.3909298777580261, -0.00010705925524234772], [-0.035441961139440536, -0.541607141494751, -0.10731842368841171], [0.1261763572692871, -0.4177541136741638, -0.1251564472913742], [-0.17238150537014008, -0.3925151824951172, 0.03250337392091751], [0.1086285412311554, -0.2041141539812088, -0.27994224429130554], [-0.37383997440338135, -0.2377825230360031, -0.008036850020289421], [-0.11351820826530457, -0.13583175837993622, -0.37259191274642944], [-0.3438558280467987, -0.18222297728061676, -0.2576577067375183], [-0.1751929670572281, -0.12562935054302216, -0.4290434718132019], [-0.3282787799835205, -0.16748960316181183, -0.3389555811882019]]}, {"image_id": "101.jpg", "category_id": 1, "keypoints": [1221.7586669921875, 462.8313903808594, 0.9864453673362732, 1245.9049072265625, 497.079345703125, 0.9882267713546753, 1202.18017578125, 498.5343322753906, 0.9881460070610046, 1227.9765625, 422.160400390625, 0.9906618595123291, 1253.25048828125, 651.0389404296875, 0.9802502989768982, 1201.5548095703125, 645.1363525390625, 0.9874749183654785, 1222.8560791015625, 369.75335693359375, 0.9833173751831055, 1249.7803955078125, 793.01806640625, 0.8956291079521179, 1218.9642333984375, 779.9086303710938, 0.9307851195335388, 1215.822265625, 350.71832275390625, 0.9889101982116699, 1211.20361328125, 816.2571411132812, 0.8768168687820435, 1172.090576171875, 800.42431640625, 0.9369192123413086, 1207.40625, 267.5030517578125, 0.9875810742378235, 1239.752197265625, 296.98846435546875, 0.9892454147338867, 1187.7891845703125, 307.9696044921875, 0.9918724298477173, 1191.6025390625, 250.63755798339844, 0.9444980621337891, 1270.504638671875, 274.90869140625, 0.9783127307891846, 1162.5294189453125, 300.00091552734375, 0.9895633459091187, 1345.0728759765625, 186.91366577148438, 0.945319652557373, 1089.556640625, 346.8365173339844, 0.9669920802116394, 1292.3756103515625, 176.5101318359375, 0.9756963849067688, 1002.5206909179688, 397.5932922363281, 0.951154887676239, 1280.1717529296875, 177.61737060546875, 0.9650678038597107, 973.9095458984375, 398.0836181640625, 0.950839102268219, 1162.1158447265625, 186.28793334960938, 0.9662836790084839, 1272.2989501953125, 187.951171875, 0.9572532773017883, 944.560791015625, 397.80419921875, 0.9561946392059326, 1197.6607666015625, 811.565185546875, 0.8250698447227478, 1162.59765625, 799.2230224609375, 0.9504796266555786], "score": 3.187826633453369, "box": [936.1083984375, 164.31228637695312, 442.6845703125, 666.8426818847656], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05792400985956192, 0.09107489883899689, -0.02737044356763363], [-0.04566321521997452, 0.08372198790311813, 0.053090404719114304], [0.010557045228779316, -0.10377620160579681, 0.008813215419650078], [0.07744236290454865, 0.47187113761901855, -0.012105554342269897], [-0.04138658940792084, 0.4633861780166626, 0.13241879642009735], [0.0007883887737989426, -0.2312798649072647, -0.01793094538152218], [0.07442064583301544, 0.866096556186676, 0.06065334007143974], [0.01593957096338272, 0.8396336436271667, 0.2570200264453888], [-0.02085874415934086, -0.2764827013015747, -0.04099152982234955], [-0.029400978237390518, 0.9207077026367188, 0.00024964287877082825], [-0.10482312738895416, 0.8915618658065796, 0.24847261607646942], [-0.03770103678107262, -0.4847738742828369, -0.02591053768992424], [0.038775067776441574, -0.40271103382110596, -0.06215992942452431], [-0.0857708752155304, -0.387145459651947, 0.01870238408446312], [-0.08173954486846924, -0.5219207406044006, -0.08569006621837616], [0.11190548539161682, -0.44885551929473877, -0.09002989530563354], [-0.16113118827342987, -0.4157160520553589, 0.07009954750537872], [0.261730432510376, -0.6292616128921509, -0.20585469901561737], [-0.36363667249679565, -0.2886679172515869, 0.1566568911075592], [0.12181241810321808, -0.6828029751777649, -0.009184900671243668], [-0.5675696134567261, -0.1664399951696396, 0.06528365612030029], [0.0845775455236435, -0.6870010495185852, 0.06482112407684326], [-0.6426777839660645, -0.16364525258541107, 0.030646473169326782]]}, {"image_id": "101.jpg", "category_id": 1, "keypoints": [1084.1859130859375, 471.8173828125, 0.9820322394371033, 1100.8197021484375, 502.08453369140625, 0.9865449666976929, 1066.027099609375, 502.8199157714844, 0.9829302430152893, 1090.7337646484375, 433.6228942871094, 0.993134617805481, 1051.901123046875, 633.6220092773438, 0.9719103574752808, 1084.567626953125, 636.6484985351562, 0.981054425239563, 1086.5078125, 388.435302734375, 0.9705744385719299, 1014.06640625, 766.10546875, 0.9365995526313782, 1130.4052734375, 757.8743286132812, 0.9234310984611511, 1081.346435546875, 373.86993408203125, 0.9782923460006714, 998.1359252929688, 790.6558837890625, 0.8634665012359619, 1098.8739013671875, 784.273681640625, 0.9461760520935059, 1076.8880615234375, 300.78216552734375, 0.98924720287323, 1105.4288330078125, 328.8492431640625, 0.9876924157142639, 1057.240478515625, 336.997314453125, 0.9919589757919312, 1073.8641357421875, 276.7960205078125, 0.9498960375785828, 1130.0631103515625, 321.03594970703125, 0.9678686857223511, 1027.4747314453125, 337.2172546386719, 0.9879724979400635, 1128.8792724609375, 385.9718933105469, 0.9697705507278442, 961.1036376953125, 388.1649169921875, 0.9497572183609009, 1040.3262939453125, 409.66162109375, 0.9448899030685425, 969.2477416992188, 402.48297119140625, 0.9495435953140259, 1016.7786865234375, 413.0020751953125, 0.9350487589836121, 974.3261108398438, 406.01983642578125, 0.8853152990341187, 1074.0819091796875, 202.7257080078125, 0.9552435278892517, 988.0011596679688, 411.1658935546875, 0.8800827860832214, 989.289306640625, 405.9346618652344, 0.8689687848091125, 992.011962890625, 791.2063598632812, 0.8919158577919006, 1083.639404296875, 787.4725341796875, 0.9527672529220581], "score": 3.0355820655822754, "box": [948.0498046875, 200.48635864257812, 205.953369140625, 628.8466491699219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049777839332818985, 0.09278878569602966, -0.04147736728191376], [-0.04910622164607048, 0.0870901569724083, 0.04826067015528679], [0.019673554226756096, -0.10343675315380096, 0.0192805714905262], [-0.08473837375640869, 0.44938087463378906, -0.08752591907978058], [0.006194368004798889, 0.4664027690887451, 0.12423215806484222], [0.004175695590674877, -0.23158539831638336, -0.008165588602423668], [-0.19478227198123932, 0.8387056589126587, -0.0580255351960659], [0.14687319099903107, 0.8300359845161438, 0.23524262011051178], [-0.012544349767267704, -0.27310293912887573, -0.04237869381904602], [-0.25334879755973816, 0.9200900793075562, -0.1460648626089096], [0.04501502588391304, 0.9160439968109131, 0.24144430458545685], [-0.022511020302772522, -0.48552823066711426, -0.042197175323963165], [0.05483589321374893, -0.39778804779052734, -0.06688760221004486], [-0.07936447858810425, -0.3916679620742798, 0.004783282056450844], [-0.03260419890284538, -0.5431762337684631, -0.10119155049324036], [0.1293814778327942, -0.41874557733535767, -0.11686964333057404], [-0.17077244818210602, -0.3931320309638977, 0.03726106509566307], [0.11745595932006836, -0.1982957273721695, -0.2630414664745331], [-0.37224990129470825, -0.23670412600040436, 0.0012646429240703583], [-0.10305900871753693, -0.1357249766588211, -0.36397892236709595], [-0.34920281171798706, -0.18360094726085663, -0.24999110400676727], [-0.1622033268213272, -0.12504832446575165, -0.4230000376701355], [-0.3358774185180664, -0.17047585546970367, -0.3319867253303528]]}, {"image_id": "102.jpg", "category_id": 1, "keypoints": [1224.2879638671875, 462.9656677246094, 0.9865347743034363, 1248.48681640625, 496.890869140625, 0.988178014755249, 1206.11962890625, 498.67388916015625, 0.9886256456375122, 1230.5440673828125, 422.30780029296875, 0.9925827980041504, 1253.690673828125, 650.4917602539062, 0.9824826121330261, 1206.1630859375, 645.530029296875, 0.9860302805900574, 1223.828125, 370.0893859863281, 0.984027624130249, 1249.234619140625, 794.9306640625, 0.8756462931632996, 1220.935791015625, 781.8262939453125, 0.917188823223114, 1215.3831787109375, 351.502197265625, 0.9883745908737183, 1206.2222900390625, 819.9591674804688, 0.8583764433860779, 1171.929931640625, 802.6419067382812, 0.942101776599884, 1205.610107421875, 267.48016357421875, 0.9880897402763367, 1236.8214111328125, 297.3477783203125, 0.9879116415977478, 1187.7828369140625, 308.9608154296875, 0.992292582988739, 1190.7734375, 251.02125549316406, 0.9490001797676086, 1267.3504638671875, 274.2958984375, 0.9799225926399231, 1162.7860107421875, 301.88507080078125, 0.989973783493042, 1343.0655517578125, 188.77850341796875, 0.9454711079597473, 1091.447509765625, 346.72607421875, 0.9688392281532288, 1297.2314453125, 174.10235595703125, 0.9736924767494202, 1005.774169921875, 397.6705322265625, 0.9534056186676025, 1286.6328125, 174.54931640625, 0.9637295007705688, 979.2376098632812, 400.61407470703125, 0.9483084678649902, 1162.5015869140625, 183.09454345703125, 0.9666054844856262, 1280.964599609375, 182.14529418945312, 0.9569023251533508, 958.7093505859375, 401.4441223144531, 0.9451582431793213, 1192.73193359375, 816.3428955078125, 0.813822329044342, 1158.39697265625, 802.20068359375, 0.9531969428062439], "score": 3.182858943939209, "box": [939.0899658203125, 162.5386199951172, 440.6351318359375, 670.0060577392578], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05632811784744263, 0.09003625810146332, -0.03303368017077446], [-0.04199889302253723, 0.08508890867233276, 0.05367255210876465], [0.010746220126748085, -0.10347108542919159, 0.010655384510755539], [0.069613516330719, 0.4709811806678772, -0.028753403574228287], [-0.03602094203233719, 0.4645911455154419, 0.13163486123085022], [-0.0028677238151431084, -0.23152898252010345, -0.01153424009680748], [0.06437810510396957, 0.8640182018280029, 0.04711620509624481], [0.013722687028348446, 0.8415541052818298, 0.2554853856563568], [-0.02911350689828396, -0.27528607845306396, -0.03241633623838425], [-0.043566975742578506, 0.920288622379303, -0.003451503813266754], [-0.10725614428520203, 0.8914599418640137, 0.24174684286117554], [-0.047002993524074554, -0.482907235622406, -0.012310836464166641], [0.02758263610303402, -0.4024190902709961, -0.05521386116743088], [-0.09084686636924744, -0.38398635387420654, 0.03359094262123108], [-0.09101707488298416, -0.5219727754592896, -0.07090345025062561], [0.09973081201314926, -0.44896847009658813, -0.0847499668598175], [-0.1644905060529709, -0.409808874130249, 0.08868275582790375], [0.2502043545246124, -0.6220349669456482, -0.20976725220680237], [-0.36602291464805603, -0.28626376390457153, 0.18127530813217163], [0.1309453845024109, -0.6899524927139282, -0.004523426294326782], [-0.5671793222427368, -0.16329030692577362, 0.08583122491836548], [0.09775187075138092, -0.6966811418533325, 0.07108964771032333], [-0.6398928761482239, -0.15362702310085297, 0.04775989055633545]]}, {"image_id": "102.jpg", "category_id": 1, "keypoints": [1083.4078369140625, 471.83758544921875, 0.982405424118042, 1100.5225830078125, 501.96795654296875, 0.986829400062561, 1065.449951171875, 502.7054138183594, 0.9824580550193787, 1089.6719970703125, 433.91339111328125, 0.993195116519928, 1052.100341796875, 633.7764892578125, 0.9733874797821045, 1082.248291015625, 635.5079956054688, 0.9810582995414734, 1086.534423828125, 388.61737060546875, 0.9723780751228333, 1011.4645385742188, 765.7301025390625, 0.9415445327758789, 1128.4725341796875, 754.5322875976562, 0.9200893044471741, 1081.869873046875, 374.32684326171875, 0.9791725873947144, 995.9754638671875, 791.6273193359375, 0.8454275131225586, 1099.853271484375, 781.8138427734375, 0.9463213682174683, 1076.98681640625, 301.4361877441406, 0.988994836807251, 1105.673828125, 329.5655212402344, 0.9879260063171387, 1057.2081298828125, 337.3770751953125, 0.9914872646331787, 1074.3143310546875, 277.7611389160156, 0.9472302198410034, 1130.6092529296875, 321.6011962890625, 0.9732360243797302, 1026.9140625, 337.272705078125, 0.9875926375389099, 1135.829833984375, 386.04754638671875, 0.972152590751648, 962.7122192382812, 387.9407653808594, 0.949321448802948, 1040.288818359375, 406.48834228515625, 0.9426534175872803, 969.2197875976562, 401.60101318359375, 0.952064037322998, 1018.5916137695312, 409.8172607421875, 0.9343905448913574, 973.1324462890625, 404.4208984375, 0.8824360966682434, 1077.1522216796875, 201.578125, 0.9551727771759033, 991.20458984375, 409.24591064453125, 0.8902536630630493, 986.1701049804688, 403.4608459472656, 0.8844168186187744, 989.9174194335938, 792.6949462890625, 0.881304919719696, 1085.466796875, 786.033203125, 0.9528282880783081], "score": 3.0740227699279785, "box": [947.2515258789062, 201.22735595703125, 208.25408935546875, 629.2135009765625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0506984107196331, 0.09226390719413757, -0.04039343446493149], [-0.048703454434871674, 0.08698339760303497, 0.04788120090961456], [0.018581440672278404, -0.10333342850208282, 0.01901669055223465], [-0.08191342651844025, 0.44747939705848694, -0.09179346263408661], [0.0019408178050071, 0.4649643898010254, 0.12688696384429932], [0.008479306474328041, -0.23253245651721954, -0.006830519065260887], [-0.19818194210529327, 0.8311722874641418, -0.043743979185819626], [0.1446487307548523, 0.8241549730300903, 0.2427959442138672], [-0.006829281337559223, -0.2731631398200989, -0.04256579279899597], [-0.25252100825309753, 0.9129112958908081, -0.13355539739131927], [0.04863877594470978, 0.9161525964736938, 0.24668866395950317], [-0.022350125014781952, -0.4845846891403198, -0.05091569572687149], [0.05803006887435913, -0.39824867248535156, -0.06899327039718628], [-0.07841833680868149, -0.3911047577857971, -0.0028068404644727707], [-0.03159531205892563, -0.541630744934082, -0.11080702394247055], [0.13483105599880219, -0.420346736907959, -0.11458295583724976], [-0.17086608707904816, -0.3933253288269043, 0.02598835527896881], [0.14601968228816986, -0.18813802301883698, -0.23893608152866364], [-0.3695427179336548, -0.23485900461673737, -0.008265510201454163], [-0.06689202785491943, -0.1380458027124405, -0.3588383197784424], [-0.3512066900730133, -0.18348632752895355, -0.259147584438324], [-0.12540428340435028, -0.12673626840114594, -0.4179594814777374], [-0.3409651815891266, -0.17221592366695404, -0.34152752161026]]}, {"image_id": "103.jpg", "category_id": 1, "keypoints": [1221.987548828125, 461.3935241699219, 0.9862943887710571, 1247.29541015625, 495.2998962402344, 0.9882956147193909, 1203.338623046875, 497.5464172363281, 0.9884018898010254, 1227.2281494140625, 420.44287109375, 0.9911470413208008, 1254.560302734375, 649.548583984375, 0.9797086119651794, 1204.8553466796875, 646.46875, 0.9854612350463867, 1221.05029296875, 367.9755859375, 0.9842954874038696, 1247.6812744140625, 794.7796630859375, 0.8640498518943787, 1221.6966552734375, 784.8389892578125, 0.9222583770751953, 1213.50439453125, 349.43341064453125, 0.9889439940452576, 1207.5904541015625, 818.891357421875, 0.8490340113639832, 1172.30517578125, 806.0942993164062, 0.944476306438446, 1203.1890869140625, 266.8349304199219, 0.9882845282554626, 1235.9862060546875, 295.9772644042969, 0.9889938235282898, 1184.36767578125, 307.735107421875, 0.9921585321426392, 1187.259765625, 250.86256408691406, 0.952148973941803, 1267.45849609375, 274.1560363769531, 0.9742911458015442, 1158.4610595703125, 301.1994934082031, 0.9902439713478088, 1342.638916015625, 190.462158203125, 0.9516220092773438, 1085.8919677734375, 348.5757141113281, 0.9645476937294006, 1294.393310546875, 176.55404663085938, 0.9787738919258118, 999.146484375, 397.4102783203125, 0.9548068046569824, 1281.84033203125, 175.06497192382812, 0.9670899510383606, 970.9005126953125, 398.1849365234375, 0.9509125351905823, 1153.9351806640625, 184.61837768554688, 0.9657523036003113, 1273.75634765625, 180.871826171875, 0.9627968668937683, 941.4578857421875, 399.631103515625, 0.961196780204773, 1192.445068359375, 817.1021728515625, 0.7962710857391357, 1158.1676025390625, 804.3873291015625, 0.9543795585632324], "score": 3.184105396270752, "box": [937.1773681640625, 161.43954467773438, 437.7742919921875, 672.9760437011719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05999379605054855, 0.08933427184820175, -0.028746362775564194], [-0.04368574172258377, 0.08553962409496307, 0.051904935389757156], [0.008160008117556572, -0.10381227731704712, 0.010295581072568893], [0.07813554257154465, 0.47093990445137024, -0.026831623166799545], [-0.03426177427172661, 0.4664826989173889, 0.12664060294628143], [-0.0038443112280219793, -0.23189634084701538, -0.011895719915628433], [0.06365066766738892, 0.8692039251327515, 0.021176766604185104], [0.020300835371017456, 0.8451316356658936, 0.24675430357456207], [-0.027502231299877167, -0.2760683596134186, -0.03489543870091438], [-0.04057234525680542, 0.9241309762001038, -0.03839589282870293], [-0.10074836015701294, 0.8959715366363525, 0.23523633182048798], [-0.04709373414516449, -0.4833989143371582, -0.011840030550956726], [0.030325517058372498, -0.4038112759590149, -0.05140528082847595], [-0.09362149983644485, -0.38350290060043335, 0.02917506918311119], [-0.09245292842388153, -0.5195324420928955, -0.0712549239397049], [0.10630033165216446, -0.44579845666885376, -0.07808279991149902], [-0.17038661241531372, -0.4074048399925232, 0.08077238500118256], [0.260395348072052, -0.62239670753479, -0.1948624700307846], [-0.374745637178421, -0.2765442728996277, 0.15761224925518036], [0.13249260187149048, -0.6874829530715942, 0.006750855594873428], [-0.5773354768753052, -0.1588040590286255, 0.05705828592181206], [0.0914309024810791, -0.7010422348976135, 0.07757194340229034], [-0.6507844924926758, -0.15515169501304626, 0.019030362367630005]]}, {"image_id": "103.jpg", "category_id": 1, "keypoints": [1084.94140625, 472.27587890625, 0.9811985492706299, 1101.630859375, 502.4909973144531, 0.9858604073524475, 1066.9708251953125, 503.71234130859375, 0.9831846356391907, 1091.9197998046875, 434.02935791015625, 0.9938761591911316, 1051.7039794921875, 633.539794921875, 0.9748404026031494, 1085.8563232421875, 636.218017578125, 0.9825791716575623, 1088.711669921875, 388.530029296875, 0.9749444723129272, 1015.91357421875, 764.904296875, 0.9396154284477234, 1129.6221923828125, 758.635986328125, 0.9269200563430786, 1083.24658203125, 374.28802490234375, 0.9799808859825134, 999.1163330078125, 785.4130859375, 0.8731443881988525, 1098.918212890625, 784.490234375, 0.9485378861427307, 1077.0498046875, 301.5238037109375, 0.9889125823974609, 1106.3782958984375, 328.85321044921875, 0.987765371799469, 1058.2490234375, 338.0606994628906, 0.9926431179046631, 1072.7991943359375, 277.3218994140625, 0.9478809833526611, 1130.805419921875, 318.8581237792969, 0.9730076789855957, 1028.235107421875, 338.765869140625, 0.9885942935943604, 1141.318603515625, 381.37933349609375, 0.9728105068206787, 962.1652221679688, 389.55126953125, 0.9425817728042603, 1041.15478515625, 407.5972900390625, 0.9509144425392151, 968.933837890625, 401.65252685546875, 0.9567070603370667, 1019.5120849609375, 410.83349609375, 0.922443151473999, 972.7671508789062, 404.3724670410156, 0.8946689963340759, 1074.256103515625, 200.33370971679688, 0.9525938034057617, 992.6194458007812, 410.6038513183594, 0.9098303318023682, 986.4232177734375, 403.54913330078125, 0.8701457977294922, 994.0760498046875, 781.266357421875, 0.9116060137748718, 1084.4010009765625, 788.6200561523438, 0.948104977607727], "score": 3.059602737426758, "box": [948.1950073242188, 195.20285034179688, 207.04180908203125, 638.6464538574219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04964016377925873, 0.09258681535720825, -0.04166674241423607], [-0.048897743225097656, 0.0870596170425415, 0.04816781356930733], [0.01972074620425701, -0.10344544053077698, 0.019459400326013565], [-0.08725720643997192, 0.44655516743659973, -0.09168891608715057], [0.007687155157327652, 0.46574103832244873, 0.12083056569099426], [0.008583522401750088, -0.23227328062057495, -0.008634284138679504], [-0.19249524176120758, 0.8361859321594238, -0.06727898120880127], [0.1427149921655655, 0.8361618518829346, 0.20941323041915894], [-0.009044297970831394, -0.2727222740650177, -0.04378802701830864], [-0.2623901665210724, 0.9137400388717651, -0.15008655190467834], [0.04091743752360344, 0.9221506118774414, 0.21174180507659912], [-0.025470737367868423, -0.4848654568195343, -0.045040056109428406], [0.05488725006580353, -0.39923450350761414, -0.06827923655509949], [-0.0801229327917099, -0.389447420835495, 0.0018142126500606537], [-0.03859499469399452, -0.542608380317688, -0.10356494784355164], [0.1285049319267273, -0.427016943693161, -0.11652867496013641], [-0.17271460592746735, -0.38915714621543884, 0.03126348927617073], [0.15631642937660217, -0.20566216111183167, -0.25760671496391296], [-0.37109318375587463, -0.23424676060676575, -0.01956220343708992], [-0.056332964450120926, -0.14584386348724365, -0.3742285668849945], [-0.3518690764904022, -0.18740585446357727, -0.27156904339790344], [-0.11364737153053284, -0.13493597507476807, -0.4348389208316803], [-0.3417587876319885, -0.17639896273612976, -0.3541816771030426]]}, {"image_id": "104.jpg", "category_id": 1, "keypoints": [1222.2535400390625, 462.11444091796875, 0.9861272573471069, 1247.1834716796875, 495.94140625, 0.988618791103363, 1203.5599365234375, 498.1549987792969, 0.9882906079292297, 1227.4737548828125, 421.2517395019531, 0.9917487502098083, 1253.863525390625, 650.4071655273438, 0.9805349707603455, 1204.269775390625, 646.0525512695312, 0.986099123954773, 1221.1256103515625, 369.05084228515625, 0.984392523765564, 1246.690185546875, 793.7664794921875, 0.8767165541648865, 1220.45068359375, 781.9852294921875, 0.9247032999992371, 1213.6322021484375, 350.61480712890625, 0.9880932569503784, 1206.8778076171875, 817.655029296875, 0.8595419526100159, 1172.0445556640625, 802.395263671875, 0.9418801069259644, 1203.3421630859375, 267.913330078125, 0.9882745146751404, 1235.361083984375, 297.0122985839844, 0.9889326095581055, 1185.1107177734375, 309.0119934082031, 0.9929112195968628, 1187.4847412109375, 251.40615844726562, 0.951908528804779, 1266.5400390625, 274.5836486816406, 0.9744054675102234, 1159.9517822265625, 302.4241638183594, 0.9906100034713745, 1342.955078125, 190.958984375, 0.9516165852546692, 1086.9234619140625, 347.785400390625, 0.9667860269546509, 1294.8533935546875, 174.9512939453125, 0.9771754145622253, 1002.1414794921875, 396.8916015625, 0.9528737664222717, 1283.19580078125, 172.37832641601562, 0.9693672060966492, 975.0873413085938, 399.5325622558594, 0.945508599281311, 1156.69384765625, 182.71820068359375, 0.9670718908309937, 1275.625732421875, 174.45867919921875, 0.9580466747283936, 950.5294799804688, 402.50787353515625, 0.9474589824676514, 1193.63720703125, 813.5831909179688, 0.8017847537994385, 1160.375244140625, 801.191650390625, 0.9568622708320618], "score": 3.186436176300049, "box": [935.2068481445312, 162.4957275390625, 441.41888427734375, 669.9483032226562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05904766917228699, 0.08940789848566055, -0.03048115409910679], [-0.043221164494752884, 0.08573689311742783, 0.052016690373420715], [0.008908303454518318, -0.10384082794189453, 0.011009477078914642], [0.07599280029535294, 0.4703810214996338, -0.025167889893054962], [-0.03580073267221451, 0.4660419225692749, 0.1271038055419922], [-0.004228738136589527, -0.2325071096420288, -0.008220892399549484], [0.06205909326672554, 0.8657693862915039, 0.03875431418418884], [0.01785864867269993, 0.8427177667617798, 0.25167617201805115], [-0.02845620922744274, -0.27645987272262573, -0.031290508806705475], [-0.04138205572962761, 0.9198241233825684, -0.022806216031312943], [-0.10324551165103912, 0.8920601010322571, 0.2356792390346527], [-0.04748065769672394, -0.48410481214523315, -0.009205564856529236], [0.029205435886979103, -0.4041547179222107, -0.04983963444828987], [-0.09341681003570557, -0.3844340443611145, 0.03337752819061279], [-0.0926237627863884, -0.5216713547706604, -0.06789495795965195], [0.10392056405544281, -0.4463587999343872, -0.07997293025255203], [-0.16987086832523346, -0.40906184911727905, 0.08537018299102783], [0.2572575807571411, -0.6193322539329529, -0.20217671990394592], [-0.3756943643093109, -0.2840317487716675, 0.166630819439888], [0.1261652261018753, -0.6916112303733826, -0.005472853779792786], [-0.5741370320320129, -0.1652286946773529, 0.06015852838754654], [0.08930936455726624, -0.7094300985336304, 0.06669507175683975], [-0.6436638236045837, -0.15656936168670654, 0.016098789870738983]]}, {"image_id": "104.jpg", "category_id": 1, "keypoints": [1084.543212890625, 471.6742248535156, 0.9806588292121887, 1100.8258056640625, 502.1259765625, 0.9850611686706543, 1066.580078125, 503.0987548828125, 0.9837764501571655, 1091.7288818359375, 433.65185546875, 0.993537962436676, 1052.9791259765625, 632.701416015625, 0.9728748798370361, 1085.8902587890625, 635.5052490234375, 0.9829539656639099, 1088.427001953125, 388.2137756347656, 0.9738514423370361, 1013.8870849609375, 765.1692504882812, 0.9469245076179504, 1127.9736328125, 756.7830200195312, 0.9240784049034119, 1082.78515625, 373.90521240234375, 0.9793683290481567, 996.130859375, 788.6187744140625, 0.8672548532485962, 1098.81494140625, 785.1729736328125, 0.9519529938697815, 1076.849365234375, 301.4567565917969, 0.9888728857040405, 1106.060791015625, 328.79815673828125, 0.9880335330963135, 1057.8597412109375, 337.9604797363281, 0.992986798286438, 1072.36083984375, 277.31890869140625, 0.9480202198028564, 1130.2698974609375, 319.36322021484375, 0.970521092414856, 1027.7337646484375, 339.10009765625, 0.9887949228286743, 1138.345947265625, 380.909423828125, 0.9714010953903198, 962.6466064453125, 390.0919189453125, 0.9420897960662842, 1038.1898193359375, 407.87322998046875, 0.9483146071434021, 968.3988037109375, 401.66082763671875, 0.9572727680206299, 1017.37451171875, 410.7764587402344, 0.9228291511535645, 972.056640625, 404.1881103515625, 0.893964409828186, 1073.879150390625, 200.09100341796875, 0.9542912840843201, 989.8532104492188, 409.9696960449219, 0.9039809107780457, 985.163330078125, 402.9078369140625, 0.8774206042289734, 989.772216796875, 786.748046875, 0.9041351079940796, 1083.88330078125, 789.275634765625, 0.9562132954597473], "score": 3.031632900238037, "box": [948.2285766601562, 195.47596740722656, 205.82586669921875, 637.3452606201172], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04873121529817581, 0.09297377616167068, -0.04266531020402908], [-0.04911664500832558, 0.08714403212070465, 0.04849662631750107], [0.02073613740503788, -0.10359682142734528, 0.01975196786224842], [-0.08380579203367233, 0.4497855305671692, -0.08655773103237152], [0.008786870166659355, 0.4654219150543213, 0.12452732771635056], [0.008877940475940704, -0.23284302651882172, -0.006837140768766403], [-0.19665735960006714, 0.8370572924613953, -0.04945821315050125], [0.14012332260608673, 0.8354224562644958, 0.22339075803756714], [-0.00936097465455532, -0.2738012671470642, -0.04136739298701286], [-0.2634686231613159, 0.9173785448074341, -0.13255156576633453], [0.04420942813158035, 0.9282332062721252, 0.21869273483753204], [-0.024542072787880898, -0.48650461435317993, -0.03907187655568123], [0.05536358430981636, -0.4006766080856323, -0.06436868757009506], [-0.0796860009431839, -0.3905048966407776, 0.00670541450381279], [-0.03834334388375282, -0.5445640683174133, -0.09708233922719955], [0.1290706992149353, -0.4269542694091797, -0.11374672502279282], [-0.17249444127082825, -0.3888767957687378, 0.03624800592660904], [0.14872583746910095, -0.20653747022151947, -0.25851210951805115], [-0.36924275755882263, -0.23216618597507477, -0.01786360703408718], [-0.06471776217222214, -0.14495797455310822, -0.3738459050655365], [-0.35290926694869995, -0.18669794499874115, -0.27081695199012756], [-0.1204618439078331, -0.1347501128911972, -0.43630340695381165], [-0.3430633842945099, -0.17605476081371307, -0.3537293076515198]]}, {"image_id": "105.jpg", "category_id": 1, "keypoints": [1224.513427734375, 460.0416259765625, 0.9858622550964355, 1249.372802734375, 493.5694580078125, 0.9897174835205078, 1205.840576171875, 496.162353515625, 0.9882632493972778, 1229.740966796875, 419.27520751953125, 0.9904138445854187, 1254.6441650390625, 650.08251953125, 0.9806073307991028, 1204.0279541015625, 645.5580444335938, 0.9859825372695923, 1222.802490234375, 367.2685241699219, 0.9854652881622314, 1247.9666748046875, 796.3853759765625, 0.8651814460754395, 1217.8914794921875, 784.85498046875, 0.9116307497024536, 1214.6622314453125, 348.6798095703125, 0.9889898896217346, 1208.4652099609375, 821.5835571289062, 0.8649965524673462, 1168.86865234375, 806.3717041015625, 0.9425254464149475, 1203.3338623046875, 266.478515625, 0.9874045848846436, 1236.34375, 295.3305969238281, 0.9874601364135742, 1185.3419189453125, 307.70050048828125, 0.9922501444816589, 1188.4132080078125, 249.97532653808594, 0.9434321522712708, 1265.522216796875, 274.25091552734375, 0.978434681892395, 1158.30859375, 302.5389404296875, 0.9904487729072571, 1343.087890625, 188.63827514648438, 0.9447247385978699, 1084.9454345703125, 346.9151611328125, 0.9656394720077515, 1290.9637451171875, 174.39251708984375, 0.9758254885673523, 996.9609375, 395.3296203613281, 0.9603674411773682, 1278.68310546875, 171.62887573242188, 0.962846577167511, 969.9630126953125, 396.92327880859375, 0.9499030113220215, 1160.5574951171875, 185.06344604492188, 0.9661428332328796, 1271.4654541015625, 175.85952758789062, 0.9547300338745117, 942.5758056640625, 398.104248046875, 0.9638592004776001, 1193.2857666015625, 818.8758544921875, 0.8075248003005981, 1157.0301513671875, 805.4234008789062, 0.9588552117347717], "score": 3.182910442352295, "box": [938.1572875976562, 159.76495361328125, 436.73980712890625, 673.8829345703125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.059597261250019073, 0.08933090418577194, -0.029494766145944595], [-0.043708354234695435, 0.08569306880235672, 0.05157989263534546], [0.008475091308355331, -0.1036205142736435, 0.010814793407917023], [0.07258696854114532, 0.47175031900405884, -0.02825167402625084], [-0.04287736117839813, 0.46758151054382324, 0.1248750314116478], [-0.005991717800498009, -0.23123084008693695, -0.011563252657651901], [0.058865826576948166, 0.870455801486969, 0.020900588482618332], [0.0033990880474448204, 0.8486561179161072, 0.2425355315208435], [-0.031437601894140244, -0.27398681640625, -0.03509865328669548], [-0.04273680970072746, 0.926876425743103, -0.04184769466519356], [-0.11689258366823196, 0.8994729518890381, 0.2243313193321228], [-0.05287640914320946, -0.4809422492980957, -0.01242787018418312], [0.024294303730130196, -0.4022068381309509, -0.053667329251766205], [-0.09693888574838638, -0.38081222772598267, 0.030266951769590378], [-0.09615285694599152, -0.518955647945404, -0.07217191159725189], [0.09944210946559906, -0.44268739223480225, -0.08430728316307068], [-0.17552348971366882, -0.4000495672225952, 0.08085206896066666], [0.252193808555603, -0.6187388300895691, -0.20424646139144897], [-0.38420307636260986, -0.2766227722167969, 0.15927338600158691], [0.11383160203695297, -0.6835778951644897, -0.00928015261888504], [-0.5846053957939148, -0.16222237050533295, 0.05007679760456085], [0.07591293007135391, -0.7016837000846863, 0.06228925287723541], [-0.6569071412086487, -0.15622474253177643, 0.010137785226106644]]}, {"image_id": "105.jpg", "category_id": 1, "keypoints": [1083.1783447265625, 469.18560791015625, 0.9815104007720947, 1099.9317626953125, 499.5694580078125, 0.9852501749992371, 1064.8905029296875, 500.5184326171875, 0.9834644198417664, 1090.415771484375, 431.63458251953125, 0.993579089641571, 1052.4166259765625, 631.0272827148438, 0.9750766754150391, 1084.169921875, 634.801025390625, 0.9821960926055908, 1087.615234375, 386.6628723144531, 0.9740336537361145, 1015.4661865234375, 764.4833984375, 0.9416585564613342, 1130.4515380859375, 755.2191162109375, 0.9260210394859314, 1082.36181640625, 372.45428466796875, 0.9796361327171326, 999.12109375, 788.423095703125, 0.8730272054672241, 1102.9830322265625, 783.2587890625, 0.9431731700897217, 1076.18603515625, 300.4334716796875, 0.9892379641532898, 1105.5205078125, 327.41790771484375, 0.9878122806549072, 1057.3193359375, 336.6726379394531, 0.9927881360054016, 1072.5902099609375, 276.29595947265625, 0.9483790397644043, 1129.7728271484375, 317.65380859375, 0.9731408357620239, 1027.481689453125, 337.7208251953125, 0.9885318279266357, 1139.959228515625, 381.0660095214844, 0.9725378751754761, 963.2288818359375, 390.55059814453125, 0.944190263748169, 1037.4630126953125, 406.8792724609375, 0.9445960521697998, 967.5401000976562, 402.5145568847656, 0.9571288228034973, 1016.0800170898438, 410.642333984375, 0.9323006868362427, 970.49072265625, 404.93927001953125, 0.8909363746643066, 1073.117431640625, 201.9144287109375, 0.954167366027832, 989.193115234375, 410.226806640625, 0.8961794972419739, 983.3121948242188, 403.42974853515625, 0.878646731376648, 992.0053100585938, 786.3065185546875, 0.8991366028785706, 1091.1448974609375, 786.77685546875, 0.9438698291778564], "score": 3.06933856010437, "box": [947.2882690429688, 196.61155700683594, 207.20806884765625, 633.8678741455078], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04895078390836716, 0.09206915646791458, -0.043528128415346146], [-0.050293803215026855, 0.0876702293753624, 0.04548289626836777], [0.020656391978263855, -0.10257504880428314, 0.02219136618077755], [-0.08187440782785416, 0.4474807381629944, -0.10188039392232895], [0.006682382896542549, 0.4673660397529602, 0.1144072487950325], [0.01058465801179409, -0.23169760406017303, -0.004332387819886208], [-0.18981537222862244, 0.8375245332717896, -0.10051115602254868], [0.150265634059906, 0.8341879844665527, 0.20607370138168335], [-0.006579292938113213, -0.27250707149505615, -0.03918366879224777], [-0.25148293375968933, 0.9194347858428955, -0.18565548956394196], [0.056623563170433044, 0.9283663034439087, 0.1948549449443817], [-0.023001914843916893, -0.48447632789611816, -0.038025617599487305], [0.05721375718712807, -0.3991847634315491, -0.06231269985437393], [-0.07743225991725922, -0.3886224031448364, 0.007837263867259026], [-0.034560345113277435, -0.5429092645645142, -0.09617408365011215], [0.13078944385051727, -0.4263986349105835, -0.11071271449327469], [-0.1696084439754486, -0.38733869791030884, 0.03809741884469986], [0.1585099995136261, -0.19925148785114288, -0.2427644580602646], [-0.36360257863998413, -0.2255842238664627, -0.009338190779089928], [-0.05502665042877197, -0.141205832362175, -0.3590165972709656], [-0.35136476159095764, -0.17869098484516144, -0.2619945704936981], [-0.11216261982917786, -0.1288159042596817, -0.4194950759410858], [-0.34349390864372253, -0.16837237775325775, -0.3449375331401825]]}, {"image_id": "106.jpg", "category_id": 1, "keypoints": [1224.6158447265625, 461.6801452636719, 0.9858631491661072, 1248.2999267578125, 495.4231872558594, 0.989006757736206, 1206.55419921875, 497.5133056640625, 0.9889814257621765, 1230.0206298828125, 420.9073791503906, 0.9911460280418396, 1253.220703125, 651.2093505859375, 0.9840601086616516, 1204.6915283203125, 645.5349731445312, 0.9856792092323303, 1223.220703125, 369.22314453125, 0.9855874180793762, 1246.3477783203125, 796.8934326171875, 0.8635054230690002, 1218.3104248046875, 781.3701171875, 0.9228683114051819, 1214.270751953125, 350.607666015625, 0.988780677318573, 1207.4080810546875, 822.5158081054688, 0.8641862273216248, 1171.7744140625, 803.492431640625, 0.9457945227622986, 1202.4727783203125, 268.18109130859375, 0.9865737557411194, 1235.4691162109375, 296.7850341796875, 0.9876798987388611, 1184.92578125, 309.8392028808594, 0.9929957985877991, 1188.2047119140625, 249.94361877441406, 0.9355708360671997, 1263.4764404296875, 276.27423095703125, 0.9784589409828186, 1156.634521484375, 304.9810791015625, 0.9906727075576782, 1341.9554443359375, 190.28494262695312, 0.9377545118331909, 1082.4993896484375, 351.8808898925781, 0.9662243723869324, 1289.0452880859375, 172.52536010742188, 0.9729723334312439, 993.8131103515625, 395.9516296386719, 0.9693558812141418, 1276.679931640625, 170.00564575195312, 0.9628350138664246, 968.552490234375, 397.89874267578125, 0.9432342648506165, 1164.4134521484375, 182.90896606445312, 0.9686045050621033, 1269.04638671875, 171.52166748046875, 0.9534649848937988, 940.5073852539062, 394.9773254394531, 0.9560195803642273, 1194.0093994140625, 820.34765625, 0.8424307107925415, 1158.1475830078125, 803.5436401367188, 0.9580566883087158], "score": 3.187779664993286, "box": [939.1499633789062, 160.40167236328125, 439.98223876953125, 671.6588134765625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05819747969508171, 0.09004264324903488, -0.030944671481847763], [-0.04314761981368065, 0.08548574149608612, 0.05287633836269379], [0.009710056707262993, -0.10398384928703308, 0.010608317330479622], [0.07005903869867325, 0.47221437096595764, -0.03332168981432915], [-0.042268745601177216, 0.4667973220348358, 0.1285543441772461], [-0.005414954386651516, -0.2321547567844391, -0.011309927329421043], [0.0560564287006855, 0.8705321550369263, 0.01929612271487713], [0.004541642963886261, 0.846306324005127, 0.2512807846069336], [-0.033458415418863297, -0.2739894688129425, -0.03416241705417633], [-0.047149915248155594, 0.9307600259780884, -0.03728017956018448], [-0.11427586525678635, 0.9007068872451782, 0.23251929879188538], [-0.05514823645353317, -0.4813856780529022, -0.01071910746395588], [0.021944839507341385, -0.4027347266674042, -0.05326702445745468], [-0.09868329018354416, -0.3807898461818695, 0.03237631916999817], [-0.0953972339630127, -0.5221569538116455, -0.07089813798666], [0.09043664485216141, -0.45247170329093933, -0.08662810176610947], [-0.17966198921203613, -0.3986136019229889, 0.08018327504396439], [0.24786898493766785, -0.6186394691467285, -0.21458940207958221], [-0.386669397354126, -0.27018624544143677, 0.1552240550518036], [0.10118917375802994, -0.6948039531707764, -0.02979121543467045], [-0.5849361419677734, -0.1668732762336731, 0.03181655704975128], [0.06355070322751999, -0.7120275497436523, 0.04231543093919754], [-0.6595691442489624, -0.1595918834209442, -0.003619590774178505]]}, {"image_id": "106.jpg", "category_id": 1, "keypoints": [1084.767333984375, 471.4132080078125, 0.9806023240089417, 1101.292724609375, 502.177490234375, 0.9863547682762146, 1067.1160888671875, 502.38153076171875, 0.984489381313324, 1092.1077880859375, 433.217529296875, 0.9941777586936951, 1051.656005859375, 632.8521118164062, 0.9709358215332031, 1083.3824462890625, 636.3582763671875, 0.9807051420211792, 1088.6387939453125, 387.57037353515625, 0.9762430191040039, 1015.1805419921875, 764.557373046875, 0.9396266937255859, 1131.744140625, 755.45361328125, 0.9296871423721313, 1083.043701171875, 373.2843017578125, 0.9804918766021729, 996.5713500976562, 786.164306640625, 0.8683169484138489, 1101.5828857421875, 783.6834716796875, 0.9477711915969849, 1076.7557373046875, 300.7723388671875, 0.9894300103187561, 1106.0584716796875, 327.9842529296875, 0.9874669313430786, 1057.7869873046875, 337.27740478515625, 0.9923283457756042, 1073.5244140625, 276.677978515625, 0.9462457895278931, 1129.9512939453125, 317.49810791015625, 0.9759582877159119, 1028.1431884765625, 337.7947998046875, 0.9876105785369873, 1145.1898193359375, 381.0762939453125, 0.978809654712677, 963.23828125, 390.484130859375, 0.9416514039039612, 1040.97802734375, 407.7418518066406, 0.9564419984817505, 966.5751953125, 402.17205810546875, 0.9573494791984558, 1020.6360473632812, 410.2919921875, 0.9175925850868225, 969.861572265625, 404.9466247558594, 0.8918342590332031, 1076.2437744140625, 201.90234375, 0.9565933346748352, 996.8751831054688, 409.68145751953125, 0.9105632901191711, 983.0780029296875, 403.5989685058594, 0.8925119638442993, 990.1213989257812, 783.8214721679688, 0.9080583453178406, 1088.5496826171875, 787.2711181640625, 0.9509361386299133], "score": 3.0565173625946045, "box": [946.3535766601562, 196.97140502929688, 209.01849365234375, 630.9913635253906], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04847460612654686, 0.09342507272958755, -0.041374512016773224], [-0.04826367646455765, 0.08623601496219635, 0.05041823536157608], [0.02051810920238495, -0.10370303690433502, 0.017600134015083313], [-0.08821799606084824, 0.44896793365478516, -0.0811735987663269], [0.0005386774428188801, 0.4656979441642761, 0.1257563829421997], [0.008570976555347443, -0.23221780359745026, -0.0116607416421175], [-0.19419893622398376, 0.8373067378997803, -0.040000513195991516], [0.15005430579185486, 0.8269281387329102, 0.22920572757720947], [-0.009330831468105316, -0.27240777015686035, -0.047022394835948944], [-0.2652975618839264, 0.9119370579719543, -0.12455672770738602], [0.05274520814418793, 0.9180968999862671, 0.2299513816833496], [-0.026210125535726547, -0.4846002459526062, -0.04746284335851669], [0.054274410009384155, -0.3992091417312622, -0.07134035229682922], [-0.08051294088363647, -0.38888442516326904, -0.0007189381867647171], [-0.03687182441353798, -0.5431263446807861, -0.10568086802959442], [0.12723839282989502, -0.42891961336135864, -0.11950202286243439], [-0.17271262407302856, -0.38928133249282837, 0.03002987802028656], [0.17494581639766693, -0.19542361795902252, -0.2334367036819458], [-0.36904242634773254, -0.22805960476398468, -0.008633039891719818], [-0.03564847260713577, -0.13714085519313812, -0.3548709452152252], [-0.3597230315208435, -0.18221037089824677, -0.26156800985336304], [-0.08925152570009232, -0.12787483632564545, -0.4191127121448517], [-0.35098376870155334, -0.17097915709018707, -0.3443596065044403]]}, {"image_id": "107.jpg", "category_id": 1, "keypoints": [1223.412841796875, 461.8878173828125, 0.9860601425170898, 1247.8651123046875, 495.79937744140625, 0.9893474578857422, 1205.4439697265625, 498.0772399902344, 0.9885802268981934, 1228.2498779296875, 420.8416748046875, 0.9915711283683777, 1254.49072265625, 650.1640625, 0.9832583069801331, 1205.077392578125, 646.1748046875, 0.9858263731002808, 1221.271240234375, 369.2810363769531, 0.9859435558319092, 1246.224365234375, 794.9053955078125, 0.8539012670516968, 1219.55419921875, 782.2966918945312, 0.919587254524231, 1211.9898681640625, 350.4981689453125, 0.9890889525413513, 1209.048828125, 819.9090576171875, 0.8781386613845825, 1174.4013671875, 806.6334228515625, 0.949063777923584, 1198.706298828125, 268.39788818359375, 0.9869486689567566, 1232.8106689453125, 296.6256103515625, 0.9880964756011963, 1181.013427734375, 310.06256103515625, 0.9930321574211121, 1184.2406005859375, 249.5097198486328, 0.9358192682266235, 1260.22998046875, 275.93310546875, 0.9809132814407349, 1150.92626953125, 305.87060546875, 0.9893696904182434, 1340.2889404296875, 191.44497680664062, 0.9405534267425537, 1077.343017578125, 355.57080078125, 0.9596194624900818, 1286.022216796875, 167.09628295898438, 0.9715335369110107, 991.381103515625, 397.449951171875, 0.9704456329345703, 1273.5205078125, 162.2532958984375, 0.9660181403160095, 965.3560791015625, 400.46588134765625, 0.9451280236244202, 1159.4454345703125, 184.02914428710938, 0.9687429070472717, 1264.2276611328125, 155.64181518554688, 0.9599100351333618, 932.1039428710938, 399.7177734375, 0.9430915713310242, 1194.6519775390625, 817.2279052734375, 0.8151785135269165, 1163.65380859375, 806.10986328125, 0.9618465900421143], "score": 3.186324119567871, "box": [938.7540893554688, 161.35382080078125, 440.06085205078125, 670.39501953125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05945780873298645, 0.08914268761873245, -0.03151347115635872], [-0.043067097663879395, 0.08668550848960876, 0.05117017775774002], [0.00863331276923418, -0.10396623611450195, 0.012193797156214714], [0.07529421150684357, 0.47165998816490173, -0.03808949142694473], [-0.03848133608698845, 0.4688932001590729, 0.12497558444738388], [-0.007217797450721264, -0.2319108545780182, -0.010213907808065414], [0.05633394420146942, 0.8716983795166016, 0.00420798733830452], [0.010790985077619553, 0.8479268550872803, 0.25045275688171387], [-0.035981401801109314, -0.2730208933353424, -0.033507466316223145], [-0.04399118572473526, 0.9305444955825806, -0.05893859267234802], [-0.10523539781570435, 0.9082223176956177, 0.2312597781419754], [-0.06123487278819084, -0.48014572262763977, -0.009912831708788872], [0.018198944628238678, -0.40269652009010315, -0.050480302423238754], [-0.10462529957294464, -0.37872830033302307, 0.03153197467327118], [-0.10106015205383301, -0.5214337110519409, -0.07003296911716461], [0.08527806401252747, -0.4529120624065399, -0.08598964661359787], [-0.18930746614933014, -0.39387235045433044, 0.0735338106751442], [0.24722689390182495, -0.6149473190307617, -0.2144434005022049], [-0.391144722700119, -0.2601488530635834, 0.15454982221126556], [0.09404653310775757, -0.7106927633285522, -0.04411516338586807], [-0.5854073166847229, -0.1603335738182068, 0.021481415256857872], [0.05735187605023384, -0.7356452941894531, 0.0262917410582304], [-0.659730076789856, -0.15020957589149475, -0.01411784254014492]]}, {"image_id": "107.jpg", "category_id": 1, "keypoints": [1082.461181640625, 470.44683837890625, 0.9817212224006653, 1099.4835205078125, 500.6956481933594, 0.9860082268714905, 1064.148193359375, 501.397216796875, 0.9839224815368652, 1089.56982421875, 432.9951477050781, 0.9939015507698059, 1052.214599609375, 630.8176879882812, 0.9752978086471558, 1083.6802978515625, 634.7366333007812, 0.9819039702415466, 1086.7481689453125, 388.0213317871094, 0.9754067063331604, 1013.963623046875, 763.5028686523438, 0.941008985042572, 1130.499267578125, 754.6264038085938, 0.9298402667045593, 1081.4007568359375, 373.76177978515625, 0.9803455471992493, 997.9603271484375, 786.47509765625, 0.8689470291137695, 1102.1339111328125, 781.9658203125, 0.9520941376686096, 1075.612060546875, 301.7016296386719, 0.9895642399787903, 1104.939453125, 329.0340576171875, 0.9880756735801697, 1056.1092529296875, 337.7303466796875, 0.9925208687782288, 1072.135986328125, 277.49139404296875, 0.9488430619239807, 1129.5845947265625, 319.2245178222656, 0.9761521816253662, 1026.2352294921875, 338.1318359375, 0.9880616664886475, 1145.305419921875, 381.86920166015625, 0.9753787517547607, 963.5116577148438, 392.36700439453125, 0.9439626336097717, 1039.43310546875, 408.2649841308594, 0.9606723189353943, 965.9771728515625, 403.1966857910156, 0.957362711429596, 1018.2740478515625, 411.4084167480469, 0.9175930619239807, 968.572998046875, 404.8954162597656, 0.8853406310081482, 1073.2152099609375, 204.82904052734375, 0.9502303600311279, 994.8314208984375, 412.4759521484375, 0.9138746857643127, 980.1177978515625, 401.980712890625, 0.8823807835578918, 991.6605834960938, 783.9862670898438, 0.8985883593559265, 1089.8956298828125, 785.2198486328125, 0.9508031606674194], "score": 3.0728282928466797, "box": [947.1754760742188, 197.7438201904297, 207.32757568359375, 632.8310089111328], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049615100026130676, 0.09240935742855072, -0.04243699461221695], [-0.05046333000063896, 0.08750952780246735, 0.045998651534318924], [0.020259898155927658, -0.10299485921859741, 0.02146090567111969], [-0.08183908462524414, 0.4477054476737976, -0.10135340690612793], [0.007641523610800505, 0.46671628952026367, 0.11795683205127716], [0.01105550117790699, -0.23257356882095337, -0.0029029417783021927], [-0.1939215511083603, 0.8370121121406555, -0.09748747944831848], [0.1530372053384781, 0.8321093320846558, 0.2143498659133911], [-0.006204038392752409, -0.27299177646636963, -0.03826066106557846], [-0.25471267104148865, 0.9156092405319214, -0.18646785616874695], [0.05679382383823395, 0.9244152307510376, 0.2106255143880844], [-0.023475080728530884, -0.4850802421569824, -0.043263085186481476], [0.057801440358161926, -0.3994835615158081, -0.06318779289722443], [-0.07887642830610275, -0.3901829123497009, 0.003746097907423973], [-0.03470337390899658, -0.543732225894928, -0.10115186870098114], [0.13326089084148407, -0.4272720217704773, -0.10848505795001984], [-0.17160458862781525, -0.39081841707229614, 0.03268089517951012], [0.18416354060173035, -0.1924130618572235, -0.21884502470493317], [-0.36233770847320557, -0.22384613752365112, -0.01116659864783287], [-0.024585478007793427, -0.13581132888793945, -0.34464290738105774], [-0.3554018437862396, -0.17999550700187683, -0.26480337977409363], [-0.08055328577756882, -0.12509015202522278, -0.4066402316093445], [-0.3483492434024811, -0.17158544063568115, -0.3481318950653076]]}, {"image_id": "108.jpg", "category_id": 1, "keypoints": [1222.024658203125, 463.0814514160156, 0.9854929447174072, 1246.698974609375, 496.8226013183594, 0.9900304675102234, 1203.775390625, 499.5132751464844, 0.9883800148963928, 1227.0765380859375, 422.0806884765625, 0.9913933277130127, 1255.5068359375, 651.7506103515625, 0.9831161499023438, 1200.90771484375, 648.037109375, 0.9866777658462524, 1219.0648193359375, 369.8876037597656, 0.9853959083557129, 1246.3179931640625, 796.890869140625, 0.862628161907196, 1217.6180419921875, 785.5908203125, 0.9151014089584351, 1209.989013671875, 350.7569580078125, 0.9886267185211182, 1208.0133056640625, 820.925537109375, 0.8741649389266968, 1171.111328125, 807.2586059570312, 0.9504520297050476, 1197.2640380859375, 268.38348388671875, 0.9871329665184021, 1230.579345703125, 297.0796813964844, 0.9869078397750854, 1179.7799072265625, 310.22003173828125, 0.9930045008659363, 1182.66259765625, 250.32456970214844, 0.9387891888618469, 1258.245361328125, 275.6533203125, 0.9792129397392273, 1151.125, 305.63128662109375, 0.9908180832862854, 1337.4039306640625, 191.83297729492188, 0.9448115825653076, 1077.7027587890625, 350.9137878417969, 0.9627155661582947, 1285.780029296875, 165.8287353515625, 0.973590612411499, 991.349609375, 397.33599853515625, 0.9680845141410828, 1274.928466796875, 158.06289672851562, 0.9683473706245422, 965.3812866210938, 400.57879638671875, 0.9475188255310059, 1153.246826171875, 185.76705932617188, 0.9673742055892944, 1267.3084716796875, 147.97299194335938, 0.9548647403717041, 934.6036987304688, 402.8045349121094, 0.9543153047561646, 1192.0989990234375, 817.8251342773438, 0.8124056458473206, 1157.869873046875, 806.3181762695312, 0.9560228586196899], "score": 3.190164089202881, "box": [933.9581909179688, 161.2861785888672, 443.33148193359375, 671.4334869384766], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05907199904322624, 0.08885972201824188, -0.03213810175657272], [-0.04294323921203613, 0.08669580519199371, 0.05071258544921875], [0.008819369599223137, -0.10370218753814697, 0.01273403875529766], [0.08017485588788986, 0.47014766931533813, -0.03864254802465439], [-0.045169953256845474, 0.4686877131462097, 0.12018382549285889], [-0.008793629705905914, -0.231928288936615, -0.006639773026108742], [0.05756932124495506, 0.8697931170463562, -0.009431859478354454], [0.008832491934299469, 0.8505493998527527, 0.22975598275661469], [-0.0356229729950428, -0.27496758103370667, -0.02855820208787918], [-0.04446941241621971, 0.9254677295684814, -0.07214648276567459], [-0.1104060634970665, 0.9041852355003357, 0.21255354583263397], [-0.061255935579538345, -0.4817018508911133, -0.004604250192642212], [0.017840679734945297, -0.40459877252578735, -0.04614044725894928], [-0.10375995188951492, -0.38021600246429443, 0.037277668714523315], [-0.10301674902439117, -0.5232464671134949, -0.06323235481977463], [0.08474040776491165, -0.4560655951499939, -0.0800153836607933], [-0.1859201043844223, -0.3970955014228821, 0.08333488553762436], [0.2459816038608551, -0.6201379299163818, -0.2049681693315506], [-0.3914019465446472, -0.2733859419822693, 0.16832716763019562], [0.10540460795164108, -0.7200967669487, -0.02744917757809162], [-0.5873146057128906, -0.1634395718574524, 0.04778780788183212], [0.07401580363512039, -0.7552283406257629, 0.04093661159276962], [-0.6610893607139587, -0.1526990532875061, 0.01169370673596859]]}, {"image_id": "108.jpg", "category_id": 1, "keypoints": [1081.888671875, 471.3020324707031, 0.9818253517150879, 1099.2012939453125, 502.1141357421875, 0.9871078133583069, 1063.9964599609375, 502.1297912597656, 0.9838806390762329, 1088.66943359375, 433.46014404296875, 0.9940584301948547, 1053.2554931640625, 633.2925415039062, 0.9740973114967346, 1085.8646240234375, 634.114501953125, 0.9817594289779663, 1085.3707275390625, 388.3265380859375, 0.9761477112770081, 1012.8461303710938, 763.978759765625, 0.9452332258224487, 1129.7901611328125, 754.7189331054688, 0.9241562485694885, 1079.8646240234375, 374.0259704589844, 0.9815340042114258, 996.2947998046875, 788.3651123046875, 0.8628935813903809, 1100.0509033203125, 782.3861083984375, 0.9486693739891052, 1074.7069091796875, 301.973876953125, 0.9895265102386475, 1103.4989013671875, 329.4111328125, 0.9877800345420837, 1055.1488037109375, 337.4927978515625, 0.991870105266571, 1071.1993408203125, 277.8897705078125, 0.9480181336402893, 1127.68359375, 319.86273193359375, 0.9753413796424866, 1025.42822265625, 337.3507385253906, 0.9875184893608093, 1139.093505859375, 384.17633056640625, 0.9756411910057068, 964.041748046875, 393.21331787109375, 0.9425020813941956, 1035.5789794921875, 406.76348876953125, 0.9605213403701782, 965.2450561523438, 403.730712890625, 0.9549493789672852, 1014.0219116210938, 410.05877685546875, 0.9211467504501343, 967.3784790039062, 405.72076416015625, 0.8821638822555542, 1072.488037109375, 204.0736083984375, 0.9515727758407593, 990.76416015625, 409.85260009765625, 0.9053705930709839, 978.3414916992188, 403.766845703125, 0.8817571401596069, 989.3606567382812, 788.2607421875, 0.8938069939613342, 1087.7010498046875, 785.86572265625, 0.9557696580886841], "score": 3.047210931777954, "box": [945.5099487304688, 198.72767639160156, 209.29010009765625, 631.2706756591797], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.050272684544324875, 0.0930606871843338, -0.0404152013361454], [-0.049056895077228546, 0.08681650459766388, 0.04895472899079323], [0.019374197348952293, -0.10393168032169342, 0.01846836507320404], [-0.07712872326374054, 0.4512093663215637, -0.08834338188171387], [0.016140416264533997, 0.46323496103286743, 0.12805496156215668], [0.00874782633036375, -0.23308570683002472, -0.008335275575518608], [-0.19512392580509186, 0.8371503949165344, -0.054486729204654694], [0.1527854949235916, 0.8299930691719055, 0.2312886118888855], [-0.008895776234567165, -0.27342623472213745, -0.04375278204679489], [-0.25422030687332153, 0.9153592586517334, -0.14498679339885712], [0.054952096194028854, 0.9207341074943542, 0.22900664806365967], [-0.02437448874115944, -0.48578327894210815, -0.051080092787742615], [0.05575881153345108, -0.3991289734840393, -0.07182703912258148], [-0.07966898381710052, -0.39192527532577515, -0.001568308100104332], [-0.03571585193276405, -0.544384241104126, -0.1090053915977478], [0.12930671870708466, -0.42570656538009644, -0.12108783423900604], [-0.17188014090061188, -0.39440107345581055, 0.029340747743844986], [0.16311697661876678, -0.19096173346042633, -0.2379140853881836], [-0.3591282367706299, -0.2222326546907425, -0.008795611560344696], [-0.0490151084959507, -0.14003346860408783, -0.3604346215724945], [-0.3559204638004303, -0.17919747531414032, -0.2626018226146698], [-0.1067776083946228, -0.12882231175899506, -0.42075401544570923], [-0.350151926279068, -0.16999725997447968, -0.3459985554218292]]}, {"image_id": "109.jpg", "category_id": 1, "keypoints": [1221.639404296875, 462.58648681640625, 0.9858886003494263, 1246.50146484375, 496.1590881347656, 0.9894269108772278, 1203.234130859375, 498.6731262207031, 0.9880098700523376, 1226.536865234375, 421.3923645019531, 0.9922302961349487, 1254.2957763671875, 650.9865112304688, 0.9837217926979065, 1203.98193359375, 647.6973876953125, 0.9864287376403809, 1219.600830078125, 369.56451416015625, 0.9870449900627136, 1247.8729248046875, 797.1280517578125, 0.8652604222297668, 1219.76220703125, 784.3214111328125, 0.9104949235916138, 1210.337158203125, 350.5618591308594, 0.9886643290519714, 1207.8524169921875, 825.1725463867188, 0.8611879348754883, 1172.9542236328125, 807.877197265625, 0.946383535861969, 1196.5023193359375, 268.3992919921875, 0.9871886372566223, 1230.298095703125, 297.11993408203125, 0.9868342280387878, 1179.559814453125, 310.20263671875, 0.9929807782173157, 1181.267578125, 249.85897827148438, 0.9365749359130859, 1257.3399658203125, 275.6899108886719, 0.9811220169067383, 1150.3277587890625, 305.9110107421875, 0.9904823899269104, 1336.9884033203125, 191.27432250976562, 0.9434568285942078, 1078.504150390625, 351.925048828125, 0.9603075981140137, 1281.213623046875, 165.47515869140625, 0.9724036455154419, 990.7787475585938, 396.2987365722656, 0.9672561287879944, 1268.0345458984375, 155.92486572265625, 0.9631882309913635, 964.0008544921875, 399.31146240234375, 0.9434117674827576, 1158.2437744140625, 184.909912109375, 0.9691102504730225, 1258.196533203125, 141.983642578125, 0.9470699429512024, 931.0215454101562, 400.2195129394531, 0.9474835991859436, 1191.85498046875, 825.5953979492188, 0.8335559964179993, 1160.0189208984375, 809.06494140625, 0.9605582356452942], "score": 3.1841602325439453, "box": [936.5419921875, 158.16485595703125, 441.8245849609375, 675.6563110351562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.060280941426754, 0.0892883688211441, -0.03016016259789467], [-0.043757252395153046, 0.0866016373038292, 0.05114896968007088], [0.008261019363999367, -0.10432878136634827, 0.011765841394662857], [0.07904206961393356, 0.47175130248069763, -0.03578978031873703], [-0.03649250045418739, 0.46912941336631775, 0.12359082698822021], [-0.006866941694170237, -0.23245087265968323, -0.010255368426442146], [0.06612563878297806, 0.8712811470031738, 0.015408243983983994], [0.01591375283896923, 0.849770188331604, 0.24386990070343018], [-0.03533630445599556, -0.2741704285144806, -0.03308244049549103], [-0.03598357364535332, 0.9351606369018555, -0.03976644575595856], [-0.10181793570518494, 0.9067351818084717, 0.22378836572170258], [-0.06228121742606163, -0.4814474880695343, -0.009485747665166855], [0.017137417569756508, -0.4046631157398224, -0.05189691483974457], [-0.10375349223613739, -0.37957248091697693, 0.03342704102396965], [-0.10494686663150787, -0.5236364603042603, -0.06688988208770752], [0.08309101313352585, -0.4566199481487274, -0.08751994371414185], [-0.18542087078094482, -0.39536282420158386, 0.08127714693546295], [0.24880094826221466, -0.6216436624526978, -0.20736610889434814], [-0.38738733530044556, -0.2691161334514618, 0.17376360297203064], [0.07496123760938644, -0.7249499559402466, -0.06297631561756134], [-0.5850018262863159, -0.16432705521583557, 0.049396928399801254], [0.03381643816828728, -0.7657909393310547, -0.003085050731897354], [-0.6582870483398438, -0.15446361899375916, 0.011334571987390518]]}, {"image_id": "109.jpg", "category_id": 1, "keypoints": [1083.6513671875, 470.5224304199219, 0.9817365407943726, 1100.49169921875, 501.62042236328125, 0.9865317940711975, 1065.7857666015625, 501.6269836425781, 0.9837194681167603, 1090.4271240234375, 433.0621337890625, 0.9941869974136353, 1053.4208984375, 631.2160034179688, 0.9736441969871521, 1087.748779296875, 633.799072265625, 0.9836589694023132, 1086.72900390625, 387.58575439453125, 0.976726770401001, 1010.3333129882812, 764.5478515625, 0.947053849697113, 1131.493896484375, 756.4959716796875, 0.9265991449356079, 1080.826171875, 373.2834167480469, 0.9811004400253296, 993.419921875, 787.2265625, 0.861965537071228, 1100.111572265625, 783.5128173828125, 0.9521920680999756, 1075.6737060546875, 300.98388671875, 0.9894242882728577, 1104.397705078125, 328.54693603515625, 0.9879810810089111, 1056.26123046875, 336.76373291015625, 0.9920457601547241, 1072.10546875, 276.86322021484375, 0.9480782151222229, 1127.9512939453125, 319.10546875, 0.975407063961029, 1026.2867431640625, 336.9267578125, 0.9876750111579895, 1132.6943359375, 384.15374755859375, 0.9772738218307495, 965.54541015625, 393.6751403808594, 0.9414539933204651, 1031.085205078125, 407.46685791015625, 0.961433470249176, 964.81396484375, 403.2536315917969, 0.9541081190109253, 1009.843505859375, 411.2880859375, 0.9234104156494141, 966.2958984375, 405.0873718261719, 0.8799952268600464, 1078.87158203125, 200.7789306640625, 0.9556352496147156, 987.7789306640625, 409.5902099609375, 0.9055309295654297, 976.2755737304688, 403.511962890625, 0.8748368620872498, 987.5011596679688, 784.4775390625, 0.9005253911018372, 1086.08544921875, 786.5419921875, 0.9535691738128662], "score": 3.0515847206115723, "box": [945.0595703125, 197.6957244873047, 210.5267333984375, 634.3645782470703], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04925229027867317, 0.0930662453174591, -0.04147005081176758], [-0.048722926527261734, 0.08675387501716614, 0.04925529658794403], [0.02007336914539337, -0.10370603203773499, 0.01859491690993309], [-0.08218611776828766, 0.4495992064476013, -0.08898241817951202], [0.01664487086236477, 0.4635804295539856, 0.12522467970848083], [0.008415079675614834, -0.23304250836372375, -0.006810860708355904], [-0.20606988668441772, 0.8346544504165649, -0.07510392367839813], [0.1511143296957016, 0.8324160575866699, 0.2227308452129364], [-0.010310064069926739, -0.2732190191745758, -0.04182026535272598], [-0.26805347204208374, 0.9091295003890991, -0.1667138636112213], [0.049913592636585236, 0.9192615747451782, 0.22036528587341309], [-0.02655414305627346, -0.4855266511440277, -0.04802374541759491], [0.053681615740060806, -0.399227112531662, -0.06977605819702148], [-0.08112841844558716, -0.3912465274333954, 0.0014336910098791122], [-0.03803329914808273, -0.5439873933792114, -0.10608261823654175], [0.12649768590927124, -0.4259261190891266, -0.1199905052781105], [-0.1737084835767746, -0.3926874101161957, 0.031147398054599762], [0.13626033067703247, -0.1921016275882721, -0.24261581897735596], [-0.3572423756122589, -0.21906524896621704, -0.016122326254844666], [-0.07385198771953583, -0.13921183347702026, -0.36738666892051697], [-0.35986384749412537, -0.1786915361881256, -0.27017492055892944], [-0.12928549945354462, -0.12683656811714172, -0.42954808473587036], [-0.35581499338150024, -0.16983583569526672, -0.35364168882369995]]}, {"image_id": "110.jpg", "category_id": 1, "keypoints": [1220.73974609375, 462.36358642578125, 0.9847337007522583, 1244.899169921875, 495.7558898925781, 0.9883239269256592, 1202.41015625, 499.312744140625, 0.986957848072052, 1226.0311279296875, 421.41229248046875, 0.9926233291625977, 1254.827880859375, 649.523681640625, 0.983478307723999, 1205.0255126953125, 648.5714111328125, 0.9854390621185303, 1218.7724609375, 369.291748046875, 0.9864038825035095, 1248.9654541015625, 796.597900390625, 0.8745566010475159, 1223.8214111328125, 784.153076171875, 0.9037750363349915, 1208.810302734375, 350.71490478515625, 0.9881855249404907, 1210.3909912109375, 825.3355712890625, 0.8657569885253906, 1176.6346435546875, 811.9938354492188, 0.9506259560585022, 1194.5382080078125, 268.7847595214844, 0.9878398180007935, 1228.138427734375, 296.31707763671875, 0.9865086674690247, 1178.0040283203125, 311.02587890625, 0.9935699701309204, 1180.0013427734375, 250.3068389892578, 0.9407761693000793, 1254.869384765625, 275.30035400390625, 0.9779307842254639, 1148.4444580078125, 307.57183837890625, 0.988203763961792, 1334.849609375, 191.17742919921875, 0.9461695551872253, 1074.518310546875, 352.15313720703125, 0.9472372531890869, 1277.0374755859375, 162.907958984375, 0.9702194929122925, 988.3460693359375, 397.6095886230469, 0.9683334827423096, 1263.4505615234375, 153.8936767578125, 0.9669778347015381, 962.0125122070312, 400.500244140625, 0.942613422870636, 1155.10107421875, 183.96749877929688, 0.9673064947128296, 1254.079345703125, 143.28756713867188, 0.9536974430084229, 927.8839111328125, 400.4878845214844, 0.9378229975700378, 1192.7750244140625, 826.1436157226562, 0.840870201587677, 1163.44140625, 814.3975830078125, 0.9635517001152039], "score": 3.179588794708252, "box": [939.645751953125, 158.0462188720703, 438.2393798828125, 676.1159515380859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05847949534654617, 0.0887850672006607, -0.03526317700743675], [-0.04357339069247246, 0.08815547078847885, 0.04889189824461937], [0.009820913895964622, -0.10368727147579193, 0.015602439641952515], [0.08282989263534546, 0.4718959331512451, -0.039699528366327286], [-0.03180568665266037, 0.4722630977630615, 0.1172906756401062], [-0.005935313180088997, -0.2324204295873642, -4.289858043193817e-05], [0.07125774025917053, 0.872961699962616, 0.009007427841424942], [0.029382437467575073, 0.8522059321403503, 0.2395399510860443], [-0.03638328239321709, -0.2736435532569885, -0.021040095016360283], [-0.031193017959594727, 0.9424725770950317, -0.03866593912243843], [-0.08473275601863861, 0.9175664782524109, 0.2232837677001953], [-0.06420218199491501, -0.48056119680404663, 0.005617966875433922], [0.01525914203375578, -0.40475648641586304, -0.03848321735858917], [-0.10475144535303116, -0.377882182598114, 0.04750469699501991], [-0.10529852658510208, -0.5227094888687134, -0.05288822203874588], [0.08215511590242386, -0.45702093839645386, -0.07174192368984222], [-0.18725591897964478, -0.3911513686180115, 0.09458129107952118], [0.2447337508201599, -0.6196908950805664, -0.20028553903102875], [-0.39292818307876587, -0.27049076557159424, 0.18825039267539978], [0.06735742837190628, -0.7284818887710571, -0.06345182657241821], [-0.5839217901229858, -0.1645432561635971, 0.0536324717104435], [0.024068471044301987, -0.7677963972091675, -0.003913305699825287], [-0.6550081968307495, -0.15495409071445465, 0.011306438595056534]]}, {"image_id": "110.jpg", "category_id": 1, "keypoints": [1082.6431884765625, 470.52459716796875, 0.9823389053344727, 1100.2088623046875, 501.2860107421875, 0.9866621494293213, 1065.1541748046875, 501.4197998046875, 0.9836245179176331, 1089.251220703125, 433.1639099121094, 0.9943566918373108, 1052.80908203125, 629.8953247070312, 0.9738990664482117, 1088.7659912109375, 633.2728271484375, 0.9838045835494995, 1086.19677734375, 387.95660400390625, 0.9783844947814941, 1012.5885009765625, 762.3805541992188, 0.9387984275817871, 1132.1004638671875, 757.2698974609375, 0.9285386800765991, 1080.7437744140625, 373.7740478515625, 0.983363151550293, 996.3218994140625, 786.2640380859375, 0.8697093725204468, 1100.5596923828125, 783.6851806640625, 0.9523060917854309, 1075.8387451171875, 301.6408386230469, 0.9888441562652588, 1104.080322265625, 328.8604431152344, 0.9877223372459412, 1055.9617919921875, 336.82745361328125, 0.991490364074707, 1072.72216796875, 278.2213134765625, 0.9474633932113647, 1127.098876953125, 318.99774169921875, 0.9786706566810608, 1025.69921875, 336.7245178222656, 0.9870352745056152, 1128.85498046875, 385.60357666015625, 0.9765926599502563, 965.50048828125, 393.9117431640625, 0.9444218873977661, 1032.304443359375, 407.195556640625, 0.9563553333282471, 964.3758544921875, 404.6079406738281, 0.953361988067627, 1009.4963989257812, 412.3772888183594, 0.9092653393745422, 964.5956420898438, 406.79742431640625, 0.8815509080886841, 1081.19287109375, 197.45022583007812, 0.9589475393295288, 989.37255859375, 411.87664794921875, 0.9115889072418213, 972.76318359375, 405.2781066894531, 0.8707729578018188, 990.8297729492188, 784.6368408203125, 0.903775155544281, 1088.0455322265625, 787.3363037109375, 0.9507476687431335], "score": 3.064936637878418, "box": [945.7713012695312, 196.73606872558594, 209.93255615234375, 638.7343902587891], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05092841014266014, 0.0927506536245346, -0.040021371096372604], [-0.048508476465940475, 0.08694018423557281, 0.04903705418109894], [0.0185617133975029, -0.10392293334007263, 0.01815580390393734], [-0.08224119246006012, 0.4481847286224365, -0.09381461888551712], [0.021614860743284225, 0.46372315287590027, 0.12279253453016281], [0.008614843711256981, -0.232547789812088, -0.010561184957623482], [-0.19943341612815857, 0.8357515335083008, -0.0816701129078865], [0.15399035811424255, 0.8340134620666504, 0.218999445438385], [-0.008813543245196342, -0.2723385989665985, -0.04652807116508484], [-0.25993746519088745, 0.9161814451217651, -0.1691705882549286], [0.05151459947228432, 0.9192483425140381, 0.2139250487089157], [-0.024660898372530937, -0.48399171233177185, -0.06201891601085663], [0.05568559095263481, -0.39687952399253845, -0.07876002788543701], [-0.08000119030475616, -0.3920435607433319, -0.009461706504225731], [-0.035021573305130005, -0.5404479503631592, -0.12220550328493118], [0.12727397680282593, -0.42511340975761414, -0.12968145310878754], [-0.17281153798103333, -0.3942209780216217, 0.019072866067290306], [0.12744493782520294, -0.18514299392700195, -0.24070334434509277], [-0.3559882640838623, -0.21835651993751526, -0.021929999813437462], [-0.07954221963882446, -0.13395962119102478, -0.37156426906585693], [-0.3597954213619232, -0.1745230257511139, -0.27560359239578247], [-0.13831627368927002, -0.1184331476688385, -0.4298168122768402], [-0.35928675532341003, -0.16466528177261353, -0.35905691981315613]]}, {"image_id": "111.jpg", "category_id": 1, "keypoints": [1218.694091796875, 459.2706298828125, 0.9833303093910217, 1243.2823486328125, 491.65386962890625, 0.989621639251709, 1200.7613525390625, 497.4893798828125, 0.9857519865036011, 1224.421875, 419.4913635253906, 0.9882493019104004, 1251.375732421875, 645.8888549804688, 0.9850869178771973, 1201.415771484375, 643.9581909179688, 0.9848745465278625, 1218.511962890625, 368.89117431640625, 0.9883818626403809, 1243.735107421875, 794.1336669921875, 0.8327007293701172, 1220.873779296875, 780.3699340820312, 0.9028044939041138, 1209.6561279296875, 350.12054443359375, 0.9909203052520752, 1201.2425537109375, 823.7307739257812, 0.8655025959014893, 1169.2515869140625, 802.39306640625, 0.9432974457740784, 1196.2012939453125, 267.89508056640625, 0.9839863777160645, 1228.5701904296875, 295.9783935546875, 0.984656810760498, 1179.3538818359375, 309.83685302734375, 0.9904336929321289, 1180.552734375, 250.11524963378906, 0.95832759141922, 1254.281494140625, 275.7243957519531, 0.9732553958892822, 1150.1708984375, 307.6488037109375, 0.9887537956237793, 1331.1502685546875, 195.35281372070312, 0.9373952150344849, 1076.9241943359375, 350.4867248535156, 0.9619267582893372, 1277.0750732421875, 163.9820556640625, 0.9633369445800781, 989.6666259765625, 397.8426818847656, 0.9598591327667236, 1261.999267578125, 151.04367065429688, 0.9727277159690857, 960.2665405273438, 401.2861022949219, 0.9342945218086243, 1162.34326171875, 176.74203491210938, 0.9647595286369324, 1247.3929443359375, 137.22567749023438, 0.9726428389549255, 929.3468627929688, 403.0782165527344, 0.9426321983337402, 1184.203369140625, 822.978271484375, 0.8129113912582397, 1153.3572998046875, 803.4559326171875, 0.9515546560287476], "score": 3.132617473602295, "box": [945.6829833984375, 135.46810913085938, 422.1220703125, 696.7721862792969], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05917638540267944, 0.08745718002319336, -0.03940756991505623], [-0.04368466138839722, 0.09090305119752884, 0.04529478773474693], [0.009787391871213913, -0.10399262607097626, 0.020530831068754196], [0.07858849316835403, 0.4704923629760742, -0.047591276466846466], [-0.03697480633854866, 0.4747477173805237, 0.11582094430923462], [-0.005679801106452942, -0.23436756432056427, 0.017598692327737808], [0.05684513971209526, 0.8746061325073242, -0.05807892233133316], [0.02544841542840004, 0.8553454279899597, 0.23795664310455322], [-0.029863130301237106, -0.28228193521499634, 0.0017751958221197128], [-0.049528393894433975, 0.9432362914085388, -0.09921020269393921], [-0.09697489440441132, 0.9066003561019897, 0.22853946685791016], [-0.05496659874916077, -0.4906838536262512, 0.031108226627111435], [0.02360117807984352, -0.4140681028366089, -0.015461139380931854], [-0.0968673825263977, -0.3874301314353943, 0.0728321373462677], [-0.10039360821247101, -0.5336307883262634, -0.023446645587682724], [0.09160807728767395, -0.46734005212783813, -0.04692568629980087], [-0.18120713531970978, -0.39711570739746094, 0.1192115843296051], [0.24450136721134186, -0.6290121674537659, -0.18891222774982452], [-0.39657479524612427, -0.2734834551811218, 0.18450592458248138], [0.08986544609069824, -0.7447711229324341, -0.03064442053437233], [-0.5814976096153259, -0.16779060661792755, 0.04058058187365532], [0.04845147579908371, -0.7910617589950562, 0.025776047259569168], [-0.6566454768180847, -0.1575414389371872, 0.005073383450508118]]}, {"image_id": "111.jpg", "category_id": 1, "keypoints": [1083.4039306640625, 469.61395263671875, 0.9828238487243652, 1100.599609375, 500.3035583496094, 0.9854374527931213, 1065.808349609375, 500.892578125, 0.9831370711326599, 1090.44140625, 432.51837158203125, 0.993996262550354, 1054.20166015625, 628.4832763671875, 0.9755248427391052, 1089.720458984375, 632.9518432617188, 0.9841461777687073, 1086.90869140625, 387.5537109375, 0.9772779941558838, 1013.6055297851562, 762.2625122070312, 0.9360748529434204, 1131.5084228515625, 757.260009765625, 0.9305379390716553, 1080.883056640625, 373.412109375, 0.9816954135894775, 997.0423583984375, 784.4011840820312, 0.8743909597396851, 1100.8973388671875, 783.439453125, 0.9473092555999756, 1075.864013671875, 300.7279357910156, 0.9891647696495056, 1103.927734375, 328.62872314453125, 0.9873730540275574, 1056.566650390625, 336.44586181640625, 0.9922518134117126, 1072.619873046875, 277.272705078125, 0.9502373337745667, 1126.3875732421875, 319.8401184082031, 0.9722543358802795, 1026.2381591796875, 337.297119140625, 0.987946629524231, 1121.160888671875, 386.23211669921875, 0.9748625159263611, 963.9390869140625, 392.982421875, 0.9415494203567505, 1022.2152099609375, 410.94378662109375, 0.958906352519989, 964.8089599609375, 405.6948547363281, 0.954251766204834, 1001.8550415039062, 414.6236572265625, 0.934921383857727, 965.7787475585938, 408.7231140136719, 0.8882455229759216, 1079.6141357421875, 196.60003662109375, 0.9586491584777832, 981.2973022460938, 413.5702819824219, 0.880362868309021, 975.1791381835938, 408.57110595703125, 0.886803925037384, 992.012939453125, 780.2208251953125, 0.9109641909599304, 1089.0380859375, 787.1611328125, 0.9408374428749084], "score": 3.0558667182922363, "box": [945.6178588867188, 193.97213745117188, 211.46331787109375, 643.3106994628906], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049823418259620667, 0.09256062656641006, -0.0423593632876873], [-0.048844292759895325, 0.08750689029693604, 0.048181284219026566], [0.019722238183021545, -0.10364510118961334, 0.019828755408525467], [-0.08130070567131042, 0.44827091693878174, -0.10123179852962494], [0.022056572139263153, 0.4654833674430847, 0.11664114892482758], [0.008409884758293629, -0.23239721357822418, -0.0072405580431222916], [-0.19966624677181244, 0.83576500415802, -0.12142524123191833], [0.15068025887012482, 0.8399633169174194, 0.2039533108472824], [-0.010681630112230778, -0.27214670181274414, -0.04251541942358017], [-0.2644243538379669, 0.9142298698425293, -0.20790742337703705], [0.04890052601695061, 0.926130473613739, 0.19637666642665863], [-0.025940436869859695, -0.48440617322921753, -0.0553775317966938], [0.05305942893028259, -0.3968666195869446, -0.07703803479671478], [-0.07935020327568054, -0.3922152519226074, -0.0007938500493764877], [-0.0366244874894619, -0.5411807894706726, -0.11508676409721375], [0.12204629182815552, -0.42106741666793823, -0.13364075124263763], [-0.17164887487888336, -0.3915959596633911, 0.03003738448023796], [0.0978391021490097, -0.1893811970949173, -0.25939664244651794], [-0.35881125926971436, -0.22199364006519318, -0.020526155829429626], [-0.11500978469848633, -0.13192395865917206, -0.3783295154571533], [-0.356559157371521, -0.17260132730007172, -0.27351993322372437], [-0.1737409234046936, -0.11909075081348419, -0.43746915459632874], [-0.35391172766685486, -0.1603771597146988, -0.35676783323287964]]}, {"image_id": "112.jpg", "category_id": 1, "keypoints": [1215.8524169921875, 460.39202880859375, 0.9827386736869812, 1240.9432373046875, 493.0694580078125, 0.9882100820541382, 1198.6412353515625, 498.38543701171875, 0.9857169985771179, 1221.1561279296875, 419.952880859375, 0.9888726472854614, 1251.4234619140625, 646.8853759765625, 0.9827364087104797, 1198.65283203125, 645.28515625, 0.9821749329566956, 1214.5025634765625, 368.4922180175781, 0.9890664219856262, 1248.759765625, 795.104736328125, 0.8436278700828552, 1218.3099365234375, 780.2520751953125, 0.8868796825408936, 1205.6300048828125, 349.4425354003906, 0.988949179649353, 1206.1639404296875, 825.662353515625, 0.868960440158844, 1168.048583984375, 805.2183837890625, 0.9466581344604492, 1193.370849609375, 267.5347900390625, 0.9863642454147339, 1224.8095703125, 295.70501708984375, 0.9840226769447327, 1176.288330078125, 309.00299072265625, 0.990664541721344, 1177.8314208984375, 249.0169677734375, 0.9551237225532532, 1249.2626953125, 275.72149658203125, 0.9672305583953857, 1147.5770263671875, 305.583984375, 0.9879194498062134, 1327.1109619140625, 194.46783447265625, 0.9385858178138733, 1077.4810791015625, 348.7238464355469, 0.9537283182144165, 1273.5098876953125, 161.44168090820312, 0.9652289748191833, 991.0904541015625, 397.6913757324219, 0.9585744142532349, 1259.866943359375, 145.8704833984375, 0.970221221446991, 962.2105712890625, 402.12322998046875, 0.9383732080459595, 1155.4222412109375, 177.99334716796875, 0.9651222825050354, 1245.49951171875, 125.468505859375, 0.9679593443870544, 931.9999389648438, 404.43731689453125, 0.9509539604187012, 1185.9705810546875, 827.2103271484375, 0.8465496897697449, 1150.2874755859375, 807.176513671875, 0.9589945077896118], "score": 3.1058504581451416, "box": [951.1127319335938, 135.3704376220703, 416.19696044921875, 696.6173553466797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.059695594012737274, 0.08718855679035187, -0.03812909498810768], [-0.0415356419980526, 0.09020668268203735, 0.04769545793533325], [0.00845571793615818, -0.10419143736362457, 0.018026089295744896], [0.08531838655471802, 0.4690302610397339, -0.04284348338842392], [-0.03619176521897316, 0.47209781408309937, 0.12343442440032959], [-0.008787395432591438, -0.23433800041675568, 0.012914402410387993], [0.07984505593776703, 0.8718855381011963, -0.022363848984241486], [0.027034703642129898, 0.8506658673286438, 0.2466631978750229], [-0.0326632596552372, -0.28227490186691284, -0.0028422754257917404], [-0.024738285690546036, 0.9409512877464294, -0.0662253350019455], [-0.0919346809387207, 0.9089221358299255, 0.23891665041446686], [-0.054973434656858444, -0.49075424671173096, 0.02467223070561886], [0.02221258357167244, -0.41279155015945435, -0.021420633420348167], [-0.09776245802640915, -0.3885485529899597, 0.0674068033695221], [-0.0996100902557373, -0.5351709723472595, -0.029540734365582466], [0.08873561769723892, -0.4668871760368347, -0.05409757047891617], [-0.18102724850177765, -0.40200966596603394, 0.11438383162021637], [0.24514034390449524, -0.6316026449203491, -0.18688328564167023], [-0.3879096806049347, -0.2776561379432678, 0.19930855929851532], [0.07391917705535889, -0.7586867809295654, -0.05845440924167633], [-0.571834146976471, -0.16823981702327728, 0.058404773473739624], [0.037404485046863556, -0.8118895292282104, -0.005205826833844185], [-0.6460272073745728, -0.1553976982831955, 0.02238914929330349]]}, {"image_id": "112.jpg", "category_id": 1, "keypoints": [1082.8580322265625, 469.3406982421875, 0.9823194742202759, 1099.9246826171875, 499.12103271484375, 0.9843556880950928, 1065.44775390625, 500.47607421875, 0.9824625849723816, 1089.81884765625, 432.67718505859375, 0.9941707849502563, 1054.7088623046875, 625.9578857421875, 0.9765594005584717, 1091.6134033203125, 630.8426513671875, 0.9849843382835388, 1086.8306884765625, 387.93121337890625, 0.9765720963478088, 1015.64306640625, 757.4168090820312, 0.9237480163574219, 1130.8525390625, 757.2510986328125, 0.9300000071525574, 1080.63330078125, 373.61676025390625, 0.9810200333595276, 997.5468139648438, 779.230224609375, 0.8889700770378113, 1099.9017333984375, 782.6220703125, 0.9433608651161194, 1075.2174072265625, 301.6476135253906, 0.9889276623725891, 1103.2149658203125, 328.6197814941406, 0.9875885248184204, 1056.810791015625, 337.55535888671875, 0.9929961562156677, 1071.1007080078125, 278.0919189453125, 0.9521670937538147, 1124.996826171875, 319.77740478515625, 0.9718605875968933, 1026.6629638671875, 339.60003662109375, 0.9889426231384277, 1117.3612060546875, 385.1992492675781, 0.9714755415916443, 967.23095703125, 395.71197509765625, 0.9448047280311584, 1020.7330932617188, 408.753173828125, 0.9567145109176636, 965.9403076171875, 406.33624267578125, 0.9553800225257874, 999.5180053710938, 412.91595458984375, 0.928071141242981, 965.5230102539062, 408.346923828125, 0.8844801783561707, 1077.0467529296875, 199.37255859375, 0.9578931331634521, 978.2313842773438, 412.3177795410156, 0.8886502981185913, 971.5770263671875, 406.8022766113281, 0.8734006881713867, 991.3773193359375, 776.1129150390625, 0.9056295156478882, 1089.311767578125, 786.341064453125, 0.9335508942604065], "score": 3.0793373584747314, "box": [945.0054931640625, 193.11192321777344, 211.39990234375, 645.5355377197266], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049521323293447495, 0.09162446111440659, -0.04418296366930008], [-0.048212505877017975, 0.08824435621500015, 0.046986762434244156], [0.019678153097629547, -0.10319606959819794, 0.021381933242082596], [-0.07965520769357681, 0.4473903775215149, -0.10328839719295502], [0.029700741171836853, 0.4653390645980835, 0.10890519618988037], [0.01000955794006586, -0.23299919068813324, -0.0016381219029426575], [-0.19532054662704468, 0.8351280689239502, -0.11483955383300781], [0.14952664077281952, 0.8424462080001831, 0.1932177096605301], [-0.009755617938935757, -0.27393001317977905, -0.035082340240478516], [-0.26422318816185, 0.9104386568069458, -0.2006509006023407], [0.046112120151519775, 0.9260216951370239, 0.18267329037189484], [-0.0259360671043396, -0.486126184463501, -0.042850714176893234], [0.05268992483615875, -0.39940208196640015, -0.06827554851770401], [-0.07765708863735199, -0.3926135301589966, 0.010887861251831055], [-0.03894514590501785, -0.5439520478248596, -0.10118687152862549], [0.12035639584064484, -0.4240584969520569, -0.1261322796344757], [-0.16919340193271637, -0.38842880725860596, 0.04344839230179787], [0.08815722912549973, -0.19932369887828827, -0.2612057030200958], [-0.348469614982605, -0.21631045639514923, -0.02208581194281578], [-0.12466556578874588, -0.14306826889514923, -0.3797214925289154], [-0.3528895974159241, -0.1731070727109909, -0.27565664052963257], [-0.18218804895877838, -0.12951083481311798, -0.439694881439209], [-0.3542669117450714, -0.16368798911571503, -0.3591507077217102]]}, {"image_id": "113.jpg", "category_id": 1, "keypoints": [1219.4404296875, 459.30731201171875, 0.9832502603530884, 1244.889404296875, 492.24090576171875, 0.9898536801338196, 1201.4556884765625, 498.75360107421875, 0.9851498007774353, 1224.5704345703125, 419.7548828125, 0.9884116649627686, 1253.683349609375, 646.25537109375, 0.9853125214576721, 1201.2237548828125, 646.8500366210938, 0.9816972017288208, 1217.77490234375, 368.7463073730469, 0.9880872368812561, 1245.3468017578125, 792.389892578125, 0.8401957154273987, 1222.01953125, 783.541259765625, 0.9024778604507446, 1208.703369140625, 349.982666015625, 0.9918192625045776, 1202.5303955078125, 821.552978515625, 0.862238883972168, 1171.5244140625, 808.382080078125, 0.9432182312011719, 1193.213623046875, 266.61370849609375, 0.9847316741943359, 1226.304931640625, 294.1087646484375, 0.9841042160987854, 1176.8865966796875, 309.7022705078125, 0.9904620051383972, 1178.00439453125, 248.41281127929688, 0.9566786885261536, 1250.0052490234375, 273.1916198730469, 0.9680505394935608, 1147.012939453125, 308.0235595703125, 0.9884714484214783, 1326.589111328125, 189.74746704101562, 0.9332791566848755, 1075.807861328125, 353.2423095703125, 0.9644019603729248, 1271.019775390625, 160.21173095703125, 0.9623213410377502, 988.5162353515625, 399.0750427246094, 0.9645013213157654, 1256.3101806640625, 148.24655151367188, 0.9736461043357849, 958.1463012695312, 402.4169616699219, 0.9353041648864746, 1158.4970703125, 175.7493896484375, 0.9648160934448242, 1244.4542236328125, 139.01419067382812, 0.9629082679748535, 925.4951171875, 405.85284423828125, 0.9525241851806641, 1186.4141845703125, 822.3163452148438, 0.823807954788208, 1159.4188232421875, 810.0330200195312, 0.9542012810707092], "score": 3.142892599105835, "box": [949.0379638671875, 131.82363891601562, 412.3865966796875, 701.9425964355469], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05979345366358757, 0.08555512875318527, -0.04252609610557556], [-0.043640393763780594, 0.09279347956180573, 0.041335295885801315], [0.009223921224474907, -0.10305966436862946, 0.024719074368476868], [0.07990384846925735, 0.4682949185371399, -0.06330089271068573], [-0.03991657495498657, 0.4784184694290161, 0.102786585688591], [-0.007932337000966072, -0.23302523791790009, 0.02665042132139206], [0.05194535478949547, 0.8680722713470459, -0.12221567332744598], [0.025873316451907158, 0.8601199388504028, 0.220384880900383], [-0.03253339231014252, -0.2806655168533325, 0.010862771421670914], [-0.05227229371666908, 0.9322301149368286, -0.17459158599376678], [-0.09299568086862564, 0.916403591632843, 0.20019935071468353], [-0.06381570547819138, -0.48774564266204834, 0.04323107376694679], [0.017182482406497, -0.4141826629638672, -0.003995709121227264], [-0.10295390337705612, -0.3827292323112488, 0.08309036493301392], [-0.10793816298246384, -0.5317281484603882, -0.011475827544927597], [0.0811154767870903, -0.4704989194869995, -0.038459472358226776], [-0.18943727016448975, -0.3905984163284302, 0.12562625110149384], [0.23603859543800354, -0.6411488056182861, -0.16731061041355133], [-0.4001741111278534, -0.2589203119277954, 0.19073928892612457], [0.07500530034303665, -0.7515205144882202, -0.011500809341669083], [-0.5880265235900879, -0.15508277714252472, 0.04910917207598686], [0.037318918853998184, -0.7936270236968994, 0.05052395537495613], [-0.6654550433158875, -0.1453404575586319, 0.018715716898441315]]}, {"image_id": "113.jpg", "category_id": 1, "keypoints": [1081.0989990234375, 469.1011962890625, 0.9825083613395691, 1098.580322265625, 499.2744445800781, 0.9841678738594055, 1063.78955078125, 499.947509765625, 0.9836081266403198, 1087.6669921875, 432.13287353515625, 0.9937580227851868, 1055.4364013671875, 627.5759887695312, 0.9752665162086487, 1089.5802001953125, 630.80419921875, 0.9848268032073975, 1085.3350830078125, 387.2773132324219, 0.9778793454170227, 1014.3724975585938, 761.1608276367188, 0.9344696402549744, 1133.6956787109375, 756.2598876953125, 0.9340219497680664, 1079.5439453125, 373.1620788574219, 0.9829124212265015, 998.2967529296875, 784.860595703125, 0.8715516328811646, 1100.8756103515625, 782.5, 0.9497498869895935, 1075.33984375, 300.944580078125, 0.9894936084747314, 1103.03466796875, 328.38543701171875, 0.9872750043869019, 1055.4473876953125, 336.5406494140625, 0.9917933344841003, 1072.3944091796875, 277.7861328125, 0.9489883184432983, 1125.459716796875, 318.86370849609375, 0.9784913659095764, 1025.0050048828125, 337.8836975097656, 0.9874458909034729, 1126.1280517578125, 383.7576904296875, 0.9745059609413147, 964.4122314453125, 395.5851135253906, 0.9430710077285767, 1029.8194580078125, 409.092041015625, 0.9548341035842896, 964.0238037109375, 407.4542541503906, 0.9577570557594299, 1009.8974609375, 413.03240966796875, 0.9048267006874084, 964.7158203125, 409.8609619140625, 0.8900747299194336, 1086.2440185546875, 192.8939208984375, 0.9621206521987915, 991.0864868164062, 413.2452392578125, 0.9160306453704834, 973.6395263671875, 407.8302001953125, 0.8776999711990356, 992.0743408203125, 783.242431640625, 0.8957433700561523, 1089.0172119140625, 786.2901611328125, 0.9457132816314697], "score": 3.1140434741973877, "box": [945.2984008789062, 195.97984313964844, 210.04217529296875, 639.6336822509766], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05057521536946297, 0.09213718771934509, -0.041852690279483795], [-0.047839440405368805, 0.08766254782676697, 0.04841575399041176], [0.018668215721845627, -0.10374060273170471, 0.019368518143892288], [-0.07227849215269089, 0.45086222887039185, -0.09750191867351532], [0.02879522554576397, 0.4640792906284332, 0.1168241947889328], [0.01078134123235941, -0.23283550143241882, -0.00818096473813057], [-0.19154609739780426, 0.8377646207809448, -0.10603033006191254], [0.16207729279994965, 0.8348959684371948, 0.20917966961860657], [-0.007684563286602497, -0.2726399004459381, -0.043650880455970764], [-0.25107496976852417, 0.9169085025787354, -0.1953464150428772], [0.05764215812087059, 0.9171534776687622, 0.19827517867088318], [-0.02171848528087139, -0.48456284403800964, -0.057098496705293655], [0.057098742574453354, -0.3967271149158478, -0.07713040709495544], [-0.07633384317159653, -0.3928193151950836, -0.0033893659710884094], [-0.03169054538011551, -0.5407789945602417, -0.11757327616214752], [0.1268032044172287, -0.4237065017223358, -0.13130801916122437], [-0.16842959821224213, -0.3907281458377838, 0.02752089500427246], [0.12319620698690414, -0.1847802698612213, -0.24428598582744598], [-0.3504953682422638, -0.2152555286884308, -0.01915835216641426], [-0.08431462198495865, -0.12563484907150269, -0.3708069920539856], [-0.35199999809265137, -0.1685064733028412, -0.2722664475440979], [-0.14091871678829193, -0.11215722560882568, -0.4316699504852295], [-0.35010144114494324, -0.15799221396446228, -0.3556203842163086]]}, {"image_id": "114.jpg", "category_id": 1, "keypoints": [1217.3040771484375, 458.3718566894531, 0.9830201864242554, 1242.6033935546875, 491.4211120605469, 0.9899900555610657, 1200.14794921875, 497.2300109863281, 0.9851152896881104, 1222.101318359375, 417.9809875488281, 0.9889894127845764, 1251.69189453125, 647.5401611328125, 0.9852774143218994, 1198.1998291015625, 644.9888916015625, 0.9842566251754761, 1214.126953125, 367.0782165527344, 0.9889907240867615, 1246.5228271484375, 795.8345947265625, 0.8327444195747375, 1219.2498779296875, 780.4852294921875, 0.9049030542373657, 1205.4478759765625, 348.0473937988281, 0.9905780553817749, 1201.8057861328125, 825.861083984375, 0.8607535362243652, 1166.0968017578125, 802.6884765625, 0.9402052164077759, 1191.173095703125, 266.1484375, 0.9844581484794617, 1223.707275390625, 293.9297180175781, 0.9846566915512085, 1174.2987060546875, 308.40997314453125, 0.9894598722457886, 1176.6737060546875, 247.4657745361328, 0.9563146233558655, 1247.9273681640625, 273.5005187988281, 0.9692619442939758, 1145.043701171875, 306.1567687988281, 0.9872964024543762, 1321.9686279296875, 188.68325805664062, 0.9452357888221741, 1074.955078125, 354.28826904296875, 0.9667928814888, 1263.161865234375, 155.94940185546875, 0.9653283953666687, 991.1251831054688, 399.7037658691406, 0.9552372694015503, 1247.6085205078125, 141.879150390625, 0.975746214389801, 960.828125, 403.2658996582031, 0.9378207921981812, 1154.4813232421875, 177.54766845703125, 0.9621120691299438, 1235.55908203125, 125.79180908203125, 0.9648298025131226, 930.7000732421875, 407.8104248046875, 0.9598532915115356, 1183.3385009765625, 826.81787109375, 0.8379541635513306, 1150.46826171875, 804.81201171875, 0.9500502347946167], "score": 3.160365104675293, "box": [951.0291748046875, 130.29017639160156, 407.8377685546875, 705.0550384521484], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.060558296740055084, 0.08640670031309128, -0.039283908903598785], [-0.04186730459332466, 0.09139861911535263, 0.04571180045604706], [0.007917473092675209, -0.1039697676897049, 0.020036816596984863], [0.08283533900976181, 0.4696606397628784, -0.039692167192697525], [-0.041490595787763596, 0.4740709662437439, 0.12362480163574219], [-0.012391697615385056, -0.2333391159772873, 0.019520476460456848], [0.07118391990661621, 0.8734784126281738, -0.011444907635450363], [0.02547677792608738, 0.8523618578910828, 0.2508140802383423], [-0.035838641226291656, -0.28135013580322266, 0.0034797806292772293], [-0.0358748584985733, 0.9397755861282349, -0.05438220128417015], [-0.09721055626869202, 0.9025579690933228, 0.24041926860809326], [-0.06390173733234406, -0.48881667852401733, 0.034569673240184784], [0.016033129766583443, -0.4137681722640991, -0.011719679459929466], [-0.10484025627374649, -0.38478100299835205, 0.07469500601291656], [-0.10659047216176987, -0.5348278880119324, -0.019586220383644104], [0.08154821395874023, -0.46880072355270386, -0.04489387571811676], [-0.18934749066829681, -0.39457958936691284, 0.12034961581230164], [0.23230312764644623, -0.643845796585083, -0.17264005541801453], [-0.3936469852924347, -0.2565065026283264, 0.1920616626739502], [0.06010204553604126, -0.7617088556289673, -0.035565704107284546], [-0.5789220929145813, -0.15098287165164948, 0.048432156443595886], [0.0202129315584898, -0.8086632490158081, 0.02127554640173912], [-0.655758261680603, -0.140699103474617, 0.01694691926240921]]}, {"image_id": "114.jpg", "category_id": 1, "keypoints": [1081.7333984375, 470.5130310058594, 0.9831907749176025, 1098.9678955078125, 501.21826171875, 0.9829798340797424, 1064.9427490234375, 501.553955078125, 0.9848012328147888, 1088.4306640625, 433.0140686035156, 0.9940387606620789, 1053.623046875, 629.15869140625, 0.9740685224533081, 1090.147216796875, 631.7135620117188, 0.984562873840332, 1084.9027099609375, 387.88323974609375, 0.9786306023597717, 1010.7514038085938, 761.620361328125, 0.9423543214797974, 1133.89501953125, 756.0653076171875, 0.9302774667739868, 1078.654541015625, 373.6956787109375, 0.9832334518432617, 993.2706909179688, 786.04833984375, 0.8402237296104431, 1100.8426513671875, 783.62646484375, 0.948043704032898, 1074.579833984375, 301.5736389160156, 0.9890084266662598, 1101.8828125, 329.1369323730469, 0.9873195290565491, 1055.51513671875, 336.83544921875, 0.991912841796875, 1070.984130859375, 278.5045471191406, 0.9480506777763367, 1123.28466796875, 319.4456787109375, 0.9778074622154236, 1025.375244140625, 337.8726501464844, 0.9875158071517944, 1115.4139404296875, 387.6997375488281, 0.9761871099472046, 966.664794921875, 396.34210205078125, 0.9345174431800842, 1017.6602783203125, 413.999755859375, 0.9542941451072693, 964.781005859375, 408.1930847167969, 0.9572384357452393, 999.1951904296875, 417.8097839355469, 0.9404740929603577, 964.6458740234375, 411.6551208496094, 0.8939552903175354, 1078.791748046875, 197.037109375, 0.9570103883743286, 981.032958984375, 417.72418212890625, 0.8919309377670288, 972.6708984375, 411.4322509765625, 0.8897355794906616, 987.8543701171875, 786.034912109375, 0.8766940832138062, 1088.4647216796875, 787.6746826171875, 0.9501203298568726], "score": 3.1128718852996826, "box": [945.6279907226562, 197.78372192382812, 210.78594970703125, 634.1127624511719], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04938236624002457, 0.09274568408727646, -0.042369112372398376], [-0.04552903771400452, 0.08714868128299713, 0.051839157938957214], [0.01902198977768421, -0.10437923669815063, 0.016945471987128258], [-0.07937929779291153, 0.45096567273139954, -0.08689527958631516], [0.02989937923848629, 0.46250736713409424, 0.12741099298000336], [0.0077774422243237495, -0.23383015394210815, -0.008521026000380516], [-0.20335927605628967, 0.8362628221511841, -0.068627268075943], [0.1630583256483078, 0.8322149515151978, 0.22525131702423096], [-0.012039431370794773, -0.2739625871181488, -0.0430944487452507], [-0.26389652490615845, 0.9122067093849182, -0.1601995825767517], [0.06029150262475014, 0.9173521399497986, 0.22048230469226837], [-0.02416335977613926, -0.48659300804138184, -0.052020490169525146], [0.0525907501578331, -0.3981436491012573, -0.07776446640491486], [-0.07723360508680344, -0.39436274766921997, 0.002887347713112831], [-0.0359010212123394, -0.5430452227592468, -0.11198335886001587], [0.11868605762720108, -0.42529237270355225, -0.1364886462688446], [-0.16883611679077148, -0.39334017038345337, 0.035879671573638916], [0.08638788014650345, -0.19051826000213623, -0.25384438037872314], [-0.3462570011615753, -0.2143542468547821, -0.01596752367913723], [-0.12830139696598053, -0.12872838973999023, -0.36675208806991577], [-0.35243773460388184, -0.1671552062034607, -0.26907822489738464], [-0.18418481945991516, -0.11492681503295898, -0.4283684492111206], [-0.35295629501342773, -0.15362396836280823, -0.3521389067173004]]}, {"image_id": "115.jpg", "category_id": 1, "keypoints": [1215.2940673828125, 456.6611633300781, 0.9829730987548828, 1240.973876953125, 488.2073974609375, 0.9903874397277832, 1197.887939453125, 495.2789306640625, 0.9844479560852051, 1219.7449951171875, 416.1783447265625, 0.9902231097221375, 1251.2451171875, 642.69482421875, 0.9839916229248047, 1197.119873046875, 642.8695068359375, 0.9849962592124939, 1212.5269775390625, 365.34857177734375, 0.9888918399810791, 1247.1275634765625, 791.027587890625, 0.8523125052452087, 1218.501708984375, 777.601318359375, 0.9085617065429688, 1203.7598876953125, 346.61895751953125, 0.9892390966415405, 1203.9818115234375, 820.7451171875, 0.8660801649093628, 1166.21826171875, 800.076904296875, 0.9390876293182373, 1188.8145751953125, 264.7685546875, 0.9864137172698975, 1222.18408203125, 292.2862548828125, 0.9846334457397461, 1172.4163818359375, 306.87457275390625, 0.9917101860046387, 1174.5950927734375, 245.95291137695312, 0.9496876001358032, 1246.9483642578125, 272.116943359375, 0.9720546007156372, 1142.3892822265625, 304.5133056640625, 0.9874485731124878, 1318.7271728515625, 190.1026611328125, 0.951391339302063, 1072.71728515625, 353.1351318359375, 0.9582086801528931, 1261.2958984375, 156.72744750976562, 0.9738702178001404, 991.9949951171875, 402.2190246582031, 0.9620235562324524, 1246.755126953125, 143.08441162109375, 0.9746808409690857, 962.2372436523438, 406.70867919921875, 0.9380108714103699, 1148.799560546875, 176.144775390625, 0.9607042074203491, 1233.433349609375, 125.870361328125, 0.9681718945503235, 930.0010986328125, 407.9867858886719, 0.9479983448982239, 1183.97607421875, 821.5820922851562, 0.8411993980407715, 1147.261962890625, 801.3377075195312, 0.951018750667572], "score": 3.126427173614502, "box": [958.3499755859375, 137.2820587158203, 398.528076171875, 691.4219818115234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06275274604558945, 0.08628388494253159, -0.0360490046441555], [-0.04195230081677437, 0.09115370362997055, 0.04617900401353836], [0.006007715128362179, -0.10438385605812073, 0.018366144970059395], [0.08677715063095093, 0.46937206387519836, -0.05320754647254944], [-0.039581820368766785, 0.47700759768486023, 0.10838226974010468], [-0.013223778456449509, -0.23336994647979736, 0.007225589826703072], [0.07539402693510056, 0.8745577335357666, -0.05476534366607666], [0.02884199284017086, 0.8538852334022522, 0.24008715152740479], [-0.03690621629357338, -0.2797453701496124, -0.01271829754114151], [-0.027876494452357292, 0.9384456872940063, -0.10924168676137924], [-0.09313656389713287, 0.9047738313674927, 0.22510629892349243], [-0.06660527735948563, -0.4881961941719055, 0.008490139618515968], [0.014531360939145088, -0.4116438627243042, -0.03291104733943939], [-0.10769319534301758, -0.38585007190704346, 0.05251237004995346], [-0.10638447850942612, -0.5307368636131287, -0.05048063397407532], [0.08043403178453445, -0.46496284008026123, -0.06798513233661652], [-0.1932375580072403, -0.39580076932907104, 0.09607694298028946], [0.22660242021083832, -0.6344683766365051, -0.20835423469543457], [-0.39379778504371643, -0.258513867855072, 0.1796206533908844], [0.048471931368112564, -0.7584596276283264, -0.08456312865018845], [-0.5737581849098206, -0.14404407143592834, 0.03571717441082001], [0.0077369906939566135, -0.807435154914856, -0.03003782220184803], [-0.6483908295631409, -0.13137757778167725, 9.933486580848694e-06]]}, {"image_id": "115.jpg", "category_id": 1, "keypoints": [1081.8787841796875, 470.01129150390625, 0.9829358458518982, 1098.702880859375, 500.91448974609375, 0.9825637936592102, 1065.4822998046875, 501.0043640136719, 0.9842789173126221, 1088.6517333984375, 432.5611572265625, 0.9941302537918091, 1053.74169921875, 629.83935546875, 0.9735745787620544, 1092.4058837890625, 631.5266723632812, 0.9844993352890015, 1085.4656982421875, 387.4141540527344, 0.977576732635498, 1010.3187255859375, 762.0542602539062, 0.9432826042175293, 1134.67529296875, 757.4264526367188, 0.932934045791626, 1079.240966796875, 373.0503845214844, 0.9826908111572266, 993.0049438476562, 785.6802978515625, 0.8480398654937744, 1100.970947265625, 783.8987426757812, 0.9501523375511169, 1075.369384765625, 300.93316650390625, 0.989342987537384, 1102.5614013671875, 328.40557861328125, 0.9875511527061462, 1055.9908447265625, 336.4767761230469, 0.9924736022949219, 1071.4788818359375, 277.59234619140625, 0.9489870667457581, 1124.3492431640625, 319.12921142578125, 0.9769282937049866, 1025.853271484375, 337.88592529296875, 0.9873892664909363, 1121.181396484375, 387.9907531738281, 0.9756290316581726, 966.9092407226562, 396.2186279296875, 0.9390918016433716, 1025.0255126953125, 411.72064208984375, 0.9548708200454712, 964.0453491210938, 408.61663818359375, 0.9599983096122742, 1006.5748901367188, 414.873291015625, 0.9226506948471069, 964.2424926757812, 411.6766662597656, 0.8932995796203613, 1079.544189453125, 195.22811889648438, 0.9578361511230469, 986.82958984375, 415.07940673828125, 0.9045120477676392, 972.4056396484375, 410.37347412109375, 0.8963335752487183, 987.8251342773438, 785.2803955078125, 0.8854922652244568, 1087.40478515625, 787.175048828125, 0.9480151534080505], "score": 3.1159331798553467, "box": [944.9290161132812, 196.6030731201172, 211.13226318359375, 635.9045562744141], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0485105961561203, 0.09253717213869095, -0.043501727283000946], [-0.04504965990781784, 0.08726473152637482, 0.05179697647690773], [0.019492749124765396, -0.10409191250801086, 0.01732485368847847], [-0.07837922871112823, 0.4517620801925659, -0.08356784284114838], [0.03491290658712387, 0.46185052394866943, 0.12549419701099396], [0.009304255247116089, -0.2340889275074005, -0.005800085142254829], [-0.20408453047275543, 0.8362942934036255, -0.06881967186927795], [0.16314579546451569, 0.8351017236709595, 0.21460269391536713], [-0.01048262044787407, -0.2749594449996948, -0.03942945599555969], [-0.265468955039978, 0.911491870880127, -0.160307839512825], [0.058048270642757416, 0.9172259569168091, 0.210907444357872], [-0.02260199934244156, -0.48746296763420105, -0.046181872487068176], [0.05422193929553032, -0.3993530571460724, -0.07239647209644318], [-0.07583753019571304, -0.39471325278282166, 0.007431911304593086], [-0.03514627367258072, -0.5451213121414185, -0.10486552119255066], [0.12192308157682419, -0.4253954589366913, -0.12963978946208954], [-0.16659477353096008, -0.3927101790904999, 0.0423847921192646], [0.10530705004930496, -0.18783500790596008, -0.24416734278202057], [-0.3452911078929901, -0.2138212025165558, -0.004021894186735153], [-0.1071176752448082, -0.1311018466949463, -0.36340394616127014], [-0.35427895188331604, -0.1656494140625, -0.2566622793674469], [-0.1621604859828949, -0.11933138966560364, -0.42608359456062317], [-0.35382193326950073, -0.15335386991500854, -0.33982813358306885]]}, {"image_id": "116.jpg", "category_id": 1, "keypoints": [1211.467041015625, 459.5097351074219, 0.982774555683136, 1237.9698486328125, 491.3616027832031, 0.9891144037246704, 1193.873291015625, 498.38006591796875, 0.9856300950050354, 1215.501220703125, 419.12908935546875, 0.9900042414665222, 1256.2449951171875, 646.492431640625, 0.9826736450195312, 1194.6259765625, 645.0508422851562, 0.98475182056427, 1207.1412353515625, 367.705322265625, 0.9886970520019531, 1250.8985595703125, 789.4763793945312, 0.8639929294586182, 1219.48974609375, 780.5884399414062, 0.9082953333854675, 1198.763427734375, 349.1220703125, 0.9912974238395691, 1209.74462890625, 816.42333984375, 0.8534456491470337, 1171.2078857421875, 804.2684936523438, 0.9368754029273987, 1181.7373046875, 268.38958740234375, 0.9860806465148926, 1216.197265625, 294.3516540527344, 0.9844358563423157, 1165.882568359375, 310.8325500488281, 0.9908338189125061, 1166.5938720703125, 250.3585662841797, 0.955764651298523, 1239.61328125, 272.02886962890625, 0.9712932109832764, 1136.350341796875, 308.4267578125, 0.9855750799179077, 1314.1922607421875, 189.65994262695312, 0.9460025429725647, 1070.4024658203125, 356.5039978027344, 0.9653308391571045, 1254.6885986328125, 154.85525512695312, 0.9766073822975159, 987.4360961914062, 404.2054138183594, 0.9585767388343811, 1238.3455810546875, 138.18276977539062, 0.9767082333564758, 957.4985961914062, 409.6827087402344, 0.9416813850402832, 1143.8934326171875, 182.43634033203125, 0.9562661051750183, 1221.86767578125, 115.90512084960938, 0.9660243391990662, 929.8504638671875, 414.8827209472656, 0.9574306011199951, 1188.280517578125, 814.8092041015625, 0.7704302668571472, 1159.6527099609375, 807.11962890625, 0.9611995816230774], "score": 3.160979747772217, "box": [948.9866943359375, 132.41622924804688, 404.01318359375, 701.0217590332031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0639164075255394, 0.08522139489650726, -0.035308972001075745], [-0.042866162955760956, 0.0917336493730545, 0.043114565312862396], [0.004964129067957401, -0.10363040864467621, 0.020147763192653656], [0.10870622098445892, 0.46619081497192383, -0.03639794513583183], [-0.03603653982281685, 0.47525525093078613, 0.11420129984617233], [-0.010970772244036198, -0.23326115310192108, 0.012403909116983414], [0.09473754465579987, 0.8699228763580322, -0.02354184351861477], [0.04083665832877159, 0.852603554725647, 0.23580029606819153], [-0.03407919406890869, -0.2810593843460083, -0.004036121070384979], [-0.007780841086059809, 0.9293498396873474, -0.08345305919647217], [-0.07835950702428818, 0.91004478931427, 0.226315438747406], [-0.07438214123249054, -0.485102117061615, 0.03204762190580368], [0.01138813141733408, -0.41585367918014526, -0.01201750710606575], [-0.11160797625780106, -0.37802940607070923, 0.06641814857721329], [-0.11859818547964096, -0.529191792011261, -0.02263941988348961], [0.07365546375513077, -0.4752006530761719, -0.04314231127500534], [-0.19885432720184326, -0.3879644274711609, 0.10577698796987534], [0.23279674351215363, -0.6523109674453735, -0.15600630640983582], [-0.3956916928291321, -0.2469930797815323, 0.18974554538726807], [0.0382089838385582, -0.7804874777793884, -0.0678439736366272], [-0.5853303670883179, -0.13339363038539886, 0.05950578302145004], [-0.007401662413030863, -0.8356611728668213, -0.02469974011182785], [-0.6624979972839355, -0.1182132214307785, 0.031718410551548004]]}, {"image_id": "116.jpg", "category_id": 1, "keypoints": [1081.0418701171875, 470.12127685546875, 0.9834442138671875, 1098.7083740234375, 500.37884521484375, 0.9816123247146606, 1064.7691650390625, 501.4281921386719, 0.9857386350631714, 1087.7371826171875, 432.6021423339844, 0.9941648840904236, 1054.9110107421875, 630.6654052734375, 0.9710458517074585, 1090.061767578125, 633.1516723632812, 0.9831579327583313, 1084.4749755859375, 387.79632568359375, 0.978847861289978, 1013.5902099609375, 760.2438354492188, 0.9398514032363892, 1136.5301513671875, 756.9835205078125, 0.9400490522384644, 1078.4735107421875, 373.54248046875, 0.9838442802429199, 998.5405883789062, 784.8233642578125, 0.8572181463241577, 1105.828369140625, 785.2406616210938, 0.9396101832389832, 1074.1671142578125, 300.768310546875, 0.9892327785491943, 1101.77587890625, 328.30914306640625, 0.9871852993965149, 1054.9298095703125, 336.51348876953125, 0.9918218851089478, 1070.2838134765625, 277.80865478515625, 0.9510018825531006, 1122.9798583984375, 318.217529296875, 0.977751612663269, 1024.82470703125, 337.7301025390625, 0.9874358177185059, 1118.0687255859375, 386.28216552734375, 0.9766020178794861, 967.2896118164062, 397.7166442871094, 0.9348412752151489, 1022.448486328125, 413.2640380859375, 0.9503825902938843, 964.4205322265625, 410.48004150390625, 0.9590407013893127, 1004.6024169921875, 416.3954772949219, 0.9256620407104492, 964.8638916015625, 414.16082763671875, 0.8942663669586182, 1081.58837890625, 193.58819580078125, 0.9577057957649231, 985.9994506835938, 416.8937683105469, 0.8879354596138, 972.7044677734375, 413.9336853027344, 0.8910331130027771, 992.4392700195312, 785.9412841796875, 0.8838723301887512, 1095.7882080078125, 789.2161865234375, 0.9467359781265259], "score": 3.1267945766448975, "box": [944.6996459960938, 201.36068725585938, 211.27264404296875, 625.3035583496094], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05031631886959076, 0.09187661111354828, -0.04320620372891426], [-0.04484478756785393, 0.08812037110328674, 0.050819382071495056], [0.018075721338391304, -0.10445833206176758, 0.018124671652913094], [-0.07252367585897446, 0.452400803565979, -0.08328008651733398], [0.02998446486890316, 0.46420636773109436, 0.1220182478427887], [0.00753604294732213, -0.23444506525993347, -0.006103156134486198], [-0.19389204680919647, 0.8372371196746826, -0.04997500032186508], [0.17119111120700836, 0.8332473039627075, 0.20942947268486023], [-0.01175173930823803, -0.27523237466812134, -0.04034552723169327], [-0.24636977910995483, 0.9132294654846191, -0.14635822176933289], [0.07258269190788269, 0.9225113391876221, 0.1974189430475235], [-0.02344968356192112, -0.48788967728614807, -0.05172266811132431], [0.05340792238712311, -0.3989684283733368, -0.0759187713265419], [-0.07714992761611938, -0.3962825834751129, 0.0038294587284326553], [-0.03595045953989029, -0.5436710119247437, -0.11226758360862732], [0.11909522116184235, -0.42745962738990784, -0.1345943808555603], [-0.16884657740592957, -0.3947339951992035, 0.036819763481616974], [0.09654780477285385, -0.18769118189811707, -0.24359378218650818], [-0.3429124653339386, -0.21120086312294006, -0.009690409526228905], [-0.11187318712472916, -0.12447422742843628, -0.3668583035469055], [-0.35193589329719543, -0.16197332739830017, -0.2622298300266266], [-0.1668224185705185, -0.11244872212409973, -0.42971280217170715], [-0.35080486536026, -0.1480638086795807, -0.34523990750312805]]}, {"image_id": "117.jpg", "category_id": 1, "keypoints": [1209.780517578125, 459.7285461425781, 0.9834645390510559, 1236.9896240234375, 491.8638000488281, 0.9906162023544312, 1192.443115234375, 498.2626647949219, 0.9859310984611511, 1213.703125, 418.568359375, 0.990546464920044, 1252.3387451171875, 646.6435546875, 0.984316349029541, 1193.53271484375, 645.7337036132812, 0.9859258532524109, 1205.228515625, 367.3299865722656, 0.9885887503623962, 1248.98876953125, 788.083984375, 0.8748089671134949, 1215.98193359375, 779.3016357421875, 0.9090652465820312, 1196.98828125, 348.6506652832031, 0.9908665418624878, 1204.6309814453125, 817.3487548828125, 0.8623038530349731, 1164.3155517578125, 802.3438720703125, 0.9443482756614685, 1179.8193359375, 268.5377502441406, 0.9862832427024841, 1214.205810546875, 294.64593505859375, 0.9848085641860962, 1164.4971923828125, 310.38671875, 0.9911446571350098, 1165.11962890625, 250.5648651123047, 0.9531330466270447, 1237.6983642578125, 272.26885986328125, 0.971069872379303, 1136.035888671875, 307.46478271484375, 0.9858587980270386, 1309.9171142578125, 187.71957397460938, 0.9325145483016968, 1072.64208984375, 355.6886901855469, 0.9703519940376282, 1250.10546875, 152.64639282226562, 0.9800075888633728, 989.7191162109375, 404.161376953125, 0.9553850889205933, 1235.203125, 133.65005493164062, 0.9722571969032288, 958.315185546875, 410.60333251953125, 0.9386719465255737, 1140.2247314453125, 183.17581176757812, 0.9532477855682373, 1217.119873046875, 105.30923461914062, 0.9677526950836182, 929.931640625, 415.9328308105469, 0.9522698521614075, 1183.618408203125, 818.99560546875, 0.8174368143081665, 1150.363037109375, 806.5447998046875, 0.9558680057525635], "score": 3.141144275665283, "box": [953.3814086914062, 133.13916015625, 397.77545166015625, 698.0965576171875], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06502577662467957, 0.08560559898614883, -0.03289914131164551], [-0.042258381843566895, 0.091154545545578, 0.04543178528547287], [0.003965786658227444, -0.10460349917411804, 0.01762666553258896], [0.10281822085380554, 0.4664994776248932, -0.03265815228223801], [-0.03440852835774422, 0.4734775424003601, 0.11902075260877609], [-0.011856150813400745, -0.23446640372276306, 0.007147233933210373], [0.09674821048974991, 0.8680946826934814, 0.007127303630113602], [0.036836396902799606, 0.8500399589538574, 0.24469467997550964], [-0.034607894718647, -0.2822185158729553, -0.010735994204878807], [-0.005396364256739616, 0.927702784538269, -0.05332459509372711], [-0.08380884677171707, 0.901819109916687, 0.2251516580581665], [-0.0754987895488739, -0.48694708943367004, 0.023903697729110718], [0.010494688525795937, -0.41752591729164124, -0.020422499626874924], [-0.1124039739370346, -0.379773885011673, 0.059576258063316345], [-0.11928372830152512, -0.5318686962127686, -0.030439533293247223], [0.0728442594408989, -0.47688421607017517, -0.05238186568021774], [-0.19822853803634644, -0.39172467589378357, 0.10228320211172104], [0.22820492088794708, -0.6605675220489502, -0.15915405750274658], [-0.39036133885383606, -0.24815788865089417, 0.19178131222724915], [0.031055087223649025, -0.7893964052200317, -0.07830704003572464], [-0.5800765156745911, -0.13280948996543884, 0.06373593956232071], [-0.010694822296500206, -0.8510899543762207, -0.04015590250492096], [-0.6581478118896484, -0.11586877703666687, 0.039421942085027695]]}, {"image_id": "117.jpg", "category_id": 1, "keypoints": [1079.8543701171875, 468.6813659667969, 0.9837514162063599, 1097.4053955078125, 498.8515319824219, 0.9828348159790039, 1063.4005126953125, 499.8833923339844, 0.9842211604118347, 1086.84228515625, 431.191162109375, 0.9945443868637085, 1055.9710693359375, 629.4210205078125, 0.9690432548522949, 1088.9989013671875, 631.5120239257812, 0.9834170937538147, 1084.4041748046875, 386.4835205078125, 0.9794799089431763, 1012.3955078125, 759.94482421875, 0.9412224292755127, 1135.7589111328125, 755.2572021484375, 0.9429786801338196, 1078.5152587890625, 372.09503173828125, 0.983905553817749, 996.4320678710938, 783.7095947265625, 0.859012246131897, 1104.873291015625, 784.1639404296875, 0.9449650049209595, 1074.8033447265625, 299.7187805175781, 0.9894657135009766, 1101.866455078125, 327.562744140625, 0.986092746257782, 1055.5382080078125, 335.48968505859375, 0.9915677905082703, 1070.8681640625, 276.67242431640625, 0.9477391242980957, 1122.2415771484375, 318.61468505859375, 0.9749970436096191, 1025.1512451171875, 337.2399597167969, 0.9875770211219788, 1108.7279052734375, 388.46539306640625, 0.9757266640663147, 973.2596435546875, 398.8106994628906, 0.9425905346870422, 1014.4088134765625, 415.3912658691406, 0.9562301635742188, 964.5062255859375, 411.75567626953125, 0.9569342732429504, 995.2040405273438, 418.84051513671875, 0.930847704410553, 961.3953857421875, 414.88525390625, 0.8961848616600037, 1078.2803955078125, 195.001708984375, 0.9563737511634827, 975.8665771484375, 420.44647216796875, 0.8875032663345337, 964.63427734375, 414.15118408203125, 0.8890381455421448, 989.2769775390625, 784.6510009765625, 0.8783149719238281, 1094.4295654296875, 787.821533203125, 0.9485751986503601], "score": 3.1351099014282227, "box": [943.219482421875, 200.10867309570312, 211.8668212890625, 627.5509338378906], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04975485801696777, 0.09189818054437637, -0.04357275366783142], [-0.04539141058921814, 0.08802083134651184, 0.05030135437846184], [0.018659936264157295, -0.1041451096534729, 0.018624093383550644], [-0.0668797492980957, 0.4546408951282501, -0.08110997080802917], [0.03027348220348358, 0.46434807777404785, 0.11861307919025421], [0.01051747240126133, -0.23426339030265808, -0.0055234916508197784], [-0.1937306672334671, 0.8379613161087036, -0.053803425282239914], [0.1718907505273819, 0.8314969539642334, 0.21211719512939453], [-0.00842621922492981, -0.2755030393600464, -0.03931871056556702], [-0.24751776456832886, 0.9083331823348999, -0.15357360243797302], [0.07410060614347458, 0.9216004610061646, 0.20065230131149292], [-0.01819300279021263, -0.488213449716568, -0.04858609661459923], [0.057098180055618286, -0.3987736403942108, -0.07530982047319412], [-0.07145331054925919, -0.39671221375465393, 0.0073809027671813965], [-0.03097352385520935, -0.5454590320587158, -0.10769110918045044], [0.1204579547047615, -0.423526793718338, -0.13800984621047974], [-0.16243448853492737, -0.39371976256370544, 0.041997279971838], [0.07092579454183578, -0.1905219852924347, -0.25228631496429443], [-0.32230424880981445, -0.201578289270401, -0.01791754737496376], [-0.13511815667152405, -0.12718543410301208, -0.3791491389274597], [-0.34958526492118835, -0.15128043293952942, -0.2687778174877167], [-0.1903853714466095, -0.11491897702217102, -0.44159066677093506], [-0.3588033616542816, -0.13867035508155823, -0.35141777992248535]]}, {"image_id": "118.jpg", "category_id": 1, "keypoints": [1209.601806640625, 460.244384765625, 0.9833316206932068, 1237.551513671875, 491.36334228515625, 0.9908705353736877, 1191.948974609375, 498.9663391113281, 0.9850742220878601, 1212.8489990234375, 419.68231201171875, 0.9897770285606384, 1255.06494140625, 647.8564453125, 0.9834246039390564, 1197.531982421875, 647.6663818359375, 0.9819912314414978, 1204.20947265625, 368.918701171875, 0.9883921146392822, 1248.7841796875, 788.317626953125, 0.8731951713562012, 1219.6004638671875, 780.3365478515625, 0.9107322096824646, 1196.0308837890625, 350.1993408203125, 0.9914214015007019, 1210.6314697265625, 817.1228637695312, 0.8719485998153687, 1170.9425048828125, 805.7306518554688, 0.9432024359703064, 1177.0308837890625, 270.0858154296875, 0.9862423539161682, 1212.433349609375, 295.8173522949219, 0.9866803884506226, 1161.567626953125, 312.4730224609375, 0.9910233020782471, 1162.5433349609375, 252.52366638183594, 0.953988790512085, 1235.6805419921875, 272.1991271972656, 0.9721838235855103, 1131.8349609375, 309.84991455078125, 0.9854170083999634, 1307.41845703125, 184.93594360351562, 0.9293270111083984, 1067.2047119140625, 360.16021728515625, 0.9697895646095276, 1242.9288330078125, 150.0029296875, 0.9815001487731934, 986.600830078125, 406.0137634277344, 0.9561668038368225, 1226.5576171875, 129.34521484375, 0.9695460200309753, 956.4281616210938, 412.6775817871094, 0.9368483424186707, 1139.6513671875, 183.9525146484375, 0.9539617896080017, 1204.0489501953125, 97.75543212890625, 0.9637218713760376, 929.1880493164062, 418.0016174316406, 0.9451150894165039, 1187.084716796875, 817.5994873046875, 0.8065871000289917, 1158.0977783203125, 809.5504150390625, 0.9620779752731323], "score": 3.1575441360473633, "box": [960.065185546875, 131.78018188476562, 381.6275634765625, 699.2847595214844], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06756541132926941, 0.0843881219625473, -0.03161653131246567], [-0.043569691479206085, 0.09268906712532043, 0.041430629789829254], [0.002043061889708042, -0.10438358783721924, 0.020083852112293243], [0.10991397500038147, 0.46554550528526306, -0.03532377630472183], [-0.024515163153409958, 0.47646188735961914, 0.10936638712882996], [-0.02020293101668358, -0.23360854387283325, 0.016918547451496124], [0.09332728385925293, 0.8695259094238281, -0.018504977226257324], [0.046405259519815445, 0.8543157577514648, 0.23480001091957092], [-0.04284316673874855, -0.2817956209182739, -6.967037916183472e-05], [-0.0020381100475788116, 0.932184100151062, -0.08690917491912842], [-0.07090915739536285, 0.9132037162780762, 0.21356400847434998], [-0.08058373630046844, -0.48780396580696106, 0.03221418708562851], [0.00548933818936348, -0.4162999093532562, -0.008847076445817947], [-0.1210252046585083, -0.3815317451953888, 0.0671549066901207], [-0.12516917288303375, -0.5335935354232788, -0.020685378462076187], [0.06642955541610718, -0.4783194363117218, -0.03861609101295471], [-0.20938269793987274, -0.3920433819293976, 0.10496681928634644], [0.2190942019224167, -0.6661012172698975, -0.1437077820301056], [-0.4016614258289337, -0.2447638213634491, 0.18986709415912628], [0.013744983822107315, -0.7886874675750732, -0.07235556840896606], [-0.5902312397956848, -0.13283148407936096, 0.05600748956203461], [-0.030191481113433838, -0.8515434265136719, -0.03846023976802826], [-0.6675001978874207, -0.11476975679397583, 0.029457826167345047]]}, {"image_id": "118.jpg", "category_id": 1, "keypoints": [1079.367919921875, 470.0321960449219, 0.9839662313461304, 1096.9609375, 500.2043151855469, 0.9824445843696594, 1062.8358154296875, 501.3071594238281, 0.9844899773597717, 1086.5018310546875, 432.66485595703125, 0.994174599647522, 1056.1298828125, 630.5623779296875, 0.9721565842628479, 1090.018310546875, 633.0311279296875, 0.9834122657775879, 1084.1995849609375, 387.744873046875, 0.9815294742584229, 1010.5092163085938, 758.56982421875, 0.9417198300361633, 1131.3038330078125, 757.6817016601562, 0.9441145658493042, 1078.2998046875, 373.3590393066406, 0.9859089851379395, 996.2898559570312, 786.155517578125, 0.8658950328826904, 1102.1624755859375, 785.3780517578125, 0.9361724257469177, 1074.0628662109375, 300.62078857421875, 0.98981773853302, 1101.171142578125, 328.7181396484375, 0.9862881898880005, 1054.9595947265625, 336.2609558105469, 0.9916892051696777, 1070.7042236328125, 277.6544494628906, 0.9490049481391907, 1121.6185302734375, 318.8814392089844, 0.9779035449028015, 1024.3482666015625, 338.0882568359375, 0.9872288107872009, 1108.9351806640625, 391.6052551269531, 0.9696632623672485, 970.4671630859375, 400.202880859375, 0.935976505279541, 1015.4312133789062, 417.95281982421875, 0.9540485143661499, 963.2682495117188, 415.1492614746094, 0.9612327814102173, 999.0086059570312, 420.125244140625, 0.9220356941223145, 962.0388793945312, 419.41168212890625, 0.9154210090637207, 1080.4840087890625, 193.73281860351562, 0.9540917873382568, 982.4569091796875, 420.5556945800781, 0.9091360569000244, 968.6114501953125, 419.1907653808594, 0.8995543122291565, 989.60791015625, 791.1132202148438, 0.8933053612709045, 1092.0899658203125, 789.015625, 0.945221483707428], "score": 3.1446735858917236, "box": [943.034423828125, 200.5198974609375, 211.1632080078125, 625.8596801757812], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049818895757198334, 0.09181557595729828, -0.04400593787431717], [-0.04599779099225998, 0.08834074437618256, 0.04946018010377884], [0.018881533294916153, -0.10406993329524994, 0.01952575147151947], [-0.0656815692782402, 0.45429861545562744, -0.09218607097864151], [0.03407730907201767, 0.46420007944107056, 0.1187613382935524], [0.011892822571098804, -0.23335449397563934, -0.00919504277408123], [-0.19989818334579468, 0.8351629376411438, -0.05601194128394127], [0.16118715703487396, 0.8397788405418396, 0.20237690210342407], [-0.006958245765417814, -0.27419722080230713, -0.043596163392066956], [-0.24809594452381134, 0.9191297292709351, -0.14808526635169983], [0.06394065171480179, 0.9308687448501587, 0.19165730476379395], [-0.019548986107110977, -0.4869685769081116, -0.05320432782173157], [0.057678185403347015, -0.39852428436279297, -0.07817398756742477], [-0.0727984756231308, -0.39463454484939575, 0.0016775932163000107], [-0.030781947076320648, -0.5437951683998108, -0.11311708390712738], [0.12167727947235107, -0.4264593720436096, -0.1389877051115036], [-0.165585458278656, -0.3910215497016907, 0.03139100968837738], [0.07588264346122742, -0.1884133368730545, -0.2452351152896881], [-0.3295418620109558, -0.19977609813213348, -0.02210356667637825], [-0.12899138033390045, -0.12615101039409637, -0.37538978457450867], [-0.3517281115055084, -0.14402757585048676, -0.2728094160556793], [-0.18283993005752563, -0.11661316454410553, -0.43971067667007446], [-0.3554639220237732, -0.12800531089305878, -0.355440229177475]]}, {"image_id": "119.jpg", "category_id": 1, "keypoints": [1208.2347412109375, 458.98114013671875, 0.9822244644165039, 1236.302490234375, 490.5016174316406, 0.98935467004776, 1191.2442626953125, 497.4561767578125, 0.9841449856758118, 1211.0997314453125, 418.6597595214844, 0.9893172383308411, 1252.2991943359375, 646.8884887695312, 0.9856469035148621, 1196.00244140625, 645.3551025390625, 0.9825479984283447, 1202.882080078125, 367.5880432128906, 0.986961305141449, 1248.9105224609375, 790.161865234375, 0.8384230732917786, 1217.9044189453125, 778.424072265625, 0.9111868739128113, 1195.333740234375, 348.57513427734375, 0.9904831647872925, 1207.119384765625, 819.5691528320312, 0.8695391416549683, 1166.7269287109375, 802.2091064453125, 0.9378450512886047, 1177.9776611328125, 267.5557861328125, 0.98519366979599, 1212.23193359375, 293.9804382324219, 0.9867566823959351, 1162.716552734375, 310.78436279296875, 0.9901618361473083, 1164.789306640625, 249.74082946777344, 0.9499963521957397, 1235.8966064453125, 271.1136474609375, 0.9691464304924011, 1133.80224609375, 309.0337829589844, 0.9866533279418945, 1305.874267578125, 182.78012084960938, 0.9214568734169006, 1069.119384765625, 356.7349853515625, 0.9719839692115784, 1242.007568359375, 148.20968627929688, 0.9815134406089783, 987.3204956054688, 404.6125183105469, 0.960757851600647, 1225.966064453125, 128.11441040039062, 0.9678739309310913, 955.6577758789062, 411.7031555175781, 0.937439501285553, 1137.5718994140625, 179.52685546875, 0.9416140913963318, 1202.303466796875, 95.5228271484375, 0.9591856002807617, 925.8616943359375, 418.0307922363281, 0.9496245980262756, 1186.4244384765625, 819.959228515625, 0.8134328126907349, 1153.170654296875, 806.6787109375, 0.9539780616760254], "score": 3.156613826751709, "box": [970.726318359375, 128.516845703125, 366.1932373046875, 703.6895141601562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06715516746044159, 0.0840219259262085, -0.03291258215904236], [-0.0416821725666523, 0.09256131947040558, 0.04324048385024071], [0.0018875263631343842, -0.10452240705490112, 0.019331324845552444], [0.10594695806503296, 0.4645364582538605, -0.03451156988739967], [-0.023760341107845306, 0.4720323383808136, 0.12763787806034088], [-0.01910652033984661, -0.23408231139183044, 0.01745985448360443], [0.09955847263336182, 0.8662327527999878, 0.0017626136541366577], [0.046279892325401306, 0.8452867269515991, 0.2628670334815979], [-0.04010308161377907, -0.2832271158695221, 0.0010665841400623322], [-0.004127804655581713, 0.9326121807098389, -0.04810789227485657], [-0.07422013580799103, 0.9005248546600342, 0.25553053617477417], [-0.07415847480297089, -0.4890997111797333, 0.03744962438941002], [0.009365695528686047, -0.417243629693985, -0.008028285577893257], [-0.11443662643432617, -0.3828308880329132, 0.0726492702960968], [-0.11611710488796234, -0.5370079278945923, -0.015703517943620682], [0.07311348617076874, -0.4788254201412201, -0.03251055255532265], [-0.19931669533252716, -0.3911811411380768, 0.11834271252155304], [0.21778957545757294, -0.6641736030578613, -0.15038083493709564], [-0.3931416869163513, -0.2509572207927704, 0.20907504856586456], [0.020529288798570633, -0.7854111194610596, -0.059103358536958694], [-0.5797664523124695, -0.1370854675769806, 0.07556931674480438], [-0.022582802921533585, -0.8472990989685059, -0.022754888981580734], [-0.6579293012619019, -0.11871337890625, 0.052501123398542404]]}, {"image_id": "119.jpg", "category_id": 1, "keypoints": [1079.90380859375, 467.7877197265625, 0.9828638434410095, 1097.314453125, 497.6543884277344, 0.9822506308555603, 1063.2532958984375, 499.4478454589844, 0.9844159483909607, 1087.46728515625, 430.599853515625, 0.9944544434547424, 1057.1240234375, 629.0912475585938, 0.969572126865387, 1092.7879638671875, 631.29296875, 0.9852115511894226, 1084.34716796875, 385.989013671875, 0.9802230000495911, 1010.921875, 757.437255859375, 0.9432061910629272, 1132.3157958984375, 754.8988037109375, 0.9401886463165283, 1078.4365234375, 372.0013122558594, 0.9845582842826843, 995.6178588867188, 784.1505126953125, 0.856682300567627, 1102.0411376953125, 782.122802734375, 0.9414160847663879, 1073.5723876953125, 299.91278076171875, 0.9895633459091187, 1101.4569091796875, 327.3028564453125, 0.9864406585693359, 1054.103759765625, 335.89239501953125, 0.9924303889274597, 1069.43701171875, 277.3392333984375, 0.9519245028495789, 1122.22607421875, 317.8079833984375, 0.9748833179473877, 1023.9530639648438, 337.92742919921875, 0.9879862666130066, 1102.8333740234375, 392.1939697265625, 0.9599263668060303, 970.7474365234375, 399.6016540527344, 0.9389829039573669, 1012.460693359375, 419.5609130859375, 0.9519758820533752, 962.0108642578125, 415.98675537109375, 0.9598255157470703, 994.319580078125, 420.0023193359375, 0.9203444719314575, 960.47265625, 421.10369873046875, 0.9172943830490112, 1072.0465087890625, 193.67596435546875, 0.952846884727478, 975.2030639648438, 422.216796875, 0.9081050753593445, 965.9895629882812, 421.5198974609375, 0.8983277082443237, 987.4374389648438, 788.8472290039062, 0.8764260411262512, 1090.6285400390625, 785.69140625, 0.9464976787567139], "score": 3.151340961456299, "box": [941.3212280273438, 193.97483825683594, 210.41461181640625, 633.4268341064453], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04999836906790733, 0.09177656471729279, -0.04414629191160202], [-0.04726654663681984, 0.08857467025518417, 0.04807048663496971], [0.019217729568481445, -0.10390374064445496, 0.020747005939483643], [-0.06307708472013474, 0.4556419849395752, -0.08924686908721924], [0.03916561231017113, 0.4626355469226837, 0.12072262167930603], [0.010940009728074074, -0.23318442702293396, -0.0075839366763830185], [-0.1981603503227234, 0.8358802795410156, -0.04626837000250816], [0.1622660607099533, 0.8379009962081909, 0.21311208605766296], [-0.0082539152354002, -0.27355965971946716, -0.04240909218788147], [-0.24971915781497955, 0.9166420698165894, -0.1395108699798584], [0.062669537961483, 0.9271807670593262, 0.2107619345188141], [-0.02295946702361107, -0.48635002970695496, -0.051839157938957214], [0.05589639022946358, -0.3987938463687897, -0.07518310844898224], [-0.0765906274318695, -0.3932616412639618, 0.00155709870159626], [-0.03647502139210701, -0.5437757968902588, -0.11064079403877258], [0.1211204081773758, -0.4257364571094513, -0.13526131212711334], [-0.16918911039829254, -0.38895997405052185, 0.032028909772634506], [0.057040754705667496, -0.19442811608314514, -0.2472437620162964], [-0.33143582940101624, -0.19835183024406433, -0.02932891994714737], [-0.1480143517255783, -0.12799939513206482, -0.37543153762817383], [-0.35832586884498596, -0.13822391629219055, -0.2787559926509857], [-0.20435775816440582, -0.12420660257339478, -0.4382866322994232], [-0.3629332184791565, -0.11978152394294739, -0.36090993881225586]]}, {"image_id": "120.jpg", "category_id": 1, "keypoints": [1082.450927734375, 467.73333740234375, 0.9831424951553345, 1099.3009033203125, 497.823486328125, 0.9820614457130432, 1066.3677978515625, 499.1451110839844, 0.9849214553833008, 1090.63232421875, 430.45318603515625, 0.9942483901977539, 1056.429931640625, 627.63671875, 0.9711731672286987, 1091.713134765625, 632.0433349609375, 0.9845183491706848, 1085.5328369140625, 386.0218811035156, 0.981038510799408, 1010.173583984375, 759.4564208984375, 0.9465376734733582, 1133.556396484375, 757.28076171875, 0.946189284324646, 1078.546142578125, 372.0887451171875, 0.984772264957428, 994.7716064453125, 786.4364013671875, 0.873471736907959, 1103.4608154296875, 787.5982666015625, 0.9445168375968933, 1073.4090576171875, 299.64044189453125, 0.9893750548362732, 1100.3369140625, 327.6983642578125, 0.9861574769020081, 1054.8966064453125, 335.61883544921875, 0.9922478795051575, 1069.3363037109375, 277.5262451171875, 0.9496088624000549, 1119.6651611328125, 318.51458740234375, 0.9749651551246643, 1025.3433837890625, 337.390625, 0.9882791638374329, 1101.363525390625, 393.03753662109375, 0.9560332894325256, 970.2548217773438, 398.6157531738281, 0.9425226449966431, 1011.59912109375, 423.314208984375, 0.9425144195556641, 961.1676025390625, 416.4033508300781, 0.9570146203041077, 991.8931884765625, 425.4635009765625, 0.9363230466842651, 960.2062377929688, 422.6001892089844, 0.9094080328941345, 1066.0782470703125, 198.56719970703125, 0.950241208076477, 970.633056640625, 428.9504089355469, 0.8980464935302734, 966.838134765625, 424.5389099121094, 0.9005753397941589, 987.48583984375, 791.859130859375, 0.899071455001831, 1089.3917236328125, 790.790771484375, 0.9515255093574524], "score": 3.1557838916778564, "box": [938.934814453125, 197.0751495361328, 213.84228515625, 626.2773895263672], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.047991976141929626, 0.09269130975008011, -0.04558325931429863], [-0.04586460441350937, 0.08826285600662231, 0.050981082022190094], [0.020609110593795776, -0.10438127815723419, 0.01911473460495472], [-0.0735352486371994, 0.4541381597518921, -0.09824422746896744], [0.028919801115989685, 0.4670615792274475, 0.11909516900777817], [0.006581979803740978, -0.2326928824186325, -0.010788196697831154], [-0.20684680342674255, 0.8379967212677002, -0.0648958832025528], [0.15785586833953857, 0.8448539972305298, 0.20121370255947113], [-0.015507984906435013, -0.2722085118293762, -0.0451030358672142], [-0.25956517457962036, 0.9211947321891785, -0.1559307873249054], [0.0632687509059906, 0.9401106238365173, 0.20099206268787384], [-0.030598599463701248, -0.48547083139419556, -0.05695841461420059], [0.047012459486722946, -0.3973156809806824, -0.08347546309232712], [-0.08146272599697113, -0.3931199312210083, 0.0009087380021810532], [-0.04395788908004761, -0.5410985946655273, -0.11735493689775467], [0.10804316401481628, -0.4232150912284851, -0.1485597789287567], [-0.17258810997009277, -0.38995611667633057, 0.036299318075180054], [0.04673246294260025, -0.18901316821575165, -0.2587758004665375], [-0.3401798605918884, -0.20124302804470062, -0.02142864651978016], [-0.1613435000181198, -0.11490248143672943, -0.37978529930114746], [-0.3685395121574402, -0.13585017621517181, -0.27051669359207153], [-0.22735950350761414, -0.10579688847064972, -0.43224695324897766], [-0.3713451623916626, -0.11465559899806976, -0.35244226455688477]]}, {"image_id": "120.jpg", "category_id": 1, "keypoints": [1203.353271484375, 457.36090087890625, 0.9801440238952637, 1231.764892578125, 487.5811767578125, 0.9891015291213989, 1187.055908203125, 497.6885681152344, 0.9841068983078003, 1205.4466552734375, 418.6589660644531, 0.9889605641365051, 1252.54150390625, 642.1302490234375, 0.9865131974220276, 1199.9205322265625, 647.1070556640625, 0.9784150719642639, 1198.07861328125, 367.6182861328125, 0.9877731204032898, 1248.9273681640625, 789.421142578125, 0.8224142789840698, 1223.150634765625, 783.1480712890625, 0.9017142057418823, 1190.2257080078125, 348.8063049316406, 0.9907010793685913, 1213.296142578125, 818.4772338867188, 0.8679571151733398, 1174.045166015625, 811.5113525390625, 0.9537965059280396, 1173.6241455078125, 268.10968017578125, 0.9850768446922302, 1207.362060546875, 293.0107727050781, 0.9857578873634338, 1158.749755859375, 312.36749267578125, 0.9889241456985474, 1159.0362548828125, 249.34210205078125, 0.9566903114318848, 1230.107421875, 270.55035400390625, 0.9674172401428223, 1130.0455322265625, 312.2495422363281, 0.9844179153442383, 1301.3984375, 179.1492919921875, 0.9234911203384399, 1062.187744140625, 363.7851257324219, 0.973436176776886, 1231.563232421875, 146.95681762695312, 0.9789490699768066, 982.6278686523438, 407.6195068359375, 0.9650692939758301, 1218.738037109375, 125.7947998046875, 0.9689229726791382, 953.3329467773438, 415.60675048828125, 0.9449254870414734, 1134.26611328125, 181.92636108398438, 0.9404217004776001, 1197.47021484375, 94.06756591796875, 0.9596267938613892, 920.8328857421875, 423.7324523925781, 0.9398770332336426, 1191.772216796875, 817.0103759765625, 0.8099997639656067, 1159.255615234375, 814.1165771484375, 0.9653405547142029], "score": 3.1401543617248535, "box": [978.218017578125, 123.99125671386719, 354.2215576171875, 708.8847198486328], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06893458217382431, 0.08128553628921509, -0.03732522204518318], [-0.040331725031137466, 0.09578868001699448, 0.038379840552806854], [8.20942223072052e-05, -0.10371258854866028, 0.024884264916181564], [0.11896944046020508, 0.4616953730583191, -0.05104770511388779], [-0.002488640835508704, 0.47733187675476074, 0.11329621076583862], [-0.018022876232862473, -0.2333046793937683, 0.03281226381659508], [0.10545053333044052, 0.8646999597549438, -0.09363401681184769], [0.07017698138952255, 0.8550596237182617, 0.24082159996032715], [-0.03996264934539795, -0.282742440700531, 0.018269788473844528], [0.003343405434861779, 0.9431627988815308, -0.12790468335151672], [-0.04535987600684166, 0.9211238622665405, 0.23495206236839294], [-0.0715622752904892, -0.4876515865325928, 0.06427624821662903], [0.009671805426478386, -0.4173869490623474, 0.01209515705704689], [-0.11072146892547607, -0.38000744581222534, 0.09725040197372437], [-0.1162586510181427, -0.5374390482902527, 0.015430524945259094], [0.07271075248718262, -0.4796161651611328, -0.013067036867141724], [-0.19366756081581116, -0.38364410400390625, 0.14718861877918243], [0.21750012040138245, -0.6678239703178406, -0.12910053133964539], [-0.38938990235328674, -0.2372792661190033, 0.2271946668624878], [0.005716564133763313, -0.7768207788467407, -0.05316070467233658], [-0.5745226740837097, -0.13031554222106934, 0.08393071591854095], [-0.03211047127842903, -0.846184492111206, -0.02456880919635296], [-0.6526707410812378, -0.10824212431907654, 0.06291867792606354]]}, {"image_id": "121.jpg", "category_id": 1, "keypoints": [1208.912353515625, 459.6816101074219, 0.9811627268791199, 1236.9322509765625, 490.5491638183594, 0.9893738031387329, 1192.399658203125, 499.9029235839844, 0.9838464856147766, 1211.5123291015625, 420.3603515625, 0.9877675175666809, 1258.5477294921875, 645.5687255859375, 0.9820908904075623, 1202.6553955078125, 648.1686401367188, 0.9818293452262878, 1202.727294921875, 369.7114562988281, 0.9867003560066223, 1254.264404296875, 789.125244140625, 0.8593190908432007, 1226.8702392578125, 782.4652099609375, 0.9232994914054871, 1193.5760498046875, 351.2900085449219, 0.991486132144928, 1215.5335693359375, 820.9720458984375, 0.8778914213180542, 1177.256591796875, 810.588134765625, 0.9389704465866089, 1174.3154296875, 269.1457214355469, 0.983801543712616, 1208.4425048828125, 294.69183349609375, 0.9844245910644531, 1160.2283935546875, 314.0806884765625, 0.9890745282173157, 1160.55419921875, 250.93724060058594, 0.9587142467498779, 1229.0435791015625, 271.71429443359375, 0.9635740518569946, 1130.1346435546875, 313.89849853515625, 0.9877368807792664, 1294.6036376953125, 180.77816772460938, 0.9267728328704834, 1059.0721435546875, 366.4595031738281, 0.9712101221084595, 1229.573486328125, 144.19796752929688, 0.9793267846107483, 980.1134643554688, 410.6546630859375, 0.9679749608039856, 1215.82177734375, 121.36199951171875, 0.967411994934082, 952.2100830078125, 420.1028137207031, 0.9476639032363892, 1135.239501953125, 181.30264282226562, 0.9420576095581055, 1193.55078125, 85.95492553710938, 0.9477072358131409, 922.2052001953125, 429.00958251953125, 0.9377126097679138, 1189.494873046875, 818.0020751953125, 0.7995677590370178, 1161.596435546875, 813.962158203125, 0.9600041508674622], "score": 3.156440496444702, "box": [970.8546142578125, 123.65438842773438, 361.278076171875, 710.5156555175781], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06748399883508682, 0.08240659534931183, -0.03881058469414711], [-0.04053400084376335, 0.09554501622915268, 0.04006855934858322], [0.0018368111923336983, -0.10447628796100616, 0.024601951241493225], [0.1210123673081398, 0.4625982642173767, -0.03250959888100624], [-0.008494422771036625, 0.4758145213127136, 0.12468545883893967], [-0.020041370764374733, -0.2338707596063614, 0.03180565685033798], [0.11041700094938278, 0.8682128190994263, -0.015181207098066807], [0.06783483177423477, 0.850520670413971, 0.26097583770751953], [-0.045350249856710434, -0.28206783533096313, 0.017324551939964294], [0.013068112544715405, 0.940289318561554, -0.07148394733667374], [-0.048549022525548935, 0.9159701466560364, 0.25638166069984436], [-0.0844157412648201, -0.4870355725288391, 0.06153589487075806], [-0.0007090538274496794, -0.4191550612449646, 0.008861120790243149], [-0.1194722130894661, -0.3779311776161194, 0.09635759890079498], [-0.1279553472995758, -0.536650538444519, 0.011507604271173477], [0.05808281525969505, -0.4849845767021179, -0.019063489511609077], [-0.2053290456533432, -0.38145536184310913, 0.14224889874458313], [0.19159696996212006, -0.6740601658821106, -0.14746558666229248], [-0.40718257427215576, -0.23395328223705292, 0.20447325706481934], [-0.0063930051401257515, -0.7994158864021301, -0.05884566903114319], [-0.591758131980896, -0.1257462054491043, 0.0606546625494957], [-0.0462917722761631, -0.8707340359687805, -0.0380222462117672], [-0.6684982180595398, -0.09898589551448822, 0.03869309276342392]]}, {"image_id": "121.jpg", "category_id": 1, "keypoints": [1080.8411865234375, 468.99908447265625, 0.9831762313842773, 1097.7493896484375, 498.7414245605469, 0.9840396642684937, 1064.70556640625, 499.86505126953125, 0.9833157062530518, 1087.9947509765625, 431.8583984375, 0.9942607879638672, 1055.666015625, 626.1680908203125, 0.9694095849990845, 1090.603515625, 629.7756958007812, 0.9856812953948975, 1084.005615234375, 387.55450439453125, 0.9786912798881531, 1012.061279296875, 753.99462890625, 0.939765214920044, 1131.3160400390625, 754.4954223632812, 0.939242959022522, 1077.7315673828125, 373.408935546875, 0.9846238493919373, 994.7803955078125, 779.1687622070312, 0.8552191257476807, 1100.725830078125, 779.8071899414062, 0.9371621608734131, 1072.8707275390625, 301.3978271484375, 0.989695131778717, 1099.96728515625, 328.974609375, 0.9863553643226624, 1053.7611083984375, 337.374267578125, 0.9921666383743286, 1069.210693359375, 278.91845703125, 0.9497411847114563, 1120.227783203125, 319.18597412109375, 0.9756507277488708, 1023.6654663085938, 339.61834716796875, 0.9880213141441345, 1105.085693359375, 392.104736328125, 0.9633061289787292, 969.5331420898438, 401.1129455566406, 0.9377753734588623, 1012.6314697265625, 421.6666564941406, 0.9475305080413818, 961.5028076171875, 419.0477294921875, 0.958724856376648, 992.654541015625, 426.0682373046875, 0.9277430176734924, 959.987548828125, 425.16278076171875, 0.9164515137672424, 1069.57666015625, 198.5711669921875, 0.9533727765083313, 972.8467407226562, 432.45977783203125, 0.8969369530677795, 964.6502075195312, 427.21563720703125, 0.8919033408164978, 987.9578857421875, 782.2969360351562, 0.8647211194038391, 1086.6580810546875, 781.1600341796875, 0.9451600909233093], "score": 3.1543290615081787, "box": [936.690673828125, 197.09996032714844, 214.91015625, 631.8430938720703], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04959593713283539, 0.09205447882413864, -0.04363613203167915], [-0.04615231975913048, 0.08795371651649475, 0.049901463091373444], [0.01904403790831566, -0.10395264625549316, 0.01895757205784321], [-0.07163164764642715, 0.4544875919818878, -0.08171675354242325], [0.03151080384850502, 0.4654974043369293, 0.11557585000991821], [0.007037502247840166, -0.23187780380249023, -0.01228209026157856], [-0.19969135522842407, 0.8361440300941467, -0.02910362370312214], [0.15723364055156708, 0.8423163890838623, 0.19832830131053925], [-0.012990307062864304, -0.27227017283439636, -0.046292394399642944], [-0.2569120228290558, 0.9105671048164368, -0.12420026957988739], [0.055486515164375305, 0.9280195236206055, 0.21143174171447754], [-0.028082095086574554, -0.48454558849334717, -0.05784779042005539], [0.050335515290498734, -0.39696401357650757, -0.08132621645927429], [-0.08058001846075058, -0.3921734690666199, -0.0026812050491571426], [-0.04035772383213043, -0.5421946048736572, -0.11660507321357727], [0.11366201937198639, -0.4247050881385803, -0.14273734390735626], [-0.17253996431827545, -0.38731861114501953, 0.028895149007439613], [0.06099729239940643, -0.19142615795135498, -0.2566392421722412], [-0.337076336145401, -0.19794991612434387, -0.03025900386273861], [-0.14539474248886108, -0.1213548481464386, -0.3805897533893585], [-0.36197662353515625, -0.13286983966827393, -0.2786797285079956], [-0.20985029637813568, -0.10535120964050293, -0.43266770243644714], [-0.36646711826324463, -0.11171585321426392, -0.3600899875164032]]}, {"image_id": "122.jpg", "category_id": 1, "keypoints": [1208.7216796875, 458.84906005859375, 0.980883002281189, 1236.6981201171875, 489.23614501953125, 0.9889592528343201, 1193.6175537109375, 499.1243896484375, 0.9836860299110413, 1210.523681640625, 419.1613464355469, 0.9882168769836426, 1258.3858642578125, 645.5, 0.9824776649475098, 1205.86328125, 649.6903076171875, 0.979798436164856, 1200.37158203125, 369.5387878417969, 0.9860299825668335, 1254.080078125, 793.347900390625, 0.8498173952102661, 1231.065185546875, 784.4814453125, 0.9197121262550354, 1190.708740234375, 351.4910583496094, 0.9910019636154175, 1212.0147705078125, 820.4100341796875, 0.8555651903152466, 1181.1689453125, 812.5230102539062, 0.9375986456871033, 1170.109375, 269.3344421386719, 0.9850038886070251, 1204.3106689453125, 294.0933837890625, 0.9830034375190735, 1157.8104248046875, 314.099365234375, 0.9898602366447449, 1154.6400146484375, 252.484375, 0.9548771381378174, 1225.0433349609375, 271.16583251953125, 0.9609270095825195, 1128.3623046875, 313.42724609375, 0.9871878027915955, 1286.30126953125, 184.98785400390625, 0.9268129467964172, 1058.889404296875, 367.103515625, 0.967280387878418, 1226.14599609375, 142.30938720703125, 0.9803519248962402, 982.235595703125, 411.406494140625, 0.9657139778137207, 1212.9674072265625, 116.76889038085938, 0.968072235584259, 953.708251953125, 421.7939453125, 0.9494742155075073, 1133.949951171875, 183.56048583984375, 0.9415940642356873, 1187.1314697265625, 81.317138671875, 0.9325404763221741, 925.844482421875, 433.43914794921875, 0.9318357706069946, 1190.01953125, 817.5341186523438, 0.7734909653663635, 1167.2913818359375, 816.3751220703125, 0.9593016505241394], "score": 3.1545581817626953, "box": [977.9444580078125, 121.4440689086914, 351.1153564453125, 714.6809921264648], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06776338815689087, 0.08102574944496155, -0.040844760835170746], [-0.03704793006181717, 0.09614235907793045, 0.04165368899703026], [0.0004685204476118088, -0.10449610650539398, 0.024238411337137222], [0.11962705850601196, 0.46087828278541565, -0.05137186497449875], [-0.0006453637033700943, 0.4763685464859009, 0.12233345210552216], [-0.0254934374243021, -0.2333173006772995, 0.029220886528491974], [0.10801929980516434, 0.866165041923523, -0.04911106824874878], [0.07799973338842392, 0.8514788150787354, 0.2541215419769287], [-0.05223139375448227, -0.280642569065094, 0.014488212764263153], [0.002492407336831093, 0.9271606802940369, -0.10346995294094086], [-0.03836754709482193, 0.9168781042098999, 0.2541325092315674], [-0.09456361085176468, -0.4852389097213745, 0.05662744864821434], [-0.011053109541535378, -0.418412983417511, 0.0024466775357723236], [-0.12597402930259705, -0.37600958347320557, 0.09425376355648041], [-0.1418873518705368, -0.5293775200843811, 0.004868254065513611], [0.046857088804244995, -0.48268240690231323, -0.030451688915491104], [-0.21063634753227234, -0.3811049461364746, 0.14215786755084991], [0.17513887584209442, -0.6672949194908142, -0.16949933767318726], [-0.4075051546096802, -0.2309313267469406, 0.21202071011066437], [-0.01569441519677639, -0.8141309022903442, -0.10140340030193329], [-0.5926089286804199, -0.11930827796459198, 0.07212813198566437], [-0.05395565927028656, -0.889141321182251, -0.09812131524085999], [-0.6696536540985107, -0.09063883125782013, 0.05430423840880394]]}, {"image_id": "122.jpg", "category_id": 1, "keypoints": [1079.4991455078125, 467.7428894042969, 0.9828153252601624, 1095.64404296875, 497.8535461425781, 0.9812673926353455, 1064.7760009765625, 498.8257141113281, 0.9839801788330078, 1086.3416748046875, 429.8880615234375, 0.9942305684089661, 1052.60302734375, 629.060546875, 0.9693766236305237, 1090.6885986328125, 630.0488891601562, 0.9847226738929749, 1082.4384765625, 385.97662353515625, 0.9829780459403992, 1011.268310546875, 760.3231811523438, 0.9318665862083435, 1133.0849609375, 756.6844482421875, 0.928492546081543, 1076.4691162109375, 372.4468994140625, 0.9869474172592163, 995.0428466796875, 785.9763793945312, 0.8536691665649414, 1101.35498046875, 783.1341552734375, 0.9361556768417358, 1073.3338623046875, 301.0977783203125, 0.988537609577179, 1098.8626708984375, 328.6824951171875, 0.9873441457748413, 1054.7451171875, 335.8470458984375, 0.9915286302566528, 1070.998046875, 278.0044250488281, 0.9451937675476074, 1119.3746337890625, 320.12689208984375, 0.9749650955200195, 1025.496337890625, 337.79705810546875, 0.9873993992805481, 1098.0787353515625, 400.8089294433594, 0.9521799683570862, 974.53955078125, 403.4081726074219, 0.9552274942398071, 1012.0701904296875, 429.1953125, 0.9357722401618958, 962.2648315429688, 425.7631530761719, 0.9301355481147766, 989.6509399414062, 435.3140869140625, 0.9467179179191589, 959.1459350585938, 433.6479797363281, 0.8609492778778076, 1061.7744140625, 202.10812377929688, 0.9506540894508362, 967.2999877929688, 440.54437255859375, 0.8048089146614075, 963.3933715820312, 436.52020263671875, 0.9014581441879272, 988.3112182617188, 788.830078125, 0.8636906147003174, 1089.6085205078125, 787.0294189453125, 0.9384303092956543], "score": 3.1455678939819336, "box": [937.6701049804688, 187.99244689941406, 215.49542236328125, 648.6743621826172], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.048735182732343674, 0.0920526385307312, -0.04439791291952133], [-0.0427490659058094, 0.0876837745308876, 0.05310998111963272], [0.0184905044734478, -0.10430130362510681, 0.016537491232156754], [-0.07179421931505203, 0.4542771279811859, -0.08874539285898209], [0.03421512618660927, 0.46512460708618164, 0.12131043523550034], [0.006756554823368788, -0.2321166694164276, -0.014809641987085342], [-0.19374960660934448, 0.8416390419006348, -0.08808660507202148], [0.16292858123779297, 0.8423076868057251, 0.19805693626403809], [-0.01315506175160408, -0.27264511585235596, -0.048588234931230545], [-0.24945101141929626, 0.9209545850753784, -0.180055171251297], [0.0603041835129261, 0.9279210567474365, 0.1986423134803772], [-0.021845249459147453, -0.48505470156669617, -0.06038441136479378], [0.0535581149160862, -0.3951605260372162, -0.08426317572593689], [-0.07654460519552231, -0.3944912850856781, -0.004654761403799057], [-0.03038203716278076, -0.5448864698410034, -0.11763320863246918], [0.11897138506174088, -0.41951707005500793, -0.144711434841156], [-0.1669367402791977, -0.39068809151649475, 0.030940208584070206], [0.05446191504597664, -0.18884479999542236, -0.25796234607696533], [-0.32251060009002686, -0.1889129877090454, -0.008343357592821121], [-0.16182321310043335, -0.11442461609840393, -0.360710084438324], [-0.36406970024108887, -0.10486671328544617, -0.2487882375717163], [-0.24005761742591858, -0.09238365292549133, -0.38329073786735535], [-0.37370216846466064, -0.07780364155769348, -0.3279428482055664]]}, {"image_id": "123.jpg", "category_id": 1, "keypoints": [1204.29736328125, 455.25091552734375, 0.980684220790863, 1232.654541015625, 484.3331604003906, 0.9865760207176208, 1192.265869140625, 495.20599365234375, 0.9827811121940613, 1203.5107421875, 416.9981689453125, 0.9861491918563843, 1255.8795166015625, 639.1121215820312, 0.9834771752357483, 1209.3121337890625, 644.7915649414062, 0.9776628017425537, 1192.532470703125, 367.9701232910156, 0.9842017889022827, 1256.0963134765625, 791.4639282226562, 0.8419432044029236, 1232.2193603515625, 784.723388671875, 0.903876006603241, 1183.5040283203125, 349.7833251953125, 0.9885038137435913, 1217.126953125, 824.40869140625, 0.8355008363723755, 1180.6864013671875, 815.1138305664062, 0.9536437392234802, 1163.689208984375, 268.75042724609375, 0.9863284826278687, 1197.5035400390625, 291.85223388671875, 0.9818427562713623, 1152.6405029296875, 313.69219970703125, 0.9908931255340576, 1146.6068115234375, 252.90931701660156, 0.9520393013954163, 1219.9169921875, 269.41925048828125, 0.9743949174880981, 1126.0382080078125, 313.24444580078125, 0.9858829379081726, 1279.95068359375, 170.82864379882812, 0.9332989454269409, 1056.4676513671875, 369.08349609375, 0.9626101851463318, 1216.784912109375, 134.09054565429688, 0.977421224117279, 982.083984375, 415.47052001953125, 0.9770147204399109, 1207.0113525390625, 111.55191040039062, 0.9784072637557983, 957.5328369140625, 425.7138671875, 0.9272297024726868, 1126.6671142578125, 186.5147705078125, 0.9537990093231201, 1186.500732421875, 79.4998779296875, 0.9452479481697083, 930.9427490234375, 441.2955322265625, 0.9401992559432983, 1196.4923095703125, 827.8797607421875, 0.8326648473739624, 1162.8057861328125, 817.7968139648438, 0.9521647691726685], "score": 3.152904748916626, "box": [1001.3327026367188, 113.6492691040039, 322.84344482421875, 725.5029525756836], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06997452676296234, 0.07709677517414093, -0.042474791407585144], [-0.02948877215385437, 0.09701485186815262, 0.0433870404958725], [-0.004587241448462009, -0.10359208285808563, 0.02308942936360836], [0.12671425938606262, 0.4555765390396118, -0.043131135404109955], [0.018763426691293716, 0.4759070873260498, 0.11912375688552856], [-0.03265813738107681, -0.2317299097776413, 0.031206941232085228], [0.12665845453739166, 0.859055757522583, -0.05067797750234604], [0.08856546133756638, 0.8554378747940063, 0.23618915677070618], [-0.0577252060174942, -0.2797049880027771, 0.017273468896746635], [0.027063539251685143, 0.9376922249794006, -0.08993835002183914], [-0.025962913408875465, 0.9223453998565674, 0.2306562066078186], [-0.09929727762937546, -0.4817148447036743, 0.06465789675712585], [-0.01720130257308483, -0.41650164127349854, 0.008222095668315887], [-0.12941785156726837, -0.3722571134567261, 0.09977518767118454], [-0.15116973221302032, -0.5233651995658875, 0.014977922663092613], [0.04582249000668526, -0.4795149564743042, -0.013895455747842789], [-0.20933370292186737, -0.37710684537887573, 0.15386135876178741], [0.16762523353099823, -0.6844630837440491, -0.12537339329719543], [-0.40036478638648987, -0.2258506864309311, 0.2322879135608673], [-0.005191163159906864, -0.8056774139404297, 0.006704485043883324], [-0.5938482880592346, -0.10164915025234222, 0.11901327967643738], [-0.03572722524404526, -0.8813538551330566, 0.02536681853234768], [-0.6677531003952026, -0.07007373869419098, 0.09627082943916321]]}, {"image_id": "123.jpg", "category_id": 1, "keypoints": [1076.9622802734375, 469.32684326171875, 0.9822289943695068, 1093.3282470703125, 499.03369140625, 0.9819429516792297, 1063.2415771484375, 500.48779296875, 0.9858668446540833, 1083.15478515625, 430.8098449707031, 0.9942225813865662, 1051.137939453125, 629.7586669921875, 0.9719531536102295, 1089.1715087890625, 629.9705810546875, 0.9829040169715881, 1079.51806640625, 386.74169921875, 0.9822167754173279, 1011.1414184570312, 760.0979614257812, 0.9291775226593018, 1135.887451171875, 756.1204833984375, 0.9302283525466919, 1074.2469482421875, 373.14862060546875, 0.9865959882736206, 996.333251953125, 784.7047729492188, 0.858789324760437, 1103.03759765625, 783.2425537109375, 0.9436690807342529, 1071.3660888671875, 302.3277587890625, 0.988530695438385, 1096.4354248046875, 329.54522705078125, 0.9887669682502747, 1053.2298583984375, 336.0111083984375, 0.9921631217002869, 1068.973876953125, 280.03814697265625, 0.9439753890037537, 1117.0009765625, 320.79473876953125, 0.9746905565261841, 1024.842041015625, 337.68670654296875, 0.9872490167617798, 1104.9227294921875, 399.1336364746094, 0.9582814574241638, 971.456787109375, 402.75537109375, 0.9502321481704712, 1016.995361328125, 428.2203674316406, 0.9232980608940125, 960.2913818359375, 431.271240234375, 0.9198389053344727, 996.2672119140625, 433.64990234375, 0.9394476413726807, 957.8714599609375, 441.9620361328125, 0.8574572205543518, 1061.700439453125, 200.2847900390625, 0.9455456137657166, 971.7611083984375, 440.454345703125, 0.7654822468757629, 962.3499145507812, 448.20220947265625, 0.9012364149093628, 990.4808349609375, 785.4865112304688, 0.8783624768257141, 1090.278564453125, 786.1359252929688, 0.947436511516571], "score": 3.141122817993164, "box": [939.6111450195312, 186.7757110595703, 215.23236083984375, 649.2678070068359], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05005313828587532, 0.09103381633758545, -0.04468867555260658], [-0.040449660271406174, 0.08837243169546127, 0.05345829948782921], [0.01652577519416809, -0.10449154675006866, 0.016262419521808624], [-0.0687648355960846, 0.45406702160835266, -0.088297039270401], [0.03750031068921089, 0.4655293822288513, 0.12251412868499756], [0.005948496982455254, -0.2325853556394577, -0.014374224469065666], [-0.18785150349140167, 0.8422098159790039, -0.08774647116661072], [0.17751283943653107, 0.8366428017616272, 0.20788761973381042], [-0.013765035197138786, -0.27052754163742065, -0.05102313309907913], [-0.24109072983264923, 0.9217081665992737, -0.18095120787620544], [0.07464338839054108, 0.9218519926071167, 0.2103150486946106], [-0.01901436224579811, -0.4829006791114807, -0.06068224087357521], [0.054652150720357895, -0.39209097623825073, -0.08573292195796967], [-0.07473373413085938, -0.39276474714279175, -0.005563890561461449], [-0.02777121216058731, -0.5405322909355164, -0.12024988234043121], [0.12049219757318497, -0.4172481894493103, -0.14516882598400116], [-0.16442330181598663, -0.3897930979728699, 0.031531523913145065], [0.07999148964881897, -0.18500374257564545, -0.2659304440021515], [-0.3255259394645691, -0.19200663268566132, -0.0051873959600925446], [-0.13810724020004272, -0.10997830331325531, -0.36409783363342285], [-0.36269935965538025, -0.0891088992357254, -0.23889654874801636], [-0.21611721813678741, -0.08881209790706635, -0.3880600333213806], [-0.3699800372123718, -0.05435933172702789, -0.31519967317581177]]}, {"image_id": "124.jpg", "category_id": 1, "keypoints": [1075.1148681640625, 469.2139892578125, 0.9834972023963928, 1092.160888671875, 498.80389404296875, 0.9821825623512268, 1060.56298828125, 500.1875915527344, 0.9853357076644897, 1080.9437255859375, 431.4304504394531, 0.9936578869819641, 1052.86767578125, 630.0919799804688, 0.9721426367759705, 1087.6781005859375, 631.1337890625, 0.9825242757797241, 1077.378173828125, 387.2396240234375, 0.9804781079292297, 1013.45458984375, 761.7338256835938, 0.9238537549972534, 1134.072998046875, 758.0867919921875, 0.9294569492340088, 1072.3369140625, 373.413330078125, 0.9859258532524109, 998.6490478515625, 785.2032470703125, 0.8713710308074951, 1103.2164306640625, 783.858154296875, 0.9383956789970398, 1069.792724609375, 302.560546875, 0.9879290461540222, 1094.9586181640625, 329.5718994140625, 0.9892550706863403, 1051.31884765625, 336.20654296875, 0.9928559064865112, 1067.750732421875, 280.354248046875, 0.9457643032073975, 1115.4373779296875, 321.5592956542969, 0.975532591342926, 1022.31787109375, 338.2503662109375, 0.9864251613616943, 1098.5084228515625, 402.1751708984375, 0.9531067609786987, 973.4976806640625, 404.2613525390625, 0.9508681893348694, 1013.580078125, 430.735107421875, 0.9338630437850952, 962.1546630859375, 432.6417541503906, 0.9187419414520264, 992.8418579101562, 438.33660888671875, 0.94026118516922, 959.031005859375, 443.67987060546875, 0.8674783110618591, 1062.2738037109375, 201.07376098632812, 0.9431025385856628, 970.263427734375, 446.13299560546875, 0.742408037185669, 963.05517578125, 449.7657165527344, 0.9147615432739258, 991.5625610351562, 785.8240356445312, 0.8776458501815796, 1091.5670166015625, 787.1025390625, 0.9371844530105591], "score": 3.1552133560180664, "box": [939.3193969726562, 188.8645477294922, 214.41937255859375, 647.4729156494141], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.051371343433856964, 0.09040317684412003, -0.043716080486774445], [-0.04246688261628151, 0.08864669501781464, 0.050742726773023605], [0.01599069871008396, -0.10388258099555969, 0.01796591281890869], [-0.05955592542886734, 0.454717218875885, -0.09362576901912689], [0.03781158849596977, 0.4653010666370392, 0.11712214350700378], [0.005169767886400223, -0.2317935824394226, -0.012289747595787048], [-0.17654167115688324, 0.8413033485412598, -0.12642699480056763], [0.17631113529205322, 0.8380359411239624, 0.19363200664520264], [-0.013669006526470184, -0.269835501909256, -0.04899099841713905], [-0.22903898358345032, 0.915031909942627, -0.2243148535490036], [0.07394590973854065, 0.9234213829040527, 0.1926758885383606], [-0.01800178736448288, -0.4817369878292084, -0.057399872690439224], [0.05577085167169571, -0.3910243809223175, -0.0810394287109375], [-0.07515905797481537, -0.3916328251361847, -0.004424061626195908], [-0.025821154937148094, -0.5400822162628174, -0.1163494884967804], [0.12303446978330612, -0.41444161534309387, -0.13921742141246796], [-0.16606242954730988, -0.38729390501976013, 0.02869795635342598], [0.07011952996253967, -0.18097636103630066, -0.2514008581638336], [-0.31623440980911255, -0.18269619345664978, -0.012957338243722916], [-0.14341837167739868, -0.1060907244682312, -0.3579986095428467], [-0.3543626070022583, -0.07978621125221252, -0.24595242738723755], [-0.21959048509597778, -0.07756504416465759, -0.3793408274650574], [-0.36400601267814636, -0.04334345459938049, -0.32094675302505493]]}, {"image_id": "124.jpg", "category_id": 1, "keypoints": [1209.328369140625, 455.2654113769531, 0.9799110889434814, 1238.0458984375, 484.07708740234375, 0.9858683943748474, 1197.0948486328125, 494.9004821777344, 0.9823772311210632, 1208.12744140625, 416.5577392578125, 0.9861342906951904, 1259.3057861328125, 639.307373046875, 0.9836682677268982, 1211.708251953125, 644.5734252929688, 0.9771062135696411, 1196.059814453125, 367.9354248046875, 0.9827379584312439, 1260.275390625, 794.3887939453125, 0.8569665551185608, 1238.5244140625, 784.25146484375, 0.9008946418762207, 1186.789306640625, 350.541259765625, 0.9887270927429199, 1223.6275634765625, 828.134033203125, 0.8516024351119995, 1189.0047607421875, 815.7786865234375, 0.9513193368911743, 1162.6197509765625, 271.7484130859375, 0.9863900542259216, 1197.443359375, 292.9490661621094, 0.9837827086448669, 1153.39306640625, 316.46435546875, 0.9909119009971619, 1144.624267578125, 256.559814453125, 0.9501194953918457, 1216.7587890625, 269.72161865234375, 0.9749851226806641, 1125.7587890625, 317.44793701171875, 0.9869910478591919, 1274.6328125, 172.27764892578125, 0.9406780004501343, 1053.6444091796875, 374.5928955078125, 0.9664351940155029, 1212.29833984375, 134.54507446289062, 0.9794023036956787, 982.2413330078125, 418.62945556640625, 0.9753531813621521, 1199.94140625, 112.26193237304688, 0.9814662337303162, 957.4038696289062, 427.62432861328125, 0.9320716261863708, 1123.98193359375, 194.40634155273438, 0.9581000804901123, 1176.900390625, 76.49978637695312, 0.9469393491744995, 928.6215209960938, 440.30889892578125, 0.941215455532074, 1203.72412109375, 830.220703125, 0.8708925247192383, 1172.9210205078125, 817.4063720703125, 0.9642696380615234], "score": 3.1537599563598633, "box": [1004.8153686523438, 110.11138153076172, 318.54949951171875, 730.1242752075195], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07149822264909744, 0.07649001479148865, -0.040153369307518005], [-0.030836541205644608, 0.09721950441598892, 0.04108532890677452], [-0.005736438557505608, -0.10294453799724579, 0.02368958294391632], [0.12249360233545303, 0.4554074704647064, -0.051381755620241165], [0.011406182311475277, 0.47625792026519775, 0.11836694180965424], [-0.03685680031776428, -0.23052264750003815, 0.03063586726784706], [0.1257244050502777, 0.8582621812820435, -0.042885348200798035], [0.09137986600399017, 0.8508360981941223, 0.24242080748081207], [-0.06316262483596802, -0.27725714445114136, 0.015431828796863556], [0.02895968034863472, 0.9422993659973145, -0.07688888907432556], [-0.02041567489504814, 0.9201586842536926, 0.22674746811389923], [-0.11828085035085678, -0.4766389727592468, 0.05730409547686577], [-0.030558697879314423, -0.4155282974243164, 0.005595766007900238], [-0.14298072457313538, -0.36642569303512573, 0.093073770403862], [-0.17012158036231995, -0.5138199329376221, 0.003950599581003189], [0.025044210255146027, -0.48269182443618774, -0.022142920643091202], [-0.2258329540491104, -0.36645257472991943, 0.14204537868499756], [0.14145709574222565, -0.6842541098594666, -0.14437267184257507], [-0.42069849371910095, -0.21365593373775482, 0.20533733069896698], [-0.05928296968340874, -0.8158987760543823, -0.07965871691703796], [-0.6116483211517334, -0.09227816760540009, 0.08569209277629852], [-0.10028962045907974, -0.8883621692657471, -0.08580489456653595], [-0.6861143708229065, -0.06451879441738129, 0.060797031968832016]]}, {"image_id": "125.jpg", "category_id": 1, "keypoints": [1204.47607421875, 453.66131591796875, 0.9790306091308594, 1233.176513671875, 481.7491149902344, 0.988115131855011, 1192.9588623046875, 493.0571594238281, 0.9807032942771912, 1203.158935546875, 414.2293701171875, 0.9904747605323792, 1263.5113525390625, 638.490966796875, 0.9728059768676758, 1208.7745361328125, 643.7400512695312, 0.9834346771240234, 1189.1627197265625, 367.0998229980469, 0.9819778800010681, 1266.637939453125, 786.912353515625, 0.9120075702667236, 1241.1671142578125, 778.7235107421875, 0.9263617992401123, 1179.697265625, 350.25726318359375, 0.9898538589477539, 1229.838134765625, 822.164794921875, 0.8881943821907043, 1194.421875, 806.5571899414062, 0.9312111735343933, 1154.5335693359375, 273.5264892578125, 0.9862287044525146, 1190.040283203125, 293.44854736328125, 0.9868482947349548, 1145.0460205078125, 317.4753723144531, 0.9928773045539856, 1136.5390625, 258.8538818359375, 0.9583938717842102, 1212.45751953125, 270.2313232421875, 0.9746480584144592, 1118.7152099609375, 318.4469909667969, 0.9877654910087585, 1269.381591796875, 171.03750610351562, 0.9401603937149048, 1052.008056640625, 379.26885986328125, 0.9616577625274658, 1205.0858154296875, 131.51480102539062, 0.9791330695152283, 981.4180908203125, 416.74810791015625, 0.9748825430870056, 1193.3856201171875, 106.43890380859375, 0.9773362278938293, 956.2586669921875, 424.32989501953125, 0.9531071186065674, 1118.0325927734375, 195.62481689453125, 0.9474546909332275, 1167.7906494140625, 73.03720092773438, 0.9440587162971497, 939.328125, 435.51055908203125, 0.8621580600738525, 1203.522216796875, 820.412353515625, 0.8532552719116211, 1180.325439453125, 810.1868896484375, 0.9612526893615723], "score": 3.1777029037475586, "box": [973.67431640625, 107.21763610839844, 358.468017578125, 732.9002838134766], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0731033906340599, 0.07597476243972778, -0.0385194830596447], [-0.03065754473209381, 0.09738639742136002, 0.04114088416099548], [-0.00723604392260313, -0.10299882292747498, 0.02296985685825348], [0.1406187117099762, 0.4529806673526764, -0.030353916808962822], [0.014492479152977467, 0.4756941795349121, 0.12301639467477798], [-0.04383233189582825, -0.22859567403793335, 0.031931839883327484], [0.15431320667266846, 0.851536750793457, 0.032548606395721436], [0.11126665771007538, 0.845034122467041, 0.2531629502773285], [-0.07118871808052063, -0.27497202157974243, 0.017754100263118744], [0.06392773985862732, 0.9293239116668701, -0.025684088468551636], [-0.0028453124687075615, 0.9120442867279053, 0.2449164092540741], [-0.12748701870441437, -0.47439488768577576, 0.05810009688138962], [-0.03746305778622627, -0.4132387340068817, 0.010632187128067017], [-0.15460139513015747, -0.3641013205051422, 0.09176038205623627], [-0.1824735850095749, -0.5134830474853516, 0.009714413434267044], [0.024577397853136063, -0.4774467647075653, -0.009319629520177841], [-0.23791101574897766, -0.3639295995235443, 0.13991644978523254], [0.13999012112617493, -0.6840518712997437, -0.12482281774282455], [-0.417648047208786, -0.20184549689292908, 0.22351974248886108], [-0.07278073579072952, -0.8123831748962402, -0.14056268334388733], [-0.6254354119300842, -0.08844447135925293, 0.1250765323638916], [-0.10885407030582428, -0.8824445009231567, -0.1683501899242401], [-0.7046021819114685, -0.0642612874507904, 0.11507905274629593]]}, {"image_id": "125.jpg", "category_id": 1, "keypoints": [1074.6925048828125, 465.908935546875, 0.9838042855262756, 1091.9697265625, 495.4100646972656, 0.9838264584541321, 1060.875732421875, 496.64129638671875, 0.9860126376152039, 1079.7659912109375, 428.56683349609375, 0.9939149618148804, 1054.55517578125, 626.80078125, 0.9739162921905518, 1089.1964111328125, 627.478759765625, 0.9837418794631958, 1076.0634765625, 385.3731689453125, 0.97874516248703, 1016.5035400390625, 761.3449096679688, 0.9229735136032104, 1134.6422119140625, 755.5155029296875, 0.939067006111145, 1071.3916015625, 371.9931945800781, 0.9852688312530518, 1003.2564697265625, 784.8233642578125, 0.8969029188156128, 1104.90771484375, 781.0381469726562, 0.9385423064231873, 1067.1160888671875, 303.2489929199219, 0.9877740144729614, 1093.351318359375, 328.8373107910156, 0.989328145980835, 1049.01611328125, 336.0095520019531, 0.9924736618995667, 1064.08740234375, 281.852783203125, 0.9465464949607849, 1115.180908203125, 320.60552978515625, 0.9773341417312622, 1020.3247680664062, 338.2322998046875, 0.9868040084838867, 1106.985595703125, 402.2230224609375, 0.9566298723220825, 975.7774047851562, 406.8179931640625, 0.9650280475616455, 1018.814697265625, 430.80609130859375, 0.9159323573112488, 963.1334838867188, 437.8766784667969, 0.9195213913917542, 995.996826171875, 436.2277526855469, 0.935103178024292, 958.4779663085938, 449.84527587890625, 0.8696422576904297, 1051.962158203125, 205.77914428710938, 0.9527561068534851, 970.4022827148438, 442.95391845703125, 0.7235103249549866, 960.3828735351562, 456.130615234375, 0.9103750586509705, 994.8665161132812, 784.7032470703125, 0.8945015072822571, 1094.1138916015625, 784.4593505859375, 0.9327237010002136], "score": 3.160529136657715, "box": [940.7361450195312, 184.7739715576172, 212.71636962890625, 651.3059844970703], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05306867137551308, 0.0896558165550232, -0.04243249073624611], [-0.04174965247511864, 0.08880361914634705, 0.05038408190011978], [0.01423689816147089, -0.10398364067077637, 0.01770317554473877], [-0.06099085509777069, 0.4518440365791321, -0.0916856899857521], [0.04167204722762108, 0.46391695737838745, 0.11458105593919754], [0.00255555915646255, -0.23145174980163574, -0.015244439244270325], [-0.17171697318553925, 0.8369896411895752, -0.13973388075828552], [0.1765076220035553, 0.8378881216049194, 0.18253666162490845], [-0.013588066212832928, -0.27235233783721924, -0.05007725581526756], [-0.2195146381855011, 0.9116815328598022, -0.23887532949447632], [0.07532631605863571, 0.9236800074577332, 0.17333638668060303], [-0.02596641145646572, -0.4834826588630676, -0.06211740896105766], [0.05205024406313896, -0.3954542875289917, -0.0815095603466034], [-0.08133213222026825, -0.3919829726219177, -0.00984564796090126], [-0.036625344306230545, -0.5398442149162292, -0.12273788452148438], [0.12322446703910828, -0.4196186661720276, -0.13438823819160461], [-0.17228910326957703, -0.38696157932281494, 0.022831812500953674], [0.09474749863147736, -0.18125975131988525, -0.24288049340248108], [-0.31037527322769165, -0.17331695556640625, -0.007721370086073875], [-0.11917833983898163, -0.10891616344451904, -0.3484957218170166], [-0.3529055714607239, -0.06209710240364075, -0.23504728078842163], [-0.1978462040424347, -0.08957281708717346, -0.37024492025375366], [-0.3671894371509552, -0.023225143551826477, -0.30776864290237427]]}, {"image_id": "126.jpg", "category_id": 1, "keypoints": [1210.057373046875, 455.07122802734375, 0.9798265099525452, 1237.0281982421875, 484.139892578125, 0.9867399334907532, 1199.2432861328125, 493.9108581542969, 0.9816275835037231, 1209.7733154296875, 415.01544189453125, 0.9905667901039124, 1262.227783203125, 640.7997436523438, 0.9773387908935547, 1210.69140625, 644.5267944335938, 0.9832169413566589, 1194.224609375, 367.9030456542969, 0.97943514585495, 1264.946533203125, 789.789794921875, 0.9013590812683105, 1239.979736328125, 780.4127197265625, 0.9258683919906616, 1183.7147216796875, 351.9925537109375, 0.9889365434646606, 1222.0843505859375, 822.4234619140625, 0.8693665862083435, 1191.2781982421875, 807.6555786132812, 0.9383002519607544, 1156.8802490234375, 274.7275390625, 0.9869047403335571, 1190.9229736328125, 295.708251953125, 0.9861166477203369, 1150.65673828125, 317.7416076660156, 0.9918962121009827, 1138.69091796875, 259.82244873046875, 0.9553065299987793, 1208.196044921875, 274.01190185546875, 0.9744813442230225, 1125.2659912109375, 318.5064392089844, 0.9862779974937439, 1261.3369140625, 173.31768798828125, 0.9448833465576172, 1059.623779296875, 386.7703857421875, 0.9680949449539185, 1201.343017578125, 132.136474609375, 0.9697471857070923, 987.8770141601562, 422.4200744628906, 0.9683377146720886, 1189.211669921875, 107.6016845703125, 0.9743157625198364, 959.4581298828125, 428.6544189453125, 0.9423749446868896, 1118.8837890625, 193.6766357421875, 0.9439060688018799, 1162.2822265625, 67.33575439453125, 0.9290679693222046, 939.8316650390625, 438.00653076171875, 0.884206235408783, 1196.557861328125, 819.998046875, 0.815559446811676, 1173.73291015625, 811.552001953125, 0.9620363712310791], "score": 3.178791046142578, "box": [974.0824584960938, 108.85305786132812, 359.35931396484375, 728.0920715332031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06771533191204071, 0.07799914479255676, -0.04458223283290863], [-0.027618814259767532, 0.09627101570367813, 0.04631464183330536], [-0.003257271833717823, -0.10388511419296265, 0.021579576656222343], [0.12401506304740906, 0.45692819356918335, -0.03907717019319534], [0.00698094442486763, 0.4751311242580414, 0.13130371272563934], [-0.04407002776861191, -0.22854000329971313, 0.025578143075108528], [0.13629399240016937, 0.8565249443054199, 0.019948111847043037], [0.0955011174082756, 0.8474405407905579, 0.2602306306362152], [-0.07472468912601471, -0.272710382938385, 0.01048736460506916], [0.034458644688129425, 0.9276618361473083, -0.027237115427851677], [-0.020564431324601173, 0.9115272164344788, 0.2527214586734772], [-0.13630779087543488, -0.47257035970687866, 0.042900025844573975], [-0.04892537370324135, -0.41176682710647583, -0.010365786030888557], [-0.15412940084934235, -0.3638492226600647, 0.08728817850351334], [-0.18982398509979248, -0.5103105902671814, -0.008046125993132591], [0.0027242135256528854, -0.4771376848220825, -0.04883146286010742], [-0.2320556342601776, -0.3649696111679077, 0.14422930777072906], [0.10857147723436356, -0.6847752332687378, -0.17192699015140533], [-0.4021587073802948, -0.1891416311264038, 0.22076517343521118], [-0.09661418944597244, -0.8178274035453796, -0.22022370994091034], [-0.6130340099334717, -0.08147487044334412, 0.12182637304067612], [-0.13464829325675964, -0.8900873064994812, -0.2387181967496872], [-0.6919987797737122, -0.06350785493850708, 0.1012801080942154]]}, {"image_id": "126.jpg", "category_id": 1, "keypoints": [1075.540771484375, 467.737548828125, 0.982822835445404, 1093.210205078125, 497.3368835449219, 0.9844146966934204, 1061.6700439453125, 498.8359069824219, 0.9853837490081787, 1080.2481689453125, 430.03253173828125, 0.9940304756164551, 1056.07763671875, 628.6858520507812, 0.9739934802055359, 1087.9046630859375, 628.739013671875, 0.9839778542518616, 1076.1444091796875, 386.7355651855469, 0.981846809387207, 1016.8399047851562, 761.92529296875, 0.9306901693344116, 1134.35107421875, 754.4730834960938, 0.9332103133201599, 1071.2166748046875, 373.6416015625, 0.9876551032066345, 1002.560791015625, 786.44189453125, 0.8890244960784912, 1104.9918212890625, 781.23486328125, 0.9457401633262634, 1066.2969970703125, 305.43634033203125, 0.987959623336792, 1093.4498291015625, 331.22625732421875, 0.9891291856765747, 1047.9278564453125, 338.4385070800781, 0.9911242723464966, 1062.781005859375, 283.8491516113281, 0.947840690612793, 1115.1871337890625, 323.1230163574219, 0.9765095710754395, 1019.1611938476562, 341.52716064453125, 0.9861313700675964, 1115.615234375, 401.9499206542969, 0.9651268720626831, 977.4202880859375, 410.3353271484375, 0.9682673811912537, 1027.118896484375, 430.1160583496094, 0.9044272899627686, 963.3392333984375, 439.12628173828125, 0.9157917499542236, 1004.251220703125, 436.5423889160156, 0.9486694931983948, 958.6378784179688, 450.60369873046875, 0.8711717128753662, 1050.75244140625, 205.99041748046875, 0.9495601058006287, 975.4981079101562, 444.736328125, 0.7400009632110596, 958.5423583984375, 458.5192565917969, 0.9065066576004028, 994.1309814453125, 787.114501953125, 0.8893288373947144, 1092.7386474609375, 785.0614013671875, 0.9427976012229919], "score": 3.1649975776672363, "box": [940.495361328125, 185.62551879882812, 213.42919921875, 649.9421081542969], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05463904142379761, 0.08964432775974274, -0.04028405249118805], [-0.041888341307640076, 0.0885494127869606, 0.05059836432337761], [0.01294684037566185, -0.10424238443374634, 0.01670500636100769], [-0.05929592251777649, 0.4524635672569275, -0.08482223749160767], [0.036303430795669556, 0.46346136927604675, 0.12204606831073761], [0.000320252263918519, -0.23110461235046387, -0.018370863050222397], [-0.17396320402622223, 0.8385670185089111, -0.10984227061271667], [0.17532114684581757, 0.8332376480102539, 0.2028350979089737], [-0.018320033326745033, -0.26712819933891296, -0.05710093677043915], [-0.22408457100391388, 0.9148881435394287, -0.20653004944324493], [0.07676500827074051, 0.9218326807022095, 0.19228433072566986], [-0.02988187037408352, -0.4782525300979614, -0.06909847259521484], [0.04835205525159836, -0.3900564908981323, -0.08660116791725159], [-0.08671008795499802, -0.38679951429367065, -0.018422618508338928], [-0.04186473414301872, -0.5350345969200134, -0.12915700674057007], [0.11868826299905777, -0.4135602116584778, -0.14080920815467834], [-0.1784934550523758, -0.3787267804145813, 0.011011328548192978], [0.11469252407550812, -0.17313173413276672, -0.24839793145656586], [-0.31006932258605957, -0.16089338064193726, -0.018494892865419388], [-0.09574815630912781, -0.10298144817352295, -0.3621324896812439], [-0.3575943112373352, -0.056914329528808594, -0.24821816384792328], [-0.16807754337787628, -0.08160412311553955, -0.39877864718437195], [-0.3721594512462616, -0.01921682059764862, -0.3214632570743561]]}, {"image_id": "127.jpg", "category_id": 1, "keypoints": [1209.5357666015625, 455.8746643066406, 0.9804152846336365, 1237.046142578125, 484.076904296875, 0.9871528148651123, 1198.3636474609375, 495.1517028808594, 0.9834275245666504, 1209.32958984375, 416.34619140625, 0.9901790618896484, 1265.615234375, 638.4783325195312, 0.9760504364967346, 1208.977294921875, 644.7935791015625, 0.981236457824707, 1193.1204833984375, 369.1340637207031, 0.979853093624115, 1264.0810546875, 788.3197631835938, 0.8932545185089111, 1235.0631103515625, 780.86083984375, 0.9189460277557373, 1181.1688232421875, 353.5394287109375, 0.9879632592201233, 1218.92822265625, 822.3392333984375, 0.8593581318855286, 1186.2889404296875, 806.92822265625, 0.9297000169754028, 1152.0257568359375, 276.632568359375, 0.9866394996643066, 1186.3529052734375, 296.47259521484375, 0.9874991774559021, 1147.075927734375, 320.68408203125, 0.9933857917785645, 1133.331787109375, 262.59918212890625, 0.9621943235397339, 1203.2115478515625, 273.97882080078125, 0.9687729477882385, 1121.7669677734375, 323.3577880859375, 0.9864180684089661, 1254.0679931640625, 172.04925537109375, 0.9533167481422424, 1055.923095703125, 390.0167236328125, 0.9647748470306396, 1195.459228515625, 130.74319458007812, 0.9766296148300171, 986.3097534179688, 425.0958557128906, 0.967653214931488, 1179.3759765625, 105.74798583984375, 0.9677130579948425, 960.69921875, 431.6834411621094, 0.942589282989502, 1114.1807861328125, 196.70602416992188, 0.9513619542121887, 1153.459228515625, 66.81607055664062, 0.9421771764755249, 942.42236328125, 441.35467529296875, 0.9017102718353271, 1195.3712158203125, 819.3507080078125, 0.7950021028518677, 1171.7928466796875, 809.820068359375, 0.9532982110977173], "score": 3.182445526123047, "box": [969.3385620117188, 106.58042907714844, 367.13970947265625, 730.6931304931641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.068492591381073, 0.07689708471298218, -0.04629673808813095], [-0.028212569653987885, 0.09790193289518356, 0.04344961792230606], [-0.0034810497891157866, -0.10370662808418274, 0.024670403450727463], [0.13802598416805267, 0.45434218645095825, -0.05009407922625542], [0.004561810754239559, 0.4773653745651245, 0.13001036643981934], [-0.045387886464595795, -0.22785630822181702, 0.03343416005373001], [0.1373264193534851, 0.8577090501785278, -0.010174266993999481], [0.0848177820444107, 0.8562076091766357, 0.2488991618156433], [-0.07932136207818985, -0.27030521631240845, 0.019703861325979233], [0.03541942685842514, 0.9278707504272461, -0.05963175743818283], [-0.03278625011444092, 0.9186651706695557, 0.24525564908981323], [-0.147675558924675, -0.4684971868991852, 0.053446076810359955], [-0.05878281593322754, -0.4107988774776459, -0.0015895236283540726], [-0.16105131804943085, -0.3588489592075348, 0.09821822494268417], [-0.20482861995697021, -0.5060403347015381, 0.006507791578769684], [-0.009060739539563656, -0.4777804911136627, -0.040578536689281464], [-0.2379239946603775, -0.354014128446579, 0.15697020292282104], [0.09405149519443512, -0.6916511058807373, -0.15670591592788696], [-0.41004887223243713, -0.18095752596855164, 0.2378673255443573], [-0.1018998920917511, -0.8380876779556274, -0.10500851273536682], [-0.6143179535865784, -0.07474645972251892, 0.12285009771585464], [-0.1475972831249237, -0.9085564613342285, -0.10754039138555527], [-0.690729558467865, -0.054247766733169556, 0.09500766545534134]]}, {"image_id": "127.jpg", "category_id": 1, "keypoints": [1076.8851318359375, 466.7663269042969, 0.9837574362754822, 1094.9334716796875, 496.2696228027344, 0.9860385060310364, 1062.2503662109375, 498.3503112792969, 0.9858546257019043, 1081.821044921875, 429.1630554199219, 0.9935756325721741, 1057.0220947265625, 629.1097412109375, 0.9699048399925232, 1087.613525390625, 629.9663696289062, 0.9841465950012207, 1076.9974365234375, 385.39288330078125, 0.980761706829071, 1013.9677734375, 763.7000732421875, 0.9311420917510986, 1132.81884765625, 755.94189453125, 0.9326916933059692, 1072.0792236328125, 372.52105712890625, 0.9873371124267578, 999.183837890625, 788.85546875, 0.8712742328643799, 1101.222412109375, 781.8060302734375, 0.942981481552124, 1064.3099365234375, 305.0390319824219, 0.9874230027198792, 1093.2440185546875, 329.5463562011719, 0.9889593124389648, 1046.69384765625, 338.3145446777344, 0.9906954765319824, 1059.4407958984375, 284.9880065917969, 0.9522314071655273, 1114.9658203125, 320.36346435546875, 0.980171263217926, 1017.3779296875, 342.1334533691406, 0.986202597618103, 1114.0238037109375, 402.4583435058594, 0.9620089530944824, 979.7119750976562, 411.38970947265625, 0.9745082855224609, 1025.701416015625, 432.39483642578125, 0.9171777963638306, 964.909423828125, 440.31158447265625, 0.9214150905609131, 1003.0196533203125, 438.7780456542969, 0.9463672637939453, 959.419921875, 452.4210205078125, 0.881624698638916, 1042.1011962890625, 207.23492431640625, 0.9440451264381409, 974.52587890625, 448.4518127441406, 0.7182115316390991, 956.0726318359375, 461.67559814453125, 0.9143945574760437, 991.0082397460938, 790.1339111328125, 0.8721497058868408, 1088.264404296875, 785.62939453125, 0.9405251741409302], "score": 3.1595048904418945, "box": [943.4793701171875, 186.93582153320312, 208.89208984375, 650.1825866699219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.055728983134031296, 0.09006800502538681, -0.03845862299203873], [-0.04384530708193779, 0.08843355625867844, 0.049662306904792786], [0.012784076854586601, -0.10441456735134125, 0.016829663887619972], [-0.05966753885149956, 0.45356011390686035, -0.08083505183458328], [0.036510828882455826, 0.46465349197387695, 0.11624746769666672], [-0.00107988016679883, -0.23043014109134674, -0.01999950222671032], [-0.1838066279888153, 0.8349063396453857, -0.13519570231437683], [0.17261441051959991, 0.8374286890029907, 0.19405058026313782], [-0.019473422318696976, -0.266362726688385, -0.05897204577922821], [-0.2348608374595642, 0.9122654795646667, -0.23089618980884552], [0.06928365677595139, 0.9210652112960815, 0.18563248217105865], [-0.040911681950092316, -0.47652900218963623, -0.077403225004673], [0.04195713624358177, -0.39175450801849365, -0.0907115563750267], [-0.09452152997255325, -0.38383132219314575, -0.02521570585668087], [-0.05673837661743164, -0.5284420847892761, -0.14075776934623718], [0.11264479905366898, -0.4191102385520935, -0.14277197420597076], [-0.18713261187076569, -0.373340368270874, 0.001019330695271492], [0.10532849282026291, -0.17213688790798187, -0.23610401153564453], [-0.3086773157119751, -0.14898629486560822, -0.02898588962852955], [-0.10481124371290207, -0.09787203371524811, -0.34916043281555176], [-0.3581942915916443, -0.045701220631599426, -0.2593644857406616], [-0.1783427596092224, -0.07621200382709503, -0.38358360528945923], [-0.3756881058216095, -0.005116865038871765, -0.3306300640106201]]}, {"image_id": "128.jpg", "category_id": 1, "keypoints": [1212.9959716796875, 455.9349365234375, 0.9812679886817932, 1240.8223876953125, 483.14691162109375, 0.9893600940704346, 1202.044921875, 495.4203796386719, 0.9843283891677856, 1212.0972900390625, 416.3388671875, 0.9899784326553345, 1267.2650146484375, 638.024169921875, 0.9773632287979126, 1216.1092529296875, 641.6157836914062, 0.9817426800727844, 1195.112060546875, 369.7448425292969, 0.9798550605773926, 1269.958251953125, 785.2947387695312, 0.8613443970680237, 1240.941162109375, 780.22216796875, 0.9179462194442749, 1182.642333984375, 354.5426025390625, 0.9885484576225281, 1232.7652587890625, 816.7728271484375, 0.8702795505523682, 1189.031005859375, 803.2615966796875, 0.9240370988845825, 1147.258056640625, 279.33856201171875, 0.988616943359375, 1184.885009765625, 297.2555847167969, 0.9869773983955383, 1144.59326171875, 323.5583190917969, 0.9940001964569092, 1126.6317138671875, 266.30328369140625, 0.9642816185951233, 1200.6593017578125, 273.4535827636719, 0.9664719104766846, 1117.474609375, 328.2820739746094, 0.9861413240432739, 1251.9727783203125, 169.2259521484375, 0.9523125886917114, 1050.556884765625, 399.035888671875, 0.9695616960525513, 1189.97900390625, 131.06533813476562, 0.9748953580856323, 984.9541015625, 430.6130676269531, 0.9630535840988159, 1172.394287109375, 106.06576538085938, 0.9636197686195374, 961.1057739257812, 437.44268798828125, 0.9397474527359009, 1103.5306396484375, 208.61550903320312, 0.9505389332771301, 1145.8277587890625, 67.43817138671875, 0.923233151435852, 943.5546875, 454.3577880859375, 0.9264346957206726, 1209.34619140625, 809.0455322265625, 0.7804421782493591, 1175.6298828125, 802.982177734375, 0.9580788016319275], "score": 3.180948495864868, "box": [965.2439575195312, 110.68199157714844, 373.63214111328125, 725.5170440673828], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07044720649719238, 0.07581722736358643, -0.04487847164273262], [-0.027518704533576965, 0.09821529686450958, 0.04289480298757553], [-0.005549315363168716, -0.10339465737342834, 0.024441182613372803], [0.13414935767650604, 0.4548071324825287, -0.05711904540657997], [0.015191897749900818, 0.47620221972465515, 0.1341753900051117], [-0.04996904730796814, -0.22659078240394592, 0.03027946874499321], [0.13871319591999054, 0.8593347072601318, -0.089985691010952], [0.09111172705888748, 0.8603647947311401, 0.23983198404312134], [-0.08506084978580475, -0.2674432694911957, 0.015317395329475403], [0.03974241018295288, 0.9367318153381348, -0.13441291451454163], [-0.030659275129437447, 0.9143695831298828, 0.23943254351615906], [-0.16981515288352966, -0.4596115052700043, 0.043914131820201874], [-0.07338690757751465, -0.40887293219566345, -0.0043396297842264175], [-0.17819660902023315, -0.3492927849292755, 0.0875709056854248], [-0.22981755435466766, -0.4925171434879303, -0.002956502139568329], [-0.02682741917669773, -0.48007288575172424, -0.03903401643037796], [-0.258739709854126, -0.33797982335090637, 0.1397908329963684], [0.07755040377378464, -0.6987568140029907, -0.145364910364151], [-0.4303624629974365, -0.15734395384788513, 0.20448699593544006], [-0.13231614232063293, -0.8322471380233765, -0.11765825003385544], [-0.6353726387023926, -0.05541422963142395, 0.08624725043773651], [-0.18078354001045227, -0.9008362293243408, -0.11917740851640701], [-0.7095843553543091, -0.03323456645011902, 0.05412716418504715]]}, {"image_id": "128.jpg", "category_id": 1, "keypoints": [1075.6278076171875, 469.2611999511719, 0.9811697006225586, 1093.5479736328125, 498.7555236816406, 0.986430287361145, 1063.20654296875, 500.537109375, 0.9884887337684631, 1079.1610107421875, 431.0006103515625, 0.9940440058708191, 1055.023193359375, 631.5052490234375, 0.9657217860221863, 1090.6300048828125, 631.6658935546875, 0.9813178777694702, 1073.617919921875, 387.46868896484375, 0.985043466091156, 1014.5463256835938, 763.2064819335938, 0.9326164722442627, 1134.69189453125, 755.5624389648438, 0.927108108997345, 1068.4862060546875, 374.6685791015625, 0.9888850450515747, 996.7590942382812, 785.0244140625, 0.861713707447052, 1103.865478515625, 780.8396606445312, 0.9505176544189453, 1060.697998046875, 306.45343017578125, 0.9870576858520508, 1088.9862060546875, 331.7813720703125, 0.9888805150985718, 1044.7454833984375, 339.0794677734375, 0.9897009134292603, 1055.388916015625, 286.1192626953125, 0.9492583274841309, 1109.6982421875, 324.93975830078125, 0.9795022010803223, 1015.3662109375, 343.23382568359375, 0.9853050112724304, 1103.2955322265625, 412.3366394042969, 0.9473102688789368, 983.1246337890625, 417.29681396484375, 0.9673171043395996, 1012.8567504882812, 443.005859375, 0.9478505253791809, 965.6812744140625, 442.637939453125, 0.918840229511261, 983.53173828125, 450.8718566894531, 0.885351836681366, 959.6067504882812, 453.0665283203125, 0.8753541111946106, 1028.8955078125, 206.79443359375, 0.9463320970535278, 961.9246215820312, 453.6486511230469, 0.6483476161956787, 958.5795288085938, 458.60595703125, 0.909309446811676, 989.5249633789062, 784.8951416015625, 0.8732506632804871, 1089.267822265625, 784.864990234375, 0.9514597058296204], "score": 3.1482925415039062, "box": [945.3570556640625, 178.845703125, 203.9189453125, 660.0191650390625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05747252330183983, 0.08970055729150772, -0.037291813641786575], [-0.038536302745342255, 0.08800101280212402, 0.05498173087835312], [0.009699464775621891, -0.10573548078536987, 0.012281298637390137], [-0.060401465743780136, 0.4538860023021698, -0.0640721321105957], [0.048238515853881836, 0.4626745879650116, 0.12286790460348129], [-0.007069495506584644, -0.2315007448196411, -0.025630544871091843], [-0.17979438602924347, 0.8405919075012207, -0.07828187942504883], [0.18326400220394135, 0.8353932499885559, 0.2041999101638794], [-0.02596859820187092, -0.26945698261260986, -0.0626867264509201], [-0.24331720173358917, 0.909997820854187, -0.1728326976299286], [0.08130065351724625, 0.9204339981079102, 0.21706697344779968], [-0.045737821608781815, -0.48050040006637573, -0.07796065509319305], [0.03600244224071503, -0.39486753940582275, -0.09484031796455383], [-0.09893980622291565, -0.3875078558921814, -0.0252150259912014], [-0.06328780204057693, -0.5362502932548523, -0.13763868808746338], [0.10863445699214935, -0.41615569591522217, -0.1474546492099762], [-0.19135962426662445, -0.37604427337646484, 0.002162603661417961], [0.0869668498635292, -0.16439718008041382, -0.22499039769172668], [-0.2937447130680084, -0.14056885242462158, -0.011125361546874046], [-0.12835219502449036, -0.0888623297214508, -0.3275613486766815], [-0.3542802929878235, -0.04621678590774536, -0.2429131269454956], [-0.20812369883060455, -0.06706070899963379, -0.3432799279689789], [-0.37273532152175903, -0.012503892183303833, -0.31759414076805115]]}, {"image_id": "129.jpg", "category_id": 1, "keypoints": [1216.4544677734375, 457.56292724609375, 0.9819272756576538, 1245.927978515625, 484.82244873046875, 0.9895767569541931, 1205.978271484375, 497.9703369140625, 0.9873700141906738, 1214.9400634765625, 418.33837890625, 0.9907686114311218, 1270.2265625, 638.5189208984375, 0.9819818139076233, 1219.5784912109375, 646.365478515625, 0.9738794565200806, 1196.400390625, 372.6991882324219, 0.9806742072105408, 1267.33056640625, 788.494873046875, 0.86275315284729, 1237.3162841796875, 785.32763671875, 0.9115220904350281, 1183.206787109375, 358.0317687988281, 0.98808753490448, 1225.2242431640625, 817.0767822265625, 0.856635570526123, 1183.441650390625, 808.9295654296875, 0.941185474395752, 1142.872802734375, 283.8893737792969, 0.9894442558288574, 1182.93798828125, 299.63427734375, 0.9891383647918701, 1141.876220703125, 328.8331298828125, 0.9947028160095215, 1122.6138916015625, 271.7792663574219, 0.9626496434211731, 1196.8685302734375, 274.2096862792969, 0.9595983028411865, 1113.8736572265625, 333.7650146484375, 0.9873160123825073, 1242.0869140625, 167.9376220703125, 0.9413825273513794, 1047.0859375, 403.56884765625, 0.9702696204185486, 1175.57470703125, 132.91839599609375, 0.9662563800811768, 983.5527954101562, 434.435791015625, 0.9634689688682556, 1158.209228515625, 107.97250366210938, 0.9576324224472046, 961.0955810546875, 442.61785888671875, 0.9351677894592285, 1097.77001953125, 214.61495971679688, 0.9484395980834961, 1133.3148193359375, 71.40884399414062, 0.9251680970191956, 940.74560546875, 463.36175537109375, 0.934126615524292, 1199.611328125, 808.6932983398438, 0.7544291615486145, 1171.5965576171875, 808.523193359375, 0.9587408304214478], "score": 3.183596134185791, "box": [970.0465087890625, 108.64543151855469, 368.920654296875, 726.3260650634766], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07212691009044647, 0.07347604632377625, -0.04651183634996414], [-0.026612265035510063, 0.10004523396492004, 0.03957923501729965], [-0.007261389400810003, -0.10284644365310669, 0.027754049748182297], [0.1284114569425583, 0.4512191414833069, -0.08785092085599899], [0.013593240641057491, 0.48176586627960205, 0.11370054632425308], [-0.05619948357343674, -0.2246924638748169, 0.03426295146346092], [0.1129261702299118, 0.8467210531234741, -0.17702516913414001], [0.0700710266828537, 0.8713020086288452, 0.21109333634376526], [-0.09301645308732986, -0.2635933756828308, 0.01753142476081848], [0.00823760125786066, 0.911106526851654, -0.22883304953575134], [-0.052158087491989136, 0.924561083316803, 0.20830708742141724], [-0.19048786163330078, -0.45030391216278076, 0.045958518981933594], [-0.08912836015224457, -0.40621286630630493, 0.0004803817719221115], [-0.1939503699541092, -0.3385455012321472, 0.08760500699281693], [-0.24894185364246368, -0.4799930453300476, -0.005021668970584869], [-0.04882897436618805, -0.48140013217926025, -0.034393444657325745], [-0.2800590693950653, -0.3255350589752197, 0.13027063012123108], [0.04556936025619507, -0.7107970714569092, -0.1263534128665924], [-0.4551413953304291, -0.14316534996032715, 0.17866617441177368], [-0.1763564497232437, -0.8243621587753296, -0.14870285987854004], [-0.6536205410957336, -0.04327547550201416, 0.048267848789691925], [-0.22349277138710022, -0.8936216831207275, -0.14104369282722473], [-0.7231548428535461, -0.016875341534614563, 0.009294316172599792]]}, {"image_id": "129.jpg", "category_id": 1, "keypoints": [1074.52587890625, 472.90484619140625, 0.9803938865661621, 1092.4056396484375, 502.5972595214844, 0.9869514107704163, 1062.3531494140625, 504.369140625, 0.9896719455718994, 1078.005615234375, 434.4532470703125, 0.9944455623626709, 1053.053466796875, 634.3017578125, 0.9640345573425293, 1088.789306640625, 633.528076171875, 0.9802464842796326, 1072.2176513671875, 390.84173583984375, 0.985559344291687, 1014.9012451171875, 764.4298095703125, 0.9323605298995972, 1134.427001953125, 757.6533813476562, 0.928289532661438, 1067.27734375, 377.71502685546875, 0.9896398186683655, 998.226806640625, 785.8297119140625, 0.8653112649917603, 1102.90673828125, 782.0938720703125, 0.9494735598564148, 1059.6719970703125, 309.4295959472656, 0.9869356751441956, 1088.201416015625, 334.9705810546875, 0.9891602396965027, 1043.610107421875, 341.4527282714844, 0.9899721741676331, 1054.031005859375, 288.75067138671875, 0.946573793888092, 1109.673828125, 327.559326171875, 0.9780696630477905, 1014.8228759765625, 344.63385009765625, 0.983671247959137, 1112.9537353515625, 413.0047912597656, 0.9585254192352295, 983.540283203125, 419.431396484375, 0.9676156640052795, 1020.22314453125, 444.1307678222656, 0.9510985016822815, 967.03369140625, 447.1809997558594, 0.9271060228347778, 987.7025146484375, 452.43560791015625, 0.8646571636199951, 960.822998046875, 458.64581298828125, 0.8611062169075012, 1026.6927490234375, 208.68295288085938, 0.9464950561523438, 965.64404296875, 456.2246398925781, 0.6246715784072876, 959.1947021484375, 465.2835998535156, 0.9019168615341187, 992.065185546875, 785.6815185546875, 0.874349057674408, 1088.0289306640625, 786.0661010742188, 0.9533745646476746], "score": 3.1478865146636963, "box": [945.5689086914062, 180.48646545410156, 203.21270751953125, 657.9409027099609], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05743997171521187, 0.08963541686534882, -0.03734174743294716], [-0.037966251373291016, 0.0879029855132103, 0.05542603135108948], [0.009515514597296715, -0.10579563677310944, 0.011933254078030586], [-0.06341097503900528, 0.4529522657394409, -0.056766122579574585], [0.041249439120292664, 0.46184414625167847, 0.13388238847255707], [-0.007946126163005829, -0.23125003278255463, -0.027133507654070854], [-0.17730595171451569, 0.841132640838623, -0.059017352759838104], [0.17990654706954956, 0.8322867751121521, 0.21742373704910278], [-0.02581516094505787, -0.2696189880371094, -0.06431634724140167], [-0.23924393951892853, 0.9119520783424377, -0.15348535776138306], [0.07679206132888794, 0.9144295454025269, 0.23735156655311584], [-0.04476161673665047, -0.4805637001991272, -0.08223152160644531], [0.03735489770770073, -0.3946231007575989, -0.09567344188690186], [-0.09977325052022934, -0.38810276985168457, -0.030326949432492256], [-0.06282064318656921, -0.5355815887451172, -0.14251847565174103], [0.11422692984342575, -0.4189167618751526, -0.14041177928447723], [-0.19299420714378357, -0.3793146014213562, -0.00464463047683239], [0.12133528292179108, -0.16110552847385406, -0.1971445083618164], [-0.29211753606796265, -0.1423601657152176, -0.0021704211831092834], [-0.09058566391468048, -0.08737741410732269, -0.30730724334716797], [-0.34819501638412476, -0.042283251881599426, -0.2323996126651764], [-0.1707148253917694, -0.06653930246829987, -0.32227879762649536], [-0.36659860610961914, -0.00648045539855957, -0.30605563521385193]]}, {"image_id": "130.jpg", "category_id": 1, "keypoints": [1219.0572509765625, 457.2814025878906, 0.9798987507820129, 1247.8160400390625, 482.9106750488281, 0.9882497191429138, 1208.6407470703125, 498.2159729003906, 0.98671954870224, 1216.6875, 419.3673400878906, 0.9903450012207031, 1272.2086181640625, 637.3252563476562, 0.9825417995452881, 1226.6807861328125, 647.3557739257812, 0.9697979092597961, 1199.554443359375, 373.8683166503906, 0.9839614033699036, 1264.5631103515625, 789.167724609375, 0.8222923278808594, 1242.1737060546875, 786.984375, 0.9106451272964478, 1186.9722900390625, 358.8728332519531, 0.9870789051055908, 1232.859619140625, 818.6080322265625, 0.8760894536972046, 1191.5516357421875, 813.3448486328125, 0.9436812400817871, 1147.9130859375, 284.4922790527344, 0.9873455762863159, 1187.23486328125, 299.00299072265625, 0.9883878231048584, 1147.08544921875, 331.64410400390625, 0.9943187236785889, 1130.2342529296875, 270.7342834472656, 0.9677506685256958, 1199.8681640625, 273.1639709472656, 0.9516753554344177, 1119.994384765625, 337.6414489746094, 0.9869281649589539, 1231.8907470703125, 170.81051635742188, 0.9481521248817444, 1051.5960693359375, 404.59490966796875, 0.9754236936569214, 1168.05224609375, 132.78997802734375, 0.9719535112380981, 988.795654296875, 440.74334716796875, 0.9597021341323853, 1149.6082763671875, 108.5374755859375, 0.9755608439445496, 964.0113525390625, 449.55615234375, 0.9221513271331787, 1103.8968505859375, 211.562744140625, 0.9528142213821411, 1130.3814697265625, 73.91168212890625, 0.9665247201919556, 939.1683959960938, 466.52081298828125, 0.9408408999443054, 1213.259765625, 811.8546142578125, 0.8203374147415161, 1184.4346923828125, 812.0262451171875, 0.9602155685424805], "score": 3.1886651515960693, "box": [981.081787109375, 107.06228637695312, 360.2744140625, 727.7571105957031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.071260467171669, 0.06975752115249634, -0.05366164818406105], [-0.02583356946706772, 0.10307836532592773, 0.032370440661907196], [-0.0066756135784089565, -0.10044324398040771, 0.0356951579451561], [0.12593203783035278, 0.44718214869499207, -0.11291415244340897], [0.025579795241355896, 0.4857311546802521, 0.10419219732284546], [-0.051013898104429245, -0.2224842607975006, 0.0547163188457489], [0.09689357876777649, 0.8407180309295654, -0.2162722945213318], [0.0765964612364769, 0.8753013610839844, 0.2128554880619049], [-0.086715929210186, -0.26316988468170166, 0.04004575312137604], [0.002365667838603258, 0.9210052490234375, -0.26631978154182434], [-0.04184764251112938, 0.9351458549499512, 0.19631950557231903], [-0.1829020231962204, -0.4481615126132965, 0.0819154754281044], [-0.08331642299890518, -0.406606525182724, 0.030600721016526222], [-0.184890478849411, -0.33438846468925476, 0.11767667531967163], [-0.2389812469482422, -0.4863969385623932, 0.03409420698881149], [-0.04674757644534111, -0.4835914075374603, -0.004183875396847725], [-0.27029454708099365, -0.31747546792030334, 0.1601102352142334], [0.023439612239599228, -0.7214300632476807, -0.10016186535358429], [-0.45441603660583496, -0.13757774233818054, 0.18611109256744385], [-0.17323961853981018, -0.8515864610671997, -0.013054026290774345], [-0.637602686882019, -0.02871212363243103, 0.03906220197677612], [-0.22228991985321045, -0.9187567234039307, 0.0008961893618106842], [-0.710090160369873, -0.002094954252243042, 0.005452478304505348]]}, {"image_id": "130.jpg", "category_id": 1, "keypoints": [1072.5533447265625, 472.7845764160156, 0.9812366366386414, 1090.5767822265625, 501.8070373535156, 0.9852784872055054, 1060.2086181640625, 504.2454528808594, 0.9896773099899292, 1075.9539794921875, 434.528564453125, 0.993326723575592, 1053.7347412109375, 633.873046875, 0.9631406664848328, 1087.8203125, 632.5941162109375, 0.9811682105064392, 1069.7265625, 392.2315673828125, 0.983161985874176, 1014.9328002929688, 763.1483154296875, 0.9347749948501587, 1132.8680419921875, 756.4971313476562, 0.9259940385818481, 1064.680908203125, 379.6137390136719, 0.9883929491043091, 999.6177978515625, 786.612548828125, 0.8624632358551025, 1104.4566650390625, 782.6895751953125, 0.9375954866409302, 1058.1334228515625, 311.36834716796875, 0.9864962100982666, 1085.8948974609375, 336.6393737792969, 0.9896417856216431, 1041.3819580078125, 344.3282775878906, 0.9908333420753479, 1052.441650390625, 291.7275390625, 0.9494768381118774, 1107.2113037109375, 328.0254211425781, 0.9788592457771301, 1013.1524658203125, 347.94293212890625, 0.9843971729278564, 1110.7327880859375, 413.6343078613281, 0.9528363347053528, 982.4668579101562, 422.4079895019531, 0.968019425868988, 1020.2412719726562, 449.3046569824219, 0.9464384317398071, 968.8319091796875, 451.93170166015625, 0.9282242655754089, 989.4622802734375, 456.7840576171875, 0.8630180358886719, 962.955078125, 464.284912109375, 0.8502539396286011, 1030.4443359375, 214.30078125, 0.944025456905365, 967.9459228515625, 460.27960205078125, 0.6365674734115601, 961.4430541992188, 472.5605773925781, 0.8999913930892944, 991.8899536132812, 787.192138671875, 0.8712231516838074, 1089.5146484375, 786.517822265625, 0.9476920366287231], "score": 3.1428003311157227, "box": [945.3419189453125, 191.04843139648438, 202.2689208984375, 642.3024597167969], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.057820335030555725, 0.08936106413602829, -0.03886529803276062], [-0.037902072072029114, 0.08905845880508423, 0.05461904779076576], [0.009391773492097855, -0.10598398745059967, 0.013330083340406418], [-0.055956676602363586, 0.45685452222824097, -0.05725754052400589], [0.05035151541233063, 0.4641883373260498, 0.1266314536333084], [-0.009526021778583527, -0.2307722121477127, -0.026351720094680786], [-0.17300784587860107, 0.8467223644256592, -0.05809272080659866], [0.1883360594511032, 0.8363572359085083, 0.21570348739624023], [-0.028082674369215965, -0.2683708667755127, -0.064124695956707], [-0.22747813165187836, 0.9206355214118958, -0.15546007454395294], [0.09068149328231812, 0.9274757504463196, 0.2248021811246872], [-0.04527204856276512, -0.4801502227783203, -0.08136212825775146], [0.03574005514383316, -0.39321959018707275, -0.09717705845832825], [-0.10001352429389954, -0.3880634307861328, -0.02794063091278076], [-0.06413669139146805, -0.5342639088630676, -0.14207831025123596], [0.10884160548448563, -0.420352578163147, -0.14669325947761536], [-0.19216005504131317, -0.3780006766319275, 0.0014530383050441742], [0.11662318557500839, -0.16120977699756622, -0.20455996692180634], [-0.29060301184654236, -0.13936658203601837, 0.014184020459651947], [-0.0992862656712532, -0.074079230427742, -0.29927465319633484], [-0.3388136625289917, -0.029934823513031006, -0.21522459387779236], [-0.18053288757801056, -0.0540517121553421, -0.31098705530166626], [-0.3559357821941376, 0.007684916257858276, -0.28873908519744873]]}, {"image_id": "131.jpg", "category_id": 1, "keypoints": [1221.5701904296875, 460.45794677734375, 0.9815371036529541, 1251.24169921875, 485.91375732421875, 0.9903554320335388, 1210.947265625, 500.4221496582031, 0.9872722029685974, 1218.53173828125, 422.7275390625, 0.9915659427642822, 1269.34130859375, 640.250244140625, 0.9791485667228699, 1228.57080078125, 647.9967041015625, 0.971777081489563, 1199.0076904296875, 377.98974609375, 0.9857306480407715, 1264.2923583984375, 789.5673828125, 0.8263623714447021, 1238.8809814453125, 784.742919921875, 0.9136449098587036, 1185.0386962890625, 363.24237060546875, 0.9872334599494934, 1231.9300537109375, 820.3941650390625, 0.8856423497200012, 1185.6346435546875, 810.71240234375, 0.9401795864105225, 1143.077880859375, 290.3229064941406, 0.9877175688743591, 1183.903564453125, 303.89910888671875, 0.991961658000946, 1143.750732421875, 337.67584228515625, 0.9934297204017639, 1126.6400146484375, 275.40625, 0.9657368659973145, 1196.4388427734375, 275.662353515625, 0.9541932940483093, 1117.311279296875, 344.7523498535156, 0.9864652752876282, 1223.7269287109375, 170.7276611328125, 0.9544151425361633, 1053.26806640625, 418.750244140625, 0.9729097485542297, 1157.8514404296875, 130.74737548828125, 0.9740914106369019, 992.0618286132812, 452.15948486328125, 0.9617103338241577, 1137.4912109375, 105.8447265625, 0.9782418608665466, 967.9508056640625, 459.23223876953125, 0.9298065304756165, 1100.4742431640625, 221.37977600097656, 0.9628795981407166, 1118.248779296875, 70.11712646484375, 0.9569132328033447, 948.7453002929688, 478.9281921386719, 0.9026479721069336, 1214.82373046875, 816.69873046875, 0.8504452705383301, 1174.669677734375, 809.0431518554688, 0.9654886722564697], "score": 3.188098430633545, "box": [979.6841430664062, 107.0922622680664, 363.76446533203125, 728.4925155639648], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07345842570066452, 0.06958553194999695, -0.050271108746528625], [-0.026432877406477928, 0.1028001680970192, 0.031870752573013306], [-0.008576387539505959, -0.10043534636497498, 0.03472721204161644], [0.11380809545516968, 0.44902709126472473, -0.0998629629611969], [0.024418914690613747, 0.4838462173938751, 0.10625758767127991], [-0.058961719274520874, -0.22001153230667114, 0.05538981780409813], [0.09946447610855103, 0.8551133871078491, -0.10682737827301025], [0.0620439350605011, 0.8716546297073364, 0.22079189121723175], [-0.09721335768699646, -0.2588939964771271, 0.04250470921397209], [0.009620249271392822, 0.9311715364456177, -0.16962525248527527], [-0.05697102099657059, 0.9272105693817139, 0.19752593338489532], [-0.19894802570343018, -0.4392305314540863, 0.08939856290817261], [-0.09701542556285858, -0.40234890580177307, 0.03951979801058769], [-0.1992204487323761, -0.32410725951194763, 0.11992619931697845], [-0.2529238760471344, -0.48288223147392273, 0.04381313547492027], [-0.06287328898906708, -0.48164018988609314, 0.007901858538389206], [-0.2826935052871704, -0.3036775290966034, 0.16432960331439972], [-0.0038940238300710917, -0.7244516611099243, -0.08040739595890045], [-0.4511939585208893, -0.10903769731521606, 0.17805148661136627], [-0.199876606464386, -0.8559352159500122, 0.003864455968141556], [-0.6313168406486511, -0.007663637399673462, 0.02358449622988701], [-0.25061967968940735, -0.9209949970245361, 0.020229022949934006], [-0.7002525925636292, 0.013506963849067688, -0.01944831758737564]]}, {"image_id": "131.jpg", "category_id": 1, "keypoints": [1071.9197998046875, 475.5508117675781, 0.9804050922393799, 1091.164794921875, 504.7270812988281, 0.9860107898712158, 1059.518310546875, 507.4475402832031, 0.9905912280082703, 1074.560791015625, 437.09210205078125, 0.9934118390083313, 1053.4638671875, 637.7633056640625, 0.95792555809021, 1086.9566650390625, 635.9347534179688, 0.979106068611145, 1067.4365234375, 394.68853759765625, 0.9850348234176636, 1011.1903686523438, 762.8104248046875, 0.9238371253013611, 1132.3367919921875, 758.703857421875, 0.9212496280670166, 1062.4593505859375, 381.66705322265625, 0.9895269274711609, 997.2810668945312, 785.7384643554688, 0.8595695495605469, 1101.738037109375, 782.8956298828125, 0.9459232091903687, 1054.0999755859375, 312.6849670410156, 0.9854781031608582, 1083.5045166015625, 338.2962646484375, 0.9900919795036316, 1037.8056640625, 345.3851318359375, 0.9897724390029907, 1048.2454833984375, 292.85302734375, 0.9461988210678101, 1106.4627685546875, 329.55096435546875, 0.9769346714019775, 1009.7251586914062, 348.274658203125, 0.9836414456367493, 1120.1558837890625, 413.0177001953125, 0.9633015394210815, 982.4493408203125, 424.23590087890625, 0.9676923751831055, 1036.40234375, 446.4143981933594, 0.9414608478546143, 969.894775390625, 456.39581298828125, 0.9429301619529724, 1004.9253540039062, 452.2109069824219, 0.8979488611221313, 963.322265625, 468.2525939941406, 0.8415318131446838, 1025.873779296875, 216.05322265625, 0.9461972117424011, 974.1380615234375, 459.37109375, 0.6785596609115601, 960.7857666015625, 474.2643737792969, 0.8934831619262695, 993.158447265625, 786.552978515625, 0.8802682757377625, 1087.6622314453125, 784.854248046875, 0.9459443688392639], "score": 3.1373584270477295, "box": [945.94482421875, 188.0255889892578, 203.40380859375, 651.2394256591797], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.060655057430267334, 0.08864405006170273, -0.035616956651210785], [-0.03768562898039818, 0.08895091712474823, 0.05460935831069946], [0.006830620113760233, -0.10621148347854614, 0.01203928142786026], [-0.05403652787208557, 0.4559694826602936, -0.04260507598519325], [0.04972488060593605, 0.46321260929107666, 0.1304830014705658], [-0.014412228949368, -0.23039326071739197, -0.029155787080526352], [-0.18317143619060516, 0.8407231569290161, -0.019096706062555313], [0.18907952308654785, 0.8328363299369812, 0.22527675330638885], [-0.03234649449586868, -0.2678934931755066, -0.06731557846069336], [-0.234917551279068, 0.9166324138641357, -0.11628244817256927], [0.08524085581302643, 0.916288435459137, 0.23742343485355377], [-0.053049247711896896, -0.47932595014572144, -0.08207391202449799], [0.030227012932300568, -0.39429670572280884, -0.09546797722578049], [-0.10807404667139053, -0.38536518812179565, -0.032572243362665176], [-0.07211188226938248, -0.5334474444389343, -0.14293573796749115], [0.10980922728776932, -0.42281484603881836, -0.1324131339788437], [-0.20121875405311584, -0.3773304224014282, -0.006157737225294113], [0.1509949117898941, -0.16212984919548035, -0.1601768583059311], [-0.28822413086891174, -0.1354246437549591, 0.017493806779384613], [-0.05317627266049385, -0.07833850383758545, -0.2799527049064636], [-0.330918550491333, -0.021879225969314575, -0.21073250472545624], [-0.13276219367980957, -0.06309029459953308, -0.30362439155578613], [-0.34972143173217773, 0.013572901487350464, -0.28481602668762207]]}, {"image_id": "132.jpg", "category_id": 1, "keypoints": [1219.963134765625, 465.0244445800781, 0.9813345670700073, 1250.982177734375, 490.6738586425781, 0.9896581768989563, 1210.4954833984375, 505.6728210449219, 0.9901888966560364, 1215.6168212890625, 425.8812561035156, 0.9913124442100525, 1269.4442138671875, 648.5986328125, 0.9721114039421082, 1229.228759765625, 652.0445556640625, 0.9720826745033264, 1194.120361328125, 380.22381591796875, 0.984586775302887, 1263.6455078125, 796.6524658203125, 0.8341946601867676, 1240.78662109375, 789.754638671875, 0.9074651598930359, 1179.866943359375, 365.052490234375, 0.9883978366851807, 1241.0147705078125, 821.8368530273438, 0.8942263722419739, 1200.648681640625, 819.454345703125, 0.9598925113677979, 1139.1092529296875, 292.7724914550781, 0.9879472851753235, 1180.3116455078125, 305.8834228515625, 0.9924055337905884, 1137.7757568359375, 339.81475830078125, 0.9938848614692688, 1122.7823486328125, 276.2947998046875, 0.9685777425765991, 1192.6881103515625, 278.00823974609375, 0.9604932069778442, 1110.783935546875, 347.8627624511719, 0.9862059950828552, 1219.361328125, 172.7584228515625, 0.9553183317184448, 1052.717529296875, 426.5520935058594, 0.9698334336280823, 1150.5040283203125, 133.41653442382812, 0.9802294373512268, 995.2931518554688, 459.4585876464844, 0.9450540542602539, 1128.8641357421875, 108.6898193359375, 0.9692753553390503, 968.6231689453125, 463.8669128417969, 0.9288784265518188, 1091.3104248046875, 223.0155792236328, 0.9563377499580383, 1108.802490234375, 72.93905639648438, 0.9568857550621033, 952.1514282226562, 481.8929443359375, 0.8841977119445801, 1227.601806640625, 816.6080322265625, 0.877633810043335, 1193.87890625, 815.3067626953125, 0.9558167457580566], "score": 3.18923282623291, "box": [981.38134765625, 108.34556579589844, 363.116455078125, 725.6265411376953], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07743465900421143, 0.06870955228805542, -0.04552246257662773], [-0.024756768718361855, 0.10277925431728363, 0.033624060451984406], [-0.012819807976484299, -0.10112647712230682, 0.031682875007390976], [0.11210757493972778, 0.4492652118206024, -0.08963280916213989], [0.029934434220194817, 0.4800930619239807, 0.12259969860315323], [-0.06737316399812698, -0.2197933942079544, 0.04676824063062668], [0.09851250797510147, 0.8546942472457886, -0.06383556127548218], [0.0710148885846138, 0.866693377494812, 0.240329772233963], [-0.10545343905687332, -0.25877320766448975, 0.03331296890974045], [0.02062339149415493, 0.927975058555603, -0.14367270469665527], [-0.03627612814307213, 0.9435376524925232, 0.22062253952026367], [-0.20266297459602356, -0.4420701265335083, 0.07972034066915512], [-0.09972837567329407, -0.40235793590545654, 0.033822692930698395], [-0.2087927609682083, -0.3262232542037964, 0.10736674815416336], [-0.25616076588630676, -0.49119627475738525, 0.039440639317035675], [-0.0648607537150383, -0.4829327464103699, 0.006198182702064514], [-0.29498177766799927, -0.30205684900283813, 0.14424753189086914], [-0.0072359913028776646, -0.7265027165412903, -0.08121444284915924], [-0.4474213421344757, -0.09539438784122467, 0.16803961992263794], [-0.21433953940868378, -0.8537402749061584, -0.019979335367679596], [-0.6126314997673035, 0.002215251326560974, -0.004515595734119415], [-0.2686697244644165, -0.917387068271637, -0.011085931211709976], [-0.686939537525177, 0.015277102589607239, -0.04147401079535484]]}, {"image_id": "132.jpg", "category_id": 1, "keypoints": [1070.2359619140625, 474.0834045410156, 0.978344202041626, 1089.8502197265625, 503.8846435546875, 0.9891988635063171, 1058.6507568359375, 505.808349609375, 0.991334080696106, 1072.6446533203125, 435.8839416503906, 0.9933319687843323, 1052.7508544921875, 639.1168212890625, 0.9647236466407776, 1088.1573486328125, 636.6311645507812, 0.9794288277626038, 1066.1163330078125, 394.62115478515625, 0.9870252013206482, 1011.1878051757812, 768.5280151367188, 0.9260525703430176, 1135.496826171875, 759.2608642578125, 0.9322438836097717, 1061.0172119140625, 381.5982971191406, 0.9888575673103333, 1000.3453979492188, 793.5098876953125, 0.8615249991416931, 1105.242431640625, 783.8970947265625, 0.9355518221855164, 1053.6357421875, 312.99853515625, 0.9857441186904907, 1082.200927734375, 339.30389404296875, 0.9906660318374634, 1038.2825927734375, 345.13604736328125, 0.989942729473114, 1048.8492431640625, 292.27496337890625, 0.9436201453208923, 1104.461669921875, 332.30438232421875, 0.9764379262924194, 1010.5985107421875, 348.20233154296875, 0.9856110215187073, 1109.49755859375, 419.0146484375, 0.9597271084785461, 982.76806640625, 424.53533935546875, 0.9637838006019592, 1029.518798828125, 453.6291809082031, 0.9320248365402222, 971.3228149414062, 456.7177734375, 0.9510146379470825, 1003.8150024414062, 455.44256591796875, 0.9206553101539612, 964.6898193359375, 468.096435546875, 0.8257191777229309, 1028.0623779296875, 218.94122314453125, 0.9383476376533508, 976.2879028320312, 459.6662902832031, 0.7385834455490112, 963.239013671875, 472.83837890625, 0.8961844444274902, 993.5177001953125, 794.5090942382812, 0.866561770439148, 1091.560791015625, 787.8824462890625, 0.942550539970398], "score": 3.136922836303711, "box": [947.7222900390625, 183.86962890625, 199.8919677734375, 653.588623046875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06060999631881714, 0.08868502080440521, -0.03608637675642967], [-0.03554651513695717, 0.08865523338317871, 0.056822240352630615], [0.006235913373529911, -0.10663364827632904, 0.010517099872231483], [-0.05011717975139618, 0.4562883973121643, -0.06363656371831894], [0.05641569569706917, 0.4612250030040741, 0.13603797554969788], [-0.014151276089251041, -0.23070479929447174, -0.031592026352882385], [-0.17533297836780548, 0.8400405049324036, -0.11399123817682266], [0.20152400434017181, 0.8306268453598022, 0.2240520417690277], [-0.031714361160993576, -0.2709108591079712, -0.06722059845924377], [-0.21725104749202728, 0.9265122413635254, -0.2071271538734436], [0.09940971434116364, 0.9156392216682434, 0.2404467761516571], [-0.048462651669979095, -0.4832228422164917, -0.0765489786863327], [0.031743232160806656, -0.39662617444992065, -0.09759818017482758], [-0.10214199125766754, -0.389473557472229, -0.02490244247019291], [-0.0643509030342102, -0.5403431057929993, -0.1354382187128067], [0.11010760068893433, -0.41905397176742554, -0.14111517369747162], [-0.19359497725963593, -0.3812205195426941, 0.00725635327398777], [0.12313617765903473, -0.1575276106595993, -0.18515419960021973], [-0.2818523347377777, -0.13953395187854767, 0.030344711616635323], [-0.08172754943370819, -0.06685499846935272, -0.2990044951438904], [-0.3211308419704437, -0.02540247142314911, -0.198380708694458], [-0.15935154259204865, -0.06054063141345978, -0.33182471990585327], [-0.34035879373550415, 0.009074270725250244, -0.2729196846485138]]}, {"image_id": "133.jpg", "category_id": 1, "keypoints": [1227.361083984375, 469.6996765136719, 0.9810657501220703, 1257.21923828125, 494.7975158691406, 0.9896845817565918, 1220.03369140625, 511.9084777832031, 0.9903467297554016, 1222.862060546875, 430.1618347167969, 0.9920529723167419, 1267.34375, 644.85107421875, 0.975577175617218, 1241.216796875, 655.4032592773438, 0.9703530669212341, 1200.611328125, 386.0221252441406, 0.9837440848350525, 1264.328125, 796.247802734375, 0.789859414100647, 1251.3104248046875, 797.9473876953125, 0.9228628873825073, 1185.993896484375, 371.117919921875, 0.9866527318954468, 1241.4486083984375, 823.9522705078125, 0.8824558854103088, 1212.7940673828125, 828.4075927734375, 0.957090437412262, 1140.2606201171875, 297.5955810546875, 0.9871960878372192, 1183.355712890625, 309.0414123535156, 0.9932771921157837, 1142.694580078125, 345.55059814453125, 0.993406355381012, 1122.844970703125, 281.79901123046875, 0.9668416976928711, 1194.4306640625, 280.6678466796875, 0.9590573310852051, 1114.197998046875, 353.65252685546875, 0.9855038523674011, 1217.2501220703125, 175.3564453125, 0.9396534562110901, 1054.123046875, 435.8652038574219, 0.9596718549728394, 1141.20458984375, 128.10443115234375, 0.978478729724884, 994.6148681640625, 462.9375915527344, 0.9537259340286255, 1118.17578125, 101.9097900390625, 0.9727523922920227, 973.4229736328125, 472.72320556640625, 0.9296489953994751, 1088.115966796875, 226.88980102539062, 0.9350348114967346, 1085.354736328125, 71.71597290039062, 0.8845507502555847, 960.4677124023438, 490.8930969238281, 0.8846537470817566, 1228.007080078125, 807.5777587890625, 0.7952725887298584, 1211.1737060546875, 822.6505126953125, 0.9477863907814026], "score": 3.1809334754943848, "box": [984.3825073242188, 117.55379486083984, 373.68670654296875, 710.6418228149414], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07259759306907654, 0.06448274850845337, -0.05833781883120537], [-0.019232191145420074, 0.10518837720155716, 0.03019324317574501], [-0.01044529303908348, -0.0987754762172699, 0.038769908249378204], [0.0890280157327652, 0.4373999536037445, -0.15923479199409485], [0.04266282916069031, 0.48679062724113464, 0.10324656963348389], [-0.06713639199733734, -0.21503356099128723, 0.059641316533088684], [0.07490217685699463, 0.8401369452476501, -0.22768394649028778], [0.07839949429035187, 0.8814550042152405, 0.2022431194782257], [-0.10604618489742279, -0.25324389338493347, 0.04692687839269638], [-0.010988380759954453, 0.94211345911026, -0.23894307017326355], [-0.026897545903921127, 0.9635382294654846, 0.19378767907619476], [-0.21030265092849731, -0.43115395307540894, 0.09856327623128891], [-0.1078004240989685, -0.3968976140022278, 0.047919631004333496], [-0.20899704098701477, -0.31524813175201416, 0.12601612508296967], [-0.2665993571281433, -0.4775891900062561, 0.05900070071220398], [-0.07751566171646118, -0.4776047468185425, 0.016204331070184708], [-0.2955496311187744, -0.2921253442764282, 0.16218023002147675], [-0.029268722981214523, -0.7224293351173401, -0.07730916142463684], [-0.4482216238975525, -0.0833178460597992, 0.1446654200553894], [-0.23174436390399933, -0.8578609824180603, -0.013659220188856125], [-0.6122347712516785, -0.005429670214653015, -0.04055769741535187], [-0.28648126125335693, -0.9215255379676819, -0.005783122032880783], [-0.6751752495765686, 0.024467110633850098, -0.08789366483688354]]}, {"image_id": "133.jpg", "category_id": 1, "keypoints": [1070.477294921875, 475.858642578125, 0.9750664830207825, 1090.9666748046875, 505.0971984863281, 0.990068793296814, 1059.70361328125, 507.7771301269531, 0.9907748103141785, 1071.64111328125, 437.53021240234375, 0.9920231103897095, 1052.4033203125, 638.2256469726562, 0.9662359952926636, 1090.0673828125, 635.56640625, 0.9782359004020691, 1063.6868896484375, 396.1367492675781, 0.9862388372421265, 1012.100341796875, 762.3580322265625, 0.936785876750946, 1135.4285888671875, 753.612060546875, 0.9213685989379883, 1058.3157958984375, 382.9934387207031, 0.9885282516479492, 998.8198852539062, 786.2625732421875, 0.835888683795929, 1107.476318359375, 779.1824951171875, 0.9254639148712158, 1049.25537109375, 313.601806640625, 0.9852927327156067, 1078.583984375, 339.5054931640625, 0.9916635751724243, 1034.2613525390625, 346.33001708984375, 0.9890314340591431, 1044.7476806640625, 292.83209228515625, 0.9424852728843689, 1100.9664306640625, 331.8912658691406, 0.9785200953483582, 1006.926025390625, 349.31842041015625, 0.9822860360145569, 1113.0654296875, 422.656005859375, 0.9539274573326111, 982.3317260742188, 427.4970397949219, 0.9602676630020142, 1073.0272216796875, 431.08380126953125, 0.9559928178787231, 972.4768676757812, 463.76513671875, 0.9392963647842407, 1082.7291259765625, 412.2357482910156, 0.9541211724281311, 965.9216918945312, 474.1609191894531, 0.8166251182556152, 1026.43505859375, 217.35726928710938, 0.9472454786300659, 1053.396484375, 432.09185791015625, 0.8868778944015503, 963.7708740234375, 480.1672668457031, 0.8946168422698975, 993.93798828125, 785.5486450195312, 0.854167103767395, 1090.9664306640625, 782.65087890625, 0.9348809719085693], "score": 3.1437416076660156, "box": [947.0140991210938, 182.94715881347656, 202.63116455078125, 649.0138397216797], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0647088810801506, 0.0876636952161789, -0.030351262539625168], [-0.033838994801044464, 0.08726581931114197, 0.05952557176351547], [0.002011241391301155, -0.10703223943710327, 0.005993541330099106], [-0.051649197936058044, 0.45362287759780884, -0.03883764147758484], [0.06186390668153763, 0.4555029273033142, 0.14981520175933838], [-0.021725637838244438, -0.229577898979187, -0.039480194449424744], [-0.17540530860424042, 0.8386501669883728, -0.006884446367621422], [0.20539700984954834, 0.8214105367660522, 0.2491685152053833], [-0.04099256172776222, -0.26605793833732605, -0.07811319082975388], [-0.22390609979629517, 0.9162350296974182, -0.10427604615688324], [0.11262567341327667, 0.9105550050735474, 0.2854115068912506], [-0.06163340061903, -0.47799497842788696, -0.08581334352493286], [0.021044982597231865, -0.3931881785392761, -0.1044817566871643], [-0.11538778990507126, -0.3825647234916687, -0.037440553307533264], [-0.0766964927315712, -0.5355468988418579, -0.14471843838691711], [0.10180217772722244, -0.4187999367713928, -0.1413075029850006], [-0.20795701444149017, -0.3741227984428406, -0.00877661257982254], [0.13550764322280884, -0.15703389048576355, -0.1636098027229309], [-0.2849108576774597, -0.12988150119781494, 0.019577130675315857], [-0.032093144953250885, -0.1168631911277771, -0.34568601846694946], [-0.3179060220718384, -0.00631105899810791, -0.20444366335868835], [0.0037053064443171024, -0.18743157386779785, -0.37495654821395874], [-0.33790743350982666, 0.026741117238998413, -0.27922841906547546]]}, {"image_id": "134.jpg", "category_id": 1, "keypoints": [1233.116455078125, 470.20245361328125, 0.9793438911437988, 1262.1234130859375, 496.6796569824219, 0.9836694002151489, 1231.158203125, 510.2084655761719, 0.9862968325614929, 1225.3590087890625, 430.22528076171875, 0.9915755391120911, 1246.8477783203125, 627.8216552734375, 0.9766390919685364, 1275.2430419921875, 651.8701782226562, 0.9771547913551331, 1199.9453125, 386.08782958984375, 0.984070360660553, 1244.94287109375, 796.0413818359375, 0.9096493124961853, 1323.708251953125, 767.800048828125, 0.9004819393157959, 1184.9534912109375, 372.28485107421875, 0.989488959312439, 1208.0760498046875, 824.8450317382812, 0.8610289692878723, 1304.7529296875, 819.3026123046875, 0.9506111145019531, 1136.977783203125, 301.4533386230469, 0.9845999479293823, 1180.8626708984375, 311.11993408203125, 0.9901122450828552, 1140.9830322265625, 350.2470397949219, 0.9932029247283936, 1117.7677001953125, 284.83428955078125, 0.9579422473907471, 1190.7882080078125, 284.0111083984375, 0.9722368717193604, 1111.7701416015625, 359.681396484375, 0.9886247515678406, 1204.9014892578125, 179.13232421875, 0.9485558867454529, 1059.505126953125, 442.5465393066406, 0.9672938585281372, 1132.93896484375, 126.62112426757812, 0.9778828024864197, 992.0359497070312, 472.3721008300781, 0.9490896463394165, 1114.6558837890625, 102.24200439453125, 0.9797495603561401, 971.566650390625, 482.1431884765625, 0.9236115217208862, 1078.225830078125, 228.45330810546875, 0.937987744808197, 1088.668212890625, 69.63687133789062, 0.8981772661209106, 946.7567138671875, 490.4989929199219, 0.9314666986465454, 1192.439453125, 825.059326171875, 0.8984716534614563, 1284.03515625, 825.2293701171875, 0.9533669948577881], "score": 3.190208911895752, "box": [1002.4461669921875, 115.96834564208984, 362.0069580078125, 721.5594863891602], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07354569435119629, 0.06578515470027924, -0.055871203541755676], [-0.00548624899238348, 0.10086517035961151, 0.04653472453355789], [-0.017232242971658707, -0.10188305377960205, 0.025203833356499672], [0.021323587745428085, 0.4352104067802429, -0.16486774384975433], [0.11539681255817413, 0.4630870223045349, 0.14905689656734467], [-0.08146966248750687, -0.21501559019088745, 0.03488333523273468], [0.024469446390867233, 0.8353566527366638, -0.07089994847774506], [0.27466368675231934, 0.8222589492797852, 0.26864689588546753], [-0.12196963280439377, -0.25084057450294495, 0.02113162912428379], [-0.08151303231716156, 0.9171596765518188, -0.07825904339551926], [0.22788478434085846, 0.9477808475494385, 0.26407304406166077], [-0.23080036044120789, -0.41912704706192017, 0.09149681776762009], [-0.1297391653060913, -0.3935735821723938, 0.03380781412124634], [-0.22311240434646606, -0.30187922716140747, 0.10951141268014908], [-0.2913871705532074, -0.4684455990791321, 0.06364183872938156], [-0.10084390640258789, -0.4755592346191406, 0.0049461666494607925], [-0.30758896470069885, -0.2760249078273773, 0.1478201299905777], [-0.0716983750462532, -0.7276352643966675, -0.0807608962059021], [-0.4466114938259125, -0.055693596601486206, 0.1427619457244873], [-0.26850566267967224, -0.8787089586257935, -0.03203098475933075], [-0.6208785176277161, 0.02402430772781372, -0.0338674858212471], [-0.31947818398475647, -0.9458770751953125, -0.036407776176929474], [-0.6797698736190796, 0.052924901247024536, -0.08693420141935349]]}, {"image_id": "134.jpg", "category_id": 1, "keypoints": [1070.9713134765625, 475.4324035644531, 0.9756730198860168, 1091.923828125, 503.7403259277344, 0.9897302389144897, 1059.99365234375, 507.5400085449219, 0.9914885759353638, 1071.318359375, 436.9881591796875, 0.9910841584205627, 1051.751953125, 637.0638427734375, 0.9712750911712646, 1091.5145263671875, 636.6160888671875, 0.9785895943641663, 1062.5570068359375, 396.06298828125, 0.9876262545585632, 1010.9035034179688, 759.025146484375, 0.9377213716506958, 1134.4232177734375, 756.5532836914062, 0.9305815696716309, 1057.2713623046875, 383.31011962890625, 0.9876101016998291, 996.4847412109375, 785.7913208007812, 0.8322457075119019, 1110.3409423828125, 782.0950317382812, 0.9273016452789307, 1047.6666259765625, 314.3258361816406, 0.9849090576171875, 1077.2139892578125, 339.8538818359375, 0.9919359683990479, 1032.0548095703125, 346.72222900390625, 0.9882383346557617, 1042.5, 294.8067932128906, 0.9461871385574341, 1099.580810546875, 332.05804443359375, 0.9791667461395264, 1004.0914916992188, 349.685302734375, 0.9816451072692871, 1111.890869140625, 425.5962829589844, 0.951198935508728, 981.07763671875, 430.5847473144531, 0.9531310796737671, 1075.1846923828125, 432.8658447265625, 0.9567652344703674, 973.650146484375, 469.2454528808594, 0.9365913271903992, 1082.5333251953125, 416.7314453125, 0.9519119262695312, 967.8409423828125, 479.57611083984375, 0.8403019905090332, 1028.8651123046875, 221.18887329101562, 0.9402751922607422, 1059.1085205078125, 435.0203552246094, 0.8870557546615601, 965.6197509765625, 488.0348815917969, 0.9074971675872803, 989.0450439453125, 789.2353515625, 0.8627780079841614, 1094.748779296875, 784.6297607421875, 0.9355685114860535], "score": 3.123154878616333, "box": [945.5442504882812, 191.30380249023438, 207.06683349609375, 633.8141174316406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06739355623722076, 0.08667957782745361, -0.02832280844449997], [-0.03405427560210228, 0.08799715340137482, 0.05886586010456085], [-0.00013266317546367645, -0.107381671667099, 0.005850190296769142], [-0.054770562797784805, 0.45059964060783386, -0.05368586257100105], [0.06389690935611725, 0.4587944746017456, 0.13866008818149567], [-0.026537330821156502, -0.22899365425109863, -0.04091094434261322], [-0.18125076591968536, 0.834069550037384, -0.0049824342131614685], [0.19991137087345123, 0.8310921788215637, 0.22871853411197662], [-0.0454714335501194, -0.26456087827682495, -0.0807436928153038], [-0.23055826127529144, 0.9161170721054077, -0.09859968721866608], [0.11500034481287003, 0.9264165163040161, 0.26931896805763245], [-0.06878399848937988, -0.47653597593307495, -0.09221202880144119], [0.015941197052598, -0.3925519585609436, -0.10656357556581497], [-0.12322694808244705, -0.38082021474838257, -0.04454125463962555], [-0.08630502969026566, -0.5318735241889954, -0.1525374948978424], [0.0967307910323143, -0.41881757974624634, -0.14335371553897858], [-0.21665836870670319, -0.3725091814994812, -0.01804441399872303], [0.13057440519332886, -0.15585511922836304, -0.15749530494213104], [-0.28724202513694763, -0.12457948923110962, -0.0017340872436761856], [-0.029642784968018532, -0.1189441978931427, -0.3475952446460724], [-0.31286895275115967, 0.008785858750343323, -0.22176842391490936], [0.00031104416120797396, -0.18663561344146729, -0.3885039687156677], [-0.3316798210144043, 0.04335877299308777, -0.29641273617744446]]}, {"image_id": "135.jpg", "category_id": 1, "keypoints": [1235.926025390625, 475.4731750488281, 0.9790344834327698, 1264.18505859375, 503.4901123046875, 0.9813109040260315, 1237.252197265625, 513.5147705078125, 0.9876629710197449, 1226.5074462890625, 433.72882080078125, 0.9908695220947266, 1243.4315185546875, 638.5731811523438, 0.979448139667511, 1274.787109375, 647.8870239257812, 0.9808869957923889, 1200.620849609375, 390.9541931152344, 0.9840442538261414, 1250.072265625, 799.8571166992188, 0.9339426159858704, 1339.003173828125, 753.1265869140625, 0.8836531639099121, 1185.23779296875, 379.00677490234375, 0.9913270473480225, 1211.291748046875, 828.4906005859375, 0.8912891745567322, 1316.86279296875, 805.173828125, 0.9353624582290649, 1134.2598876953125, 308.8414306640625, 0.9867198467254639, 1179.982666015625, 317.922607421875, 0.991098940372467, 1140.1317138671875, 357.9952697753906, 0.9915595650672913, 1113.63330078125, 293.41424560546875, 0.9667710661888123, 1185.7083740234375, 290.47039794921875, 0.973722517490387, 1111.58544921875, 369.30841064453125, 0.9886494278907776, 1195.753662109375, 181.3193359375, 0.9641115069389343, 1063.6239013671875, 450.9541015625, 0.9681234359741211, 1120.2786865234375, 123.50289916992188, 0.984044075012207, 994.9915771484375, 480.60003662109375, 0.9473351836204529, 1103.1734619140625, 100.72515869140625, 0.9733706116676331, 974.552734375, 491.535400390625, 0.9047126770019531, 1082.9871826171875, 245.0154571533203, 0.9566003680229187, 1080.632080078125, 69.43350219726562, 0.9132066965103149, 948.9915771484375, 501.11151123046875, 0.908024251461029, 1190.9713134765625, 824.41357421875, 0.9357738494873047, 1289.31982421875, 815.7130737304688, 0.9517784714698792], "score": 3.1904847621917725, "box": [1000.0897827148438, 111.06130981445312, 380.22991943359375, 733.6546325683594], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07277132570743561, 0.06898246705532074, -0.05335509032011032], [0.0034100492484867573, 0.09477239102125168, 0.05842713266611099], [-0.020751280710101128, -0.10360085964202881, 0.014360520988702774], [0.01073395274579525, 0.4515547752380371, -0.09247895330190659], [0.11382982134819031, 0.4556052088737488, 0.17957237362861633], [-0.08873739093542099, -0.21559050679206848, 0.01206890493631363], [0.0366864837706089, 0.8430454134941101, 0.03360820561647415], [0.3242342174053192, 0.7859573364257812, 0.30658867955207825], [-0.13146157562732697, -0.2471095323562622, -0.005667785182595253], [-0.07135208696126938, 0.9199154376983643, 0.011694524437189102], [0.27252617478370667, 0.9097659587860107, 0.31390416622161865], [-0.2454177737236023, -0.4126853346824646, 0.064108707010746], [-0.14358098804950714, -0.38978803157806396, 0.006222540512681007], [-0.23389224708080292, -0.2956463694572449, 0.08287665992975235], [-0.3083595931529999, -0.4564913511276245, 0.031704895198345184], [-0.1268254518508911, -0.47614699602127075, -0.0197047907859087], [-0.3172453045845032, -0.2637397348880768, 0.11937928944826126], [-0.10652752965688705, -0.7361741065979004, -0.08390527218580246], [-0.44891905784606934, -0.039068058133125305, 0.14075589179992676], [-0.3085303008556366, -0.888964056968689, -0.09686814993619919], [-0.6225999593734741, 0.03817214071750641, -0.03862423449754715], [-0.3593612313270569, -0.9566627740859985, -0.09680436551570892], [-0.6811725497245789, 0.07010102272033691, -0.09063027054071426]]}, {"image_id": "135.jpg", "category_id": 1, "keypoints": [1070.923828125, 476.9634094238281, 0.9767824411392212, 1091.2547607421875, 506.1509094238281, 0.9895594120025635, 1059.8717041015625, 508.79718017578125, 0.9920928478240967, 1071.1806640625, 439.08990478515625, 0.9906403422355652, 1050.535400390625, 638.2037963867188, 0.9705615043640137, 1092.52978515625, 636.06884765625, 0.9780459403991699, 1063.135498046875, 398.113037109375, 0.9871968626976013, 1012.1507568359375, 762.136474609375, 0.9344231486320496, 1137.137939453125, 753.9832763671875, 0.9186065196990967, 1057.88427734375, 385.0859069824219, 0.9866584539413452, 997.0535888671875, 786.8307495117188, 0.8297052383422852, 1109.55810546875, 781.2413330078125, 0.925735592842102, 1048.9888916015625, 315.3138427734375, 0.9841317534446716, 1078.56689453125, 341.7155456542969, 0.9914928078651428, 1032.561767578125, 348.03558349609375, 0.9863994717597961, 1043.3841552734375, 295.4417419433594, 0.9417693614959717, 1101.762939453125, 334.41998291015625, 0.9788132309913635, 1003.8775024414062, 350.49188232421875, 0.9825295209884644, 1114.4598388671875, 428.9404296875, 0.9450109004974365, 980.4739990234375, 432.3570556640625, 0.9532599449157715, 1090.6142578125, 428.9530944824219, 0.9642608165740967, 973.2957153320312, 473.98333740234375, 0.9296761751174927, 1100.8028564453125, 408.12982177734375, 0.9781100749969482, 967.5238037109375, 484.7535705566406, 0.8266738057136536, 1022.0943603515625, 223.72769165039062, 0.93998783826828, 1062.5914306640625, 442.878173828125, 0.946232795715332, 965.1997680664062, 494.626708984375, 0.9067246913909912, 989.023681640625, 787.7403564453125, 0.8527634143829346, 1093.6417236328125, 785.901123046875, 0.9356779456138611], "score": 3.1180419921875, "box": [948.0374755859375, 195.07240295410156, 203.00439453125, 634.2723236083984], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06597555428743362, 0.08694002032279968, -0.028058787807822227], [-0.03475696220993996, 0.08711111545562744, 0.058401551097631454], [0.000932847149670124, -0.10650178790092468, 0.005742959678173065], [-0.05807321518659592, 0.4489611089229584, -0.05350233614444733], [0.0675264224410057, 0.4537334442138672, 0.14500895142555237], [-0.024957463145256042, -0.22888454794883728, -0.038467518985271454], [-0.17698319256305695, 0.8352053165435791, -0.035110123455524445], [0.20919716358184814, 0.8205161094665527, 0.23880690336227417], [-0.04260322079062462, -0.2679807245731354, -0.07489775866270065], [-0.23056921362876892, 0.9135710000991821, -0.12863528728485107], [0.11822880804538727, 0.9138884544372559, 0.26639464497566223], [-0.06489784270524979, -0.4786655604839325, -0.08834612369537354], [0.01936304196715355, -0.3947214186191559, -0.0996118038892746], [-0.12033035606145859, -0.38388481736183167, -0.04176702722907066], [-0.08351786434650421, -0.5342572927474976, -0.14812518656253815], [0.10246468335390091, -0.41924795508384705, -0.13059355318546295], [-0.2134523242712021, -0.37746497988700867, -0.01584881916642189], [0.13740600645542145, -0.15742701292037964, -0.13477087020874023], [-0.28395378589630127, -0.1310546100139618, 0.0015363357961177826], [0.00795482937246561, -0.14969909191131592, -0.3484829366207123], [-0.30846863985061646, 0.01033841073513031, -0.2119789570569992], [0.042111996561288834, -0.22095271944999695, -0.3771591782569885], [-0.32695674896240234, 0.04581749439239502, -0.285669207572937]]}, {"image_id": "136.jpg", "category_id": 1, "keypoints": [1237.711181640625, 480.1864929199219, 0.9816027879714966, 1268.55908203125, 506.5512390136719, 0.9792025685310364, 1239.2777099609375, 519.4745483398438, 0.9876495003700256, 1225.370849609375, 436.7865905761719, 0.9899935722351074, 1241.349609375, 639.1533813476562, 0.9836148023605347, 1292.242919921875, 665.9564819335938, 0.9745580554008484, 1198.982666015625, 395.0185546875, 0.9865964651107788, 1245.6575927734375, 803.59619140625, 0.8961814641952515, 1355.6529541015625, 767.4747314453125, 0.9237635135650635, 1183.72705078125, 383.40521240234375, 0.9905529618263245, 1220.7767333984375, 827.390625, 0.8681204915046692, 1331.10009765625, 831.3033447265625, 0.9375913143157959, 1131.6654052734375, 311.44927978515625, 0.9874632358551025, 1177.3114013671875, 320.3863220214844, 0.9905958771705627, 1137.96044921875, 362.1705017089844, 0.9906347393989563, 1110.002197265625, 296.6294250488281, 0.9647904634475708, 1181.6270751953125, 292.33428955078125, 0.972959041595459, 1110.3697509765625, 373.1700439453125, 0.9875686764717102, 1188.6456298828125, 181.33645629882812, 0.9633821845054626, 1060.989990234375, 456.3142395019531, 0.9754312634468079, 1110.714111328125, 126.77578735351562, 0.9768732786178589, 989.7915649414062, 482.9012145996094, 0.9280019402503967, 1095.522705078125, 102.7200927734375, 0.9674152135848999, 970.181884765625, 493.307373046875, 0.9221495389938354, 1076.5032958984375, 255.0564422607422, 0.9537055492401123, 1073.2890625, 71.8834228515625, 0.9368729591369629, 943.0233154296875, 500.37835693359375, 0.9177855849266052, 1205.8616943359375, 831.0078125, 0.9011257886886597, 1307.5244140625, 835.617431640625, 0.9469776153564453], "score": 3.1894679069519043, "box": [988.0899658203125, 112.83955383300781, 407.509033203125, 728.5992279052734], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07972033321857452, 0.06357790529727936, -0.04869665578007698], [0.0025196289643645287, 0.09625319391489029, 0.05476341396570206], [-0.026440422981977463, -0.10101683437824249, 0.015787502750754356], [-0.00376404938288033, 0.4349149465560913, -0.13462789356708527], [0.14029289782047272, 0.4572110176086426, 0.14482085406780243], [-0.09719868004322052, -0.210268035531044, 0.008753085508942604], [0.015171191655099392, 0.8317933678627014, -0.02566116489470005], [0.3482861816883087, 0.7713021636009216, 0.3104654848575592], [-0.13896872103214264, -0.2401464730501175, -0.012129176408052444], [-0.0811568945646286, 0.9189121127128601, -0.05881904065608978], [0.29839888215065, 0.8940019011497498, 0.29067108035087585], [-0.2512480318546295, -0.40770745277404785, 0.05108533799648285], [-0.1495722532272339, -0.3820415139198303, -0.004130808636546135], [-0.24100734293460846, -0.29201871156692505, 0.07303224503993988], [-0.31444719433784485, -0.4473574161529541, 0.014221658930182457], [-0.13779887557029724, -0.4678688049316406, -0.031867675483226776], [-0.3228643238544464, -0.26052796840667725, 0.11108937114477158], [-0.12427320331335068, -0.7305852174758911, -0.08519234508275986], [-0.4549429714679718, -0.03741276264190674, 0.14095734059810638], [-0.332306832075119, -0.8743196129798889, -0.0983068197965622], [-0.6328682899475098, 0.03133337199687958, -0.037387408316135406], [-0.3773164451122284, -0.9455441832542419, -0.09856978803873062], [-0.693274974822998, 0.06395475566387177, -0.08611824363470078]]}, {"image_id": "136.jpg", "category_id": 1, "keypoints": [1071.4364013671875, 480.0004577636719, 0.9744234085083008, 1091.876708984375, 509.670166015625, 0.9892833828926086, 1060.4423828125, 511.5979919433594, 0.9911578297615051, 1071.3536376953125, 441.9369812011719, 0.9910234808921814, 1053.2515869140625, 642.045654296875, 0.972663164138794, 1093.150390625, 638.077392578125, 0.9774340987205505, 1062.8829345703125, 400.51300048828125, 0.9873982667922974, 1006.0462646484375, 762.4122314453125, 0.9372193217277527, 1134.30859375, 756.4378662109375, 0.9301888942718506, 1057.8868408203125, 386.9635314941406, 0.9868544936180115, 991.9212036132812, 790.1650390625, 0.850877046585083, 1102.6099853515625, 779.7373657226562, 0.9336968660354614, 1048.225341796875, 315.62451171875, 0.9847354292869568, 1078.3336181640625, 342.6139831542969, 0.991352379322052, 1031.583251953125, 348.66986083984375, 0.986905038356781, 1043.2559814453125, 295.85455322265625, 0.9393108487129211, 1101.7772216796875, 334.82000732421875, 0.9782660007476807, 1002.6968383789062, 350.6694641113281, 0.9829001426696777, 1116.939208984375, 430.337158203125, 0.9473761320114136, 979.5938720703125, 434.2817077636719, 0.9495124816894531, 1111.8245849609375, 413.25927734375, 0.9783526659011841, 973.8909912109375, 479.7082824707031, 0.9265995621681213, 1132.751953125, 379.539794921875, 0.9731720089912415, 967.1903686523438, 490.8221740722656, 0.851121187210083, 1024.9462890625, 224.32794189453125, 0.9333029389381409, 1105.2691650390625, 411.0627136230469, 0.9486610889434814, 963.191650390625, 504.532958984375, 0.9282807111740112, 983.5625610351562, 796.4669189453125, 0.9074070453643799, 1082.957275390625, 783.336181640625, 0.9142805933952332], "score": 3.0037472248077393, "box": [947.7109375, 198.7103271484375, 205.0054931640625, 624.8800659179688], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0674843043088913, 0.08783403038978577, -0.02435232326388359], [-0.035259004682302475, 0.0858914852142334, 0.06126556172966957], [0.0002122204750776291, -0.10766792297363281, 0.0022747013717889786], [-0.05157586187124252, 0.4528737962245941, -0.022086109966039658], [0.06838678568601608, 0.45001256465911865, 0.15918956696987152], [-0.027302231639623642, -0.22939133644104004, -0.04429696500301361], [-0.19257324934005737, 0.8225331902503967, 0.06893201172351837], [0.20057570934295654, 0.8210709691047668, 0.25648733973503113], [-0.04465235769748688, -0.2658441662788391, -0.08421860635280609], [-0.238930344581604, 0.9038063287734985, -0.026721742004156113], [0.10431838035583496, 0.8977739810943604, 0.30918481945991516], [-0.06762367486953735, -0.4779496192932129, -0.09633956849575043], [0.0178985595703125, -0.39405083656311035, -0.10667131841182709], [-0.12439309805631638, -0.3819934129714966, -0.05170328542590141], [-0.08448271453380585, -0.533674955368042, -0.15650922060012817], [0.10245038568973541, -0.4207671880722046, -0.1335752010345459], [-0.2183842658996582, -0.3770591616630554, -0.025966841727495193], [0.14429791271686554, -0.15902432799339294, -0.1283162236213684], [-0.28696519136428833, -0.1290605068206787, -0.008273549377918243], [0.0994400829076767, -0.2622050940990448, -0.3526916801929474], [-0.30671849846839905, 0.024872705340385437, -0.21461310982704163], [0.14391234517097473, -0.3340122699737549, -0.35659798979759216], [-0.32888561487197876, 0.06252133846282959, -0.2867774963378906]]}, {"image_id": "137.jpg", "category_id": 1, "keypoints": [1238.8662109375, 478.3750915527344, 0.9802006483078003, 1269.593017578125, 505.06256103515625, 0.9761881828308105, 1243.1822509765625, 518.5183715820312, 0.9858837723731995, 1226.8541259765625, 435.54718017578125, 0.9890581965446472, 1236.692138671875, 634.8001708984375, 0.9779190421104431, 1294.408935546875, 660.0663452148438, 0.9798586368560791, 1198.574462890625, 394.54718017578125, 0.9872746467590332, 1240.592529296875, 795.3896484375, 0.820270299911499, 1368.279541015625, 754.2242431640625, 0.9016866683959961, 1182.4114990234375, 383.7731018066406, 0.990735650062561, 1211.4510498046875, 820.7406005859375, 0.8656110763549805, 1335.915283203125, 820.3621826171875, 0.915715754032135, 1129.0234375, 314.8262634277344, 0.9880337119102478, 1174.986328125, 322.3802795410156, 0.9900729656219482, 1136.876220703125, 365.0405578613281, 0.9924396276473999, 1104.4405517578125, 299.5430908203125, 0.9661977291107178, 1178.3587646484375, 296.56072998046875, 0.9790745377540588, 1110.6126708984375, 379.41534423828125, 0.9884839653968811, 1180.7918701171875, 184.60549926757812, 0.9637040495872498, 1062.8575439453125, 465.48583984375, 0.9804225564002991, 1105.7236328125, 131.94244384765625, 0.9758952856063843, 990.8179931640625, 491.52911376953125, 0.8929619193077087, 1090.0086669921875, 108.65615844726562, 0.965392529964447, 970.5130615234375, 499.7683410644531, 0.9174559116363525, 1059.837646484375, 264.0906066894531, 0.933375895023346, 1059.9542236328125, 81.33917236328125, 0.9447543621063232, 946.5888671875, 505.7496032714844, 0.9027054309844971, 1194.2420654296875, 822.2945556640625, 0.8934749960899353, 1307.32177734375, 823.7405395507812, 0.9451816082000732], "score": 3.1832776069641113, "box": [984.410400390625, 115.31089782714844, 421.5174560546875, 721.1944122314453], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07574868202209473, 0.062348783016204834, -0.05589103326201439], [0.008858516812324524, 0.09616947174072266, 0.05406889319419861], [-0.026284649968147278, -0.10052448511123657, 0.018329836428165436], [-0.024739976972341537, 0.42781853675842285, -0.1473071426153183], [0.1465761661529541, 0.452740341424942, 0.15904276072978973], [-0.09987519681453705, -0.20791104435920715, 0.02330518513917923], [-0.01027519628405571, 0.8349282741546631, -0.0885709822177887], [0.38267579674720764, 0.7381787896156311, 0.3373306393623352], [-0.14433462917804718, -0.2360493540763855, 0.005981035530567169], [-0.11161132156848907, 0.9202903509140015, -0.10826036334037781], [0.3221198320388794, 0.8556296825408936, 0.3161802887916565], [-0.25965389609336853, -0.3984401226043701, 0.07642794400453568], [-0.1593686044216156, -0.37724602222442627, 0.017051756381988525], [-0.2447325885295868, -0.2828492522239685, 0.09577084332704544], [-0.3267972767353058, -0.4373711347579956, 0.046442240476608276], [-0.14939431846141815, -0.463949978351593, -0.008447784930467606], [-0.32060113549232483, -0.24224704504013062, 0.13735860586166382], [-0.14733116328716278, -0.7253471612930298, -0.06825047731399536], [-0.44677504897117615, -0.014429733157157898, 0.15037801861763], [-0.3551088273525238, -0.8678851127624512, -0.09051099419593811], [-0.6277728080749512, 0.05286327004432678, -0.02505423128604889], [-0.40263622999191284, -0.9369543790817261, -0.09816571325063705], [-0.6936814785003662, 0.08006349205970764, -0.06970225274562836]]}, {"image_id": "137.jpg", "category_id": 1, "keypoints": [1070.5087890625, 482.1757507324219, 0.9719880819320679, 1089.69921875, 511.81817626953125, 0.990362286567688, 1059.6192626953125, 513.1311645507812, 0.9922034740447998, 1070.715576171875, 444.16253662109375, 0.991900622844696, 1053.5667724609375, 644.040283203125, 0.9784097075462341, 1091.885009765625, 639.2011108398438, 0.9809476137161255, 1063.7164306640625, 402.5434875488281, 0.9881806373596191, 1007.216552734375, 761.1909790039062, 0.9442891478538513, 1134.4075927734375, 756.0665283203125, 0.9299566149711609, 1059.7193603515625, 388.5345458984375, 0.9871366024017334, 992.3440551757812, 788.6729125976562, 0.8638331890106201, 1106.0185546875, 778.4872436523438, 0.9321573376655579, 1051.16748046875, 317.88079833984375, 0.9878495335578918, 1080.8175048828125, 344.2835693359375, 0.9917768836021423, 1033.38720703125, 349.8538513183594, 0.9877243041992188, 1045.4417724609375, 297.35772705078125, 0.9470431804656982, 1105.5030517578125, 337.596435546875, 0.9786730408668518, 1003.8045654296875, 350.618896484375, 0.985567569732666, 1115.755126953125, 440.962646484375, 0.9678061008453369, 981.0167236328125, 435.0198974609375, 0.9512426853179932, 1113.7301025390625, 417.5026550292969, 0.9764464497566223, 976.691650390625, 485.21063232421875, 0.9274396896362305, 1143.0487060546875, 380.9368896484375, 0.9463549852371216, 969.710693359375, 496.5428466796875, 0.8809055089950562, 1015.301513671875, 227.30343627929688, 0.9351634979248047, 1116.963134765625, 410.29730224609375, 0.9322852492332458, 964.57470703125, 511.7937927246094, 0.9286696314811707, 983.0477294921875, 794.82958984375, 0.9139344096183777, 1086.0806884765625, 781.5205078125, 0.9137277007102966], "score": 3.014281749725342, "box": [946.471923828125, 195.93743896484375, 207.454345703125, 623.0704956054688], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06659748405218124, 0.08878333866596222, -0.02185850590467453], [-0.03659188374876976, 0.08409686386585236, 0.06241074576973915], [0.0012561669573187828, -0.10734465718269348, 0.00011552125215530396], [-0.03411668539047241, 0.45854640007019043, -0.013595007359981537], [0.06744606792926788, 0.447346031665802, 0.1602766513824463], [-0.022066589444875717, -0.22836536169052124, -0.05031246691942215], [-0.1730908751487732, 0.8222463130950928, 0.09755438566207886], [0.20406505465507507, 0.8138446807861328, 0.26397818326950073], [-0.03571604937314987, -0.265930712223053, -0.09045916795730591], [-0.22102758288383484, 0.9010354280471802, 0.0009901560842990875], [0.11372051388025284, 0.8921276330947876, 0.3235833942890167], [-0.057502381503582, -0.47712281346321106, -0.11072295904159546], [0.028485745191574097, -0.39338359236717224, -0.1098354160785675], [-0.11823775619268417, -0.38234081864356995, -0.06955784559249878], [-0.07598617672920227, -0.5325403213500977, -0.1707749366760254], [0.11684609949588776, -0.41655829548835754, -0.12405537068843842], [-0.21449804306030273, -0.3807450234889984, -0.05511688441038132], [0.14291512966156006, -0.15337419509887695, -0.12467552721500397], [-0.2814912796020508, -0.1327354609966278, -0.041942063719034195], [0.11946171522140503, -0.298172265291214, -0.32752591371536255], [-0.2969329059123993, 0.03766481578350067, -0.23442329466342926], [0.17221790552139282, -0.363951712846756, -0.32676267623901367], [-0.32088541984558105, 0.07718747854232788, -0.30471524596214294]]}, {"image_id": "138.jpg", "category_id": 1, "keypoints": [1241.886962890625, 481.51727294921875, 0.9804566502571106, 1272.345458984375, 506.8965148925781, 0.971204936504364, 1248.696044921875, 521.5504150390625, 0.9842456579208374, 1228.2991943359375, 439.26287841796875, 0.9904999136924744, 1233.3201904296875, 639.1658935546875, 0.9844278693199158, 1306.6043701171875, 659.5440063476562, 0.9804898500442505, 1199.490478515625, 399.21539306640625, 0.9874157905578613, 1235.4903564453125, 800.43896484375, 0.8049966096878052, 1381.7747802734375, 758.4610595703125, 0.8762433528900146, 1183.542724609375, 388.990966796875, 0.9911561012268066, 1207.62646484375, 824.9508056640625, 0.8769503831863403, 1349.9395751953125, 810.8334350585938, 0.9124066233634949, 1130.4560546875, 321.1773681640625, 0.9860010147094727, 1175.242431640625, 327.8408203125, 0.9900219440460205, 1138.3338623046875, 371.3002014160156, 0.9922711253166199, 1108.4017333984375, 305.2562561035156, 0.9661161303520203, 1174.9207763671875, 301.82476806640625, 0.9767939448356628, 1111.87646484375, 384.42584228515625, 0.9887863397598267, 1169.392333984375, 190.76559448242188, 0.9613131284713745, 1066.0343017578125, 472.6462707519531, 0.9803842306137085, 1096.3389892578125, 139.56201171875, 0.9703029990196228, 991.76171875, 495.1632080078125, 0.9117380380630493, 1080.9727783203125, 118.15737915039062, 0.9678857922554016, 970.351318359375, 500.6746826171875, 0.930275559425354, 1062.67138671875, 272.0975341796875, 0.9278230667114258, 1049.9765625, 94.12335205078125, 0.9458256363868713, 946.426513671875, 501.30328369140625, 0.9151636958122253, 1189.006591796875, 822.102783203125, 0.8956515192985535, 1313.8577880859375, 818.2637939453125, 0.9424053430557251], "score": 3.1788058280944824, "box": [971.475341796875, 116.83732604980469, 450.0067138671875, 723.8209991455078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07423556596040726, 0.05892130732536316, -0.06179506704211235], [0.016181841492652893, 0.09642305970191956, 0.05238943547010422], [-0.028804810717701912, -0.09972873330116272, 0.021396100521087646], [-0.04011373966932297, 0.4219759404659271, -0.14627042412757874], [0.17163722217082977, 0.4463280141353607, 0.1551557183265686], [-0.10412801057100296, -0.20587745308876038, 0.032141827046871185], [-0.031047748401761055, 0.8310424089431763, -0.09999284893274307], [0.407047301530838, 0.7403610944747925, 0.32049497961997986], [-0.14965292811393738, -0.2337646186351776, 0.016535907983779907], [-0.13207048177719116, 0.91705322265625, -0.12008845806121826], [0.3360680639743805, 0.8530526161193848, 0.3047012686729431], [-0.2670039236545563, -0.39553359150886536, 0.08700913190841675], [-0.16629637777805328, -0.3753412663936615, 0.027188308537006378], [-0.2507936954498291, -0.27970972657203674, 0.10677952319383621], [-0.33135339617729187, -0.4390772879123688, 0.05691961199045181], [-0.16915848851203918, -0.4618290364742279, -0.0019013304263353348], [-0.33071017265319824, -0.24088934063911438, 0.14321032166481018], [-0.18687520921230316, -0.7180769443511963, -0.07923241704702377], [-0.4509262144565582, -0.009353980422019958, 0.14805790781974792], [-0.3941536545753479, -0.8576090335845947, -0.1202089861035347], [-0.6376253366470337, 0.04897017776966095, -0.024889566004276276], [-0.44344082474708557, -0.9261460304260254, -0.12092197686433792], [-0.7085543870925903, 0.06766122579574585, -0.06655470281839371]]}, {"image_id": "138.jpg", "category_id": 1, "keypoints": [1073.486572265625, 485.3118896484375, 0.9703519940376282, 1092.5338134765625, 515.7564086914062, 0.991211473941803, 1062.10205078125, 516.29541015625, 0.9917792677879333, 1073.482666015625, 447.3055419921875, 0.9918054342269897, 1050.51513671875, 646.72216796875, 0.9789860248565674, 1098.851806640625, 641.786865234375, 0.9856342077255249, 1066.3995361328125, 405.5048828125, 0.9854152798652649, 1016.2220458984375, 772.1087036132812, 0.9333610534667969, 1140.05810546875, 756.4969482421875, 0.9183645248413086, 1062.09033203125, 391.5210876464844, 0.9901823401451111, 1002.8970947265625, 791.7734375, 0.8511314392089844, 1116.15966796875, 786.2613525390625, 0.9205753803253174, 1050.2098388671875, 319.15777587890625, 0.9879150390625, 1081.056640625, 345.25830078125, 0.9915432929992676, 1033.9095458984375, 352.81787109375, 0.9871305823326111, 1045.3603515625, 298.68499755859375, 0.9444950222969055, 1104.5345458984375, 335.5095520019531, 0.977426290512085, 1004.1563110351562, 352.6348571777344, 0.9796004295349121, 1126.2711181640625, 430.3851318359375, 0.9732375144958496, 983.4077758789062, 435.88232421875, 0.9562955498695374, 1140.80029296875, 382.9162292480469, 0.9842631816864014, 971.5610961914062, 488.57708740234375, 0.9390162229537964, 1152.100830078125, 357.9031066894531, 0.9749323725700378, 963.0511474609375, 501.8634033203125, 0.9073446393013, 1019.1492309570312, 226.6583251953125, 0.9272378087043762, 1122.90234375, 376.06341552734375, 0.9713503122329712, 957.509033203125, 519.4505004882812, 0.9239500761032104, 998.5087280273438, 792.615234375, 0.8678737878799438, 1100.0615234375, 794.043701171875, 0.9219818115234375], "score": 2.826948642730713, "box": [947.5918579101562, 179.51095581054688, 206.75360107421875, 652.5165710449219], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06617207825183868, 0.08794461935758591, -0.018968801945447922], [-0.039118196815252304, 0.08346401154994965, 0.05892692133784294], [0.0012944722548127174, -0.10490676760673523, 0.000706549733877182], [-0.05167107656598091, 0.4538023769855499, -0.03077627718448639], [0.078337661921978, 0.44337040185928345, 0.1564754843711853], [-0.022232133895158768, -0.2250431776046753, -0.04835264012217522], [-0.15664246678352356, 0.8424993753433228, 0.004815578460693359], [0.21365416049957275, 0.8115510940551758, 0.2517412304878235], [-0.03643423691391945, -0.26295527815818787, -0.08625376224517822], [-0.2168247550725937, 0.9227197170257568, -0.08210287988185883], [0.13391053676605225, 0.9143584966659546, 0.27697253227233887], [-0.06805707514286041, -0.4693271815776825, -0.11012904345989227], [0.02010001800954342, -0.39070752263069153, -0.10713168978691101], [-0.12231825292110443, -0.37377938628196716, -0.067430779337883], [-0.08370935916900635, -0.523687481880188, -0.17217585444450378], [0.10333164781332016, -0.4247138798236847, -0.11935150623321533], [-0.21690109372138977, -0.3751315772533417, -0.054352473467588425], [0.16299468278884888, -0.16797906160354614, -0.10530734062194824], [-0.2784465551376343, -0.12830355763435364, -0.021800711750984192], [0.22128663957118988, -0.37547704577445984, -0.23059433698654175], [-0.3163294196128845, 0.04020287096500397, -0.21201026439666748], [0.25410646200180054, -0.44961562752723694, -0.25016653537750244], [-0.34374186396598816, 0.0836867243051529, -0.2774442136287689]]}, {"image_id": "139.jpg", "category_id": 1, "keypoints": [1243.3419189453125, 482.74932861328125, 0.9802147150039673, 1272.9683837890625, 507.4452819824219, 0.9738187789916992, 1251.340087890625, 520.0899658203125, 0.9835445880889893, 1226.7650146484375, 442.6180114746094, 0.9916669726371765, 1231.1754150390625, 644.4454345703125, 0.9790175557136536, 1309.6732177734375, 642.5963134765625, 0.9816523790359497, 1195.9908447265625, 403.0991516113281, 0.9885517358779907, 1229.538330078125, 804.218994140625, 0.8405415415763855, 1392.6900634765625, 746.946044921875, 0.8849813938140869, 1180.6756591796875, 392.6066589355469, 0.9913615584373474, 1197.50732421875, 825.754638671875, 0.9011663198471069, 1375.0931396484375, 792.2567138671875, 0.9208257794380188, 1129.5748291015625, 330.1468505859375, 0.9865290522575378, 1171.33349609375, 333.9203796386719, 0.9890665411949158, 1136.6473388671875, 378.783447265625, 0.9930769801139832, 1109.15673828125, 313.5265808105469, 0.9710555076599121, 1172.52099609375, 310.2276611328125, 0.9728409647941589, 1111.2894287109375, 391.2237243652344, 0.9899057745933533, 1158.1220703125, 194.8284912109375, 0.9692321419715881, 1065.442138671875, 477.7032470703125, 0.9761253595352173, 1092.3778076171875, 143.94635009765625, 0.9676915407180786, 990.7320556640625, 499.7277526855469, 0.9153849482536316, 1077.2618408203125, 124.11737060546875, 0.9703715443611145, 969.3027954101562, 504.0735168457031, 0.9348607063293457, 1057.980224609375, 280.0557861328125, 0.9088612794876099, 1046.93896484375, 102.75762939453125, 0.9547429084777832, 948.842041015625, 499.8048095703125, 0.9217985272407532, 1178.98095703125, 819.9324951171875, 0.9094891548156738, 1351.258056640625, 810.8309326171875, 0.9310522079467773], "score": 3.179060935974121, "box": [956.8352661132812, 118.80623626708984, 479.93121337890625, 722.8360366821289], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07585413008928299, 0.055608779191970825, -0.062454670667648315], [0.020981881767511368, 0.09539370983839035, 0.05204135924577713], [-0.03285283222794533, -0.09819769859313965, 0.02166626788675785], [-0.040062859654426575, 0.4252520501613617, -0.09919494390487671], [0.19001998007297516, 0.4258873462677002, 0.1889512985944748], [-0.11562282592058182, -0.1967221200466156, 0.04509532451629639], [-0.04279868304729462, 0.8354890942573547, -0.0801699087023735], [0.4439002275466919, 0.7369718551635742, 0.273124098777771], [-0.1611553132534027, -0.22709432244300842, 0.03537745028734207], [-0.15411944687366486, 0.9084038138389587, -0.09546561539173126], [0.3952370882034302, 0.8616454005241394, 0.2714415192604065], [-0.27543532848358154, -0.3835238218307495, 0.12099532783031464], [-0.17498764395713806, -0.3670589327812195, 0.059671998023986816], [-0.26149195432662964, -0.26609185338020325, 0.12938015162944794], [-0.3383920192718506, -0.4323080778121948, 0.09601598978042603], [-0.17013052105903625, -0.45794814825057983, 0.06496545672416687], [-0.34376615285873413, -0.22634318470954895, 0.15845195949077606], [-0.20609238743782043, -0.7180863618850708, 0.013699891045689583], [-0.465641587972641, 0.0028570890426635742, 0.14068002998828888], [-0.4056773781776428, -0.8727514147758484, 0.015101110562682152], [-0.6618705987930298, 0.0621255487203598, -0.019840670749545097], [-0.45137983560562134, -0.9373506903648376, 0.04389307647943497], [-0.7347044348716736, 0.07727493345737457, -0.05910816788673401]]}, {"image_id": "139.jpg", "category_id": 1, "keypoints": [1072.75390625, 483.29901123046875, 0.9685791730880737, 1091.761962890625, 514.2013549804688, 0.9898790717124939, 1062.3155517578125, 514.751953125, 0.9907711148262024, 1072.3995361328125, 444.3180236816406, 0.9923434853553772, 1051.47607421875, 643.3589477539062, 0.9815105199813843, 1098.8836669921875, 640.9663696289062, 0.9865774512290955, 1064.4940185546875, 403.373046875, 0.9853920340538025, 1019.4952392578125, 770.8292236328125, 0.924777090549469, 1140.84619140625, 757.3250122070312, 0.9293307662010193, 1059.9844970703125, 389.6016845703125, 0.9900839924812317, 1008.3963623046875, 790.8690185546875, 0.8567560911178589, 1119.88916015625, 785.8328857421875, 0.9306772351264954, 1045.9063720703125, 317.7152099609375, 0.9883577823638916, 1077.754638671875, 343.644775390625, 0.9920700192451477, 1030.1103515625, 351.13128662109375, 0.9871264100074768, 1041.7537841796875, 297.2556457519531, 0.9485868811607361, 1101.07421875, 332.76629638671875, 0.9767753481864929, 1000.4548950195312, 350.5999450683594, 0.980080783367157, 1131.55419921875, 415.7691345214844, 0.9782015085220337, 979.464111328125, 434.224365234375, 0.9527071714401245, 1132.678466796875, 368.9011535644531, 0.9878309965133667, 971.3367309570312, 487.94219970703125, 0.9483969211578369, 1135.9593505859375, 340.66424560546875, 0.9752209186553955, 963.4899291992188, 502.2445068359375, 0.9323160648345947, 1023.880615234375, 227.1187744140625, 0.9128422141075134, 1080.111083984375, 310.83245849609375, 0.9378278851509094, 961.2509765625, 521.4498291015625, 0.9349254369735718, 1004.1677856445312, 790.7908935546875, 0.8514998555183411, 1105.1812744140625, 794.1289672851562, 0.9357095956802368], "score": 2.679931402206421, "box": [946.742919921875, 172.3839111328125, 209.45947265625, 659.66015625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0657372921705246, 0.08697666227817535, -0.02240549772977829], [-0.037174273282289505, 0.08465555310249329, 0.05776345357298851], [0.0009221145883202553, -0.10464003682136536, 0.00303083099424839], [-0.060992464423179626, 0.44796448945999146, -0.038083113729953766], [0.0793188065290451, 0.44575685262680054, 0.14498089253902435], [-0.025096245110034943, -0.22387036681175232, -0.047815367579460144], [-0.1591295599937439, 0.8377327919006348, -0.047640785574913025], [0.21447813510894775, 0.812406063079834, 0.2372196614742279], [-0.039380304515361786, -0.2612016201019287, -0.08621373772621155], [-0.21056629717350006, 0.9212902784347534, -0.136348694562912], [0.13815133273601532, 0.9187494516372681, 0.25471070408821106], [-0.07735726982355118, -0.46504321694374084, -0.11780954897403717], [0.013260804116725922, -0.3900132477283478, -0.10819883644580841], [-0.12994803488254547, -0.3688167631626129, -0.07497533410787582], [-0.09262628853321075, -0.5110466480255127, -0.18648742139339447], [0.09534221142530441, -0.42804762721061707, -0.11403317749500275], [-0.22520335018634796, -0.37079301476478577, -0.07040903717279434], [0.18650242686271667, -0.18202802538871765, -0.10190120339393616], [-0.2871198356151581, -0.1243206262588501, -0.04826917499303818], [0.18411578238010406, -0.3871547281742096, -0.24151334166526794], [-0.3130258023738861, 0.04556037485599518, -0.23751133680343628], [0.19298049807548523, -0.46875283122062683, -0.25450992584228516], [-0.3377116620540619, 0.09118521958589554, -0.3021107614040375]]}, {"image_id": "140.jpg", "category_id": 1, "keypoints": [1241.2576904296875, 483.8800964355469, 0.9780453443527222, 1269.16455078125, 508.04638671875, 0.9827079176902771, 1250.6751708984375, 522.7822265625, 0.9658719301223755, 1225.046875, 443.1594543457031, 0.9920826554298401, 1231.04931640625, 640.0240478515625, 0.9658080339431763, 1320.1776123046875, 632.5147094726562, 0.9684851169586182, 1195.3616943359375, 407.3792419433594, 0.9872939586639404, 1225.3941650390625, 804.1240234375, 0.8706222772598267, 1412.837158203125, 742.0164794921875, 0.9024458527565002, 1179.49853515625, 399.55108642578125, 0.9899381995201111, 1197.6353759765625, 824.0398559570312, 0.8783620595932007, 1396.5579833984375, 775.1177978515625, 0.9493807554244995, 1127.5838623046875, 337.522705078125, 0.9876171946525574, 1165.486328125, 341.2665710449219, 0.9928719401359558, 1137.5194091796875, 384.2494812011719, 0.994725227355957, 1105.769287109375, 320.1234436035156, 0.977822482585907, 1158.43212890625, 313.4806213378906, 0.9588783979415894, 1112.3792724609375, 396.48345947265625, 0.990424394607544, 1146.8592529296875, 204.2025146484375, 0.9494760036468506, 1084.2926025390625, 488.1266174316406, 0.9640980362892151, 1085.6138916015625, 148.21365356445312, 0.970784068107605, 1001.77587890625, 512.1458740234375, 0.9232283234596252, 1063.80810546875, 129.39532470703125, 0.9669675827026367, 971.1781616210938, 513.7512817382812, 0.9087721109390259, 1065.334228515625, 279.5391845703125, 0.9332994818687439, 1033.1422119140625, 119.63714599609375, 0.9072480797767639, 938.6356201171875, 517.943603515625, 0.9358311295509338, 1181.560791015625, 817.5830078125, 0.8565100431442261, 1376.942626953125, 791.643798828125, 0.9224130511283875], "score": 3.1759724617004395, "box": [994.705810546875, 151.02890014648438, 454.9835205078125, 705.4798278808594], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07282134890556335, 0.05784626305103302, -0.06593818217515945], [0.02538304030895233, 0.09376715123653412, 0.05545123666524887], [-0.032600633800029755, -0.1000114232301712, 0.019874580204486847], [-0.03928661346435547, 0.4273541569709778, -0.12788569927215576], [0.23447227478027344, 0.4058120846748352, 0.18619254231452942], [-0.11504177004098892, -0.20031996071338654, 0.027655895799398422], [-0.05467147380113602, 0.8409711122512817, -0.14208269119262695], [0.50253826379776, 0.7192879915237427, 0.22047263383865356], [-0.16458019614219666, -0.22399763762950897, 0.017010509967803955], [-0.16455906629562378, 0.9181517958641052, -0.15465515851974487], [0.4532041847705841, 0.8352710008621216, 0.26854318380355835], [-0.2916925847530365, -0.38080525398254395, 0.08640486001968384], [-0.19611865282058716, -0.364948034286499, 0.016143128275871277], [-0.26085197925567627, -0.2689792513847351, 0.1151374951004982], [-0.35570427775382996, -0.4300536513328552, 0.06788449734449387], [-0.21928492188453674, -0.44436609745025635, -0.024292223155498505], [-0.3380061089992523, -0.2323547750711441, 0.16089403629302979], [-0.2515961527824402, -0.6982707977294922, -0.10827650874853134], [-0.4117947518825531, 0.013806432485580444, 0.21346965432167053], [-0.42915695905685425, -0.8697006702423096, -0.04634588584303856], [-0.6256000399589539, 0.07667234539985657, 0.0750778391957283], [-0.4868757128715515, -0.9239789247512817, -0.015582960098981857], [-0.698303759098053, 0.08081354200839996, 0.03126076981425285]]}, {"image_id": "140.jpg", "category_id": 1, "keypoints": [1066.9281005859375, 484.4292297363281, 0.9780498147010803, 1089.8360595703125, 513.5856323242188, 0.9902119636535645, 1052.4212646484375, 516.6737060546875, 0.9879707098007202, 1061.391845703125, 445.0821838378906, 0.9924796223640442, 1087.654296875, 645.7064208984375, 0.988476574420929, 1071.497314453125, 645.8281860351562, 0.989473283290863, 1059.228759765625, 404.8396911621094, 0.9885650277137756, 1059.865966796875, 765.3594970703125, 0.9447544813156128, 1100.314453125, 752.226318359375, 0.9490514397621155, 1056.765869140625, 391.2227478027344, 0.9909453988075256, 1060.935791015625, 788.1009521484375, 0.8442600965499878, 1087.3843994140625, 783.0748291015625, 0.9509580135345459, 1042.3829345703125, 319.7354736328125, 0.9832606315612793, 1075.0628662109375, 345.89996337890625, 0.9933318495750427, 1025.583251953125, 353.18548583984375, 0.9886378645896912, 1038.0797119140625, 299.67236328125, 0.9308212399482727, 1099.7236328125, 330.56329345703125, 0.9883497953414917, 995.7789916992188, 348.95172119140625, 0.988768458366394, 1131.6170654296875, 318.462890625, 0.9739013314247131, 971.649169921875, 435.58221435546875, 0.9582067131996155, 1093.9169921875, 207.08724975585938, 0.9779003262519836, 968.7064819335938, 493.3713684082031, 0.9404634237289429, 1083.79248046875, 174.7313232421875, 0.9474505186080933, 966.3953857421875, 513.5253295898438, 0.9204391241073608, 1027.872802734375, 247.48353576660156, 0.9530117511749268, 1077.9683837890625, 152.04324340820312, 0.9443831443786621, 974.922119140625, 535.1866455078125, 0.8689414262771606, 1058.728271484375, 790.0145263671875, 0.8702165484428406, 1089.185302734375, 789.3740844726562, 0.9496743679046631], "score": 2.8270058631896973, "box": [928.642333984375, 99.01620483398438, 250.861083984375, 742.9082336425781], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0778389498591423, 0.08024218678474426, 0.0067879557609558105], [-0.05214868485927582, 0.0937146246433258, 0.023504476994276047], [-0.01221084501594305, -0.10467666387557983, 0.012502528727054596], [0.07257985323667526, 0.4601031541824341, 0.0352003239095211], [0.004954460076987743, 0.47670114040374756, 0.04379561170935631], [-0.022921346127986908, -0.22806307673454285, -0.03578434884548187], [-0.01798764057457447, 0.8508244156837463, 0.03935043886303902], [0.1050986796617508, 0.8336108326911926, 0.19611458480358124], [-0.031778786331415176, -0.25971925258636475, -0.08127158880233765], [-0.016831353306770325, 0.9306865334510803, -0.06635239720344543], [0.057073600590229034, 0.9383627772331238, 0.13094787299633026], [-0.06956706196069717, -0.46713787317276, -0.09900753200054169], [0.02191121317446232, -0.39162272214889526, -0.08719408512115479], [-0.12595656514167786, -0.36645954847335815, -0.07023032009601593], [-0.08217069506645203, -0.5145814418792725, -0.16695033013820648], [0.09897065162658691, -0.4390302300453186, -0.1024610698223114], [-0.21977011859416962, -0.37874555587768555, -0.08947345614433289], [0.3313899040222168, -0.530610203742981, -0.023600291460752487], [-0.2874971628189087, -0.1362413763999939, -0.051956307142972946], [0.25048789381980896, -0.7604700922966003, -0.06912656128406525], [-0.2970529794692993, 0.04529924690723419, -0.23077864944934845], [0.2253810316324234, -0.8399787545204163, -0.07259300351142883], [-0.30338969826698303, 0.10005701333284378, -0.29305097460746765]]}, {"image_id": "141.jpg", "category_id": 1, "keypoints": [1238.8924560546875, 489.7347717285156, 0.9735565781593323, 1267.174560546875, 512.3203125, 0.9728197455406189, 1251.261962890625, 526.5209350585938, 0.9626986384391785, 1220.7674560546875, 450.3876953125, 0.9914308786392212, 1226.105712890625, 642.635498046875, 0.9678613543510437, 1329.40478515625, 630.879638671875, 0.9660917520523071, 1190.1142578125, 415.21575927734375, 0.987881064414978, 1220.5159912109375, 801.4719848632812, 0.8454873561859131, 1425.669189453125, 743.7022705078125, 0.9132505059242249, 1174.400634765625, 406.610107421875, 0.9868177175521851, 1190.298583984375, 818.697265625, 0.8388407230377197, 1413.3255615234375, 773.12158203125, 0.9386705160140991, 1124.9774169921875, 347.98919677734375, 0.9886743426322937, 1162.572021484375, 349.6309814453125, 0.9920915365219116, 1132.89501953125, 393.5780029296875, 0.9929549694061279, 1104.9896240234375, 329.48236083984375, 0.9771771430969238, 1159.02099609375, 321.0472412109375, 0.9734414219856262, 1108.2071533203125, 407.31317138671875, 0.9844946265220642, 1136.2864990234375, 218.43771362304688, 0.9553929567337036, 1084.8350830078125, 500.1706237792969, 0.9721230864524841, 1074.3067626953125, 153.70050048828125, 0.9481559991836548, 993.7294921875, 517.0711059570312, 0.9327862858772278, 1052.562744140625, 139.38677978515625, 0.9799306988716125, 969.7525024414062, 516.92724609375, 0.865283727645874, 1061.4222412109375, 283.1336669921875, 0.9339855313301086, 1028.7882080078125, 112.759033203125, 0.8287423849105835, 934.5186767578125, 519.9315185546875, 0.9029857516288757, 1183.5648193359375, 814.8194580078125, 0.8371327519416809, 1396.8258056640625, 787.849853515625, 0.8962934613227844], "score": 3.1787471771240234, "box": [994.9537963867188, 151.37155151367188, 473.25860595703125, 706.5453186035156], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07292181998491287, 0.05360272526741028, -0.06888475269079208], [0.033666908740997314, 0.0915244072675705, 0.054205190390348434], [-0.03767609968781471, -0.0978173315525055, 0.021125037223100662], [-0.04723678529262543, 0.42112910747528076, -0.11896874010562897], [0.2640322744846344, 0.3829934000968933, 0.19290851056575775], [-0.1219271644949913, -0.19628319144248962, 0.03704896941781044], [-0.06108662486076355, 0.8333652019500732, -0.11055643856525421], [0.5322933793067932, 0.6954466104507446, 0.21258455514907837], [-0.17076916992664337, -0.2224566638469696, 0.029140394181013107], [-0.17820627987384796, 0.8993569612503052, -0.11705081164836884], [0.49943244457244873, 0.8023031949996948, 0.2875353991985321], [-0.29417309165000916, -0.37580808997154236, 0.11130668222904205], [-0.19821763038635254, -0.36352184414863586, 0.040892574936151505], [-0.26677200198173523, -0.26101604104042053, 0.1298716962337494], [-0.35467979311943054, -0.4301181137561798, 0.09416414797306061], [-0.21092797815799713, -0.44853612780570984, 0.008119072765111923], [-0.3428976535797119, -0.21928706765174866, 0.17272107303142548], [-0.27155712246894836, -0.6884857416152954, -0.09593011438846588], [-0.4042663276195526, 0.030585691332817078, 0.2185135781764984], [-0.44785815477371216, -0.8696869611740112, -0.11601580679416656], [-0.627749502658844, 0.07266652584075928, 0.08959473669528961], [-0.518294632434845, -0.9166615009307861, -0.11147734522819519], [-0.6920435428619385, 0.07265125215053558, 0.03438417240977287]]}, {"image_id": "141.jpg", "category_id": 1, "keypoints": [1066.9224853515625, 479.3060302734375, 0.9733366370201111, 1088.2359619140625, 508.1962890625, 0.9885472655296326, 1056.7344970703125, 510.1554260253906, 0.9876572489738464, 1063.321533203125, 440.7000427246094, 0.9910085201263428, 1056.3287353515625, 639.3384399414062, 0.980771005153656, 1096.0614013671875, 639.06201171875, 0.9875836968421936, 1054.7877197265625, 401.22119140625, 0.9839940667152405, 1014.44970703125, 761.4568481445312, 0.9372917413711548, 1141.9349365234375, 755.5341796875, 0.9383142590522766, 1051.0499267578125, 388.1158142089844, 0.9902046918869019, 1006.6705932617188, 786.515625, 0.8492470979690552, 1119.303955078125, 783.5245361328125, 0.9307418465614319, 1036.65283203125, 317.8237609863281, 0.987569272518158, 1067.8662109375, 342.81939697265625, 0.99061518907547, 1020.381103515625, 350.66656494140625, 0.9856855273246765, 1033.352783203125, 298.2626647949219, 0.9445358514785767, 1092.36669921875, 331.9427795410156, 0.9811796545982361, 991.6689453125, 349.2974853515625, 0.9825100302696228, 1127.246826171875, 401.77886962890625, 0.9707628488540649, 973.7968139648438, 434.6451416015625, 0.9546502828598022, 1106.42333984375, 379.3641357421875, 0.9862186908721924, 967.2279663085938, 498.1561584472656, 0.9618610143661499, 1081.079833984375, 339.990478515625, 0.9724815487861633, 962.5609130859375, 516.3555297851562, 0.9076932072639465, 1009.9237060546875, 226.85342407226562, 0.9047541618347168, 1031.041259765625, 295.21142578125, 0.8394260406494141, 965.6258544921875, 541.9390869140625, 0.8962498903274536, 1003.1786499023438, 788.8857421875, 0.8851308822631836, 1109.4183349609375, 792.00341796875, 0.9369006156921387], "score": 2.7656893730163574, "box": [945.7330322265625, 176.91273498535156, 205.5445556640625, 646.8376312255859], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0749993845820427, 0.08178123831748962, -0.012928998097777367], [-0.038978226482868195, 0.08815121650695801, 0.05191470682621002], [-0.00732002779841423, -0.10511350631713867, 0.0034306757152080536], [-0.01581430435180664, 0.4528410732746124, -0.026924550533294678], [0.0743890181183815, 0.4505547285079956, 0.13561183214187622], [-0.03684758022427559, -0.22311154007911682, -0.04867984727025032], [-0.1423889696598053, 0.8293562531471252, 0.03476213663816452], [0.2196141928434372, 0.8115400075912476, 0.23482120037078857], [-0.04873717576265335, -0.2574490010738373, -0.09093721210956573], [-0.174117773771286, 0.9201178550720215, -0.05633120238780975], [0.13698147237300873, 0.9146516919136047, 0.2413451373577118], [-0.08840891718864441, -0.46237629652023315, -0.11912615597248077], [0.003216669661924243, -0.38873666524887085, -0.10354334115982056], [-0.14324086904525757, -0.36325782537460327, -0.08500570803880692], [-0.09925054013729095, -0.5124257206916809, -0.18548257648944855], [0.08656204491853714, -0.4255324602127075, -0.10786738246679306], [-0.23891915380954742, -0.3674265742301941, -0.09147201478481293], [0.20454958081245422, -0.19151431322097778, -0.09308384358882904], [-0.2907857298851013, -0.12017923593521118, -0.056340292096138], [0.10117040574550629, -0.28196123242378235, -0.29982253909111023], [-0.3109331429004669, 0.07314065098762512, -0.22224895656108856], [0.0569230355322361, -0.3474637269973755, -0.3261891305446625], [-0.3249285817146301, 0.12797972559928894, -0.2830662727355957]]}, {"image_id": "142.jpg", "category_id": 1, "keypoints": [1238.6275634765625, 496.420166015625, 0.9704486131668091, 1265.530029296875, 519.8574829101562, 0.9751006960868835, 1253.4307861328125, 530.858642578125, 0.95923912525177, 1219.66357421875, 457.6509094238281, 0.9910650253295898, 1214.3289794921875, 658.1964111328125, 0.9794297218322754, 1340.578125, 636.0579223632812, 0.9595611095428467, 1187.1007080078125, 422.5546875, 0.9860960245132446, 1216.8077392578125, 803.9337158203125, 0.8297632932662964, 1442.1201171875, 750.6904907226562, 0.941342294216156, 1170.3372802734375, 413.487060546875, 0.9825426340103149, 1185.7535400390625, 823.6456298828125, 0.8126294612884521, 1430.599365234375, 778.4893798828125, 0.9280524849891663, 1122.0048828125, 358.5213317871094, 0.9895696640014648, 1158.13037109375, 356.81610107421875, 0.9908568859100342, 1130.0621337890625, 402.45684814453125, 0.9941290616989136, 1100.1435546875, 341.77777099609375, 0.9735329151153564, 1154.9327392578125, 328.2137451171875, 0.9795457124710083, 1105.816162109375, 418.3111572265625, 0.9817366600036621, 1129.578369140625, 221.78533935546875, 0.9707616567611694, 1080.9957275390625, 512.0379638671875, 0.9546446800231934, 1058.090087890625, 160.86752319335938, 0.9697660803794861, 989.4977416992188, 522.5509643554688, 0.8631431460380554, 1041.7801513671875, 140.02444458007812, 0.9644639492034912, 968.1961669921875, 518.1663208007812, 0.8813133835792542, 1054.3214111328125, 302.65087890625, 0.9577038884162903, 1024.5040283203125, 110.62216186523438, 0.8449327349662781, 930.9794921875, 522.697021484375, 0.8758602738380432, 1188.07421875, 823.271728515625, 0.8579258918762207, 1411.169677734375, 791.6270751953125, 0.9085753560066223], "score": 3.1780853271484375, "box": [998.3382568359375, 152.56100463867188, 483.5240478515625, 706.4776306152344], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06912940740585327, 0.054887235164642334, -0.07154089212417603], [0.04108677804470062, 0.08731671422719955, 0.05572741478681564], [-0.03934497758746147, -0.09739959239959717, 0.01907551847398281], [-0.06740982830524445, 0.4196479916572571, -0.08932355791330338], [0.28844043612480164, 0.373330295085907, 0.17513908445835114], [-0.1264701932668686, -0.19322949647903442, 0.03742118924856186], [-0.060310568660497665, 0.8319433331489563, -0.08814182132482529], [0.5616229176521301, 0.6817967295646667, 0.1744592785835266], [-0.1756575107574463, -0.219514399766922, 0.03280867636203766], [-0.15810157358646393, 0.901536226272583, -0.027390247210860252], [0.5338655114173889, 0.7825233340263367, 0.259191632270813], [-0.3012925386428833, -0.36621516942977905, 0.12273060530424118], [-0.20627352595329285, -0.35900622606277466, 0.05060989409685135], [-0.2706771790981293, -0.2516922354698181, 0.1362607479095459], [-0.3668051064014435, -0.41495025157928467, 0.10646208375692368], [-0.2175985723733902, -0.44711047410964966, 0.027323154732584953], [-0.3432729244232178, -0.20455029606819153, 0.17923083901405334], [-0.28214842081069946, -0.6893962025642395, -0.06869397312402725], [-0.4075280427932739, 0.044089242815971375, 0.2274683266878128], [-0.47404950857162476, -0.8454195857048035, -0.12462902814149857], [-0.616267204284668, 0.0687069296836853, 0.07207032293081284], [-0.524754524230957, -0.9120867848396301, -0.11184952408075333], [-0.676493227481842, 0.05670802295207977, 0.013760628178715706]]}, {"image_id": "142.jpg", "category_id": 1, "keypoints": [1065.85400390625, 479.0964660644531, 0.9798970222473145, 1091.8482666015625, 505.4007263183594, 0.9878563284873962, 1052.7037353515625, 512.9169311523438, 0.9868420958518982, 1059.3895263671875, 441.1942138671875, 0.9929065704345703, 1108.979248046875, 635.4345092773438, 0.987049400806427, 1070.5794677734375, 640.9044189453125, 0.9917208552360535, 1055.1324462890625, 401.90032958984375, 0.9873974919319153, 1113.7003173828125, 762.84228515625, 0.9707821011543274, 1076.576416015625, 756.9194946289062, 0.9733184576034546, 1052.3199462890625, 389.2236328125, 0.988351047039032, 1103.980224609375, 785.614990234375, 0.9360474348068237, 1064.8984375, 782.2191162109375, 0.953698456287384, 1035.40673828125, 320.9139099121094, 0.9801251292228699, 1068.1715087890625, 344.3226318359375, 0.9910395741462708, 1020.495361328125, 354.8609924316406, 0.9909341335296631, 1030.306884765625, 302.27838134765625, 0.9213094711303711, 1091.1805419921875, 329.735107421875, 0.9863030910491943, 993.23193359375, 353.1353454589844, 0.9877549409866333, 1125.618896484375, 354.1015625, 0.9798659682273865, 966.6431884765625, 435.9045104980469, 0.9557010531425476, 1099.5289306640625, 340.6298828125, 0.9764912128448486, 965.496826171875, 498.9234619140625, 0.9482545256614685, 1076.6939697265625, 307.58502197265625, 0.9778473973274231, 964.525634765625, 521.5458374023438, 0.939280092716217, 1016.891845703125, 239.24514770507812, 0.9446346163749695, 1059.6900634765625, 317.2200927734375, 0.9509264230728149, 973.9461669921875, 543.8004760742188, 0.8866596221923828, 1093.5416259765625, 789.6659545898438, 0.9167658686637878, 1071.76123046875, 788.229248046875, 0.9432989954948425], "score": 2.846552848815918, "box": [945.3422241210938, 120.0143051147461, 204.96685791015625, 716.3271865844727], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08211681991815567, 0.07488924264907837, 0.0033853501081466675], [-0.04524950683116913, 0.09689662605524063, 0.02070072665810585], [-0.018561076372861862, -0.1020101010799408, 0.015691187232732773], [0.1330723911523819, 0.4510316848754883, 0.03932417184114456], [0.00817050226032734, 0.48090416193008423, 0.012965336441993713], [-0.03184613585472107, -0.22562247514724731, -0.030162062495946884], [0.15061920881271362, 0.84453284740448, 0.11065082252025604], [0.031563811004161835, 0.8590301275253296, 0.14068855345249176], [-0.041712816804647446, -0.2545458972454071, -0.07653534412384033], [0.10960455238819122, 0.9245132207870483, 0.013983037322759628], [-0.015289567410945892, 0.9492835998535156, 0.05686260387301445], [-0.08901090919971466, -0.45841923356056213, -0.0906173437833786], [0.004918152932077646, -0.3875398337841034, -0.07976890355348587], [-0.1396208554506302, -0.35547736287117004, -0.06364570558071136], [-0.10375335812568665, -0.5023900270462036, -0.16062629222869873], [0.08082692325115204, -0.4351128041744232, -0.09496021270751953], [-0.23352272808551788, -0.36049285531044006, -0.08082255721092224], [0.2913348376750946, -0.2911870777606964, -0.03707275167107582], [-0.3106936812400818, -0.12109911441802979, -0.045883383601903915], [0.13879618048667908, -0.35570457577705383, -0.2206643521785736], [-0.3145041763782501, 0.07641108334064484, -0.20637913048267365], [0.09159320592880249, -0.42232558131217957, -0.23536550998687744], [-0.31711673736572266, 0.13584411144256592, -0.26376646757125854]]}, {"image_id": "143.jpg", "category_id": 1, "keypoints": [1238.2454833984375, 504.87188720703125, 0.9729771018028259, 1265.2877197265625, 526.6156005859375, 0.9767633676528931, 1254.394287109375, 542.0999755859375, 0.9587642550468445, 1219.419189453125, 466.2330322265625, 0.9892287254333496, 1216.218505859375, 659.3237915039062, 0.9774694442749023, 1351.73486328125, 647.2964477539062, 0.9312600493431091, 1187.139892578125, 431.1263122558594, 0.9854471683502197, 1213.0914306640625, 805.1376953125, 0.8158717155456543, 1453.4442138671875, 744.6117553710938, 0.9213658571243286, 1170.7015380859375, 422.22137451171875, 0.9860886931419373, 1187.6962890625, 814.7864990234375, 0.8246097564697266, 1444.127685546875, 783.4007568359375, 0.8696989417076111, 1119.6484375, 368.15191650390625, 0.9895036220550537, 1156.0477294921875, 366.3914794921875, 0.9901723265647888, 1130.575439453125, 411.8097229003906, 0.9931570291519165, 1096.617431640625, 350.7607421875, 0.9788076281547546, 1151.48486328125, 339.3177795410156, 0.9785418510437012, 1107.666015625, 428.5628967285156, 0.9816256761550903, 1114.2059326171875, 238.1524658203125, 0.9749997854232788, 1086.1171875, 524.46533203125, 0.9317308068275452, 1053.2845458984375, 174.75003051757812, 0.9659535884857178, 993.2766723632812, 529.1830444335938, 0.9052319526672363, 1037.410400390625, 156.82809448242188, 0.9520488977432251, 970.4508056640625, 524.1710205078125, 0.8400692343711853, 1051.997802734375, 307.1883544921875, 0.9472149014472961, 1024.24169921875, 113.58697509765625, 0.8606542944908142, 932.30224609375, 525.5786743164062, 0.8856605291366577, 1191.710693359375, 808.511474609375, 0.8119710087776184, 1423.2144775390625, 795.1478881835938, 0.8630025386810303], "score": 3.1696009635925293, "box": [974.3431396484375, 150.92852783203125, 525.9871826171875, 715.50390625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06610581278800964, 0.048021554946899414, -0.07905007898807526], [0.042394138872623444, 0.09252147376537323, 0.045577727258205414], [-0.03787438943982124, -0.09541621804237366, 0.029851168394088745], [-0.07152538001537323, 0.4101587235927582, -0.1224437952041626], [0.31198060512542725, 0.3798103332519531, 0.09040144085884094], [-0.12321823835372925, -0.1909482777118683, 0.056478314101696014], [-0.08135571330785751, 0.8222030401229858, -0.13586710393428802], [0.6026489734649658, 0.6633075475692749, 0.02006106823682785], [-0.17248208820819855, -0.21757033467292786, 0.05549933761358261], [-0.1920992136001587, 0.8704156875610352, -0.07653237134218216], [0.5722920894622803, 0.7942332029342651, 0.027077578008174896], [-0.3043099641799927, -0.3609367907047272, 0.141915425658226], [-0.20973922312259674, -0.3560335338115692, 0.06895766407251358], [-0.26807230710983276, -0.2484877109527588, 0.1589493602514267], [-0.3695236146450043, -0.40849563479423523, 0.12178044021129608], [-0.22603155672550201, -0.4425068795681, 0.042310573160648346], [-0.33880215883255005, -0.19680508971214294, 0.20005947351455688], [-0.31676727533340454, -0.6634702682495117, -0.08024930953979492], [-0.3947322964668274, 0.056731075048446655, 0.22961975634098053], [-0.48238223791122437, -0.8213375806808472, -0.18976248800754547], [-0.6137415170669556, 0.06823189556598663, 0.08729991316795349], [-0.5388384461402893, -0.8834620714187622, -0.2017507553100586], [-0.6741335391998291, 0.055272385478019714, 0.02927570417523384]]}, {"image_id": "143.jpg", "category_id": 1, "keypoints": [1063.3125, 482.7117614746094, 0.9779961109161377, 1088.072021484375, 508.05548095703125, 0.9874706864356995, 1048.5677490234375, 516.72705078125, 0.9841067790985107, 1058.343505859375, 444.9187927246094, 0.9902278780937195, 1090.1678466796875, 641.0382080078125, 0.9827350974082947, 1075.9520263671875, 640.9212646484375, 0.9905335307121277, 1050.350830078125, 405.8260498046875, 0.9835730791091919, 1071.1318359375, 755.8980712890625, 0.952146589756012, 1110.059814453125, 749.919189453125, 0.9392868876457214, 1047.429443359375, 391.5462646484375, 0.9919747710227966, 1070.415771484375, 776.4443359375, 0.8982306718826294, 1088.4156494140625, 777.3455810546875, 0.9368453025817871, 1029.351806640625, 323.0614929199219, 0.988489031791687, 1060.5625, 344.86236572265625, 0.9900762438774109, 1015.2928466796875, 358.4910888671875, 0.9848177433013916, 1024.6639404296875, 302.89349365234375, 0.9473074078559875, 1080.6390380859375, 328.0108337402344, 0.9808685779571533, 989.360595703125, 357.0849914550781, 0.9848757982254028, 1121.000244140625, 350.59100341796875, 0.9732126593589783, 967.8986206054688, 438.26275634765625, 0.9508692026138306, 1101.4923095703125, 329.30950927734375, 0.9796133041381836, 966.8004760742188, 506.2394714355469, 0.9596362709999084, 1061.620849609375, 257.24908447265625, 0.9732551574707031, 965.7307739257812, 526.09619140625, 0.9189159274101257, 994.1665649414062, 235.60870361328125, 0.9104629755020142, 1024.0604248046875, 214.77227783203125, 0.9361755847930908, 976.24755859375, 552.5211791992188, 0.8650579452514648, 1069.9468994140625, 780.3585815429688, 0.9252740144729614, 1088.3294677734375, 789.2666015625, 0.9553192257881165], "score": 2.8167619705200195, "box": [944.0542602539062, 191.05015563964844, 204.46636962890625, 620.1459503173828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08021390438079834, 0.07648679614067078, 0.01298825815320015], [-0.0492682084441185, 0.09547347575426102, 0.02035658434033394], [-0.017552582547068596, -0.10330864787101746, 0.01049322634935379], [0.07979774475097656, 0.4573938548564911, 0.044914599508047104], [0.03502587974071503, 0.4740770161151886, 0.046654414385557175], [-0.03925621137022972, -0.2245095670223236, -0.038121432065963745], [0.019765159115195274, 0.8450292348861694, 0.13170699775218964], [0.1483214795589447, 0.821338415145874, 0.21282809972763062], [-0.048661500215530396, -0.2622146010398865, -0.07800334692001343], [0.013141895644366741, 0.9582126140594482, 0.06334850192070007], [0.0690254271030426, 0.9154194593429565, 0.1643947809934616], [-0.10161633044481277, -0.46434250473976135, -0.1028791069984436], [-0.007138164713978767, -0.39755675196647644, -0.07738405466079712], [-0.15177108347415924, -0.35952118039131165, -0.08120886981487274], [-0.1160711795091629, -0.5091522932052612, -0.172308549284935], [0.06256458908319473, -0.45616886019706726, -0.07448311150074005], [-0.2452407032251358, -0.36329957842826843, -0.1023758202791214], [0.28524094820022583, -0.33833202719688416, -0.001459222286939621], [-0.3101191520690918, -0.1186007559299469, -0.07295386493206024], [0.17791037261486053, -0.4308794438838959, -0.20502494275569916], [-0.3138338327407837, 0.09309172630310059, -0.2157754749059677], [0.13726265728473663, -0.5031026601791382, -0.21307650208473206], [-0.31701335310935974, 0.1502806842327118, -0.2758597135543823]]}, {"image_id": "144.jpg", "category_id": 1, "keypoints": [1244.43212890625, 511.6146240234375, 0.9708945155143738, 1268.5462646484375, 537.0643310546875, 0.9753974080085754, 1264.406494140625, 546.353515625, 0.9620413780212402, 1224.5614013671875, 470.74945068359375, 0.9892393350601196, 1203.5367431640625, 671.7871704101562, 0.9616843461990356, 1365.162109375, 650.6753540039062, 0.9380783438682556, 1189.0623779296875, 436.8912353515625, 0.9879812598228455, 1212.906005859375, 811.5101318359375, 0.8213006258010864, 1476.086181640625, 754.68115234375, 0.9434455633163452, 1171.343994140625, 429.08624267578125, 0.9844285845756531, 1185.714599609375, 827.2059326171875, 0.7908578515052795, 1461.8856201171875, 791.1181640625, 0.912959098815918, 1119.2607421875, 377.75616455078125, 0.9909018278121948, 1152.8038330078125, 375.1986999511719, 0.9904337525367737, 1131.816650390625, 417.2959899902344, 0.9935418367385864, 1096.6575927734375, 363.38043212890625, 0.9807357788085938, 1142.0634765625, 348.04278564453125, 0.9765360355377197, 1107.6265869140625, 436.3941345214844, 0.9793949723243713, 1106.117919921875, 249.34039306640625, 0.9673382639884949, 1089.97216796875, 531.7719116210938, 0.9249508380889893, 1047.77294921875, 174.43231201171875, 0.9486445188522339, 993.805419921875, 529.1793212890625, 0.8741322755813599, 1038.80224609375, 143.4066162109375, 0.9427850842475891, 969.980712890625, 524.0199584960938, 0.8905066847801208, 1047.9710693359375, 332.4714660644531, 0.9368560314178467, 1014.4542236328125, 108.4267578125, 0.9088790416717529, 934.6768798828125, 523.6699829101562, 0.891025185585022, 1185.21484375, 819.7989501953125, 0.8487504124641418, 1439.998291015625, 808.8043823242188, 0.8659991025924683], "score": 3.1731033325195312, "box": [970.0673217773438, 157.63047790527344, 554.9385375976562, 709.4555816650391], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.057427600026130676, 0.05841512978076935, -0.07853157818317413], [0.0532456673681736, 0.08186538517475128, 0.0533595085144043], [-0.03881923109292984, -0.09747159481048584, 0.018935227766633034], [-0.113499715924263, 0.4076882004737854, -0.10546522587537766], [0.32753491401672363, 0.3597645163536072, 0.12176618725061417], [-0.1315639615058899, -0.18773651123046875, 0.038400739431381226], [-0.08188679069280624, 0.8133130669593811, -0.04032374173402786], [0.6261222958564758, 0.641866147518158, 0.09426607936620712], [-0.1827322542667389, -0.21022146940231323, 0.03747168928384781], [-0.19255241751670837, 0.8813585042953491, -0.005760541185736656], [0.5880534052848816, 0.7612030506134033, 0.14301645755767822], [-0.3158111572265625, -0.34826648235321045, 0.12953528761863708], [-0.2284461408853531, -0.3459656834602356, 0.04829374700784683], [-0.2699611783027649, -0.23986178636550903, 0.14792126417160034], [-0.38602983951568604, -0.3922930955886841, 0.12121657282114029], [-0.2611473798751831, -0.42079198360443115, 0.006572248414158821], [-0.33727115392684937, -0.18655547499656677, 0.19199228286743164], [-0.3476393520832062, -0.6293383836746216, -0.13837766647338867], [-0.3830964267253876, 0.06805393099784851, 0.2271277904510498], [-0.5008640289306641, -0.8151981830596924, -0.217062309384346], [-0.6018397808074951, 0.06264063715934753, 0.0844242051243782], [-0.5247750878334045, -0.8951234817504883, -0.23141634464263916], [-0.667023777961731, 0.0487980842590332, 0.032308369874954224]]}, {"image_id": "144.jpg", "category_id": 1, "keypoints": [1064.0511474609375, 487.3182373046875, 0.9806358814239502, 1088.307861328125, 513.8549194335938, 0.987966775894165, 1050.87939453125, 519.7341918945312, 0.9857224225997925, 1058.4990234375, 448.9354248046875, 0.9916281700134277, 1072.2474365234375, 646.8919677734375, 0.9893987774848938, 1091.423095703125, 639.834716796875, 0.9893167018890381, 1049.572509765625, 409.23175048828125, 0.9861840605735779, 1020.319580078125, 756.46875, 0.9406150579452515, 1128.046630859375, 750.4878540039062, 0.8943221569061279, 1046.302734375, 395.173583984375, 0.9924010634422302, 1018.7086181640625, 780.4827880859375, 0.9136053323745728, 1111.09423828125, 778.0465087890625, 0.948068380355835, 1027.94189453125, 326.7812805175781, 0.9892739653587341, 1058.826416015625, 348.9443359375, 0.9893738627433777, 1014.4597778320312, 362.5426025390625, 0.985949695110321, 1021.6961669921875, 305.59259033203125, 0.9516603350639343, 1078.571533203125, 330.96728515625, 0.9839386343955994, 988.1316528320312, 361.77874755859375, 0.9875117540359497, 1116.7423095703125, 333.7899475097656, 0.9675331711769104, 967.9658203125, 443.30389404296875, 0.9461241364479065, 1082.74658203125, 304.77984619140625, 0.9817764163017273, 967.2210083007812, 506.5776672363281, 0.960046648979187, 1041.3717041015625, 235.7457275390625, 0.9713953137397766, 966.3467407226562, 525.3980102539062, 0.9147096872329712, 988.713134765625, 239.95974731445312, 0.9282001256942749, 1013.785888671875, 217.39422607421875, 0.8743266463279724, 976.31103515625, 549.5311889648438, 0.8648091554641724, 1023.1473388671875, 787.5469970703125, 0.9432335495948792, 1103.4989013671875, 786.0006103515625, 0.9552034139633179], "score": 2.9067020416259766, "box": [944.413818359375, 207.6638946533203, 206.1461181640625, 592.6119232177734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08060918003320694, 0.07632870972156525, 0.008616918697953224], [-0.047145552933216095, 0.09366849064826965, 0.030076967552304268], [-0.015961462631821632, -0.10363884270191193, 0.0069061629474163055], [0.03562816232442856, 0.4548215866088867, 0.02505798079073429], [0.08561795204877853, 0.4510590732097626, 0.102144755423069], [-0.04321688041090965, -0.2248896211385727, -0.0389961376786232], [-0.1261952519416809, 0.8079632520675659, 0.12325156480073929], [0.20880679786205292, 0.8102865815162659, 0.2284170240163803], [-0.053750794380903244, -0.2633260488510132, -0.07779084891080856], [-0.13561882078647614, 0.9252152442932129, 0.06302181631326675], [0.13898159563541412, 0.9203207492828369, 0.2076152116060257], [-0.1078951507806778, -0.4649134874343872, -0.10168249905109406], [-0.012531399726867676, -0.3984309434890747, -0.07955703139305115], [-0.15685045719146729, -0.36025774478912354, -0.0774649903178215], [-0.1268288642168045, -0.5155471563339233, -0.1659265011548996], [0.05474742501974106, -0.45971471071243286, -0.07872804999351501], [-0.2511759400367737, -0.36196738481521606, -0.09406457841396332], [0.31189602613449097, -0.4441554546356201, -0.0328059196472168], [-0.31197136640548706, -0.11682774126529694, -0.06529243290424347], [0.16124476492404938, -0.5535606741905212, -0.1958245187997818], [-0.31470799446105957, 0.08434024453163147, -0.22160620987415314], [0.11849521845579147, -0.6248112916946411, -0.19633275270462036], [-0.3173946738243103, 0.13957926630973816, -0.28324568271636963]]}, {"image_id": "145.jpg", "category_id": 1, "keypoints": [1245.7900390625, 516.0578002929688, 0.9719102382659912, 1270.50146484375, 541.5547485351562, 0.9761157631874084, 1265.281982421875, 552.5146484375, 0.9651581048965454, 1225.7623291015625, 477.041748046875, 0.9853581190109253, 1198.8818359375, 673.7811279296875, 0.959715723991394, 1370.207763671875, 654.6937255859375, 0.9476260542869568, 1189.9580078125, 441.9495849609375, 0.986168384552002, 1215.739990234375, 814.082763671875, 0.817826509475708, 1491.6954345703125, 759.4417114257812, 0.9150584936141968, 1173.4698486328125, 433.53985595703125, 0.985014796257019, 1181.3736572265625, 837.6048583984375, 0.8035069108009338, 1473.5087890625, 798.2476806640625, 0.9186558723449707, 1122.5899658203125, 383.8398132324219, 0.9911202788352966, 1154.8223876953125, 379.4979248046875, 0.9905214309692383, 1134.686279296875, 424.295166015625, 0.9913179874420166, 1101.7110595703125, 366.656494140625, 0.9800338745117188, 1143.036376953125, 353.27447509765625, 0.9721457362174988, 1110.6590576171875, 444.4661560058594, 0.9720831513404846, 1098.303466796875, 257.9203186035156, 0.9583168029785156, 1095.20458984375, 537.624267578125, 0.9137643575668335, 1046.5679931640625, 177.33230590820312, 0.9194999933242798, 998.7506103515625, 529.1088256835938, 0.8751299977302551, 1035.6402587890625, 145.72024536132812, 0.9447652697563171, 970.2783813476562, 519.4025268554688, 0.9361409544944763, 1052.0860595703125, 338.783447265625, 0.9337413907051086, 1007.3468017578125, 115.8646240234375, 0.8821312785148621, 946.0756225585938, 509.5318908691406, 0.9112046360969543, 1172.8719482421875, 841.3358154296875, 0.8637669086456299, 1446.4410400390625, 817.3278198242188, 0.8764805793762207], "score": 3.167708396911621, "box": [974.608642578125, 163.23692321777344, 563.5413818359375, 702.3493804931641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05908898636698723, 0.0563560426235199, -0.0790829136967659], [0.051501139998435974, 0.08397074043750763, 0.052231110632419586], [-0.03876948356628418, -0.09746183454990387, 0.021097339689731598], [-0.12835194170475006, 0.39478641748428345, -0.12460103631019592], [0.33418023586273193, 0.3538320064544678, 0.11747706681489944], [-0.13017334043979645, -0.1889987736940384, 0.041783832013607025], [-0.07589472830295563, 0.7990529537200928, -0.06485117226839066], [0.6445385813713074, 0.6231879591941833, 0.09220387041568756], [-0.18009620904922485, -0.21450020372867584, 0.042399272322654724], [-0.18540720641613007, 0.8758910894393921, -0.05047937482595444], [0.6109884977340698, 0.7262598276138306, 0.17195144295692444], [-0.3092426657676697, -0.3416402339935303, 0.15465041995048523], [-0.2264353632926941, -0.3483845591545105, 0.06859555840492249], [-0.2615501284599304, -0.23225493729114532, 0.16014745831489563], [-0.3735608458518982, -0.3939023017883301, 0.14670968055725098], [-0.26332253217697144, -0.4240216612815857, 0.031439170241355896], [-0.32756713032722473, -0.17643947899341583, 0.2038002610206604], [-0.36608532071113586, -0.6169149875640869, -0.12406669557094574], [-0.3681272268295288, 0.07802321016788483, 0.2458636462688446], [-0.5020774006843567, -0.8182868361473083, -0.19618186354637146], [-0.5894721746444702, 0.05905546247959137, 0.10841850191354752], [-0.5293840169906616, -0.8983404040336609, -0.1902514100074768], [-0.6597561240196228, 0.03538353741168976, 0.06742709130048752]]}, {"image_id": "145.jpg", "category_id": 1, "keypoints": [1060.6309814453125, 487.5740661621094, 0.9778736233711243, 1084.12109375, 514.8949584960938, 0.9859963059425354, 1047.7005615234375, 519.8518676757812, 0.982579231262207, 1055.2034912109375, 449.3597106933594, 0.9915556907653809, 1071.8856201171875, 644.3400268554688, 0.9871570467948914, 1090.6270751953125, 640.031494140625, 0.9900230765342712, 1046.7115478515625, 410.27374267578125, 0.9852993488311768, 1021.1773071289062, 755.8441162109375, 0.9513852000236511, 1124.4652099609375, 751.6193237304688, 0.9129132032394409, 1044.0579833984375, 396.8480224609375, 0.9915716648101807, 1017.4277954101562, 783.22607421875, 0.8776536583900452, 1107.8424072265625, 776.7171630859375, 0.9389570355415344, 1024.55810546875, 328.16973876953125, 0.9895443916320801, 1056.705322265625, 350.8859558105469, 0.9894617795944214, 1010.7481689453125, 363.7760009765625, 0.9840162396430969, 1019.6746826171875, 308.0763244628906, 0.9479824900627136, 1077.65087890625, 333.90399169921875, 0.9820618629455566, 984.0886840820312, 363.58502197265625, 0.9856390953063965, 1118.409912109375, 358.20977783203125, 0.9702925682067871, 965.306884765625, 443.029541015625, 0.9531808495521545, 1098.3035888671875, 352.5128479003906, 0.9612410068511963, 965.8654174804688, 507.3045654296875, 0.9653437733650208, 1071.1844482421875, 300.95599365234375, 0.962614893913269, 964.6403198242188, 526.18505859375, 0.9116561412811279, 987.4114379882812, 241.09530639648438, 0.9126161336898804, 1029.7255859375, 268.19622802734375, 0.9361279606819153, 973.7316284179688, 552.2244873046875, 0.8397966027259827, 1019.2562866210938, 789.3190307617188, 0.9355894327163696, 1098.9053955078125, 784.613037109375, 0.9433039426803589], "score": 2.95642352104187, "box": [945.9541625976562, 198.0674285888672, 200.57830810546875, 616.8568878173828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07983262836933136, 0.07655265927314758, 0.017579596489667892], [-0.05034893751144409, 0.09391581267118454, 0.026302069425582886], [-0.01660727709531784, -0.1043672263622284, 0.0042744167149066925], [0.0351690798997879, 0.45518332719802856, 0.05288834124803543], [0.092964768409729, 0.4522283673286438, 0.07909256964921951], [-0.04205583035945892, -0.22401773929595947, -0.046616073697805405], [-0.12541022896766663, 0.8170183897018433, 0.12795597314834595], [0.206112802028656, 0.8091323375701904, 0.22684431076049805], [-0.05098257586359978, -0.26154643297195435, -0.08705722540616989], [-0.14280125498771667, 0.9287253618240356, 0.05842525511980057], [0.13354013860225677, 0.9198665618896484, 0.23444637656211853], [-0.10724227875471115, -0.4630686342716217, -0.11470911651849747], [-0.01127717550843954, -0.397992342710495, -0.08893667161464691], [-0.15593431890010834, -0.3576255738735199, -0.0909862145781517], [-0.12316953390836716, -0.5097204446792603, -0.18253597617149353], [0.05965905636548996, -0.4555604159832001, -0.08742113411426544], [-0.2503538429737091, -0.3572246730327606, -0.10936427861452103], [0.28244122862815857, -0.3279881179332733, -0.0298619344830513], [-0.30858394503593445, -0.11198180913925171, -0.06637614965438843], [0.16406430304050446, -0.34511038661003113, -0.24802929162979126], [-0.30713987350463867, 0.09088245034217834, -0.22280552983283997], [0.1248343363404274, -0.4178783595561981, -0.26015037298202515], [-0.31084147095680237, 0.14675310254096985, -0.28451332449913025]]}, {"image_id": "146.jpg", "category_id": 1, "keypoints": [1245.6256103515625, 526.0003051757812, 0.9763827919960022, 1270.42724609375, 551.9122924804688, 0.9756758809089661, 1262.0072021484375, 563.6273803710938, 0.9665931463241577, 1225.503173828125, 487.4579162597656, 0.978638768196106, 1188.924560546875, 675.9608764648438, 0.9451075196266174, 1378.4217529296875, 657.8843994140625, 0.9541930556297302, 1190.068115234375, 450.9385681152344, 0.9823419451713562, 1216.0517578125, 815.8441162109375, 0.8919781446456909, 1513.12646484375, 775.5406494140625, 0.9508507251739502, 1173.51416015625, 443.01812744140625, 0.9853286743164062, 1180.633056640625, 839.4060668945312, 0.8035339117050171, 1487.3045654296875, 810.7081298828125, 0.9338010549545288, 1123.004150390625, 388.5633544921875, 0.990088164806366, 1155.407470703125, 387.5074462890625, 0.9907932281494141, 1134.695556640625, 431.4349365234375, 0.986930251121521, 1102.097900390625, 369.0940246582031, 0.978594958782196, 1142.86376953125, 365.5799255371094, 0.9460564851760864, 1110.5023193359375, 451.81146240234375, 0.9598572850227356, 1097.078857421875, 270.5814514160156, 0.961010754108429, 1093.56689453125, 544.7283935546875, 0.9486892223358154, 1048.021240234375, 191.62567138671875, 0.945768415927887, 1004.6112060546875, 535.202392578125, 0.8571001291275024, 1031.22705078125, 167.81509399414062, 0.9709854125976562, 978.1376342773438, 525.0057983398438, 0.9421805739402771, 1055.34619140625, 333.5238342285156, 0.928648829460144, 1000.0755615234375, 132.87643432617188, 0.9196252226829529, 956.5035400390625, 508.659912109375, 0.8976280689239502, 1162.9447021484375, 839.8577880859375, 0.8886172771453857, 1457.4346923828125, 827.2178344726562, 0.8772760033607483], "score": 3.175720691680908, "box": [981.3599243164062, 165.27122497558594, 569.0568237304688, 705.2620391845703], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.061819080263376236, 0.0565909743309021, -0.07457882910966873], [0.04449811205267906, 0.08521661907434464, 0.05339019000530243], [-0.0366201177239418, -0.09674684703350067, 0.01964576169848442], [-0.14774906635284424, 0.35884785652160645, -0.19337300956249237], [0.3428965210914612, 0.32042351365089417, 0.15310724079608917], [-0.1263529509305954, -0.19059501588344574, 0.034104470163583755], [-0.067084401845932, 0.7325908541679382, -0.0542023628950119], [0.6492286920547485, 0.5857430100440979, 0.1842971295118332], [-0.17625370621681213, -0.21427319943904877, 0.030695412307977676], [-0.17786195874214172, 0.8065130114555359, -0.052437931299209595], [0.5999379754066467, 0.6768473386764526, 0.26778531074523926], [-0.2965492308139801, -0.341224730014801, 0.14805376529693604], [-0.21809792518615723, -0.346784770488739, 0.05968019366264343], [-0.2509697675704956, -0.2323235720396042, 0.15033137798309326], [-0.357136070728302, -0.3962891101837158, 0.13263297080993652], [-0.2622576653957367, -0.419294536113739, 0.027020186185836792], [-0.31736090779304504, -0.17596037685871124, 0.19014185667037964], [-0.36205416917800903, -0.59954434633255, -0.13971886038780212], [-0.3629031181335449, 0.07725711166858673, 0.20577692985534668], [-0.49113747477531433, -0.7945849299430847, -0.22905287146568298], [-0.5683266520500183, 0.05569013953208923, 0.0509398877620697], [-0.5395941138267517, -0.8613100647926331, -0.2434372901916504], [-0.6385529637336731, 0.02887532114982605, 0.01437983289361]]}, {"image_id": "146.jpg", "category_id": 1, "keypoints": [1060.524169921875, 490.23486328125, 0.9775068163871765, 1084.6279296875, 516.6829833984375, 0.9870962500572205, 1046.969970703125, 524.3594360351562, 0.9821112155914307, 1054.8662109375, 451.24078369140625, 0.9932306408882141, 1085.77978515625, 647.4530029296875, 0.9845850467681885, 1079.1141357421875, 646.4656982421875, 0.9903751611709595, 1046.1614990234375, 411.6947937011719, 0.9842074513435364, 1049.2855224609375, 759.952880859375, 0.9553707838058472, 1112.5849609375, 752.6420288085938, 0.9365067481994629, 1043.1214599609375, 398.2467041015625, 0.9913032650947571, 1060.9404296875, 782.20751953125, 0.9030225872993469, 1095.3450927734375, 779.0255126953125, 0.9508876204490662, 1021.3390502929688, 329.138427734375, 0.9898592233657837, 1054.7757568359375, 350.97705078125, 0.9898243546485901, 1008.25048828125, 365.30194091796875, 0.9859724044799805, 1015.9733276367188, 309.7821044921875, 0.9481273889541626, 1075.6380615234375, 333.20159912109375, 0.98043292760849, 980.7200927734375, 364.47808837890625, 0.9836230874061584, 1123.49609375, 383.6208190917969, 0.964409351348877, 962.0758056640625, 444.026611328125, 0.95548415184021, 1116.3128662109375, 433.258056640625, 0.9660859107971191, 966.6480712890625, 510.5395202636719, 0.9647247195243835, 1106.80517578125, 455.2900085449219, 0.9632841348648071, 967.6797485351562, 530.9827880859375, 0.9199429750442505, 977.4661254882812, 242.778076171875, 0.890231192111969, 1088.16552734375, 498.7491149902344, 0.8913814425468445, 980.5559692382812, 556.7891845703125, 0.8084566593170166, 1063.7818603515625, 783.73681640625, 0.9337949156761169, 1085.8359375, 787.5269775390625, 0.9459236264228821], "score": 2.969613552093506, "box": [946.105224609375, 189.49974060058594, 198.3485107421875, 632.8742828369141], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08024505525827408, 0.07550455629825592, 0.020169517025351524], [-0.049859121441841125, 0.09536169469356537, 0.021667158231139183], [-0.018746299669146538, -0.10377082228660583, 0.005476348102092743], [0.0755155012011528, 0.4557960033416748, 0.07205723971128464], [0.05010394752025604, 0.47068145871162415, 0.06105627119541168], [-0.042360179126262665, -0.22231325507164001, -0.048085976392030716], [-0.04030176252126694, 0.8291275501251221, 0.17380563914775848], [0.16368713974952698, 0.8155393600463867, 0.23700295388698578], [-0.05216379836201668, -0.25926104187965393, -0.08869198709726334], [0.020152950659394264, 0.9441205263137817, 0.1461060792207718], [0.09068672358989716, 0.9238818883895874, 0.21361997723579407], [-0.11330626159906387, -0.45772257447242737, -0.12523090839385986], [-0.016486918553709984, -0.39654937386512756, -0.09438972920179367], [-0.15949022769927979, -0.3519439399242401, -0.09898347407579422], [-0.13071949779987335, -0.5016136169433594, -0.1944875866174698], [0.05294537544250488, -0.45562639832496643, -0.0967266857624054], [-0.2520124912261963, -0.35325369238853455, -0.12457754462957382], [0.23400303721427917, -0.2699548304080963, -0.049000419676303864], [-0.3103002607822418, -0.10538282990455627, -0.09549687057733536], [0.20003831386566162, -0.08775731921195984, -0.21567760407924652], [-0.29666784405708313, 0.09924636781215668, -0.24996663630008698], [0.17316018044948578, -0.02994215488433838, -0.26973602175712585], [-0.2939588725566864, 0.1561094969511032, -0.31089866161346436]]}, {"image_id": "147.jpg", "category_id": 1, "keypoints": [1249.4044189453125, 532.1878051757812, 0.9736026525497437, 1274.2598876953125, 559.1323852539062, 0.9754234552383423, 1267.75244140625, 571.876708984375, 0.9718502163887024, 1229.3538818359375, 493.01141357421875, 0.980104386806488, 1185.0888671875, 679.1688232421875, 0.9642353057861328, 1392.82080078125, 668.3999633789062, 0.9553269743919373, 1191.5703125, 457.07550048828125, 0.9844193458557129, 1209.235595703125, 820.1210327148438, 0.8703891038894653, 1528.1607666015625, 786.5943603515625, 0.9417546391487122, 1174.7774658203125, 449.93206787109375, 0.9866358637809753, 1171.2724609375, 842.19091796875, 0.8549402952194214, 1500.7119140625, 832.71728515625, 0.8867576122283936, 1120.2225341796875, 398.1249084472656, 0.9896302819252014, 1152.16796875, 396.8962097167969, 0.9889833331108093, 1135.674560546875, 438.1783447265625, 0.989027202129364, 1097.4119873046875, 380.1958923339844, 0.9816219210624695, 1135.4761962890625, 375.35162353515625, 0.9395349025726318, 1113.2049560546875, 456.80364990234375, 0.9699289202690125, 1088.0577392578125, 279.67486572265625, 0.9496633410453796, 1094.7703857421875, 550.2112426757812, 0.9629017114639282, 1044.001220703125, 198.27886962890625, 0.9681429862976074, 1006.2578125, 538.4727783203125, 0.8883644342422485, 1023.2388916015625, 168.64309692382812, 0.9757537245750427, 978.0150146484375, 528.4423217773438, 0.9210077524185181, 1049.508544921875, 349.9874572753906, 0.9292607307434082, 1001.4300537109375, 132.23309326171875, 0.9102314710617065, 963.0555419921875, 510.37310791015625, 0.8974083662033081, 1152.5782470703125, 839.40380859375, 0.8739364147186279, 1470.063232421875, 843.5181884765625, 0.8458693623542786], "score": 3.1758625507354736, "box": [984.0357055664062, 170.2813720703125, 582.1189575195312, 703.2332153320312], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05958235263824463, 0.05695044994354248, -0.07666219770908356], [0.04641198366880417, 0.08536816388368607, 0.05229083448648453], [-0.03608947619795799, -0.09706860780715942, 0.0206281878054142], [-0.1676449477672577, 0.3474957346916199, -0.1957416534423828], [0.3556816875934601, 0.3199988901615143, 0.1199575737118721], [-0.13039331138134003, -0.18736308813095093, 0.027446582913398743], [-0.09484974294900894, 0.7298107743263245, -0.07117892056703568], [0.6631956696510315, 0.5884501338005066, 0.12139920145273209], [-0.18096931278705597, -0.2084120512008667, 0.01864425465464592], [-0.20983964204788208, 0.7974152565002441, -0.06508062779903412], [0.6140203475952148, 0.6939064860343933, 0.1866457462310791], [-0.317910373210907, -0.3324846625328064, 0.12088099867105484], [-0.23725201189517975, -0.3382585644721985, 0.034165091812610626], [-0.26149070262908936, -0.22938942909240723, 0.1344272792339325], [-0.3821287751197815, -0.3813436031341553, 0.10015477985143661], [-0.2925442159175873, -0.40705353021621704, 0.011578142642974854], [-0.32899919152259827, -0.1729462742805481, 0.17240607738494873], [-0.4003610908985138, -0.6027331948280334, -0.13315771520137787], [-0.37850818037986755, 0.0807446837425232, 0.18642783164978027], [-0.5205560326576233, -0.8232442736625671, -0.14389967918395996], [-0.5867601633071899, 0.05346570909023285, 0.03464297205209732], [-0.5689976811408997, -0.8908998370170593, -0.1549801230430603], [-0.6653123497962952, 0.025615230202674866, 0.025609098374843597]]}, {"image_id": "147.jpg", "category_id": 1, "keypoints": [1059.19189453125, 493.7308349609375, 0.9781090617179871, 1084.3984375, 520.5740966796875, 0.9866633415222168, 1044.738037109375, 528.3319091796875, 0.9828965663909912, 1052.861572265625, 454.876220703125, 0.993610143661499, 1110.4793701171875, 648.904296875, 0.9852381348609924, 1057.0367431640625, 656.626708984375, 0.9882886409759521, 1044.8114013671875, 414.718994140625, 0.9833832383155823, 1122.70263671875, 770.3798828125, 0.9415611624717712, 1017.241943359375, 764.8231201171875, 0.9222453832626343, 1042.0482177734375, 401.1736145019531, 0.9913491010665894, 1120.477294921875, 794.559814453125, 0.8991690278053284, 1011.8225708007812, 794.2357177734375, 0.9089166522026062, 1019.8351440429688, 332.25390625, 0.9899542927742004, 1053.9246826171875, 354.8553466796875, 0.9900834560394287, 1006.219970703125, 367.94158935546875, 0.9867323637008667, 1013.6439819335938, 313.2446594238281, 0.9428116083145142, 1075.1279296875, 337.5570068359375, 0.9808704853057861, 978.9237670898438, 366.5772705078125, 0.9847747683525085, 1119.30078125, 381.8475036621094, 0.9699753522872925, 962.3372192382812, 447.1164245605469, 0.9481126070022583, 1120.5770263671875, 429.64013671875, 0.9654319882392883, 967.491455078125, 514.7743530273438, 0.9625521302223206, 1118.16064453125, 430.87738037109375, 0.9572148323059082, 968.9232177734375, 533.6687622070312, 0.9165468811988831, 972.7940063476562, 246.1097412109375, 0.8871737718582153, 1100.198486328125, 459.5206298828125, 0.9394782185554504, 981.05224609375, 558.3555297851562, 0.7855470180511475, 1110.555419921875, 797.498046875, 0.8916852474212646, 1022.921875, 799.6990966796875, 0.9478460550308228], "score": 2.9912679195404053, "box": [947.3959350585938, 196.15924072265625, 198.66229248046875, 630.25927734375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07999427616596222, 0.07569003105163574, 0.017192035913467407], [-0.04918748512864113, 0.09604579955339432, 0.016688235104084015], [-0.01921907626092434, -0.10259813070297241, 0.009992703795433044], [0.15149416029453278, 0.4481143355369568, 0.0746254026889801], [-0.004358408972620964, 0.48337483406066895, 0.02133682742714882], [-0.04203580692410469, -0.2235916554927826, -0.03757337108254433], [0.19522401690483093, 0.8332989811897278, 0.18427681922912598], [-0.12702324986457825, 0.8355522751808167, 0.17234833538532257], [-0.051120858639478683, -0.2617540955543518, -0.07672391831874847], [0.180924192070961, 0.9528568387031555, 0.12911388278007507], [-0.14853571355342865, 0.9383129477500916, 0.09192517399787903], [-0.11241598427295685, -0.45911574363708496, -0.11259520053863525], [-0.01593896932899952, -0.39820194244384766, -0.08243350684642792], [-0.15786267817020416, -0.35378944873809814, -0.0860811173915863], [-0.13331983983516693, -0.5051433444023132, -0.17953595519065857], [0.053887080401182175, -0.4559345245361328, -0.08694040775299072], [-0.25015777349472046, -0.35702890157699585, -0.11032257974147797], [0.2390996664762497, -0.2749822735786438, -0.040919285267591476], [-0.30145731568336487, -0.10877978801727295, -0.0784030556678772], [0.23586773872375488, -0.08270272612571716, -0.1983780562877655], [-0.2860587239265442, 0.09931425750255585, -0.22682856023311615], [0.2212991565465927, -0.07449734210968018, -0.27991023659706116], [-0.282090961933136, 0.15418310463428497, -0.28897586464881897]]}, {"image_id": "148.jpg", "category_id": 1, "keypoints": [1250.67822265625, 531.5734252929688, 0.9766430854797363, 1274.64404296875, 560.4714965820312, 0.9823829531669617, 1270.3826904296875, 569.5997314453125, 0.9840917587280273, 1231.9100341796875, 490.62457275390625, 0.9899033904075623, 1178.6409912109375, 683.7738037109375, 0.9552742838859558, 1391.27294921875, 672.245361328125, 0.9742131233215332, 1191.697998046875, 456.7302551269531, 0.9814995527267456, 1213.6678466796875, 819.5865478515625, 0.8591731786727905, 1536.8096923828125, 792.3091430664062, 0.9426992535591125, 1173.9097900390625, 450.27923583984375, 0.9794374704360962, 1168.0220947265625, 844.0084228515625, 0.8201708793640137, 1513.9375, 834.9688720703125, 0.9205871224403381, 1117.8846435546875, 398.1229248046875, 0.988970935344696, 1150.42431640625, 400.26507568359375, 0.9918428063392639, 1135.363037109375, 436.55859375, 0.9891719818115234, 1092.186279296875, 381.18243408203125, 0.9803236126899719, 1134.73095703125, 379.452392578125, 0.9655531644821167, 1115.686279296875, 453.4430847167969, 0.9756399989128113, 1084.6143798828125, 283.2987976074219, 0.9494619369506836, 1093.7265625, 552.9800415039062, 0.954781711101532, 1038.189453125, 203.36590576171875, 0.9361398816108704, 1009.9179077148438, 543.6700439453125, 0.9257985353469849, 1022.5816040039062, 172.56271362304688, 0.9528881311416626, 983.9417724609375, 532.7210693359375, 0.8868229985237122, 1037.5809326171875, 346.36041259765625, 0.9226342439651489, 1011.7575073242188, 132.78750610351562, 0.9154105186462402, 959.9112548828125, 518.3358154296875, 0.9125658869743347, 1149.897216796875, 838.3973388671875, 0.8766191601753235, 1477.066650390625, 849.4818115234375, 0.9051213264465332], "score": 3.181260585784912, "box": [976.3287963867188, 174.32791137695312, 618.9367065429688, 689.9872741699219], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05487356334924698, 0.06321731209754944, -0.07513952255249023], [0.04959362372756004, 0.0809035450220108, 0.05615265294909477], [-0.03489729017019272, -0.09839944541454315, 0.014724228531122208], [-0.18282322585582733, 0.3580731749534607, -0.1579187661409378], [0.3481419086456299, 0.3299049735069275, 0.1208195835351944], [-0.13469378650188446, -0.18267510831356049, 0.01663939654827118], [-0.08060388267040253, 0.7219918370246887, -0.00273822620511055], [0.6628609299659729, 0.5897920727729797, 0.11701054871082306], [-0.18618710339069366, -0.2008862942457199, 0.007312266156077385], [-0.19835586845874786, 0.7848442792892456, -0.003943217918276787], [0.6257766485214233, 0.6902715563774109, 0.19643934071063995], [-0.32633447647094727, -0.33054429292678833, 0.09711788594722748], [-0.24709178507328033, -0.3293740749359131, 0.009090086445212364], [-0.2658836543560028, -0.23189829289913177, 0.12119309604167938], [-0.3927428722381592, -0.37226927280426025, 0.06901820003986359], [-0.2976386547088623, -0.3913566470146179, -0.03431065380573273], [-0.32401132583618164, -0.18122728168964386, 0.1779053956270218], [-0.40558233857154846, -0.5749527812004089, -0.1940387487411499], [-0.37911975383758545, 0.07127006351947784, 0.19263282418251038], [-0.5322147607803345, -0.7919307351112366, -0.2015811651945114], [-0.6088529229164124, 0.04581545293331146, 0.07546506822109222], [-0.569254994392395, -0.8665160536766052, -0.19140319526195526], [-0.6829338669776917, 0.014469355344772339, 0.0989120602607727]]}, {"image_id": "148.jpg", "category_id": 1, "keypoints": [1053.65283203125, 491.0007019042969, 0.9788147211074829, 1079.4029541015625, 516.9016723632812, 0.9872738122940063, 1039.018798828125, 526.84521484375, 0.9825786352157593, 1047.7149658203125, 451.821044921875, 0.993824303150177, 1109.7030029296875, 646.397705078125, 0.9885671138763428, 1053.72119140625, 656.4301147460938, 0.9863142371177673, 1041.3365478515625, 411.85638427734375, 0.9822018146514893, 1118.8538818359375, 771.0108642578125, 0.9411213397979736, 1006.8925170898438, 770.810546875, 0.9159678220748901, 1038.56201171875, 397.8106689453125, 0.9911065101623535, 1130.929443359375, 788.269287109375, 0.9059092998504639, 1007.978515625, 798.652587890625, 0.9315721392631531, 1015.7854614257812, 328.6197204589844, 0.9894658327102661, 1050.40087890625, 351.0760803222656, 0.9896818995475769, 1002.7724609375, 366.1558837890625, 0.9879853129386902, 1008.7413940429688, 308.55126953125, 0.9434911608695984, 1071.062744140625, 332.36749267578125, 0.9801388382911682, 975.751708984375, 366.7592468261719, 0.9857515096664429, 1109.65283203125, 356.841796875, 0.972911536693573, 958.611328125, 447.75225830078125, 0.957783043384552, 1088.1676025390625, 362.12860107421875, 0.9019184708595276, 967.6929931640625, 516.5872192382812, 0.9629918932914734, 1073.4510498046875, 342.8519287109375, 0.8777267336845398, 971.7198486328125, 537.1007080078125, 0.9300675392150879, 974.3563232421875, 236.61044311523438, 0.9110271334648132, 1061.069091796875, 330.2217712402344, 0.9152729511260986, 985.4266357421875, 561.3128051757812, 0.7633838653564453, 1123.3173828125, 793.765869140625, 0.8889201879501343, 1017.626953125, 804.6478271484375, 0.9295744895935059], "score": 3.0654590129852295, "box": [944.5621337890625, 190.9599609375, 190.0374755859375, 635.8471069335938], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07936880737543106, 0.07543693482875824, 0.020751874893903732], [-0.04892616719007492, 0.09719478338956833, 0.008769277483224869], [-0.021374695003032684, -0.10154160857200623, 0.01220618560910225], [0.16431821882724762, 0.4467829465866089, 0.07428386807441711], [0.0014540130505338311, 0.4849337935447693, 0.007954949513077736], [-0.03604065254330635, -0.22287768125534058, -0.036211900413036346], [0.19848839938640594, 0.8323975801467896, 0.1900154948234558], [-0.13544295728206635, 0.8354893922805786, 0.1534174382686615], [-0.04470314085483551, -0.26160791516304016, -0.07456910610198975], [0.264104962348938, 0.926092267036438, 0.12318846583366394], [-0.13237757980823517, 0.9395853281021118, 0.07189464569091797], [-0.10727668553590775, -0.4576265513896942, -0.11259756982326508], [-0.011310667730867863, -0.3981535732746124, -0.07963810861110687], [-0.1518683284521103, -0.352185994386673, -0.08701556921005249], [-0.13062836229801178, -0.5089701414108276, -0.17446081340312958], [0.05446239560842514, -0.4578761160373688, -0.09599554538726807], [-0.24129900336265564, -0.3484093248844147, -0.11897183954715729], [0.26521119475364685, -0.31759074330329895, -0.16996553540229797], [-0.2943657338619232, -0.0980159342288971, -0.10759955644607544], [0.13782671093940735, -0.2763482630252838, -0.37993893027305603], [-0.2669563591480255, 0.11349967122077942, -0.25050225853919983], [0.089250847697258, -0.3365747630596161, -0.41047942638397217], [-0.2556276023387909, 0.17236894369125366, -0.30789700150489807]]}, {"image_id": "149.jpg", "category_id": 1, "keypoints": [1249.4818115234375, 534.0466918945312, 0.9765235781669617, 1273.59423828125, 564.2286987304688, 0.9835204482078552, 1271.326171875, 573.30859375, 0.9854735136032104, 1230.4510498046875, 493.1117858886719, 0.9897375702857971, 1171.672607421875, 681.3515625, 0.9696469306945801, 1398.0496826171875, 676.6032104492188, 0.9704482555389404, 1188.8211669921875, 459.6951599121094, 0.9770597815513611, 1213.82275390625, 820.113037109375, 0.8410682082176208, 1542.513427734375, 786.1014404296875, 0.9300318360328674, 1170.7967529296875, 453.9981994628906, 0.976861298084259, 1171.4140625, 846.0545043945312, 0.8211066722869873, 1533.7442626953125, 833.0537109375, 0.9242910742759705, 1111.96826171875, 402.6385803222656, 0.988582968711853, 1142.8863525390625, 403.218994140625, 0.9911568760871887, 1131.52880859375, 442.025390625, 0.9875942468643188, 1086.0633544921875, 387.7254638671875, 0.9808431267738342, 1128.4864501953125, 382.68316650390625, 0.9730810523033142, 1115.4034423828125, 458.8346252441406, 0.9702448844909668, 1080.67431640625, 288.1829833984375, 0.9579446911811829, 1095.6619873046875, 554.69970703125, 0.9456332325935364, 1037.50927734375, 209.94085693359375, 0.9365457892417908, 1011.7889404296875, 548.5767211914062, 0.94207763671875, 1021.20556640625, 181.16339111328125, 0.9607608318328857, 985.5531005859375, 535.708740234375, 0.8924533724784851, 1029.141845703125, 354.09783935546875, 0.9119467735290527, 1007.2191162109375, 141.724365234375, 0.9277915358543396, 948.345703125, 520.55224609375, 0.898716151714325, 1150.877197265625, 840.0943603515625, 0.8662437200546265, 1503.0830078125, 845.3363647460938, 0.9072557687759399], "score": 3.1804327964782715, "box": [977.7034301757812, 175.76846313476562, 629.1865844726562, 690.0676574707031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05161299556493759, 0.06078200042247772, -0.07990691065788269], [0.052678484469652176, 0.08265349268913269, 0.051419712603092194], [-0.03456828370690346, -0.09832316637039185, 0.0195176862180233], [-0.1996982991695404, 0.3379356265068054, -0.18188396096229553], [0.3573426306247711, 0.3275580406188965, 0.10388553887605667], [-0.13605037331581116, -0.180575430393219, 0.029621660709381104], [-0.0802580714225769, 0.7121707797050476, -0.06681665033102036], [0.6821625232696533, 0.5750356912612915, 0.0818854346871376], [-0.18884803354740143, -0.19695013761520386, 0.022713791579008102], [-0.1935724914073944, 0.778034508228302, -0.0935237929224968], [0.6779757738113403, 0.6800005435943604, 0.164541095495224], [-0.33527228236198425, -0.3201466202735901, 0.11345372349023819], [-0.2563982307910919, -0.3228253722190857, 0.02449367195367813], [-0.2697521448135376, -0.2242107391357422, 0.1375034749507904], [-0.40544232726097107, -0.3590471148490906, 0.0910443589091301], [-0.305558443069458, -0.3881012201309204, -0.016459722071886063], [-0.31942614912986755, -0.17092573642730713, 0.20021814107894897], [-0.4075501561164856, -0.5646701455116272, -0.18837422132492065], [-0.3688194751739502, 0.07882638275623322, 0.24972116947174072], [-0.5300266146659851, -0.783939778804779, -0.20796486735343933], [-0.6165996789932251, 0.06063082814216614, 0.17450177669525146], [-0.5696293711662292, -0.8562086224555969, -0.19089239835739136], [-0.6850186586380005, 0.02689686417579651, 0.2097504436969757]]}, {"image_id": "149.jpg", "category_id": 1, "keypoints": [1053.2274169921875, 493.8065490722656, 0.9802921414375305, 1078.98193359375, 520.21826171875, 0.9898455739021301, 1038.495849609375, 529.7341918945312, 0.9853811264038086, 1046.735107421875, 453.6112060546875, 0.9939305782318115, 1114.8243408203125, 655.9793701171875, 0.988750159740448, 1050.4384765625, 657.7635498046875, 0.9903380870819092, 1038.631591796875, 413.34185791015625, 0.9860612750053406, 1120.077880859375, 778.3843994140625, 0.9403426647186279, 1004.7693481445312, 768.025634765625, 0.9194738864898682, 1036.020263671875, 400.23065185546875, 0.9914581775665283, 1133.6021728515625, 795.115478515625, 0.8934938311576843, 1001.820068359375, 797.5772094726562, 0.9240099787712097, 1013.30908203125, 328.9858093261719, 0.989088773727417, 1048.5469970703125, 353.4345703125, 0.9887704849243164, 999.08837890625, 366.3956298828125, 0.9893759489059448, 1005.8408813476562, 309.260009765625, 0.9477075338363647, 1071.168701171875, 337.2083740234375, 0.9784202575683594, 971.0985717773438, 366.06829833984375, 0.9858397841453552, 1111.8162841796875, 375.6553955078125, 0.9688854813575745, 955.9108276367188, 449.3851318359375, 0.9552184343338013, 1097.2344970703125, 394.6322021484375, 0.8759927153587341, 971.6611938476562, 516.1179809570312, 0.9617869257926941, 1092.1124267578125, 387.341796875, 0.8532767295837402, 977.0833129882812, 536.6573486328125, 0.9238796234130859, 972.349365234375, 240.18600463867188, 0.9167639017105103, 1071.0616455078125, 392.6549377441406, 0.9652496576309204, 990.7421264648438, 560.587158203125, 0.7311383485794067, 1124.816650390625, 800.686279296875, 0.8305593729019165, 1016.744140625, 803.7973022460938, 0.9447579979896545], "score": 3.010894298553467, "box": [945.2802734375, 209.3226318359375, 187.0941162109375, 620.6068725585938], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07931769639253616, 0.0758577436208725, 0.017554840072989464], [-0.04882064089179039, 0.09707275778055191, 0.006755618378520012], [-0.021007636561989784, -0.10092173516750336, 0.015192730352282524], [0.17824804782867432, 0.4442203640937805, 0.05850108712911606], [-0.0069729965180158615, 0.48458534479141235, 0.015535363927483559], [-0.04161243885755539, -0.22235871851444244, -0.03042922355234623], [0.2011546492576599, 0.8229582905769348, 0.19301339983940125], [-0.1425957828760147, 0.8225904107093811, 0.18566659092903137], [-0.05035672336816788, -0.2617008090019226, -0.0679587572813034], [0.25994259119033813, 0.8944299221038818, 0.09870205074548721], [-0.1545601636171341, 0.9237757921218872, 0.10193733125925064], [-0.11002437025308609, -0.4564547538757324, -0.11387698352336884], [-0.014787623658776283, -0.39693683385849, -0.07964537292718887], [-0.15592800080776215, -0.35325461626052856, -0.08302433788776398], [-0.13120505213737488, -0.5048708915710449, -0.1787232756614685], [0.05230271443724632, -0.45245999097824097, -0.1031758114695549], [-0.2433568686246872, -0.36594951152801514, -0.11769739538431168], [0.23309648036956787, -0.27448147535324097, -0.17178867757320404], [-0.2849447429180145, -0.11517398059368134, -0.1409289389848709], [0.1507255882024765, -0.1695779412984848, -0.38106217980384827], [-0.23782823979854584, 0.08803868293762207, -0.28901827335357666], [0.12047848850488663, -0.20490886270999908, -0.4497322738170624], [-0.2230784147977829, 0.1452142745256424, -0.3469656705856323]]}, {"image_id": "150.jpg", "category_id": 1, "keypoints": [1250.5252685546875, 535.4940185546875, 0.9734848737716675, 1272.791748046875, 564.5531616210938, 0.9834098219871521, 1274.0447998046875, 575.3632202148438, 0.9793425798416138, 1234.04052734375, 492.9620056152344, 0.9840859770774841, 1166.2996826171875, 675.5994873046875, 0.9563063979148865, 1399.934326171875, 683.4852294921875, 0.9631245732307434, 1189.561767578125, 464.08056640625, 0.9723795056343079, 1217.50537109375, 810.6340942382812, 0.7857622504234314, 1547.87890625, 785.9258422851562, 0.9146311283111572, 1170.2279052734375, 460.9747009277344, 0.9728243350982666, 1175.769775390625, 841.10986328125, 0.782820463180542, 1538.531005859375, 836.9073486328125, 0.8802257180213928, 1109.250732421875, 411.424560546875, 0.9883929491043091, 1138.928466796875, 412.19512939453125, 0.9895670413970947, 1131.3231201171875, 447.390625, 0.9881030321121216, 1084.97412109375, 401.1480712890625, 0.9832670092582703, 1125.5948486328125, 393.43682861328125, 0.9729743003845215, 1114.2930908203125, 466.6262512207031, 0.9764935374259949, 1077.7388916015625, 300.68511962890625, 0.9640981554985046, 1095.8017578125, 559.9132690429688, 0.9416297078132629, 1039.351806640625, 220.74301147460938, 0.9327379465103149, 1011.386962890625, 549.6183471679688, 0.9119526147842407, 1021.6280517578125, 189.79574584960938, 0.9570949673652649, 992.7708740234375, 532.7008056640625, 0.9175017476081848, 1026.3486328125, 389.0877685546875, 0.8667945861816406, 1013.1559448242188, 143.58734130859375, 0.8537108898162842, 956.7154541015625, 531.5860595703125, 0.8359545469284058, 1154.3511962890625, 835.9783935546875, 0.8616838455200195, 1507.75537109375, 852.671142578125, 0.9151755571365356], "score": 3.1661782264709473, "box": [971.8287963867188, 189.9330291748047, 652.9282836914062, 670.5619659423828], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.043196793645620346, 0.059833988547325134, -0.0859622061252594], [0.05586663633584976, 0.08501431345939636, 0.044622115790843964], [-0.030970506370067596, -0.09861224889755249, 0.02489382028579712], [-0.22663600742816925, 0.33531254529953003, -0.14098495244979858], [0.35662755370140076, 0.3411266505718231, 0.0753609761595726], [-0.13970114290714264, -0.17024317383766174, 0.039865538477897644], [-0.08086858689785004, 0.7073432207107544, -0.04179554432630539], [0.6880888938903809, 0.5741227865219116, 0.004574015736579895], [-0.19481828808784485, -0.17906281352043152, 0.03886370733380318], [-0.18636487424373627, 0.7783541679382324, -0.08479480445384979], [0.6840986609458923, 0.6811332702636719, 0.08542948216199875], [-0.34087851643562317, -0.30634698271751404, 0.12570086121559143], [-0.26661351323127747, -0.30285993218421936, 0.032607100903987885], [-0.2708084285259247, -0.21494907140731812, 0.15505912899971008], [-0.417628675699234, -0.3385487496852875, 0.12079586833715439], [-0.31378841400146484, -0.3634609282016754, -0.017145372927188873], [-0.3205414414405823, -0.15697214007377625, 0.21355050802230835], [-0.4212036430835724, -0.5485566854476929, -0.1788654327392578], [-0.36646315455436707, 0.08991217613220215, 0.2841951549053192], [-0.5316442847251892, -0.7756189107894897, -0.1987021267414093], [-0.6251957416534424, 0.058343857526779175, 0.27046188712120056], [-0.5736756324768066, -0.8489052057266235, -0.19945356249809265], [-0.6651619076728821, 0.021294623613357544, 0.33489230275154114]]}, {"image_id": "150.jpg", "category_id": 1, "keypoints": [1048.6475830078125, 492.50048828125, 0.9776194095611572, 1074.4189453125, 518.6900024414062, 0.9862618446350098, 1035.8914794921875, 525.4511108398438, 0.9851841926574707, 1041.86962890625, 454.1316833496094, 0.9931089282035828, 1100.98876953125, 640.189453125, 0.9900919795036316, 1066.6253662109375, 646.9534301757812, 0.9913464784622192, 1033.7115478515625, 414.5474853515625, 0.9781826734542847, 1112.837646484375, 762.7363891601562, 0.9635977149009705, 1039.959228515625, 757.06591796875, 0.9420920014381409, 1030.6573486328125, 401.53533935546875, 0.9893618226051331, 1116.58740234375, 787.0950927734375, 0.8982343077659607, 1033.87353515625, 787.0263671875, 0.9421156644821167, 1008.9810180664062, 333.20611572265625, 0.9887558221817017, 1043.677490234375, 356.466064453125, 0.9892649054527283, 995.5722045898438, 368.4923400878906, 0.9872729182243347, 1002.2479248046875, 314.4061279296875, 0.9380233287811279, 1066.318359375, 341.9580993652344, 0.9783424139022827, 968.5869140625, 370.10028076171875, 0.9848945140838623, 1113.68701171875, 399.9122619628906, 0.9656402468681335, 955.6644897460938, 451.85418701171875, 0.9523358941078186, 1114.3492431640625, 468.15557861328125, 0.9821133613586426, 972.2523193359375, 516.4911499023438, 0.960946798324585, 1114.4351806640625, 485.4516296386719, 0.9741787910461426, 978.4974365234375, 535.891845703125, 0.916682243347168, 966.9161376953125, 244.05661010742188, 0.8853833079338074, 1098.6900634765625, 523.7544555664062, 0.9111234545707703, 994.1558227539062, 559.8272705078125, 0.7245743274688721, 1109.558349609375, 794.1141357421875, 0.8743572235107422, 1037.0028076171875, 793.58740234375, 0.9556295871734619], "score": 3.047654390335083, "box": [945.5323486328125, 195.92308044433594, 185.2374267578125, 644.3380279541016], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.081200510263443, 0.07489386200904846, 0.012691013514995575], [-0.04720807448029518, 0.0974946841597557, 0.01130104809999466], [-0.020939115434885025, -0.10089969635009766, 0.015531923621892929], [0.15879172086715698, 0.4478110074996948, 0.06124165281653404], [0.04855300113558769, 0.47580236196517944, 0.014009878039360046], [-0.04358341544866562, -0.2223326563835144, -0.02904968336224556], [0.20070987939834595, 0.8320171236991882, 0.17553770542144775], [-0.033284131437540054, 0.839925229549408, 0.16459494829177856], [-0.053597643971443176, -0.26086315512657166, -0.06709285080432892], [0.215181365609169, 0.9431822299957275, 0.10544043779373169], [-0.05793243274092674, 0.9471173882484436, 0.09168481826782227], [-0.11299476027488708, -0.45805996656417847, -0.10197469592094421], [-0.016785504296422005, -0.3960391879081726, -0.0756930485367775], [-0.15851853787899017, -0.35428690910339355, -0.07239463925361633], [-0.13662603497505188, -0.5063599348068237, -0.1660885214805603], [0.05825536325573921, -0.44106125831604004, -0.097630575299263], [-0.24903744459152222, -0.34740322828292847, -0.10006965696811676], [0.22527682781219482, -0.23874276876449585, -0.07818722724914551], [-0.28887155652046204, -0.09512421488761902, -0.10735973715782166], [0.223782479763031, -0.0025360137224197388, -0.15502619743347168], [-0.23787997663021088, 0.10694324970245361, -0.25613826513290405], [0.22146645188331604, 0.06084632873535156, -0.2085326611995697], [-0.22109058499336243, 0.16029421985149384, -0.3171533942222595]]}, {"image_id": "151.jpg", "category_id": 1, "keypoints": [1249.473876953125, 538.8760375976562, 0.976272463798523, 1272.276611328125, 567.0357055664062, 0.9752177000045776, 1272.99267578125, 577.9227905273438, 0.9799538850784302, 1232.097900390625, 497.498046875, 0.9914198517799377, 1163.4580078125, 671.5170288085938, 0.9493149518966675, 1400.702392578125, 684.66845703125, 0.9667382836341858, 1187.9652099609375, 469.15899658203125, 0.9709902405738831, 1218.03125, 810.2900390625, 0.8108961582183838, 1552.207275390625, 789.2257080078125, 0.9313752055168152, 1169.7073974609375, 465.88348388671875, 0.9734519720077515, 1173.36181640625, 840.004150390625, 0.7377902269363403, 1549.6373291015625, 840.8402709960938, 0.8610349297523499, 1110.7947998046875, 413.33929443359375, 0.9880297780036926, 1141.32373046875, 416.865478515625, 0.9885774850845337, 1131.098388671875, 449.78289794921875, 0.9922422170639038, 1087.0853271484375, 401.3392333984375, 0.9820038676261902, 1127.131591796875, 400.14776611328125, 0.9701855182647705, 1112.9404296875, 469.0388488769531, 0.9795300364494324, 1078.998779296875, 316.6068420410156, 0.9493153691291809, 1097.313720703125, 555.50927734375, 0.9381179809570312, 1037.342041015625, 237.64389038085938, 0.8524848222732544, 1017.3629150390625, 549.7615356445312, 0.9370093941688538, 1019.6366577148438, 210.74880981445312, 0.9480872750282288, 994.9576416015625, 528.1764526367188, 0.9239341616630554, 1030.9642333984375, 382.00628662109375, 0.9013054966926575, 1009.2862548828125, 159.92010498046875, 0.8898361921310425, 963.6278076171875, 513.4258422851562, 0.8908236622810364, 1149.665283203125, 832.6649169921875, 0.8748241662979126, 1523.129638671875, 853.8921508789062, 0.932564377784729], "score": 3.171492576599121, "box": [963.0447998046875, 209.67039489746094, 671.586181640625, 651.4830474853516], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.047004904597997665, 0.05994895100593567, -0.08394859731197357], [0.05615624412894249, 0.083306223154068, 0.04759693890810013], [-0.03371376544237137, -0.09846919775009155, 0.022673476487398148], [-0.2316177487373352, 0.31949856877326965, -0.16388392448425293], [0.3600526750087738, 0.3356345295906067, 0.0722586065530777], [-0.1433209627866745, -0.169465571641922, 0.03194476664066315], [-0.08120451122522354, 0.6912252902984619, -0.07247410714626312], [0.6968455910682678, 0.5694268941879272, 0.04421726614236832], [-0.19809524714946747, -0.179109126329422, 0.026570763438940048], [-0.19202864170074463, 0.7609437704086304, -0.1021667942404747], [0.7060473561286926, 0.6774764060974121, 0.12330470234155655], [-0.33869868516921997, -0.3154970705509186, 0.10912234336137772], [-0.2642868459224701, -0.3060621917247772, 0.01632928103208542], [-0.2730380892753601, -0.2216242551803589, 0.1415996253490448], [-0.4113772213459015, -0.35106727480888367, 0.08950462192296982], [-0.3113638162612915, -0.3551988899707794, -0.04519762843847275], [-0.32284510135650635, -0.1670779287815094, 0.2036862075328827], [-0.4158148169517517, -0.5114632844924927, -0.23607048392295837], [-0.36296021938323975, 0.0753982812166214, 0.29038193821907043], [-0.53092360496521, -0.7170010805130005, -0.3285282552242279], [-0.621571958065033, 0.05685435235500336, 0.3182438611984253], [-0.5722070336341858, -0.7837398052215576, -0.2970733046531677], [-0.6751410365104675, 0.0047012269496917725, 0.3575160801410675]]}, {"image_id": "151.jpg", "category_id": 1, "keypoints": [1062.2767333984375, 527.6254272460938, 0.9849523305892944, 1079.4954833984375, 556.5343017578125, 0.9893521070480347, 1053.7880859375, 553.6979370117188, 0.9919404983520508, 1059.49853515625, 488.9747009277344, 0.9958487153053284, 1056.6668701171875, 668.7633056640625, 0.9895430207252502, 1083.0595703125, 671.777099609375, 0.9886206388473511, 1049.2542724609375, 447.1414794921875, 0.995066225528717, 1008.9973754882812, 764.415283203125, 0.9529169201850891, 1123.3887939453125, 768.4164428710938, 0.9373171925544739, 1044.3446044921875, 435.8502197265625, 0.9951743483543396, 1008.2847900390625, 781.14404296875, 0.8354827165603638, 1095.74609375, 792.673095703125, 0.9109604954719543, 1026.6253662109375, 370.8668518066406, 0.9756174087524414, 1060.5118408203125, 399.09442138671875, 0.9928554892539978, 1015.3224487304688, 395.21905517578125, 0.9930166602134705, 1017.9129638671875, 349.61883544921875, 0.9104975461959839, 1086.8760986328125, 397.4588623046875, 0.9912153482437134, 985.4058227539062, 388.26483154296875, 0.9834194183349609, 1117.428466796875, 471.9586181640625, 0.984090268611908, 961.3952026367188, 456.52996826171875, 0.9752442240715027, 1061.9344482421875, 519.0918579101562, 0.966881275177002, 979.8671875, 513.2113037109375, 0.9726194739341736, 1032.2193603515625, 533.9529418945312, 0.9431272745132446, 980.9559936523438, 528.0609741210938, 0.8885769248008728, 978.4060668945312, 237.61935424804688, 0.7596607208251953, 994.1148681640625, 549.9343872070312, 0.8652328252792358, 979.1419677734375, 540.5717163085938, 0.910385012626648, 1013.3856201171875, 784.5234985351562, 0.8994680047035217, 1080.1239013671875, 801.7734375, 0.9502483010292053], "score": 2.9116334915161133, "box": [946.6765747070312, 287.6400146484375, 195.42657470703125, 536.100341796875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07114526629447937, 0.08603676408529282, -0.013799807988107204], [-0.04045674204826355, 0.08490501344203949, 0.05754861980676651], [-0.0024714337196201086, -0.10600151121616364, -0.0001519378274679184], [-0.0018049671780318022, 0.459190309047699, 0.04913010448217392], [0.05470491945743561, 0.4608268141746521, 0.11464298516511917], [-0.03375311195850372, -0.22576026618480682, -0.04584105312824249], [-0.16923198103904724, 0.8097296953201294, 0.1674441397190094], [0.20283284783363342, 0.8062674403190613, 0.2673077881336212], [-0.051268041133880615, -0.2615818381309509, -0.08499186486005783], [-0.17522293329238892, 0.8979323506355286, 0.06758570671081543], [0.10222369432449341, 0.892408013343811, 0.25220581889152527], [-0.09912053495645523, -0.4607342481613159, -0.1378602683544159], [-0.004838542081415653, -0.3886667490005493, -0.13000421226024628], [-0.1443742960691452, -0.36954206228256226, -0.07673211395740509], [-0.12299462407827377, -0.5110371112823486, -0.20038968324661255], [0.0793975219130516, -0.39344507455825806, -0.16545823216438293], [-0.2381962686777115, -0.3914722204208374, -0.07472150772809982], [0.17857982218265533, -0.14839522540569305, -0.18398982286453247], [-0.3234102427959442, -0.14873455464839935, -0.09002404659986496], [0.012257839553058147, -0.010309264063835144, -0.3106860816478729], [-0.2656783163547516, 0.03420795500278473, -0.26271852850914], [-0.05871819332242012, 0.024866029620170593, -0.33867740631103516], [-0.26226064562797546, 0.08811729401350021, -0.32685375213623047]]}, {"image_id": "152.jpg", "category_id": 1, "keypoints": [1249.842529296875, 541.8619995117188, 0.9757174849510193, 1272.8800048828125, 573.0985107421875, 0.9722034335136414, 1273.2457275390625, 581.98388671875, 0.9801638126373291, 1232.9000244140625, 498.71112060546875, 0.9912958145141602, 1158.3671875, 676.4412231445312, 0.9589133262634277, 1402.964111328125, 687.1114501953125, 0.9666701555252075, 1187.958251953125, 469.4434814453125, 0.9741191864013672, 1220.205078125, 813.9561157226562, 0.8842922449111938, 1558.1231689453125, 793.2679443359375, 0.9319360256195068, 1168.1611328125, 466.178955078125, 0.9775204062461853, 1169.6614990234375, 838.947021484375, 0.7028048634529114, 1561.846435546875, 841.2215576171875, 0.776363730430603, 1104.7994384765625, 411.0361328125, 0.9878181219100952, 1138.174560546875, 416.43463134765625, 0.9892189502716064, 1128.5814208984375, 446.434814453125, 0.9930894374847412, 1078.88720703125, 397.6036376953125, 0.9797725677490234, 1123.2667236328125, 400.26824951171875, 0.9664650559425354, 1111.1407470703125, 465.12432861328125, 0.983923077583313, 1078.5943603515625, 317.15771484375, 0.9375573396682739, 1105.591064453125, 557.5191650390625, 0.9531749486923218, 1035.321044921875, 250.88861083984375, 0.7797722816467285, 1025.95703125, 551.111572265625, 0.9190685749053955, 1019.3714599609375, 230.3741455078125, 0.9233567118644714, 1000.1259155273438, 531.2818603515625, 0.9100887179374695, 1026.6153564453125, 358.99761962890625, 0.9124618768692017, 1001.6410522460938, 191.73300170898438, 0.9459316730499268, 967.66748046875, 511.29620361328125, 0.9073430299758911, 1139.85986328125, 826.7857666015625, 0.858252227306366, 1535.6358642578125, 854.783203125, 0.8842765092849731], "score": 3.167418956756592, "box": [957.1138916015625, 214.7723388671875, 686.590576171875, 659.4247436523438], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.046181824058294296, 0.0644756555557251, -0.08076180517673492], [0.054149746894836426, 0.08206948637962341, 0.051481880247592926], [-0.03184334933757782, -0.09960299730300903, 0.017995860427618027], [-0.24201080203056335, 0.3186575770378113, -0.14345456659793854], [0.3586842119693756, 0.33510497212409973, 0.053534217178821564], [-0.14377903938293457, -0.16685599088668823, 0.017478302121162415], [-0.07457875460386276, 0.6824468374252319, -0.04942698031663895], [0.6959971189498901, 0.5667023062705994, 0.01508796215057373], [-0.197919100522995, -0.17546910047531128, 0.007731746882200241], [-0.19449040293693542, 0.7394411563873291, -0.06853826344013214], [0.7181617617607117, 0.6706851720809937, 0.09675383567810059], [-0.34779098629951477, -0.3181631565093994, 0.05445263534784317], [-0.2640314996242523, -0.29744863510131836, -0.027532730251550674], [-0.2848118841648102, -0.2320849895477295, 0.10667502135038376], [-0.4141586720943451, -0.3502127528190613, 0.015765298157930374], [-0.30891990661621094, -0.3397476077079773, -0.09504402428865433], [-0.33160486817359924, -0.1802246868610382, 0.17275819182395935], [-0.40803641080856323, -0.49880921840667725, -0.28660503029823303], [-0.3435739576816559, 0.0704433023929596, 0.24333438277244568], [-0.5349590182304382, -0.6780248880386353, -0.4122283160686493], [-0.5656805038452148, 0.05233748257160187, 0.10783006995916367], [-0.5655593872070312, -0.7246767282485962, -0.3488856852054596], [-0.626957356929779, 0.004904836416244507, 0.14111259579658508]]}, {"image_id": "152.jpg", "category_id": 1, "keypoints": [1061.1961669921875, 522.9314575195312, 0.9863278269767761, 1079.754638671875, 550.8289184570312, 0.9906426072120667, 1050.751220703125, 549.9287719726562, 0.9930497407913208, 1058.2425537109375, 485.226318359375, 0.9963352680206299, 1056.664794921875, 665.17431640625, 0.9911308288574219, 1085.404541015625, 667.1373291015625, 0.9897812604904175, 1050.8985595703125, 446.7504577636719, 0.9949793815612793, 1007.0791015625, 763.5079345703125, 0.9508563876152039, 1123.7464599609375, 767.7908325195312, 0.9340455532073975, 1047.6182861328125, 438.2188720703125, 0.9953023791313171, 1008.0990600585938, 780.5650024414062, 0.8068495988845825, 1096.4332275390625, 790.9667358398438, 0.8832860589027405, 1031.10791015625, 378.16986083984375, 0.9852249622344971, 1064.8853759765625, 404.56756591796875, 0.9945188164710999, 1018.8043212890625, 401.00750732421875, 0.9935566782951355, 1024.908447265625, 362.25006103515625, 0.9485598802566528, 1091.8406982421875, 402.91357421875, 0.990085244178772, 988.1729125976562, 392.8355712890625, 0.9880288243293762, 1125.62255859375, 465.0979919433594, 0.9789477586746216, 961.9649047851562, 455.28143310546875, 0.9751912951469421, 1084.8948974609375, 515.672119140625, 0.9845733642578125, 986.0708618164062, 506.85919189453125, 0.9634026288986206, 1052.47412109375, 528.8211059570312, 0.9664989113807678, 990.5809936523438, 520.8152465820312, 0.9425253868103027, 981.7635498046875, 254.982666015625, 0.7495486736297607, 1001.1760864257812, 546.3480224609375, 0.8684001564979553, 995.6849975585938, 526.7453002929688, 0.8485288023948669, 1009.773193359375, 784.8917846679688, 0.8827970027923584, 1079.443359375, 801.8694458007812, 0.9498264789581299], "score": 2.9903974533081055, "box": [947.7940063476562, 298.13946533203125, 197.03192138671875, 522.2780151367188], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07512278109788895, 0.08349284529685974, 0.0008511357009410858], [-0.04840056970715523, 0.08646153658628464, 0.04795238375663757], [-0.005868740379810333, -0.10574257373809814, -0.0005162358283996582], [0.001641800394281745, 0.4582968056201935, 0.046925365924835205], [0.06320697069168091, 0.45835375785827637, 0.09602870047092438], [-0.031605225056409836, -0.2227916121482849, -0.055934034287929535], [-0.1727086454629898, 0.8143916130065918, 0.13013163208961487], [0.2034374326467514, 0.8165038824081421, 0.22194378077983856], [-0.04474596679210663, -0.2569446861743927, -0.09813620895147324], [-0.16941408812999725, 0.8932162523269653, 0.022808924317359924], [0.10237251222133636, 0.898040771484375, 0.19260627031326294], [-0.08805675059556961, -0.449991375207901, -0.17255252599716187], [0.005297062918543816, -0.3804495632648468, -0.1484268307685852], [-0.13896046578884125, -0.36349037289619446, -0.10916990786790848], [-0.11902831494808197, -0.4828033745288849, -0.2431754618883133], [0.0907171294093132, -0.38404330611228943, -0.1810053586959839], [-0.22709889709949493, -0.39660361409187317, -0.12966987490653992], [0.2176760882139206, -0.15250089764595032, -0.16649901866912842], [-0.32639068365097046, -0.15965566039085388, -0.141286239027977], [0.08277540653944016, 0.008027002215385437, -0.3027815520763397], [-0.25809377431869507, -0.006699308753013611, -0.3369894325733185], [0.016323788091540337, 0.03452575206756592, -0.34662899374961853], [-0.2441776990890503, 0.03941905498504639, -0.4054787755012512]]}, {"image_id": "153.jpg", "category_id": 1, "keypoints": [1245.2261962890625, 543.060791015625, 0.9772641062736511, 1268.64697265625, 573.6229858398438, 0.9795172214508057, 1270.521240234375, 583.8564453125, 0.9805829524993896, 1229.59130859375, 500.30731201171875, 0.9902293682098389, 1153.3189697265625, 676.766357421875, 0.9542566537857056, 1399.1544189453125, 690.4560546875, 0.9700051546096802, 1185.791015625, 471.34759521484375, 0.9775177240371704, 1221.2459716796875, 812.9956665039062, 0.8879255056381226, 1555.63330078125, 794.0787353515625, 0.9103535413742065, 1166.064697265625, 468.42791748046875, 0.9793812036514282, 1171.343017578125, 838.6024169921875, 0.7413318157196045, 1568.266357421875, 847.0106811523438, 0.7112824320793152, 1101.5859375, 409.9288330078125, 0.9875187277793884, 1133.8089599609375, 418.54376220703125, 0.9863199591636658, 1127.7647705078125, 443.4462890625, 0.9945052862167358, 1075.4696044921875, 398.9656066894531, 0.9792957305908203, 1120.4005126953125, 404.1196594238281, 0.9728567004203796, 1112.5263671875, 458.16473388671875, 0.9885538220405579, 1085.3702392578125, 329.3116455078125, 0.9339779615402222, 1117.241943359375, 552.14404296875, 0.9697151184082031, 1040.6552734375, 272.00372314453125, 0.7975784540176392, 1039.748779296875, 551.0424194335938, 0.9394201636314392, 1025.0289306640625, 260.64971923828125, 0.8848016262054443, 1012.682373046875, 534.6262817382812, 0.9307956099510193, 1019.80322265625, 354.19183349609375, 0.8640851378440857, 1001.2633666992188, 231.197265625, 0.9219212532043457, 1003.0858154296875, 517.285888671875, 0.924983561038971, 1138.28662109375, 824.1656494140625, 0.8053684234619141, 1548.00390625, 868.26953125, 0.8377605676651001], "score": 3.1637163162231445, "box": [958.3265380859375, 225.88119506835938, 684.3209228515625, 649.0115051269531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04263613000512123, 0.06062561273574829, -0.08620190620422363], [0.05675210431218147, 0.08464470505714417, 0.04518146440386772], [-0.031175924465060234, -0.09872367978096008, 0.02422275021672249], [-0.24894113838672638, 0.3159196972846985, -0.14530552923679352], [0.3611927330493927, 0.3418658375740051, 0.040748413652181625], [-0.14065399765968323, -0.16855329275131226, 0.032929543405771255], [-0.06510366499423981, 0.6784501671791077, -0.06327715516090393], [0.699472963809967, 0.5680166482925415, -0.03699050471186638], [-0.19537235796451569, -0.1764492690563202, 0.026288744062185287], [-0.1848599761724472, 0.7377966046333313, -0.08055092394351959], [0.7366876006126404, 0.6749392747879028, 0.03605781868100166], [-0.3425167202949524, -0.32454586029052734, 0.06612728536128998], [-0.26374828815460205, -0.2946094274520874, -0.017996344715356827], [-0.27634376287460327, -0.244315505027771, 0.12365996837615967], [-0.41106364130973816, -0.35111719369888306, 0.027275733649730682], [-0.30445396900177, -0.33165985345840454, -0.09100453555583954], [-0.3167998790740967, -0.20372599363327026, 0.2008959949016571], [-0.38643860816955566, -0.47627896070480347, -0.30376023054122925], [-0.30056697130203247, 0.04652974009513855, 0.2793174684047699], [-0.49946290254592896, -0.5997955799102783, -0.4957595467567444], [-0.5263233184814453, 0.04292207956314087, 0.14483535289764404], [-0.5674272179603577, -0.6499425768852234, -0.48794251680374146], [-0.5970389246940613, -0.00017338991165161133, 0.16321910917758942]]}, {"image_id": "153.jpg", "category_id": 1, "keypoints": [1060.1414794921875, 515.9000854492188, 0.9873816967010498, 1081.224609375, 543.261474609375, 0.9908654093742371, 1047.817626953125, 545.3234252929688, 0.9928827881813049, 1055.6181640625, 476.4366760253906, 0.9961526989936829, 1054.0506591796875, 666.9046630859375, 0.9912132620811462, 1080.251708984375, 667.60009765625, 0.9918287992477417, 1046.056640625, 437.0636291503906, 0.9951618313789368, 1003.8134155273438, 762.8522338867188, 0.9432779550552368, 1122.9093017578125, 765.56298828125, 0.9242488145828247, 1042.0101318359375, 428.3485107421875, 0.994901180267334, 1002.415283203125, 781.42919921875, 0.772702157497406, 1109.2359619140625, 787.02001953125, 0.8887913823127747, 1015.0587768554688, 359.1251220703125, 0.9837186336517334, 1053.447021484375, 387.4990234375, 0.9939795732498169, 1008.233154296875, 390.0054931640625, 0.9934483766555786, 1008.458984375, 341.9010009765625, 0.9454283714294434, 1078.6641845703125, 376.871337890625, 0.9913856387138367, 978.6467895507812, 384.538818359375, 0.9865823984146118, 1126.4715576171875, 442.759521484375, 0.9831098318099976, 961.8847045898438, 457.0973205566406, 0.9768440127372742, 1093.9049072265625, 499.8795166015625, 0.983435869216919, 997.1419067382812, 507.73052978515625, 0.9747142195701599, 1057.3572998046875, 520.703369140625, 0.9501125812530518, 1005.0364990234375, 522.6699829101562, 0.8905218243598938, 974.4226684570312, 252.18167114257812, 0.8158358335494995, 1004.1513061523438, 544.1915893554688, 0.8943004608154297, 1012.997314453125, 528.2307739257812, 0.7346465587615967, 996.8660888671875, 787.094970703125, 0.8865880966186523, 1099.134765625, 795.2736206054688, 0.9530476927757263], "score": 2.9274508953094482, "box": [948.2554321289062, 300.8075256347656, 196.15899658203125, 517.4283142089844], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07841300964355469, 0.07954844832420349, 0.011482495814561844], [-0.05054258555173874, 0.08970873057842255, 0.03888263553380966], [-0.01134898979216814, -0.1056709885597229, -4.146993160247803e-05], [-0.0003576315939426422, 0.450160950422287, 0.06704075634479523], [0.050091780722141266, 0.46376341581344604, 0.08027352392673492], [-0.04178721085190773, -0.22024771571159363, -0.05950171872973442], [-0.17858171463012695, 0.8011413812637329, 0.15435080230236053], [0.20338749885559082, 0.8073371648788452, 0.224298894405365], [-0.05607740581035614, -0.25513756275177, -0.10105198621749878], [-0.1867683231830597, 0.874701738357544, 0.043824221938848495], [0.13120286166667938, 0.9148592948913574, 0.19408981502056122], [-0.12126395106315613, -0.4447669982910156, -0.16892386972904205], [-0.020297370851039886, -0.3859832286834717, -0.14541257917881012], [-0.1627308577299118, -0.34989333152770996, -0.1101897805929184], [-0.14097416400909424, -0.4872676730155945, -0.23850925266742706], [0.06074259430170059, -0.416404664516449, -0.17603959143161774], [-0.25716903805732727, -0.3665311932563782, -0.12309050559997559], [0.21604830026626587, -0.20747846364974976, -0.13648268580436707], [-0.3147623836994171, -0.11706799268722534, -0.12843869626522064], [0.10710188746452332, -0.02659757435321808, -0.2688700556755066], [-0.22028149664402008, 0.02510654926300049, -0.3199892044067383], [0.04500749334692955, 0.008146136999130249, -0.31328725814819336], [-0.19703742861747742, 0.07174965739250183, -0.3854496479034424]]}, {"image_id": "154.jpg", "category_id": 1, "keypoints": [1239.2510986328125, 543.2865600585938, 0.9784407019615173, 1261.27392578125, 571.7837524414062, 0.9826799035072327, 1265.6170654296875, 584.3417358398438, 0.9824994206428528, 1224.6971435546875, 502.2598876953125, 0.9895116090774536, 1152.231689453125, 678.3101806640625, 0.9563425779342651, 1393.856689453125, 690.4327392578125, 0.9736539125442505, 1181.943359375, 473.7245178222656, 0.9750275015830994, 1223.9161376953125, 810.94921875, 0.886035680770874, 1541.9228515625, 790.11474609375, 0.880608081817627, 1163.2557373046875, 470.2858581542969, 0.978615403175354, 1173.365234375, 838.048583984375, 0.777050793170929, 1554.84423828125, 842.66455078125, 0.7086572647094727, 1102.591064453125, 414.038330078125, 0.9859209060668945, 1132.4710693359375, 420.76300048828125, 0.987978994846344, 1129.3974609375, 446.4859924316406, 0.9931411147117615, 1075.26220703125, 401.3216247558594, 0.9812250733375549, 1117.34765625, 406.68084716796875, 0.9724723696708679, 1115.3154296875, 463.0141906738281, 0.9872556924819946, 1087.8289794921875, 344.52130126953125, 0.9420958161354065, 1124.88525390625, 556.1294555664062, 0.9668452143669128, 1048.92919921875, 290.1207275390625, 0.811500608921051, 1046.641845703125, 552.5184936523438, 0.9350650906562805, 1036.0406494140625, 278.5986022949219, 0.8404833674430847, 1023.4849853515625, 538.1649169921875, 0.928467333316803, 1026.4410400390625, 365.45867919921875, 0.916131317615509, 1007.428955078125, 252.64413452148438, 0.8471057415008545, 1011.3074951171875, 520.1399536132812, 0.9339587092399597, 1138.27978515625, 822.0757446289062, 0.7948694229125977, 1532.002685546875, 863.715087890625, 0.8353586792945862], "score": 3.160464286804199, "box": [963.2730102539062, 230.4145050048828, 669.5993041992188, 648.9955291748047], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.039127591997385025, 0.057838574051856995, -0.0889793410897255], [0.0585213229060173, 0.08516576886177063, 0.04018431156873703], [-0.03035951778292656, -0.09727495908737183, 0.02804631181061268], [-0.24060361087322235, 0.32583433389663696, -0.1419324278831482], [0.3604840338230133, 0.34139391779899597, 0.007345134392380714], [-0.13681288063526154, -0.16959691047668457, 0.04743075370788574], [-0.044555503875017166, 0.6849686503410339, -0.08752740174531937], [0.6864023804664612, 0.5658251047134399, -0.1084037646651268], [-0.19130513072013855, -0.1796693503856659, 0.04882052540779114], [-0.16271649301052094, 0.7459136843681335, -0.10654572397470474], [0.7241252660751343, 0.6752591729164124, -0.040462739765644073], [-0.33010512590408325, -0.32745617628097534, 0.10944671928882599], [-0.2609168291091919, -0.3001292943954468, 0.017066584900021553], [-0.26022833585739136, -0.24407249689102173, 0.1561385840177536], [-0.4010292887687683, -0.35865819454193115, 0.07883603870868683], [-0.3036336898803711, -0.33364856243133545, -0.05603732168674469], [-0.2957514524459839, -0.1998911201953888, 0.23337553441524506], [-0.37695157527923584, -0.4556189179420471, -0.28416112065315247], [-0.2674924433231354, 0.05768826603889465, 0.2691670060157776], [-0.4690845310688019, -0.5602059960365295, -0.49609702825546265], [-0.4694965183734894, 0.047933101654052734, 0.1030176430940628], [-0.523070216178894, -0.6035987138748169, -0.5444334149360657], [-0.541146993637085, 0.003590911626815796, 0.09747950732707977]]}, {"image_id": "154.jpg", "category_id": 1, "keypoints": [1064.7342529296875, 520.677490234375, 0.98634272813797, 1082.86083984375, 547.9866943359375, 0.9916362762451172, 1055.7530517578125, 546.1845092773438, 0.9940208792686462, 1061.3857421875, 484.95135498046875, 0.9965724945068359, 1047.0687255859375, 660.4799194335938, 0.9895584583282471, 1085.65185546875, 662.072021484375, 0.9885571002960205, 1051.7684326171875, 447.6965026855469, 0.99348384141922, 1003.7258911132812, 759.3485717773438, 0.9347102642059326, 1123.827392578125, 762.8449096679688, 0.9269688725471497, 1046.9549560546875, 439.38714599609375, 0.9954125285148621, 1000.3751831054688, 775.593994140625, 0.7781801223754883, 1108.6165771484375, 783.822998046875, 0.9023371934890747, 1023.2276000976562, 379.0852966308594, 0.9832431674003601, 1059.208740234375, 406.03887939453125, 0.9937267303466797, 1014.7854614257812, 401.9537658691406, 0.993631899356842, 1016.704833984375, 360.2901611328125, 0.9462940692901611, 1085.1162109375, 407.7654113769531, 0.9892334342002869, 986.0748291015625, 397.1963195800781, 0.9871354699134827, 1116.3409423828125, 475.480712890625, 0.9771376252174377, 964.2998046875, 460.2208251953125, 0.9784947633743286, 1050.422607421875, 529.3357543945312, 0.9392688274383545, 1001.1369018554688, 503.7964172363281, 0.9622863531112671, 1026.843505859375, 532.1787109375, 0.9270039796829224, 1009.1441650390625, 513.2615966796875, 0.8708052635192871, 970.787109375, 276.21368408203125, 0.8209299445152283, 998.6906127929688, 533.7821655273438, 0.9270513653755188, 1020.0421752929688, 519.9840087890625, 0.7167855501174927, 998.1697998046875, 779.315673828125, 0.8843040466308594, 1100.2943115234375, 788.5689697265625, 0.9506255984306335], "score": 2.9982659816741943, "box": [950.086181640625, 316.8863830566406, 195.3092041015625, 493.2770080566406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07345952838659286, 0.08452953398227692, -0.008354062214493752], [-0.038391269743442535, 0.0821949690580368, 0.06237213686108589], [-0.005281352438032627, -0.1063321977853775, -0.006341870874166489], [-0.039755284786224365, 0.4466312527656555, 0.02996990457177162], [0.0595431923866272, 0.4517750144004822, 0.12845838069915771], [-0.04078376665711403, -0.21780671179294586, -0.06977657973766327], [-0.19305388629436493, 0.807675838470459, 0.11569233238697052], [0.2002803534269333, 0.8148852586746216, 0.2249562293291092], [-0.05935700610280037, -0.24990086257457733, -0.11220090091228485], [-0.21147814393043518, 0.8769659399986267, 0.0038010068237781525], [0.12169518321752548, 0.9217334985733032, 0.21672797203063965], [-0.12413329631090164, -0.43504971265792847, -0.19310350716114044], [-0.023959551006555557, -0.371290922164917, -0.17922824621200562], [-0.16055777668952942, -0.35139358043670654, -0.11599628627300262], [-0.1562017947435379, -0.484355628490448, -0.25303176045417786], [0.053277287632226944, -0.36324238777160645, -0.22893816232681274], [-0.2564588785171509, -0.3672149181365967, -0.1171417385339737], [0.16359373927116394, -0.1253897100687027, -0.22067072987556458], [-0.33767977356910706, -0.13071154057979584, -0.16793259978294373], [-0.005510888993740082, 0.009561508893966675, -0.34289246797561646], [-0.2319207638502121, 0.0011542290449142456, -0.35976430773735046], [-0.06746078282594681, 0.01702556014060974, -0.39896252751350403], [-0.2077682763338089, 0.03230352699756622, -0.43355318903923035]]}, {"image_id": "155.jpg", "category_id": 1, "keypoints": [1234.837646484375, 541.7882690429688, 0.9786852598190308, 1253.0584716796875, 570.4947509765625, 0.9853649139404297, 1263.7091064453125, 582.5936279296875, 0.9800686836242676, 1220.7200927734375, 500.3499755859375, 0.9881148338317871, 1150.69921875, 676.2745971679688, 0.9530981779098511, 1389.0992431640625, 688.8258056640625, 0.9687255620956421, 1179.0548095703125, 471.92706298828125, 0.9774739146232605, 1230.536376953125, 810.9403686523438, 0.916796863079071, 1530.3792724609375, 794.2379150390625, 0.853943943977356, 1160.0347900390625, 468.71807861328125, 0.9820629358291626, 1181.35595703125, 837.4566650390625, 0.8116146922111511, 1551.604248046875, 845.8027954101562, 0.7364987134933472, 1099.3424072265625, 413.61553955078125, 0.985856831073761, 1126.7171630859375, 419.862060546875, 0.9894757270812988, 1127.905029296875, 442.4050598144531, 0.9932569861412048, 1072.4921875, 400.7120361328125, 0.9818512201309204, 1111.7528076171875, 405.74298095703125, 0.975663423538208, 1115.773681640625, 457.99029541015625, 0.9890183806419373, 1083.6312255859375, 342.10015869140625, 0.9369807243347168, 1128.464111328125, 554.2057495117188, 0.9679980874061584, 1039.190185546875, 291.1961975097656, 0.8144404888153076, 1062.93701171875, 555.4529418945312, 0.9265158176422119, 1022.2183837890625, 281.8046875, 0.9167874455451965, 1040.5426025390625, 541.6104736328125, 0.7912681698799133, 1016.848388671875, 371.08551025390625, 0.8797861933708191, 1001.7694091796875, 258.2940979003906, 0.9353765249252319, 1032.224609375, 528.8585205078125, 0.8439962863922119, 1149.074951171875, 829.4009399414062, 0.8625257015228271, 1541.4810791015625, 870.19189453125, 0.8392828702926636], "score": 3.1609015464782715, "box": [962.4327392578125, 240.90293884277344, 655.051025390625, 634.6830596923828], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03192783519625664, 0.061519965529441833, -0.09035328775644302], [0.06373550742864609, 0.08315158635377884, 0.03868313133716583], [-0.029399339109659195, -0.0988432765007019, 0.026676220819354057], [-0.24101676046848297, 0.33785438537597656, -0.14534713327884674], [0.36338934302330017, 0.3450396955013275, 0.011910757049918175], [-0.13605234026908875, -0.16957035660743713, 0.049611568450927734], [-0.03087124228477478, 0.6879580020904541, -0.07011142373085022], [0.6813458204269409, 0.5881161689758301, -0.09715963900089264], [-0.19090555608272552, -0.17893093824386597, 0.052841827273368835], [-0.14953406155109406, 0.7496411800384521, -0.08772659301757812], [0.7267519235610962, 0.6961151957511902, -0.03031841106712818], [-0.32876771688461304, -0.32876768708229065, 0.11452045291662216], [-0.2651173174381256, -0.2972842752933502, 0.018828416243195534], [-0.2545129358768463, -0.2486039102077484, 0.16154266893863678], [-0.4023841619491577, -0.3631134331226349, 0.0974464938044548], [-0.3071213960647583, -0.33047381043434143, -0.055440157651901245], [-0.2843773365020752, -0.20722094178199768, 0.2432086318731308], [-0.3786572515964508, -0.45845088362693787, -0.2825483977794647], [-0.2489270120859146, 0.0524824857711792, 0.26618775725364685], [-0.48853352665901184, -0.5625119209289551, -0.4878693222999573], [-0.43599653244018555, 0.05503629148006439, 0.08115721493959427], [-0.5508217215538025, -0.6009255647659302, -0.44474270939826965], [-0.49253547191619873, 0.020893841981887817, 0.027707526460289955]]}, {"image_id": "155.jpg", "category_id": 1, "keypoints": [1066.717041015625, 518.6072998046875, 0.9853821396827698, 1087.0299072265625, 544.2908935546875, 0.9945558309555054, 1056.848388671875, 542.3816528320312, 0.9942759275436401, 1064.0257568359375, 486.13214111328125, 0.9965521693229675, 1045.1756591796875, 655.519775390625, 0.9866676926612854, 1087.56787109375, 660.6321411132812, 0.9864187836647034, 1056.7081298828125, 458.70635986328125, 0.9926763772964478, 1005.986572265625, 759.0167236328125, 0.9392817616462708, 1126.5164794921875, 766.7481689453125, 0.9254106283187866, 1053.6004638671875, 453.7073974609375, 0.9915106892585754, 998.0170288085938, 777.0858154296875, 0.7952877283096313, 1107.9532470703125, 788.9554443359375, 0.892243504524231, 1039.0321044921875, 410.797607421875, 0.9738815426826477, 1069.3643798828125, 429.1363525390625, 0.9888076782226562, 1024.294189453125, 422.2239990234375, 0.990672767162323, 1034.016357421875, 396.6104736328125, 0.9208935499191284, 1097.6495361328125, 440.9198913574219, 0.9774339199066162, 994.8114624023438, 422.5426330566406, 0.9890521168708801, 1117.53564453125, 493.02752685546875, 0.969039797782898, 966.9588623046875, 464.04412841796875, 0.9775267243385315, 1054.7607421875, 530.2034301757812, 0.9364820122718811, 1010.0436401367188, 503.7659606933594, 0.95525723695755, 1034.82568359375, 531.7486572265625, 0.9244190454483032, 1018.8424682617188, 512.4606323242188, 0.8431614637374878, 977.046142578125, 267.32366943359375, 0.8381181359291077, 1008.6419677734375, 527.4403076171875, 0.9245665073394775, 1026.5037841796875, 517.1317138671875, 0.7202835083007812, 990.798828125, 780.3216552734375, 0.8914616107940674, 1098.85009765625, 791.289306640625, 0.9415774345397949], "score": 2.854368209838867, "box": [950.8135986328125, 313.3380432128906, 194.5032958984375, 497.8750305175781], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07393411546945572, 0.08303585648536682, -0.005615974776446819], [-0.036954574286937714, 0.08038473129272461, 0.06378970295190811], [-0.006861998699605465, -0.10463353991508484, -0.009295634925365448], [-0.05926629155874252, 0.43921613693237305, 0.009992629289627075], [0.06137795001268387, 0.45138978958129883, 0.11310140788555145], [-0.03622564300894737, -0.198460191488266, -0.09819062054157257], [-0.19075718522071838, 0.8012754917144775, 0.11564908921718597], [0.1979798674583435, 0.8150825500488281, 0.20395781099796295], [-0.04995817691087723, -0.21556097269058228, -0.14939729869365692], [-0.22573697566986084, 0.8659912347793579, 0.005912767723202705], [0.11259129643440247, 0.9145276546478271, 0.18851615488529205], [-0.10584955662488937, -0.36636289954185486, -0.28457170724868774], [-0.01021805964410305, -0.3049435317516327, -0.25149962306022644], [-0.14386677742004395, -0.31555208563804626, -0.18482650816440582], [-0.12381213903427124, -0.40681830048561096, -0.35591375827789307], [0.055061616003513336, -0.2741577625274658, -0.3073010742664337], [-0.23996365070343018, -0.3143540918827057, -0.1881340593099594], [0.14914274215698242, -0.040704160928726196, -0.23819923400878906], [-0.3790566921234131, -0.10601404309272766, -0.2283637523651123], [-0.02897620014846325, 0.06217268109321594, -0.37504443526268005], [-0.26200979948043823, 0.008493959903717041, -0.4230509102344513], [-0.08844141662120819, 0.06684078276157379, -0.4330444633960724], [-0.23769818246364594, 0.03515046834945679, -0.49774137139320374]]}, {"image_id": "155.jpg", "category_id": 1, "keypoints": [1054.09423828125, 489.60870361328125, 0.9807084798812866, 1080.885986328125, 512.189697265625, 0.9879854321479797, 1046.7659912109375, 521.2962646484375, 0.988372266292572, 1043.2379150390625, 452.80419921875, 0.9938320517539978, 1110.578857421875, 634.8208618164062, 0.9914358258247375, 1058.2603759765625, 644.780517578125, 0.989547610282898, 1030.232421875, 414.22454833984375, 0.9885136485099792, 1118.1927490234375, 760.25830078125, 0.9666460752487183, 1024.2359619140625, 749.064697265625, 0.9016973376274109, 1026.189697265625, 403.10498046875, 0.9896149635314941, 1131.454833984375, 782.7504272460938, 0.8677442073822021, 1017.359619140625, 780.9666137695312, 0.887747049331665, 1000.4332885742188, 336.948974609375, 0.9850842356681824, 1034.8311767578125, 356.6582946777344, 0.9926552772521973, 988.2472534179688, 371.67315673828125, 0.9909486770629883, 995.85498046875, 323.0482177734375, 0.9395452737808228, 1057.397705078125, 342.2481689453125, 0.9705260396003723, 960.4078369140625, 375.8816833496094, 0.9847251772880554, 1118.8720703125, 409.82501220703125, 0.9667259454727173, 965.6328735351562, 462.9702453613281, 0.9686148762702942, 1123.052490234375, 475.3011169433594, 0.9296950697898865, 1012.4688110351562, 510.30255126953125, 0.9599316716194153, 1122.8262939453125, 491.78662109375, 0.9517002105712891, 1027.638427734375, 524.5603637695312, 0.9081774950027466, 958.935302734375, 250.04962158203125, 0.9153164625167847, 1117.0850830078125, 509.69073486328125, 0.9524573683738708, 1053.6358642578125, 537.8060302734375, 0.9090425968170166, 1129.320556640625, 789.331298828125, 0.8865858912467957, 1019.9524536132812, 789.181396484375, 0.8446881771087646], "score": 2.319324016571045, "box": [923.3267822265625, 202.7095489501953, 267.3355712890625, 636.4841156005859], "idx": 3, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0905580222606659, 0.06347748637199402, 0.01884690299630165], [-0.0361185222864151, 0.10071002691984177, 0.025493305176496506], [-0.03250427544116974, -0.10100460052490234, 0.004146672785282135], [0.17149046063423157, 0.43315187096595764, 0.07266031950712204], [0.00014480866957455873, 0.48779940605163574, 0.03362569957971573], [-0.06955905258655548, -0.2134481966495514, -0.05493764579296112], [0.19942855834960938, 0.8264565467834473, 0.15335464477539062], [-0.1134786307811737, 0.8524762392044067, 0.1593659222126007], [-0.08313065022230148, -0.24755677580833435, -0.0972357764840126], [0.2532636821269989, 0.9189730286598206, 0.07481101900339127], [-0.1379597783088684, 0.9523727297782898, 0.07551667839288712], [-0.15620023012161255, -0.43714237213134766, -0.15558290481567383], [-0.05511319264769554, -0.38556748628616333, -0.11971968412399292], [-0.19646543264389038, -0.33235108852386475, -0.11659730225801468], [-0.16884635388851166, -0.4674847722053528, -0.2324099838733673], [0.015218752436339855, -0.43743330240249634, -0.147663414478302], [-0.28535306453704834, -0.3170816898345947, -0.15130361914634705], [0.1831444650888443, -0.2376796305179596, -0.11773781478404999], [-0.2628134489059448, -0.06286495923995972, -0.14098888635635376], [0.1934492290019989, -0.004380404949188232, -0.20307320356369019], [-0.10151520371437073, 0.10305222868919373, -0.2503069043159485], [0.19077014923095703, 0.07334023714065552, -0.2339690625667572], [-0.05284983292222023, 0.15003524720668793, -0.2991943359375]]}, {"image_id": "156.jpg", "category_id": 1, "keypoints": [1233.638671875, 540.1555786132812, 0.9796257019042969, 1247.9378662109375, 568.2134399414062, 0.9859702587127686, 1265.304931640625, 577.7230224609375, 0.9787829518318176, 1221.05078125, 499.75201416015625, 0.9874565005302429, 1150.649169921875, 677.1124267578125, 0.953547477722168, 1379.4124755859375, 687.1509399414062, 0.9710271954536438, 1179.7271728515625, 471.81005859375, 0.9870432615280151, 1232.8931884765625, 808.0430297851562, 0.9119407534599304, 1512.6065673828125, 794.9132080078125, 0.827015221118927, 1160.87255859375, 469.8421325683594, 0.9800049066543579, 1184.0909423828125, 835.14404296875, 0.8131364583969116, 1527.7493896484375, 845.5450439453125, 0.7929935455322266, 1102.5880126953125, 417.7218933105469, 0.985163688659668, 1128.239990234375, 423.681884765625, 0.990634024143219, 1131.7459716796875, 443.6412353515625, 0.9939994812011719, 1076.6353759765625, 406.152587890625, 0.9802722930908203, 1113.74169921875, 410.4649353027344, 0.9739854335784912, 1119.831298828125, 459.4701232910156, 0.9885611534118652, 1084.837890625, 351.9295654296875, 0.945600152015686, 1135.148681640625, 554.5802612304688, 0.9665758609771729, 1033.8253173828125, 302.71484375, 0.8262749910354614, 1066.990478515625, 555.2877807617188, 0.9111803770065308, 1015.0020751953125, 295.3130187988281, 0.925396203994751, 1046.24755859375, 539.8693237304688, 0.7115722894668579, 1022.7550048828125, 381.03662109375, 0.8767427802085876, 1003.370361328125, 272.331787109375, 0.9213812947273254, 1036.24072265625, 524.5493774414062, 0.8542848229408264, 1152.2628173828125, 827.9371337890625, 0.8965485692024231, 1520.714599609375, 879.065673828125, 0.8127630949020386], "score": 3.156681537628174, "box": [968.3612060546875, 251.24795532226562, 629.38818359375, 623.1033020019531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.024053912609815598, 0.0664331316947937, -0.08893662691116333], [0.06997371464967728, 0.07850630581378937, 0.03671388700604439], [-0.0295746847987175, -0.09901204705238342, 0.02323639765381813], [-0.23766998946666718, 0.3587595522403717, -0.0944722443819046], [0.35117030143737793, 0.35559362173080444, -0.020490024238824844], [-0.13432258367538452, -0.16969561576843262, 0.05083225294947624], [-0.01882641762495041, 0.7029883861541748, -0.017541352659463882], [0.6508057713508606, 0.6066662669181824, -0.15879733860492706], [-0.1893027275800705, -0.17553427815437317, 0.054210152477025986], [-0.13642321527004242, 0.7684905529022217, -0.01609220542013645], [0.6937376260757446, 0.7215575575828552, -0.10350574553012848], [-0.3251112699508667, -0.3246185779571533, 0.11936087906360626], [-0.2662918269634247, -0.29177772998809814, 0.021667417138814926], [-0.2478727102279663, -0.2467515766620636, 0.16394515335559845], [-0.4001843333244324, -0.357369065284729, 0.10752023756504059], [-0.30640900135040283, -0.3216620087623596, -0.05453929677605629], [-0.2779516279697418, -0.20336174964904785, 0.24389176070690155], [-0.38430508971214294, -0.4469473361968994, -0.2808678150177002], [-0.23580223321914673, 0.056041568517684937, 0.25052616000175476], [-0.522678554058075, -0.5623645782470703, -0.46097615361213684], [-0.4263160824775696, 0.05705256760120392, 0.06938113272190094], [-0.5590448975563049, -0.5830437541007996, -0.38736602663993835], [-0.4796231985092163, 0.018544167280197144, 0.016017746180295944]]}, {"image_id": "156.jpg", "category_id": 1, "keypoints": [1056.735595703125, 501.3675231933594, 0.9857263565063477, 1082.5269775390625, 528.5060424804688, 0.9948784708976746, 1047.0584716796875, 528.990966796875, 0.9910287261009216, 1048.5928955078125, 463.2172546386719, 0.9958029985427856, 1047.6224365234375, 648.0887451171875, 0.9853451251983643, 1085.093017578125, 655.7094116210938, 0.9834806323051453, 1035.799072265625, 428.50250244140625, 0.9920697808265686, 1006.2575073242188, 757.6953125, 0.9519101977348328, 1124.309326171875, 763.7951049804688, 0.9266886115074158, 1031.39111328125, 420.49786376953125, 0.9911223649978638, 998.9140625, 780.2698364257812, 0.8211112022399902, 1112.2601318359375, 786.4330444335938, 0.9025197625160217, 1001.4159545898438, 354.345458984375, 0.9753556251525879, 1041.1744384765625, 379.29583740234375, 0.98921799659729, 993.97412109375, 383.92681884765625, 0.9896732568740845, 999.6220703125, 338.0549621582031, 0.9221601486206055, 1064.6951904296875, 369.24462890625, 0.9808745980262756, 962.622314453125, 383.5820007324219, 0.984893262386322, 1121.0850830078125, 429.9247131347656, 0.9606850147247314, 967.7936401367188, 463.4941711425781, 0.9691522121429443, 1105.9337158203125, 493.703369140625, 0.9812921285629272, 1016.4119262695312, 508.40472412109375, 0.9568381309509277, 1086.88525390625, 511.27667236328125, 0.9366335272789001, 1026.6844482421875, 521.1014404296875, 0.90749591588974, 969.5100708007812, 249.76016235351562, 0.8363279700279236, 1052.0406494140625, 519.72314453125, 0.9094426035881042, 1043.5947265625, 532.1432495117188, 0.8237733840942383, 989.1759643554688, 785.9957275390625, 0.8912135362625122, 1105.5308837890625, 790.8048706054688, 0.9314581751823425], "score": 2.7276406288146973, "box": [947.7034301757812, 301.7301330566406, 199.79656982421875, 513.0941467285156], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08261877298355103, 0.07513993978500366, -0.007301865145564079], [-0.033432770520448685, 0.08992284536361694, 0.0531546026468277], [-0.016714587807655334, -0.10429495573043823, -0.00016316212713718414], [-0.02979026548564434, 0.4409302771091461, -0.02433401718735695], [0.08734890073537827, 0.4581018090248108, 0.09260356426239014], [-0.06133529171347618, -0.2057613730430603, -0.07200289517641068], [-0.16090133786201477, 0.8039734959602356, 0.09075547009706497], [0.2226032167673111, 0.8208662867546082, 0.20214605331420898], [-0.07810495048761368, -0.23361915349960327, -0.11729390919208527], [-0.1910277009010315, 0.8817536234855652, -0.01248827576637268], [0.15921077132225037, 0.9350818395614624, 0.17915955185890198], [-0.15438079833984375, -0.4114788770675659, -0.20047765970230103], [-0.050668057054281235, -0.3576200604438782, -0.18068674206733704], [-0.18680879473686218, -0.3247992992401123, -0.12665531039237976], [-0.1608220636844635, -0.4538438320159912, -0.2724131941795349], [0.023229913786053658, -0.3869396448135376, -0.22560733556747437], [-0.28293484449386597, -0.32558494806289673, -0.1310064196586609], [0.20167264342308044, -0.20076674222946167, -0.1739274561405182], [-0.26737868785858154, -0.07978469133377075, -0.19988283514976501], [0.1452493518590927, 0.009397491812705994, -0.29455307126045227], [-0.14205142855644226, 0.04224449396133423, -0.38721269369125366], [0.0998479500412941, 0.04924532771110535, -0.35235342383384705], [-0.10662934184074402, 0.08844197541475296, -0.4469623267650604]]}, {"image_id": "157.jpg", "category_id": 1, "keypoints": [1233.4365234375, 542.5698852539062, 0.9801696538925171, 1244.529541015625, 569.783203125, 0.9821637272834778, 1264.211181640625, 578.6583251953125, 0.9744322299957275, 1224.8306884765625, 503.1002197265625, 0.9855327010154724, 1142.552978515625, 675.3258056640625, 0.9679808616638184, 1370.0433349609375, 686.6275634765625, 0.9694064259529114, 1186.842529296875, 473.5027770996094, 0.9856119751930237, 1234.371337890625, 810.627197265625, 0.8662668466567993, 1498.892578125, 805.9989624023438, 0.8605293035507202, 1166.9342041015625, 471.63330078125, 0.9760572910308838, 1187.726318359375, 836.2818603515625, 0.8163915872573853, 1505.37158203125, 855.1550903320312, 0.8414572477340698, 1111.0557861328125, 417.4588623046875, 0.985039472579956, 1136.76220703125, 427.9671325683594, 0.989832878112793, 1140.6951904296875, 440.2949523925781, 0.9932752847671509, 1088.270263671875, 409.539794921875, 0.9662028551101685, 1124.0047607421875, 419.0748291015625, 0.9609458446502686, 1127.2413330078125, 451.28350830078125, 0.9897865056991577, 1100.1162109375, 372.7232666015625, 0.9568666219711304, 1133.857177734375, 550.2459106445312, 0.9614457488059998, 1029.9456787109375, 305.9956359863281, 0.9598689675331116, 1063.345458984375, 544.8606567382812, 0.9533836245536804, 1006.9287109375, 293.45062255859375, 0.9617800116539001, 1043.28515625, 533.7993774414062, 0.8920641541481018, 1044.404296875, 362.60723876953125, 0.9121965765953064, 990.412353515625, 266.2472839355469, 0.8937457203865051, 1020.2810668945312, 507.67279052734375, 0.8571962118148804, 1167.6905517578125, 839.5729370117188, 0.8833089470863342, 1493.180908203125, 886.1529541015625, 0.8504839539527893], "score": 3.1640546321868896, "box": [968.9630126953125, 253.1431884765625, 596.96142578125, 632.9707641601562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.017122797667980194, 0.06966684758663177, -0.08934388309717178], [0.06939621269702911, 0.08097989857196808, 0.035467058420181274], [-0.024900054559111595, -0.10104592144489288, 0.022477762773633003], [-0.25972428917884827, 0.3524089455604553, -0.12543721497058868], [0.3387807607650757, 0.3646072745323181, -0.06467056274414062], [-0.12281686067581177, -0.17950744926929474, 0.0500764474272728], [-0.025645103305578232, 0.6939722299575806, -0.04750838875770569], [0.6176837682723999, 0.635205090045929, -0.22645170986652374], [-0.17793796956539154, -0.18476666510105133, 0.052997887134552], [-0.1415107548236847, 0.7609061598777771, -0.023987995460629463], [0.6428475379943848, 0.7561382055282593, -0.16986767947673798], [-0.31388524174690247, -0.3442535400390625, 0.0909554660320282], [-0.2539001703262329, -0.29543304443359375, 0.0005683246999979019], [-0.23764154314994812, -0.27417856454849243, 0.1491384655237198], [-0.39183542132377625, -0.37105613946914673, 0.08585240691900253], [-0.2915971279144287, -0.31556689739227295, -0.08013291656970978], [-0.27166956663131714, -0.24506960809230804, 0.234087273478508], [-0.37366119027137756, -0.4423314332962036, -0.3086356520652771], [-0.25224193930625916, 0.019114866852760315, 0.26561439037323], [-0.5541673302650452, -0.6190968751907349, -0.25603213906288147], [-0.4686565697193146, 0.0027378350496292114, 0.1107870414853096], [-0.6210411190986633, -0.6586841344833374, -0.22038529813289642], [-0.542916476726532, -0.03840246796607971, 0.12224064022302628]]}, {"image_id": "157.jpg", "category_id": 1, "keypoints": [1050.64794921875, 475.9535217285156, 0.9803289771080017, 1075.631103515625, 503.3453369140625, 0.9936020970344543, 1044.95654296875, 508.3066101074219, 0.9916008114814758, 1043.5921630859375, 437.4438171386719, 0.9942901134490967, 1043.689208984375, 634.9730834960938, 0.9799512028694153, 1084.9918212890625, 638.9884033203125, 0.9748127460479736, 1027.8121337890625, 401.2983093261719, 0.9817177653312683, 1009.93994140625, 758.8644409179688, 0.9443082213401794, 1121.396728515625, 753.80859375, 0.9278702139854431, 1020.680419921875, 391.77471923828125, 0.9817937016487122, 998.5286865234375, 778.1180419921875, 0.8658862113952637, 1110.7950439453125, 782.0439453125, 0.9458087682723999, 992.1382446289062, 324.2565612792969, 0.9866756796836853, 1027.8675537109375, 342.91058349609375, 0.9906665086746216, 982.1365356445312, 361.05426025390625, 0.9880351424217224, 984.6286010742188, 308.6312255859375, 0.9553312063217163, 1046.875244140625, 326.70379638671875, 0.9782133102416992, 953.1235961914062, 369.634033203125, 0.9847867488861084, 1103.154541015625, 389.026611328125, 0.9637395739555359, 970.3434448242188, 459.80487060546875, 0.9548535346984863, 1073.4249267578125, 429.8993225097656, 0.9703970551490784, 1018.446044921875, 499.581787109375, 0.9460240006446838, 1061.9815673828125, 446.49774169921875, 0.9650022983551025, 1036.3349609375, 512.9888916015625, 0.9043307900428772, 952.899658203125, 238.12008666992188, 0.9413830637931824, 1037.1658935546875, 412.2358703613281, 0.902762234210968, 1052.8768310546875, 523.4066772460938, 0.6510559320449829, 993.05224609375, 776.8974609375, 0.9101508259773254, 1100.3084716796875, 786.7987670898438, 0.9237975478172302], "score": 2.8440873622894287, "box": [941.9497680664062, 224.39019775390625, 204.79095458984375, 593.9292602539062], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07962679117918015, 0.07528448104858398, -0.021220287308096886], [-0.021395673975348473, 0.08778205513954163, 0.061663031578063965], [-0.01697087287902832, -0.10399624705314636, -0.0003401413559913635], [-0.02008546143770218, 0.44309261441230774, -0.03419593721628189], [0.092250756919384, 0.4505762457847595, 0.13829970359802246], [-0.06534591317176819, -0.2052139937877655, -0.07024157047271729], [-0.11664503067731857, 0.8138741254806519, 0.08346232026815414], [0.2123095542192459, 0.8189703226089478, 0.23916438221931458], [-0.08703634887933731, -0.23095279932022095, -0.11462137848138809], [-0.1668885350227356, 0.8885178565979004, -0.013440698385238647], [0.16593150794506073, 0.9426552057266235, 0.23991629481315613], [-0.16930867731571198, -0.41711100935935974, -0.16754990816116333], [-0.06392323970794678, -0.3642546832561493, -0.15658175945281982], [-0.1985865980386734, -0.31849977374076843, -0.10938270390033722], [-0.18705131113529205, -0.4495120346546173, -0.24257636070251465], [-0.003956552129238844, -0.4130620062351227, -0.2049732357263565], [-0.2891031801700592, -0.29077401757240295, -0.12549635767936707], [0.163818359375, -0.22095170617103577, -0.2641739249229431], [-0.24216318130493164, -0.04329729080200195, -0.16166910529136658], [0.03993402421474457, -0.052735328674316406, -0.3972114026546478], [-0.08177880197763443, 0.09371380507946014, -0.30496567487716675], [-0.004681616555899382, 0.011441856622695923, -0.4258812963962555], [-0.03137093782424927, 0.13303092122077942, -0.35792800784111023]]}, {"image_id": "158.jpg", "category_id": 1, "keypoints": [1239.29931640625, 543.0414428710938, 0.9727338552474976, 1248.5281982421875, 571.6962890625, 0.9830449819564819, 1268.2847900390625, 581.9136352539062, 0.9905667901039124, 1231.3017578125, 505.9140930175781, 0.9882033467292786, 1143.598388671875, 671.7867431640625, 0.9289197325706482, 1356.423583984375, 693.4452514648438, 0.9771467447280884, 1189.5159912109375, 478.47198486328125, 0.988328218460083, 1237.775634765625, 809.7858276367188, 0.7784814238548279, 1476.5543212890625, 814.89892578125, 0.9127257466316223, 1171.62890625, 476.1014404296875, 0.9794175624847412, 1194.39697265625, 840.1115112304688, 0.7709764838218689, 1484.9757080078125, 857.0457763671875, 0.7262707948684692, 1116.3759765625, 426.49005126953125, 0.9838919043540955, 1141.0570068359375, 431.03302001953125, 0.989976704120636, 1139.6883544921875, 451.84527587890625, 0.9928473830223083, 1094.535888671875, 421.3695983886719, 0.9781169295310974, 1129.4677734375, 419.9665832519531, 0.9723764657974243, 1125.6766357421875, 465.6637878417969, 0.9840754270553589, 1123.1011962890625, 414.08929443359375, 0.9560151696205139, 1141.8824462890625, 555.569580078125, 0.9493358731269836, 1061.7640380859375, 365.20831298828125, 0.9724820256233215, 1067.2369384765625, 544.5833129882812, 0.9282748699188232, 1043.556884765625, 356.8471984863281, 0.9683322310447693, 1046.2296142578125, 531.9407958984375, 0.9343079924583435, 1047.496337890625, 368.11297607421875, 0.9031782746315002, 1023.9635620117188, 371.28948974609375, 0.9334920048713684, 1022.65966796875, 515.9357299804688, 0.9151901006698608, 1180.5198974609375, 845.4014892578125, 0.7774251699447632, 1464.6998291015625, 881.595458984375, 0.8675906658172607], "score": 3.1457715034484863, "box": [982.6392822265625, 333.6172790527344, 553.019287109375, 560.5439147949219], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.008143750950694084, 0.0621986985206604, -0.0926751047372818], [0.06615957617759705, 0.08415226638317108, 0.023664306849241257], [-0.018577251583337784, -0.0970296859741211, 0.030772298574447632], [-0.2687399983406067, 0.33241555094718933, -0.03824831172823906], [0.27021995186805725, 0.3665013313293457, -0.16600964963436127], [-0.12227078527212143, -0.16255071759223938, 0.06836001574993134], [-0.03858744353055954, 0.6713646650314331, -0.07222302258014679], [0.500876784324646, 0.6194585561752319, -0.39243388175964355], [-0.17541614174842834, -0.16987398266792297, 0.07669767737388611], [-0.14525024592876434, 0.7490472793579102, -0.05384499952197075], [0.5278618931770325, 0.7494797706604004, -0.38647225499153137], [-0.3167469799518585, -0.31674686074256897, 0.12139512598514557], [-0.24632573127746582, -0.283389151096344, 0.03434588387608528], [-0.24628721177577972, -0.24111154675483704, 0.17501063644886017], [-0.3964012563228607, -0.3346596658229828, 0.10750456154346466], [-0.28302595019340515, -0.31049230694770813, -0.04277544841170311], [-0.27892830967903137, -0.20628193020820618, 0.2561032474040985], [-0.31814515590667725, -0.3160916268825531, -0.3082874119281769], [-0.2300792783498764, 0.04097999632358551, 0.3215097486972809], [-0.5134360194206238, -0.47390833497047424, -0.28492471575737], [-0.43005338311195374, 0.012221604585647583, 0.15700626373291016], [-0.5583691596984863, -0.4998359978199005, -0.2195267230272293], [-0.5015457272529602, -0.030727386474609375, 0.1535249799489975]]}, {"image_id": "158.jpg", "category_id": 1, "keypoints": [1052.2938232421875, 477.44207763671875, 0.9838269948959351, 1077.3680419921875, 502.9238586425781, 0.9930772185325623, 1046.4669189453125, 509.62347412109375, 0.9880062341690063, 1043.6644287109375, 439.4639892578125, 0.9939196109771729, 1053.197509765625, 633.4417724609375, 0.9884083271026611, 1082.7230224609375, 641.6870727539062, 0.9812052845954895, 1029.245849609375, 403.5205078125, 0.9887029528617859, 1014.3524169921875, 754.478271484375, 0.925657331943512, 1116.4268798828125, 755.331787109375, 0.9185820817947388, 1024.045166015625, 394.09991455078125, 0.9868263006210327, 1004.8443603515625, 781.4674682617188, 0.8674725890159607, 1118.8675537109375, 782.4869384765625, 0.9381213188171387, 995.0517578125, 329.1109619140625, 0.9842531681060791, 1031.89794921875, 345.75579833984375, 0.9899329543113708, 982.904296875, 363.981689453125, 0.9912461042404175, 990.675537109375, 312.09210205078125, 0.9469993114471436, 1053.9703369140625, 330.69403076171875, 0.9639649987220764, 951.7381591796875, 371.54638671875, 0.9803583025932312, 1110.156982421875, 401.0395812988281, 0.9541887044906616, 975.3203125, 465.0443115234375, 0.9686914682388306, 1090.8914794921875, 424.60137939453125, 0.9574413895606995, 1031.977294921875, 508.92950439453125, 0.9539708495140076, 1084.2861328125, 435.73126220703125, 0.9702223539352417, 1056.818115234375, 521.47021484375, 0.8800525665283203, 959.7339477539062, 241.35153198242188, 0.9384588003158569, 1077.9637451171875, 462.80548095703125, 0.940498948097229, 1076.4954833984375, 528.6251831054688, 0.7981702089309692, 992.53173828125, 781.2396850585938, 0.8764989376068115, 1118.4290771484375, 789.2900390625, 0.930521547794342], "score": 2.929321050643921, "box": [930.763671875, 204.27784729003906, 248.606689453125, 634.0569915771484], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0867551863193512, 0.06915602087974548, -0.0009908713400363922], [-0.02960946597158909, 0.08957494795322418, 0.053988587111234665], [-0.023290079087018967, -0.10174250602722168, -0.004447106271982193], [0.017553770914673805, 0.4436154067516327, 0.0030593182891607285], [0.07342758029699326, 0.46147704124450684, 0.08458301424980164], [-0.06604304909706116, -0.20301321148872375, -0.07706794142723083], [-0.10161896795034409, 0.821331262588501, 0.05458417162299156], [0.18431517481803894, 0.8224060535430908, 0.21321545541286469], [-0.08247113972902298, -0.22902685403823853, -0.12296001613140106], [-0.1363212913274765, 0.9088658690452576, -0.03751568868756294], [0.19326567649841309, 0.9449971318244934, 0.1665247678756714], [-0.1654566526412964, -0.41061437129974365, -0.18443062901496887], [-0.060658589005470276, -0.3624686598777771, -0.1612299084663391], [-0.19660727679729462, -0.31111377477645874, -0.13054324686527252], [-0.17541521787643433, -0.4453731179237366, -0.2597915530204773], [0.005750184878706932, -0.4010905623435974, -0.20926961302757263], [-0.2862812876701355, -0.2867045998573303, -0.15198048949241638], [0.16465377807617188, -0.19798654317855835, -0.24862763285636902], [-0.21927647292613983, -0.042312026023864746, -0.15367785096168518], [0.04331131651997566, -0.05185475945472717, -0.4060100018978119], [-0.04099178686738014, 0.09895859658718109, -0.26687029004096985], [0.0010422600898891687, 0.019280150532722473, -0.40862563252449036], [0.0249947477132082, 0.13305507600307465, -0.30284905433654785]]}, {"image_id": "159.jpg", "category_id": 1, "keypoints": [1232.577880859375, 542.715576171875, 0.9749839305877686, 1238.1614990234375, 570.9351196289062, 0.9832534193992615, 1262.79443359375, 579.8809814453125, 0.9916488528251648, 1225.301513671875, 507.76519775390625, 0.9881798028945923, 1143.68798828125, 672.6463012695312, 0.933602511882782, 1340.072509765625, 694.7899780273438, 0.9752848148345947, 1189.1484375, 481.1534423828125, 0.990195631980896, 1234.983642578125, 806.663818359375, 0.8269779682159424, 1453.4080810546875, 826.8973388671875, 0.875329315662384, 1172.4627685546875, 477.14093017578125, 0.9864534735679626, 1195.3792724609375, 839.01708984375, 0.8060125112533569, 1443.6990966796875, 872.0692138671875, 0.8771682381629944, 1126.5152587890625, 424.3208312988281, 0.9905667901039124, 1143.1544189453125, 431.7776794433594, 0.989193856716156, 1149.7298583984375, 452.67181396484375, 0.9942256808280945, 1103.8994140625, 414.09332275390625, 0.9636906981468201, 1131.3116455078125, 419.1985168457031, 0.9728533625602722, 1141.1961669921875, 465.01031494140625, 0.9822431802749634, 1119.9658203125, 406.4051513671875, 0.9608018398284912, 1147.697265625, 554.4210205078125, 0.93622887134552, 1045.39990234375, 338.82733154296875, 0.9022006988525391, 1069.239501953125, 546.1746826171875, 0.9123204946517944, 1030.0272216796875, 324.4114685058594, 0.8540474772453308, 1052.287841796875, 535.6421508789062, 0.9414200782775879, 1058.0579833984375, 380.35955810546875, 0.9322727918624878, 1013.4407958984375, 339.88226318359375, 0.928267240524292, 1031.6558837890625, 519.6753540039062, 0.9135977029800415, 1185.7313232421875, 844.5447998046875, 0.7781574726104736, 1418.3582763671875, 894.5342407226562, 0.8471900820732117], "score": 3.162348508834839, "box": [997.8460693359375, 352.10455322265625, 503.5028076171875, 541.8027954101562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0019275732338428497, 0.060383155941963196, -0.09414717555046082], [0.0709242895245552, 0.08245571702718735, 0.013535700738430023], [-0.017143329605460167, -0.09630148112773895, 0.03480958193540573], [-0.2558692395687103, 0.34377795457839966, -0.01409194990992546], [0.24751253426074982, 0.37560248374938965, -0.18353056907653809], [-0.10943051427602768, -0.16880695521831512, 0.08799487352371216], [-0.028639625757932663, 0.6800280213356018, -0.06600755453109741], [0.45121344923973083, 0.6366158723831177, -0.4228389263153076], [-0.15881915390491486, -0.18151526153087616, 0.10730202496051788], [-0.1279160976409912, 0.7654598951339722, -0.04268200695514679], [0.44310110807418823, 0.752317488193512, -0.358234167098999], [-0.27591651678085327, -0.33345186710357666, 0.1903790533542633], [-0.2293500304222107, -0.30165940523147583, 0.08766454458236694], [-0.20073215663433075, -0.2502015233039856, 0.22297953069210052], [-0.35148659348487854, -0.3674384355545044, 0.187771275639534], [-0.2669418454170227, -0.332946240901947, 0.01214912161231041], [-0.21582704782485962, -0.22208748757839203, 0.31194913387298584], [-0.3158958852291107, -0.35716378688812256, -0.24890297651290894], [-0.19353801012039185, 0.03005717694759369, 0.3680155873298645], [-0.48963436484336853, -0.5032670497894287, -0.35671812295913696], [-0.408708781003952, 0.007729530334472656, 0.22475913166999817], [-0.5455284118652344, -0.5515556335449219, -0.39553335309028625], [-0.4645789861679077, -0.028160884976387024, 0.275211364030838]]}, {"image_id": "159.jpg", "category_id": 1, "keypoints": [1045.5665283203125, 473.7337341308594, 0.9804264307022095, 1068.5028076171875, 501.96295166015625, 0.9924499988555908, 1037.4141845703125, 507.3980712890625, 0.9889770150184631, 1039.958740234375, 435.2064208984375, 0.9945610165596008, 1037.2222900390625, 639.736328125, 0.9772791266441345, 1074.540283203125, 642.5339965820312, 0.9801615476608276, 1026.4423828125, 398.76239013671875, 0.9832092523574829, 1009.4213256835938, 769.6220703125, 0.9315352439880371, 1120.61328125, 754.02978515625, 0.9340553879737854, 1020.78369140625, 388.8670349121094, 0.9816583395004272, 996.2783813476562, 788.4459838867188, 0.8596111536026001, 1106.541015625, 779.486328125, 0.9403504133224487, 992.9161376953125, 324.41192626953125, 0.9846655130386353, 1028.5465087890625, 340.60003662109375, 0.9906373023986816, 981.4766235351562, 359.781494140625, 0.9895640015602112, 989.2007446289062, 309.6024169921875, 0.9516614675521851, 1048.0584716796875, 323.63775634765625, 0.9706221222877502, 951.4660034179688, 369.2227783203125, 0.9833115339279175, 1095.8046875, 342.617919921875, 0.9729265570640564, 974.2808227539062, 460.96966552734375, 0.9609038829803467, 1044.9072265625, 292.6286315917969, 0.9238320589065552, 1031.5850830078125, 496.91888427734375, 0.9549051523208618, 1029.828857421875, 274.0872802734375, 0.8951570391654968, 1051.1605224609375, 510.02008056640625, 0.8930347561836243, 960.476318359375, 234.13397216796875, 0.9442318081855774, 1009.903076171875, 268.1083984375, 0.8761513233184814, 1073.1712646484375, 519.11865234375, 0.8723796606063843, 991.3737182617188, 788.0905151367188, 0.8935136795043945, 1093.5618896484375, 784.610107421875, 0.900089681148529], "score": 3.0740675926208496, "box": [932.3926391601562, 220.9134979248047, 223.73638916015625, 602.4088287353516], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07785043120384216, 0.07831387221813202, -0.013876599259674549], [-0.029060469940304756, 0.08554375171661377, 0.06108810007572174], [-0.01298554614186287, -0.10415776073932648, -0.0033132564276456833], [-0.006989454384893179, 0.44840574264526367, -0.03781881183385849], [0.07339727133512497, 0.4499073922634125, 0.14130906760692596], [-0.054592665284872055, -0.2026638239622116, -0.08088690787553787], [-0.08569984883069992, 0.8299716114997864, 0.05053475499153137], [0.22306612133979797, 0.8062021136283875, 0.24068012833595276], [-0.07154610008001328, -0.22805310785770416, -0.12728996574878693], [-0.1423361450433731, 0.9013521075248718, -0.044801220297813416], [0.16337943077087402, 0.919471263885498, 0.27156129479408264], [-0.1533561497926712, -0.4060214161872864, -0.2017889767885208], [-0.048406947404146194, -0.35811519622802734, -0.1769249141216278], [-0.18513208627700806, -0.31136226654052734, -0.1393481194972992], [-0.1645963042974472, -0.44203728437423706, -0.276320219039917], [0.009728891775012016, -0.40624183416366577, -0.22767992317676544], [-0.27392521500587463, -0.2822001576423645, -0.16017070412635803], [0.18814057111740112, -0.32076627016067505, -0.39796388149261475], [-0.21278005838394165, -0.036103010177612305, -0.1646709144115448], [0.0424281470477581, -0.4464849829673767, -0.5526441931724548], [-0.017885273322463036, 0.08929014205932617, -0.2692069113254547], [0.005084665957838297, -0.4848194718360901, -0.6160751581192017], [0.04137146845459938, 0.13020941615104675, -0.30995410680770874]]}, {"image_id": "160.jpg", "category_id": 1, "keypoints": [1233.238525390625, 540.41357421875, 0.9787070155143738, 1229.8895263671875, 570.6635131835938, 0.9822831749916077, 1264.3311767578125, 573.0848999023438, 0.9863772988319397, 1227.9212646484375, 504.99261474609375, 0.988841712474823, 1140.4964599609375, 671.1837158203125, 0.9571654200553894, 1328.135498046875, 698.4649658203125, 0.9753734469413757, 1195.6199951171875, 476.8498840332031, 0.9899574518203735, 1228.727783203125, 804.8758544921875, 0.8585059642791748, 1410.234375, 832.29345703125, 0.9195457100868225, 1178.982177734375, 473.2206115722656, 0.9855760335922241, 1187.717041015625, 837.5357055664062, 0.860980749130249, 1426.8756103515625, 867.9562377929688, 0.8287298679351807, 1134.0562744140625, 418.81744384765625, 0.9911180138587952, 1146.1912841796875, 432.378662109375, 0.9884746074676514, 1163.6988525390625, 439.9775390625, 0.9916175603866577, 1110.772705078125, 409.1312255859375, 0.974537193775177, 1132.290771484375, 424.4869689941406, 0.9709794521331787, 1163.2183837890625, 441.09832763671875, 0.9869607090950012, 1120.65771484375, 408.4236755371094, 0.93706214427948, 1158.74560546875, 538.0598754882812, 0.9717150926589966, 1038.9786376953125, 338.7362976074219, 0.9244252443313599, 1086.4627685546875, 534.7401123046875, 0.9546934962272644, 1023.1758422851562, 320.32843017578125, 0.8467792272567749, 1065.71826171875, 528.2493286132812, 0.9102979898452759, 1069.535888671875, 372.7142333984375, 0.9338498711585999, 1003.7997436523438, 321.19561767578125, 0.8661943078041077, 1046.3995361328125, 520.5281982421875, 0.83859783411026, 1179.41357421875, 840.8255615234375, 0.8386069536209106, 1420.43505859375, 881.0324096679688, 0.8779099583625793], "score": 3.1547346115112305, "box": [1018.5029907226562, 347.7300109863281, 451.87628173828125, 553.8908996582031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.019034069031476974, 0.07294383645057678, -0.08439754694700241], [0.07703191787004471, 0.0793813169002533, 0.008649088442325592], [-0.014109622687101364, -0.10133671760559082, 0.025554154068231583], [-0.26379531621932983, 0.36075517535209656, 0.01745092123746872], [0.2225407361984253, 0.4013868272304535, -0.17374463379383087], [-0.09733501821756363, -0.17980733513832092, 0.08559852838516235], [-0.0418798103928566, 0.7010281085968018, -0.05887415260076523], [0.38674697279930115, 0.7044179439544678, -0.4010830819606781], [-0.14467336237430573, -0.191234290599823, 0.1115892082452774], [-0.14094893634319305, 0.7856616973876953, -0.026469696313142776], [0.4390469789505005, 0.7992454767227173, -0.32189667224884033], [-0.26638782024383545, -0.3539363741874695, 0.16978539526462555], [-0.23285365104675293, -0.2961864471435547, 0.07197795808315277], [-0.1766321212053299, -0.28893980383872986, 0.21081103384494781], [-0.34117454290390015, -0.3861391544342041, 0.18502244353294373], [-0.278149276971817, -0.31586772203445435, -0.004526015371084213], [-0.17074723541736603, -0.2894158363342285, 0.3063438832759857], [-0.3293052315711975, -0.3522971272468567, -0.2663091719150543], [-0.17600756883621216, -0.04138939082622528, 0.3904925584793091], [-0.50264972448349, -0.48757362365722656, -0.39335036277770996], [-0.4364470839500427, -0.05324336886405945, 0.36427173018455505], [-0.5500679612159729, -0.5375072360038757, -0.4422464966773987], [-0.5100326538085938, -0.07683247327804565, 0.3983477056026459]]}, {"image_id": "160.jpg", "category_id": 1, "keypoints": [1044.2257080078125, 471.4468994140625, 0.9775126576423645, 1069.2003173828125, 497.18780517578125, 0.9919101595878601, 1033.68505859375, 504.9681091308594, 0.9881702661514282, 1037.2838134765625, 436.0277099609375, 0.992755651473999, 1039.306396484375, 633.0836791992188, 0.9697825312614441, 1063.354736328125, 641.0670166015625, 0.9682759642601013, 1023.4663696289062, 400.81536865234375, 0.9830904006958008, 1003.4578247070312, 762.4236450195312, 0.9385395646095276, 1122.724853515625, 750.1676635742188, 0.9361951351165771, 1018.7869262695312, 391.3327941894531, 0.9820802807807922, 993.243896484375, 788.1759033203125, 0.855598509311676, 1104.0858154296875, 774.6956787109375, 0.9302116632461548, 988.7527465820312, 325.3553161621094, 0.9883703589439392, 1026.4000244140625, 342.18328857421875, 0.9896014332771301, 976.814208984375, 361.46014404296875, 0.9848982095718384, 986.5650024414062, 306.77471923828125, 0.9486129879951477, 1047.51123046875, 330.37176513671875, 0.9636354446411133, 949.3403930664062, 373.0769958496094, 0.9873159527778625, 1096.8389892578125, 312.10418701171875, 0.9494102597236633, 978.2394409179688, 460.0829162597656, 0.9477038383483887, 1040.002197265625, 281.426513671875, 0.8525390625, 1040.41552734375, 499.57257080078125, 0.9598917961120605, 1022.9520263671875, 272.16326904296875, 0.8842435479164124, 1059.1702880859375, 515.1213989257812, 0.9238876700401306, 962.4862670898438, 228.74267578125, 0.9480198621749878, 991.8102416992188, 274.5865478515625, 0.9197047352790833, 1087.6220703125, 519.9144897460938, 0.8174088597297668, 988.074951171875, 790.0426025390625, 0.9048453569412231, 1088.5469970703125, 777.8539428710938, 0.9056723117828369], "score": 3.1211631298065186, "box": [930.6744384765625, 235.3167724609375, 227.8155517578125, 578.8055419921875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08330971747636795, 0.0752837210893631, -0.009096364490687847], [-0.031580083072185516, 0.08995366841554642, 0.055820342153310776], [-0.017261095345020294, -0.10576020181179047, -0.0007003340870141983], [0.0007952312007546425, 0.4459265470504761, -0.03689683973789215], [0.05134996771812439, 0.4593825936317444, 0.13902820646762848], [-0.06304532289505005, -0.19954462349414825, -0.08374980092048645], [-0.09912731498479843, 0.8204787373542786, 0.0677119791507721], [0.23793208599090576, 0.7989738583564758, 0.2433096021413803], [-0.07785842567682266, -0.2249802201986313, -0.13210313022136688], [-0.1346750259399414, 0.8981390595436096, -0.03415124490857124], [0.16369003057479858, 0.9024242758750916, 0.28162145614624023], [-0.16476982831954956, -0.4089723229408264, -0.1933891624212265], [-0.05689786747097969, -0.3604169487953186, -0.17487432062625885], [-0.19480106234550476, -0.3085814118385315, -0.13569924235343933], [-0.17182566225528717, -0.4579373002052307, -0.2608906924724579], [0.006517556495964527, -0.39253759384155273, -0.2339709848165512], [-0.2809567153453827, -0.2706347107887268, -0.16071130335330963], [0.1874026209115982, -0.4481215476989746, -0.4158104956150055], [-0.20411087572574615, -0.03615747392177582, -0.22608725726604462], [0.008451716043055058, -0.5283881425857544, -0.5686861872673035], [-0.002011655829846859, 0.09497950971126556, -0.3118782341480255], [-0.04124586656689644, -0.5484755039215088, -0.6333726048469543], [0.057413555681705475, 0.14541037380695343, -0.3425876796245575]]}, {"image_id": "161.jpg", "category_id": 1, "keypoints": [1232.7093505859375, 537.3384399414062, 0.9771363735198975, 1225.4013671875, 566.2550659179688, 0.9723693132400513, 1263.36181640625, 571.108154296875, 0.9836989641189575, 1230.68408203125, 500.6420593261719, 0.9880434274673462, 1144.34130859375, 671.6400756835938, 0.945239245891571, 1307.1636962890625, 695.8446655273438, 0.9717631936073303, 1200.35400390625, 472.3333740234375, 0.9887688159942627, 1225.86279296875, 803.6414184570312, 0.8678483963012695, 1367.9298095703125, 829.749755859375, 0.9164530634880066, 1183.35546875, 468.8688049316406, 0.9840223789215088, 1185.1903076171875, 831.66357421875, 0.8897567391395569, 1373.7291259765625, 876.2322387695312, 0.8982077836990356, 1139.302001953125, 413.5185546875, 0.9911357164382935, 1148.268798828125, 429.7434997558594, 0.9842762351036072, 1171.618408203125, 433.5462951660156, 0.9937815070152283, 1114.41796875, 409.16790771484375, 0.9637261033058167, 1133.2498779296875, 422.07476806640625, 0.9732433557510376, 1175.77197265625, 433.1665954589844, 0.9835178256034851, 1138.098388671875, 434.3026123046875, 0.9533568620681763, 1185.3134765625, 524.8167724609375, 0.9671802520751953, 1055.10107421875, 371.9579772949219, 0.9457732439041138, 1103.614990234375, 529.1803588867188, 0.933894693851471, 1034.2559814453125, 354.1898498535156, 0.9444234371185303, 1083.826416015625, 528.3702392578125, 0.8685659766197205, 1063.603271484375, 374.5955810546875, 0.9348893165588379, 1015.35693359375, 343.2790222167969, 0.8539242148399353, 1056.1627197265625, 526.1282348632812, 0.8773765563964844, 1185.8671875, 835.1747436523438, 0.8563644886016846, 1372.347412109375, 895.9381103515625, 0.8908581137657166], "score": 3.13991379737854, "box": [1073.407958984375, 349.6835632324219, 355.31396484375, 549.4991149902344], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.027680154889822006, 0.07227036356925964, -0.08237221091985703], [0.07282880693674088, 0.08337625861167908, 0.004992257803678513], [-0.006986713036894798, -0.10238544642925262, 0.025315262377262115], [-0.23674513399600983, 0.36467552185058594, 0.0665077492594719], [0.16196320950984955, 0.40370017290115356, -0.209232360124588], [-0.08337115496397018, -0.1812417358160019, 0.09480193257331848], [-0.03099864348769188, 0.7043688893318176, -0.03873322904109955], [0.27731919288635254, 0.7132095694541931, -0.45284509658813477], [-0.12977802753448486, -0.19193442165851593, 0.12319141626358032], [-0.12198735028505325, 0.7779160141944885, 0.026470541954040527], [0.3002922534942627, 0.8305659890174866, -0.39271920919418335], [-0.242985799908638, -0.3546637296676636, 0.19711418449878693], [-0.22533346712589264, -0.29461491107940674, 0.09629419445991516], [-0.14637452363967896, -0.29178208112716675, 0.22422899305820465], [-0.31979888677597046, -0.3697155714035034, 0.2246885448694229], [-0.27848175168037415, -0.316292941570282, 0.025314606726169586], [-0.12804600596427917, -0.2965124845504761, 0.3183237910270691], [-0.28010639548301697, -0.2659949064254761, -0.23772276937961578], [-0.09667012840509415, -0.045335546135902405, 0.3801267147064209], [-0.47239214181900024, -0.4163082242012024, -0.1719113141298294], [-0.3563597500324249, -0.03148624300956726, 0.3979601263999939], [-0.5296313166618347, -0.46822845935821533, -0.13819798827171326], [-0.4167514145374298, -0.03432394564151764, 0.45665985345840454]]}, {"image_id": "161.jpg", "category_id": 1, "keypoints": [1044.47216796875, 471.17974853515625, 0.9754021167755127, 1068.866455078125, 497.1587829589844, 0.9912127256393433, 1032.47900390625, 504.8937072753906, 0.9873010516166687, 1038.0699462890625, 435.7940673828125, 0.9923641681671143, 1035.8358154296875, 629.8978881835938, 0.9710498452186584, 1057.8563232421875, 639.1363525390625, 0.9631891250610352, 1025.5955810546875, 399.7798767089844, 0.9851181507110596, 1000.2305908203125, 761.4849853515625, 0.9312921762466431, 1115.3096923828125, 749.96142578125, 0.9295366406440735, 1021.171630859375, 390.499755859375, 0.9841752052307129, 990.21728515625, 790.3759155273438, 0.8693225383758545, 1099.7408447265625, 776.4010009765625, 0.9222742319107056, 989.3193359375, 325.468505859375, 0.9870796799659729, 1027.765625, 341.54595947265625, 0.9915146231651306, 977.3297729492188, 361.6492614746094, 0.9829104542732239, 986.20361328125, 307.20819091796875, 0.950331449508667, 1049.3826904296875, 330.6878967285156, 0.9666976928710938, 949.5432739257812, 374.94049072265625, 0.9874391555786133, 1102.471923828125, 294.58343505859375, 0.9268144965171814, 981.4703369140625, 459.01910400390625, 0.950844407081604, 1042.71142578125, 288.60272216796875, 0.8407286405563354, 1052.7628173828125, 492.66009521484375, 0.9546977877616882, 1026.0670166015625, 279.3628234863281, 0.9071975350379944, 1074.056640625, 504.10540771484375, 0.9371018409729004, 964.5648193359375, 229.67837524414062, 0.9266370534896851, 996.1359252929688, 276.48699951171875, 0.9284819960594177, 1096.58544921875, 511.2548522949219, 0.8090695738792419, 983.2489013671875, 794.6952514648438, 0.9068657159805298, 1082.78857421875, 780.1123046875, 0.9042729735374451], "score": 3.1336255073547363, "box": [930.21337890625, 243.66908264160156, 229.418212890625, 565.1984710693359], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08210444450378418, 0.07719716429710388, -0.009202051907777786], [-0.034258514642715454, 0.09033853560686111, 0.054441899061203], [-0.0150284543633461, -0.10666662454605103, 0.000623239204287529], [-0.010869119316339493, 0.44491663575172424, -0.05053093656897545], [0.04055885970592499, 0.4611337184906006, 0.14328515529632568], [-0.05378938838839531, -0.2094668447971344, -0.07561057806015015], [-0.1063748449087143, 0.8149563074111938, 0.07678499817848206], [0.21645373106002808, 0.8012005090713501, 0.2677519917488098], [-0.06807155162096024, -0.2344898283481598, -0.12464547902345657], [-0.14067216217517853, 0.9023285508155823, -0.017927035689353943], [0.15360942482948303, 0.9138139486312866, 0.30206361413002014], [-0.16791635751724243, -0.407651424407959, -0.19876044988632202], [-0.05662298575043678, -0.36862683296203613, -0.17613808810710907], [-0.1913619190454483, -0.3088710904121399, -0.13474975526332855], [-0.17798252403736115, -0.45730817317962646, -0.2654637098312378], [0.008368674665689468, -0.3977319598197937, -0.2355538159608841], [-0.2766299247741699, -0.26669394969940186, -0.1573127806186676], [0.18354924023151398, -0.5081151127815247, -0.39818263053894043], [-0.19246035814285278, -0.04072755575180054, -0.2437615841627121], [-0.003826942527666688, -0.5113608241081238, -0.5629805326461792], [0.031365279108285904, 0.06701743602752686, -0.3081907033920288], [-0.05023546889424324, -0.5297990441322327, -0.6309710741043091], [0.10267313569784164, 0.10610593855381012, -0.3297930955886841]]}, {"image_id": "162.jpg", "category_id": 1, "keypoints": [1042.559326171875, 473.2869873046875, 0.9733294248580933, 1067.2322998046875, 500.3344421386719, 0.9898877143859863, 1029.66015625, 507.62359619140625, 0.9872541427612305, 1037.1055908203125, 436.3966369628906, 0.9920123815536499, 1032.0789794921875, 631.8507690429688, 0.9732564091682434, 1054.49560546875, 641.1713256835938, 0.9637917876243591, 1024.9775390625, 400.37017822265625, 0.9805771708488464, 999.0252685546875, 764.6510620117188, 0.9309759140014648, 1111.6650390625, 748.7905883789062, 0.9213197827339172, 1020.90380859375, 390.950927734375, 0.98008131980896, 989.9547729492188, 793.38232421875, 0.8666642904281616, 1097.7037353515625, 776.05078125, 0.9271525144577026, 989.736083984375, 324.2190246582031, 0.9869799017906189, 1028.1331787109375, 341.291748046875, 0.9906710982322693, 977.3062744140625, 360.81768798828125, 0.9821881651878357, 987.8659057617188, 304.9777526855469, 0.9515928030014038, 1048.449462890625, 330.45135498046875, 0.9664921164512634, 950.10986328125, 373.63299560546875, 0.9889851808547974, 1103.802490234375, 289.36029052734375, 0.9143862724304199, 985.8838500976562, 458.1764221191406, 0.9605812430381775, 1039.7479248046875, 291.5516357421875, 0.8819459080696106, 1061.236083984375, 494.04071044921875, 0.9521864056587219, 1023.9140625, 285.99371337890625, 0.906531035900116, 1085.795654296875, 504.91241455078125, 0.9420672059059143, 968.0750122070312, 224.39938354492188, 0.9324265122413635, 996.6632080078125, 291.515380859375, 0.9343876838684082, 1106.507080078125, 517.8427124023438, 0.8410130143165588, 985.1409301757812, 796.7089233398438, 0.909112811088562, 1083.7242431640625, 780.8204345703125, 0.9199320673942566], "score": 3.1525394916534424, "box": [929.1915893554688, 239.02200317382812, 228.92767333984375, 575.3510437011719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08062036335468292, 0.07881346344947815, -0.008284985087811947], [-0.03655579313635826, 0.08946666121482849, 0.05433986335992813], [-0.012896891683340073, -0.10690823197364807, 0.0002283938229084015], [-0.018625427037477493, 0.4440803527832031, -0.05516374111175537], [0.03724178299307823, 0.46099230647087097, 0.14026275277137756], [-0.05307765677571297, -0.20254823565483093, -0.08403933793306351], [-0.1083868145942688, 0.8200295567512512, 0.057627350091934204], [0.21647432446479797, 0.7946799397468567, 0.2761368155479431], [-0.06599202752113342, -0.22729820013046265, -0.13356661796569824], [-0.13895060122013092, 0.9046467542648315, -0.040746815502643585], [0.1594378501176834, 0.9114626049995422, 0.30627328157424927], [-0.15544572472572327, -0.4092491865158081, -0.1993216574192047], [-0.04674019291996956, -0.3632592558860779, -0.1773199588060379], [-0.18507955968379974, -0.3084796071052551, -0.14127957820892334], [-0.16150294244289398, -0.45912671089172363, -0.2663155794143677], [0.015488862991333008, -0.3928768038749695, -0.23938150703907013], [-0.2692691683769226, -0.2671282887458801, -0.16887791454792023], [0.18737287819385529, -0.5122997760772705, -0.39897453784942627], [-0.17724961042404175, -0.04515355825424194, -0.25744035840034485], [-0.01050303503870964, -0.492356538772583, -0.5495916604995728], [0.05153385177254677, 0.06496961414813995, -0.2942037582397461], [-0.06002691388130188, -0.5031054615974426, -0.6170166730880737], [0.12845051288604736, 0.09892044216394424, -0.2911696434020996]]}, {"image_id": "162.jpg", "category_id": 1, "keypoints": [1232.1536865234375, 539.9151000976562, 0.9749480485916138, 1219.1121826171875, 572.31787109375, 0.9820775985717773, 1263.5528564453125, 572.6292114257812, 0.9854870438575745, 1233.2540283203125, 501.6744384765625, 0.9798021912574768, 1140.5201416015625, 669.15966796875, 0.9681284427642822, 1291.7208251953125, 705.2481079101562, 0.9651869535446167, 1205.693359375, 472.580322265625, 0.9896470904350281, 1226.031494140625, 805.3564453125, 0.9278281927108765, 1330.62744140625, 839.3773803710938, 0.897225022315979, 1189.4501953125, 469.928955078125, 0.9860525727272034, 1187.2177734375, 825.04150390625, 0.8361419439315796, 1317.367431640625, 872.77001953125, 0.8901913166046143, 1150.3509521484375, 413.108154296875, 0.9899584054946899, 1152.5145263671875, 433.19683837890625, 0.9905110597610474, 1186.626953125, 429.72308349609375, 0.9878329038619995, 1124.3603515625, 409.01251220703125, 0.9702770113945007, 1135.2164306640625, 429.19525146484375, 0.9755248427391052, 1196.1719970703125, 424.70928955078125, 0.9715285897254944, 1122.693115234375, 435.22601318359375, 0.9502549171447754, 1200.3670654296875, 517.6852416992188, 0.9693472385406494, 1043.47216796875, 360.6294860839844, 0.9596624374389648, 1117.9449462890625, 531.3778076171875, 0.91683429479599, 1019.954345703125, 339.5750732421875, 0.9440639019012451, 1102.00830078125, 532.1666870117188, 0.8760477304458618, 1098.287109375, 356.414306640625, 0.9122794270515442, 999.7377319335938, 328.94989013671875, 0.8752508759498596, 1091.9188232421875, 534.0505981445312, 0.8234384059906006, 1199.8348388671875, 826.6248168945312, 0.9392041563987732, 1305.9764404296875, 880.1346435546875, 0.844582200050354], "score": 3.0953712463378906, "box": [1083.8485107421875, 340.82098388671875, 305.71533203125, 558.901611328125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03898791968822479, 0.07951633632183075, -0.07158966362476349], [0.07269036769866943, 0.0847012996673584, 0.003631141036748886], [-0.0028835302218794823, -0.10477748513221741, 0.016365524381399155], [-0.22181682288646698, 0.33473795652389526, 0.16516467928886414], [0.11855088174343109, 0.39776065945625305, -0.24060063064098358], [-0.07222643494606018, -0.18660667538642883, 0.08841969072818756], [-0.003722940105944872, 0.6852051019668579, 0.11171402037143707], [0.18373508751392365, 0.7156745195388794, -0.5005525350570679], [-0.11428482085466385, -0.19485989212989807, 0.1236468255519867], [-0.07480931282043457, 0.7363126277923584, 0.21435444056987762], [0.1569061130285263, 0.8199359178543091, -0.4193114638328552], [-0.21334537863731384, -0.37725523114204407, 0.16840329766273499], [-0.2106282114982605, -0.29358580708503723, 0.08409754931926727], [-0.11518573760986328, -0.31770846247673035, 0.19809509813785553], [-0.2863723337650299, -0.3908613622188568, 0.20490321516990662], [-0.2682330906391144, -0.30302128195762634, 0.013937767595052719], [-0.08214650303125381, -0.3347789943218231, 0.2865452468395233], [-0.32470598816871643, -0.2732755243778229, -0.24951587617397308], [-0.06426072865724564, -0.08189785480499268, 0.35975953936576843], [-0.5038279891014099, -0.4471185505390167, -0.19476105272769928], [-0.29801952838897705, -0.042317718267440796, 0.4754069447517395], [-0.5648946762084961, -0.5034335851669312, -0.1771007478237152], [-0.38198089599609375, -0.03815777599811554, 0.4628308415412903]]}, {"image_id": "163.jpg", "category_id": 1, "keypoints": [1045.610595703125, 474.74676513671875, 0.9767663478851318, 1070.36181640625, 500.61083984375, 0.9918513894081116, 1032.3243408203125, 508.96881103515625, 0.9906886219978333, 1038.1822509765625, 437.4706115722656, 0.9947619438171387, 1026.5687255859375, 629.2254638671875, 0.9666226506233215, 1055.680419921875, 642.0023803710938, 0.9692900776863098, 1028.63671875, 400.5536804199219, 0.988244354724884, 1002.175048828125, 761.5908813476562, 0.9236060380935669, 1102.039794921875, 744.3350830078125, 0.9104946851730347, 1025.96240234375, 390.31549072265625, 0.9827804565429688, 994.9317016601562, 787.9249267578125, 0.8168182969093323, 1103.26318359375, 777.712158203125, 0.9353959560394287, 996.5986328125, 324.55572509765625, 0.9861429929733276, 1033.0487060546875, 340.8841552734375, 0.9904211759567261, 982.2203369140625, 361.82562255859375, 0.9884213209152222, 997.5164184570312, 306.3304443359375, 0.9542317986488342, 1055.384765625, 325.27386474609375, 0.9616933465003967, 953.4002075195312, 375.31793212890625, 0.9821828603744507, 1107.348876953125, 302.25634765625, 0.9540339112281799, 994.9981079101562, 461.1904296875, 0.9617769122123718, 1039.3179931640625, 298.5445556640625, 0.8685178756713867, 1065.4478759765625, 499.1711120605469, 0.9540095329284668, 1017.14990234375, 294.1944580078125, 0.9561713933944702, 1094.0648193359375, 509.3388977050781, 0.9426206946372986, 968.4301147460938, 229.24212646484375, 0.9559047222137451, 986.4235229492188, 294.747314453125, 0.8860958814620972, 1122.446533203125, 518.0411376953125, 0.8822306394577026, 985.3034057617188, 784.8985595703125, 0.8429965972900391, 1097.159912109375, 783.2310791015625, 0.9319783449172974], "score": 3.156613349914551, "box": [927.30029296875, 210.86129760742188, 259.9864501953125, 621.7475280761719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0842004269361496, 0.07379952073097229, 0.007741916924715042], [-0.042122144252061844, 0.09208092093467712, 0.04311329498887062], [-0.018435301259160042, -0.10493186116218567, -0.0007221996784210205], [-0.03655465319752693, 0.4184495210647583, -0.09879288077354431], [0.03211361542344093, 0.46762216091156006, 0.10079768300056458], [-0.04978548362851143, -0.20427140593528748, -0.08279495686292648], [-0.10807927697896957, 0.8113405704498291, -0.06656907498836517], [0.18546348810195923, 0.8003133535385132, 0.26233506202697754], [-0.05750511959195137, -0.22773274779319763, -0.13330507278442383], [-0.13524793088436127, 0.8982065916061401, -0.1629934459924698], [0.18974339962005615, 0.9322233200073242, 0.24981240928173065], [-0.14209488034248352, -0.4076794683933258, -0.20610393583774567], [-0.03836354985833168, -0.3659779131412506, -0.16443100571632385], [-0.1763441264629364, -0.30268511176109314, -0.1613040417432785], [-0.14032402634620667, -0.45448818802833557, -0.2752251625061035], [0.028678353875875473, -0.4106508195400238, -0.20916466414928436], [-0.2563088834285736, -0.25847700238227844, -0.19412526488304138], [0.20487147569656372, -0.47839775681495667, -0.3904244899749756], [-0.1439969688653946, -0.03628505766391754, -0.2471681535243988], [-0.006198484916239977, -0.4793822467327118, -0.5205058455467224], [0.07934092730283737, 0.08484260737895966, -0.269604355096817], [-0.08746346831321716, -0.4941813051700592, -0.5340632796287537], [0.15798982977867126, 0.11279565840959549, -0.2699277400970459]]}, {"image_id": "163.jpg", "category_id": 1, "keypoints": [1232.9371337890625, 542.1944580078125, 0.9722214937210083, 1214.72607421875, 574.1285400390625, 0.9862572550773621, 1257.1783447265625, 574.7071533203125, 0.9835501909255981, 1236.2681884765625, 504.36175537109375, 0.9842296838760376, 1144.71142578125, 672.8292846679688, 0.96922367811203, 1270.2105712890625, 701.1994018554688, 0.9786616563796997, 1212.7215576171875, 473.9709777832031, 0.9786810278892517, 1221.8568115234375, 803.8156127929688, 0.9323174953460693, 1290.646240234375, 833.8555297851562, 0.8849994540214539, 1199.4422607421875, 469.7958984375, 0.9815872311592102, 1190.778076171875, 825.3392333984375, 0.8993405699729919, 1280.2708740234375, 877.0137939453125, 0.9271382689476013, 1168.87353515625, 410.795166015625, 0.991951584815979, 1168.503173828125, 431.77459716796875, 0.98614901304245, 1202.8828125, 430.0179138183594, 0.9848959445953369, 1144.452392578125, 408.022216796875, 0.9662106037139893, 1149.5150146484375, 427.8883056640625, 0.9681857824325562, 1215.2213134765625, 424.03485107421875, 0.9557398557662964, 1105.2801513671875, 425.4264831542969, 0.9559344053268433, 1212.9622802734375, 515.5498657226562, 0.9746825695037842, 1054.5418701171875, 378.0096435546875, 0.9052978157997131, 1131.4893798828125, 529.505859375, 0.9151521921157837, 1051.913818359375, 362.53369140625, 0.9408351182937622, 1112.5999755859375, 527.6486206054688, 0.7304733991622925, 1118.94140625, 351.0162048339844, 0.8753089308738708, 1036.4344482421875, 362.453125, 0.8983330726623535, 1084.449462890625, 519.6484375, 0.7782192230224609, 1199.661376953125, 830.3709716796875, 0.9131624102592468, 1262.05419921875, 888.5343017578125, 0.8750195503234863], "score": 2.9926514625549316, "box": [1085.3743896484375, 350.6980285644531, 230.9483642578125, 527.4319763183594], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.049936361610889435, 0.07886390388011932, -0.063051238656044], [0.06357647478580475, 0.09010811895132065, 0.005671665072441101], [0.007988959550857544, -0.10408663749694824, 0.009201917797327042], [-0.24052463471889496, 0.3735309839248657, 0.10718225687742233], [0.07077009975910187, 0.4133237898349762, -0.22332581877708435], [-0.053389497101306915, -0.1938067078590393, 0.07815558463335037], [-0.037601761519908905, 0.72332763671875, 0.03238406777381897], [0.0988977700471878, 0.7567378282546997, -0.4469044804573059], [-0.08760420978069305, -0.206872820854187, 0.1190233901143074], [-0.11948884278535843, 0.7936685085296631, 0.11123581975698471], [0.08994092047214508, 0.8534092903137207, -0.3552384376525879], [-0.16711397469043732, -0.3995795249938965, 0.1458011269569397], [-0.17275872826576233, -0.30937081575393677, 0.07037293165922165], [-0.0761198028922081, -0.33416348695755005, 0.1810774803161621], [-0.23701290786266327, -0.4100555181503296, 0.18856337666511536], [-0.233334019780159, -0.3178575038909912, 0.0036202743649482727], [-0.03488845378160477, -0.35390400886535645, 0.26460301876068115], [-0.39629608392715454, -0.3168013095855713, -0.20898476243019104], [-0.03706521540880203, -0.09676548838615417, 0.30716055631637573], [-0.5416741371154785, -0.4664950370788574, -0.0666816458106041], [-0.25940167903900146, -0.05772292613983154, 0.4377628564834595], [-0.5514658689498901, -0.5367271304130554, -0.02163299173116684], [-0.32162734866142273, -0.06443676352500916, 0.4938480854034424]]}, {"image_id": "164.jpg", "category_id": 1, "keypoints": [1044.3345947265625, 480.0816345214844, 0.9766200184822083, 1071.986328125, 506.40228271484375, 0.9923340082168579, 1029.22216796875, 515.58251953125, 0.9922990202903748, 1034.896728515625, 444.5046691894531, 0.993222177028656, 1071.002197265625, 646.1925048828125, 0.9915160536766052, 1030.0926513671875, 632.3717651367188, 0.9784039855003357, 1026.255615234375, 405.27490234375, 0.9878338575363159, 1078.6279296875, 746.3174438476562, 0.9516376256942749, 1015.2669067382812, 743.18212890625, 0.8905626535415649, 1025.617919921875, 393.018798828125, 0.9850763082504272, 1099.50537109375, 767.9486083984375, 0.9279839992523193, 1008.2391967773438, 782.4110717773438, 0.8785626292228699, 996.9495239257812, 324.40582275390625, 0.9866970777511597, 1031.685302734375, 343.77239990234375, 0.9911301136016846, 981.8243408203125, 363.75421142578125, 0.9898590445518494, 999.7598876953125, 307.039794921875, 0.9501206278800964, 1054.807861328125, 326.17181396484375, 0.9737337827682495, 955.06494140625, 375.65472412109375, 0.9804452657699585, 1112.5469970703125, 293.487548828125, 0.9615813493728638, 1002.1371459960938, 459.4366149902344, 0.9543701410293579, 1041.3262939453125, 304.05767822265625, 0.9201474189758301, 1071.9814453125, 498.22808837890625, 0.9521915912628174, 1016.8213500976562, 300.8514404296875, 0.9587918519973755, 1100.547119140625, 508.3943786621094, 0.9231343269348145, 974.4224853515625, 229.57144165039062, 0.951454758644104, 983.314208984375, 296.95489501953125, 0.8637471199035645, 1129.6307373046875, 519.4737548828125, 0.8968696594238281, 1090.7747802734375, 768.8681030273438, 0.9334022998809814, 1016.888427734375, 785.4495849609375, 0.8775395154953003], "score": 3.1692118644714355, "box": [930.0782470703125, 209.9014434814453, 254.2403564453125, 626.4259490966797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08219488710165024, 0.0729859471321106, 0.024608813226222992], [-0.04629319906234741, 0.10028613358736038, 0.002873428165912628], [-0.02720510959625244, -0.10266757011413574, 0.014244969934225082], [0.07242691516876221, 0.45103439688682556, -0.019407957792282104], [-0.04694615304470062, 0.4590578079223633, -0.1437447965145111], [-0.05246554687619209, -0.20998620986938477, -0.05973004922270775], [0.10574198514223099, 0.81463623046875, 0.14768803119659424], [-0.08659970760345459, 0.7979940176010132, 0.06748557090759277], [-0.05362837761640549, -0.23777207732200623, -0.10888029634952545], [0.19754745066165924, 0.9093021750450134, 0.13104471564292908], [-0.10977035015821457, 0.9189614057540894, 0.017436739057302475], [-0.13607743382453918, -0.4253862500190735, -0.16521582007408142], [-0.03860825300216675, -0.38066256046295166, -0.11185571551322937], [-0.17085032165050507, -0.31242138147354126, -0.1465042382478714], [-0.12370093166828156, -0.4604871869087219, -0.2398618757724762], [0.03393974155187607, -0.435011625289917, -0.1307220607995987], [-0.24594388902187347, -0.27476245164871216, -0.19610172510147095], [0.22377553582191467, -0.5345684885978699, -0.2816620469093323], [-0.12289555370807648, -0.056917399168014526, -0.24579957127571106], [-0.004724917002022266, -0.49414145946502686, -0.3706606924533844], [0.09852603077888489, 0.06708270311355591, -0.27588868141174316], [-0.08666303753852844, -0.5060040354728699, -0.35649755597114563], [0.17607221007347107, 0.09507465362548828, -0.29065239429473877]]}, {"image_id": "164.jpg", "category_id": 1, "keypoints": [1232.4765625, 541.2601928710938, 0.9705038666725159, 1210.3590087890625, 569.5216674804688, 0.982189416885376, 1254.5723876953125, 574.1082153320312, 0.9836581349372864, 1238.038330078125, 503.4961242675781, 0.9853361248970032, 1145.3446044921875, 672.4293212890625, 0.9667888283729553, 1253.0447998046875, 715.50634765625, 0.9823211431503296, 1221.177734375, 470.6438903808594, 0.9842056632041931, 1220.9798583984375, 787.2702026367188, 0.8808024525642395, 1256.0458984375, 831.1248779296875, 0.8553198575973511, 1209.0323486328125, 464.7267150878906, 0.9830407500267029, 1194.9124755859375, 816.813232421875, 0.9042881727218628, 1245.7767333984375, 859.7249755859375, 0.8159294724464417, 1183.8077392578125, 400.1484375, 0.989318311214447, 1178.953369140625, 423.6016845703125, 0.9873059988021851, 1217.628173828125, 424.736328125, 0.9763715267181396, 1158.254638671875, 392.5947265625, 0.9787120223045349, 1156.7442626953125, 418.1776428222656, 0.9752931594848633, 1231.87158203125, 421.15447998046875, 0.9508602619171143, 1108.2626953125, 425.7145690917969, 0.9573422074317932, 1228.8707275390625, 511.7769775390625, 0.9567098021507263, 1049.7440185546875, 379.24530029296875, 0.859491229057312, 1140.8087158203125, 528.4381103515625, 0.8594740629196167, 1045.5391845703125, 361.9291076660156, 0.9213265180587769, 1112.69140625, 527.3765869140625, 0.6472519040107727, 1138.6907958984375, 331.8295593261719, 0.9406352043151855, 1029.776123046875, 334.4193420410156, 0.8654327392578125, 1101.4061279296875, 520.9873046875, 0.7313696146011353, 1201.6842041015625, 826.2410278320312, 0.9140305519104004, 1234.1114501953125, 865.7437744140625, 0.8849314451217651], "score": 3.092736005783081, "box": [1088.9998779296875, 339.6297302246094, 217.4669189453125, 552.8008117675781], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05866693705320358, 0.0766945332288742, -0.05989686772227287], [0.05781916156411171, 0.09515096992254257, 0.004829876124858856], [0.01571643352508545, -0.10402758419513702, 0.006908496841788292], [-0.24273866415023804, 0.39133983850479126, 0.08773186802864075], [0.03843142092227936, 0.4688792824745178, -0.13565340638160706], [-0.024633394554257393, -0.19896022975444794, 0.08305276930332184], [-0.06445310264825821, 0.6756377220153809, -0.15861468017101288], [0.024022487923502922, 0.8212124705314636, -0.3560374081134796], [-0.05601407214999199, -0.2172631174325943, 0.1244371086359024], [-0.11172207444906235, 0.7497058510780334, -0.056736815720796585], [0.013870087452232838, 0.8955708146095276, -0.24453815817832947], [-0.12060772627592087, -0.41587281227111816, 0.15758594870567322], [-0.1391109675168991, -0.3259442448616028, 0.08307132124900818], [-0.030925365164875984, -0.34443390369415283, 0.1850104033946991], [-0.1886427253484726, -0.43903517723083496, 0.19755566120147705], [-0.20820710062980652, -0.33920884132385254, 0.025696009397506714], [0.014818630181252956, -0.35748136043548584, 0.26758381724357605], [-0.37005534768104553, -0.30678820610046387, -0.18909479677677155], [0.011100699193775654, -0.09851415455341339, 0.316514790058136], [-0.5514894723892212, -0.45901548862457275, -0.09426391124725342], [-0.19849641621112823, -0.057564929127693176, 0.47070324420928955], [-0.568793535232544, -0.5361582040786743, -0.06433448195457458], [-0.25881510972976685, -0.06024573743343353, 0.5299791097640991]]}, {"image_id": "165.jpg", "category_id": 1, "keypoints": [1035.482666015625, 485.435302734375, 0.9789867997169495, 1061.5338134765625, 512.989501953125, 0.9930360317230225, 1018.6312866210938, 518.077392578125, 0.9915323257446289, 1026.7274169921875, 450.5370178222656, 0.9945650100708008, 1038.164794921875, 647.1699829101562, 0.9748202562332153, 1031.99560546875, 641.5377197265625, 0.9587909579277039, 1021.0012817382812, 409.1119384765625, 0.9901337027549744, 1010.8158569335938, 762.1553344726562, 0.9178344011306763, 1055.74658203125, 726.057373046875, 0.9322844743728638, 1022.109375, 395.17340087890625, 0.990464448928833, 1017.4577026367188, 790.7012329101562, 0.8269281387329102, 1051.5330810546875, 760.3878173828125, 0.9653913378715515, 998.4755859375, 323.5240173339844, 0.9845942854881287, 1031.343994140625, 346.426513671875, 0.9901852607727051, 981.9736328125, 362.68353271484375, 0.9909821152687073, 1004.0606689453125, 303.134765625, 0.9410200119018555, 1058.8782958984375, 332.64361572265625, 0.9614132046699524, 957.630126953125, 373.59918212890625, 0.9796111583709717, 1116.390869140625, 303.2079772949219, 0.9647806286811829, 1006.6358032226562, 460.8507385253906, 0.9604663252830505, 1048.847412109375, 310.72271728515625, 0.9630627632141113, 1086.1376953125, 495.6523132324219, 0.949945330619812, 1024.3961181640625, 303.25885009765625, 0.952605128288269, 1117.8309326171875, 500.26983642578125, 0.8780565857887268, 971.6819458007812, 223.8695068359375, 0.9582165479660034, 993.9490966796875, 292.95526123046875, 0.874367356300354, 1150.9085693359375, 499.2854309082031, 0.8870657682418823, 999.51025390625, 790.993896484375, 0.8435852527618408, 1052.615234375, 769.6531982421875, 0.9553503394126892], "score": 3.1770832538604736, "box": [935.64697265625, 211.3809356689453, 258.0787353515625, 624.0286102294922], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.08074023574590683, 0.07598443329334259, 0.02026030793786049], [-0.05049615353345871, 0.09714274853467941, 0.01532042771577835], [-0.020175158977508545, -0.10476890206336975, 0.009846590459346771], [0.006647410802543163, 0.44485658407211304, -0.03904196247458458], [-0.00806643906980753, 0.47767484188079834, 0.07714089751243591], [-0.04288957640528679, -0.21796613931655884, -0.05618672072887421], [-0.07833647727966309, 0.819197416305542, 0.08006519079208374], [0.07513733208179474, 0.759880542755127, 0.350617378950119], [-0.03805423155426979, -0.2510577142238617, -0.10176552832126617], [-0.057540442794561386, 0.9084577560424805, -0.016212325543165207], [0.05833331495523453, 0.8785622119903564, 0.29311445355415344], [-0.10694955289363861, -0.44776955246925354, -0.14371167123317719], [-0.016102967783808708, -0.39244356751441956, -0.08860450983047485], [-0.1482624113559723, -0.33559295535087585, -0.1394546627998352], [-0.09105131030082703, -0.5043290853500366, -0.20301131904125214], [0.06602437794208527, -0.4340225160121918, -0.07956738770008087], [-0.21643352508544922, -0.2979399263858795, -0.1979326605796814], [0.29544857144355774, -0.5485460758209229, -0.13592001795768738], [-0.09399403631687164, -0.07773575186729431, -0.23940272629261017], [0.08782084286212921, -0.5158668756484985, -0.26895397901535034], [0.135729119181633, 0.034018874168395996, -0.2272683084011078], [0.007613423280417919, -0.5405827760696411, -0.266196072101593], [0.21604201197624207, 0.04441574215888977, -0.24851427972316742]]}, {"image_id": "165.jpg", "category_id": 1, "keypoints": [1223.1104736328125, 542.9337158203125, 0.968226969242096, 1197.678955078125, 569.8317260742188, 0.9846593737602234, 1245.9613037109375, 576.36962890625, 0.9776670336723328, 1229.586181640625, 504.4097900390625, 0.9817888736724854, 1166.6710205078125, 681.8302612304688, 0.9848893880844116, 1232.4281005859375, 705.71875, 0.9822503328323364, 1218.83984375, 468.85968017578125, 0.9830719232559204, 1196.4736328125, 814.309814453125, 0.962863564491272, 1204.8719482421875, 813.0494384765625, 0.8443741798400879, 1208.8115234375, 461.4167785644531, 0.9821407794952393, 1186.654296875, 834.9039916992188, 0.94162517786026, 1194.897705078125, 850.56884765625, 0.8358676433563232, 1188.8902587890625, 396.720703125, 0.9884426593780518, 1178.436279296875, 421.25250244140625, 0.9882375001907349, 1222.2474365234375, 421.827392578125, 0.9785158634185791, 1166.595703125, 388.506591796875, 0.9745389819145203, 1157.4515380859375, 415.5689392089844, 0.9721317291259766, 1241.4859619140625, 418.2573547363281, 0.945686936378479, 1105.079833984375, 429.62457275390625, 0.9483059644699097, 1256.6160888671875, 494.1302185058594, 0.9465736746788025, 1062.788330078125, 408.5671081542969, 0.9128442406654358, 1221.6767578125, 541.217529296875, 0.9651350975036621, 1053.18798828125, 398.8720703125, 0.8577141761779785, 1190.6307373046875, 526.4703369140625, 0.8742181062698364, 1152.95751953125, 322.7898254394531, 0.9254744648933411, 1060.56787109375, 414.72528076171875, 0.8846569657325745, 1129.78076171875, 512.9902954101562, 0.8383322954177856, 1196.3546142578125, 839.6536865234375, 0.9222017526626587, 1193.4398193359375, 863.69091796875, 0.8284916281700134], "score": 3.059051513671875, "box": [1097.1494140625, 338.5256042480469, 201.509765625, 550.0700988769531], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06925243139266968, 0.07726418972015381, -0.04770719259977341], [0.05766700580716133, 0.09593411535024643, -0.004632258787751198], [0.01731662079691887, -0.1047259122133255, 0.002676902338862419], [-0.14926864206790924, 0.42318323254585266, 0.12435391545295715], [0.0034745018929243088, 0.4669027328491211, -0.14718925952911377], [-0.0067850518971681595, -0.20902837812900543, 0.07383956015110016], [-0.05827778950333595, 0.8312138319015503, 0.11206068098545074], [-0.10006458312273026, 0.7294535636901855, -0.45529377460479736], [-0.03098626248538494, -0.23135720193386078, 0.11839243769645691], [-0.07512630522251129, 0.899621307849884, 0.2273784875869751], [-0.11588367819786072, 0.8289634585380554, -0.3653162121772766], [-0.08450153470039368, -0.43674755096435547, 0.12882238626480103], [-0.11477300524711609, -0.33786100149154663, 0.07035112380981445], [0.005602443590760231, -0.3650846481323242, 0.15696610510349274], [-0.14213545620441437, -0.46246445178985596, 0.18171587586402893], [-0.18362931907176971, -0.3526684045791626, 0.012347649782896042], [0.06336836516857147, -0.37775540351867676, 0.23237383365631104], [-0.3601750433444977, -0.2999621629714966, -0.18786361813545227], [0.12169121205806732, -0.13372327387332916, 0.31722137331962585], [-0.5560082793235779, -0.4060988426208496, -0.06095380708575249], [0.007775029167532921, 0.041232988238334656, 0.4798819422721863], [-0.6158127784729004, -0.4655366539955139, -0.07187925279140472], [-0.05470442771911621, 0.009344860911369324, 0.5281074643135071]]}, {"image_id": "166.jpg", "category_id": 1, "keypoints": [1031.2667236328125, 490.42626953125, 0.9830186367034912, 1060.0548095703125, 519.1240234375, 0.9911327362060547, 1016.5764770507812, 526.0751342773438, 0.9897071123123169, 1023.2296752929688, 455.66961669921875, 0.9938957691192627, 1073.171875, 654.8819580078125, 0.9773955941200256, 1029.1239013671875, 639.7811279296875, 0.9762876033782959, 1021.9010009765625, 413.06622314453125, 0.9901131987571716, 1085.464599609375, 737.467041015625, 0.9691425561904907, 1009.9326171875, 758.5299682617188, 0.9408118724822998, 1024.4964599609375, 397.4505310058594, 0.9920690059661865, 1101.15234375, 765.5709838867188, 0.9165332317352295, 1004.74609375, 783.8934326171875, 0.8602428436279297, 1002.802001953125, 323.0421142578125, 0.9820983409881592, 1034.770751953125, 349.62701416015625, 0.9914571642875671, 985.2028198242188, 362.24896240234375, 0.9898456931114197, 1008.9630126953125, 301.3586120605469, 0.9346615672111511, 1062.5177001953125, 335.6082458496094, 0.9676299095153809, 960.2546997070312, 370.00836181640625, 0.9819971323013306, 1122.82861328125, 301.10589599609375, 0.9708248376846313, 1011.0247802734375, 458.5694580078125, 0.9502638578414917, 1075.1439208984375, 322.45135498046875, 0.9717838764190674, 1101.2850341796875, 488.974853515625, 0.9635679125785828, 1056.40283203125, 315.5776062011719, 0.9597699046134949, 1131.56884765625, 491.1490478515625, 0.8974183797836304, 977.3277587890625, 218.97036743164062, 0.9484538435935974, 1018.802490234375, 306.61065673828125, 0.8852359056472778, 1166.7984619140625, 479.1629943847656, 0.876486599445343, 1086.7802734375, 770.9447631835938, 0.9285680055618286, 1008.474853515625, 788.09326171875, 0.8466822504997253], "score": 3.1843278408050537, "box": [936.16796875, 209.47837829589844, 262.03369140625, 631.8034820556641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07606364786624908, 0.07819981873035431, 0.02481289580464363], [-0.045001331716775894, 0.09719268232584, -0.023511897772550583], [-0.029328536242246628, -0.09786255657672882, 0.027012277394533157], [0.11560681462287903, 0.45814549922943115, 0.03249651938676834], [-0.008239088580012321, 0.4553368091583252, -0.16996291279792786], [-0.0341707207262516, -0.22183655202388763, -0.01869029924273491], [0.1723092645406723, 0.7946109175682068, 0.24507033824920654], [-0.05205708369612694, 0.768747091293335, 0.0773068219423294], [-0.02793760597705841, -0.2623503804206848, -0.056565072387456894], [0.2192339450120926, 0.8794741034507751, 0.15470992028713226], [-0.0713152289390564, 0.8471828103065491, -0.0276431106030941], [-0.07945512980222702, -0.462721049785614, -0.09731772541999817], [-0.001209039706736803, -0.40000295639038086, -0.03371194750070572], [-0.12615936994552612, -0.3539879322052002, -0.10356296598911285], [-0.06277739256620407, -0.5201594233512878, -0.15583831071853638], [0.07623649388551712, -0.44047385454177856, -0.006575310602784157], [-0.1911514848470688, -0.3300880193710327, -0.17048582434654236], [0.3009941279888153, -0.5666972994804382, -0.056414250284433365], [-0.0671042650938034, -0.11131216585636139, -0.2138010412454605], [0.12932349741458893, -0.48134922981262207, -0.21440169215202332], [0.17511726915836334, -0.029565468430519104, -0.21852505207061768], [0.050909414887428284, -0.5098512768745422, -0.21746708452701569], [0.257419228553772, -0.023441582918167114, -0.22936974465847015]]}, {"image_id": "166.jpg", "category_id": 1, "keypoints": [1219.9014892578125, 546.3529052734375, 0.9673084020614624, 1191.48779296875, 573.118408203125, 0.9840347766876221, 1240.200927734375, 579.3851928710938, 0.9752584099769592, 1227.514892578125, 507.47760009765625, 0.9849100112915039, 1168.2547607421875, 687.6707153320312, 0.9840021133422852, 1214.0780029296875, 702.5733642578125, 0.9832831025123596, 1224.44677734375, 473.202880859375, 0.9892808794975281, 1207.2529296875, 821.7098388671875, 0.9378853440284729, 1166.0167236328125, 794.45068359375, 0.8783208727836609, 1216.846435546875, 464.705078125, 0.9855784773826599, 1198.6251220703125, 856.6613159179688, 0.9300768971443176, 1150.4920654296875, 834.6668090820312, 0.8121987581253052, 1202.048095703125, 397.87615966796875, 0.9903832077980042, 1190.3302001953125, 422.45159912109375, 0.9858584403991699, 1234.2025146484375, 425.9749755859375, 0.9819521307945251, 1179.3958740234375, 386.2308349609375, 0.9751015901565552, 1171.264892578125, 412.7767028808594, 0.9733719229698181, 1253.268310546875, 422.5301513671875, 0.9510495066642761, 1119.3917236328125, 421.85699462890625, 0.9596491456031799, 1258.1619873046875, 470.4940185546875, 0.9188936948776245, 1058.8974609375, 384.892822265625, 0.9224331378936768, 1225.641357421875, 437.4327392578125, 0.8270208239555359, 1053.4560546875, 379.8897705078125, 0.8695740699768066, 1216.7882080078125, 417.42657470703125, 0.7197854518890381, 1165.758056640625, 323.08087158203125, 0.9273672699928284, 1062.2509765625, 371.24566650390625, 0.9259864687919617, 1220.531494140625, 396.9663391113281, 0.6011832356452942, 1180.416015625, 851.743896484375, 0.9202763438224792, 1142.5826416015625, 864.6487426757812, 0.8011804819107056], "score": 3.078160524368286, "box": [1105.7587890625, 338.76470947265625, 185.19189453125, 538.2159423828125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07797792553901672, 0.07502323389053345, -0.04065464809536934], [0.054477620869874954, 0.09852276742458344, -0.013994833454489708], [0.02089052088558674, -0.10555016994476318, 0.0024805162101984024], [-0.13423413038253784, 0.4295732080936432, 0.13202731311321259], [-0.03889711573719978, 0.4691428244113922, -0.14862236380577087], [0.018893370404839516, -0.2117612659931183, 0.0754646360874176], [-0.02629135549068451, 0.8244479894638062, 0.02161373570561409], [-0.19155573844909668, 0.6782454252243042, -0.4839946925640106], [0.0008165913168340921, -0.23830455541610718, 0.12137265503406525], [-0.0449410006403923, 0.9367822408676147, 0.0969391018152237], [-0.24036458134651184, 0.8058018684387207, -0.480262815952301], [-0.03717351332306862, -0.4494815766811371, 0.11401960253715515], [-0.07754092663526535, -0.34754660725593567, 0.06559315323829651], [0.04924624413251877, -0.37333944439888, 0.146343395113945], [-0.09700882434844971, -0.48473820090293884, 0.1583412140607834], [-0.1388782262802124, -0.3729951083660126, 0.0019430480897426605], [0.10869358479976654, -0.38592371344566345, 0.2214704006910324], [-0.3148195445537567, -0.33502712845802307, -0.2068561464548111], [0.14966145157814026, -0.20018306374549866, 0.4110219180583954], [-0.5233773589134216, -0.4688437879085541, -0.12906529009342194], [0.08071616291999817, -0.3039383590221405, 0.6484417915344238], [-0.586088240146637, -0.5247588157653809, -0.14770513772964478], [0.05777829885482788, -0.3694579303264618, 0.6996126174926758]]}, {"image_id": "167.jpg", "category_id": 1, "keypoints": [1031.7230224609375, 492.0252990722656, 0.98515784740448, 1057.3526611328125, 520.3793334960938, 0.9909278154373169, 1016.823974609375, 527.9292602539062, 0.9935393929481506, 1023.2802124023438, 455.23907470703125, 0.993935763835907, 1077.6014404296875, 658.08447265625, 0.9850804805755615, 1027.8802490234375, 649.3440551757812, 0.9836381673812866, 1023.5288696289062, 412.3247985839844, 0.9858136177062988, 1087.781982421875, 757.11181640625, 0.9805009365081787, 1007.0014038085938, 763.6790161132812, 0.9292635917663574, 1027.3656005859375, 396.5087585449219, 0.9909141063690186, 1103.220703125, 774.5244140625, 0.9435008764266968, 995.8976440429688, 794.2415771484375, 0.8494133353233337, 1004.533203125, 322.27520751953125, 0.984576940536499, 1034.75244140625, 350.2940673828125, 0.9912527799606323, 988.5973510742188, 361.24591064453125, 0.989571750164032, 1011.607177734375, 299.23284912109375, 0.9300056099891663, 1059.9320068359375, 334.91668701171875, 0.9739423990249634, 964.3670654296875, 367.36041259765625, 0.9848016500473022, 1123.010009765625, 283.7845458984375, 0.9584592580795288, 1013.974853515625, 456.3150329589844, 0.9529544115066528, 1075.5980224609375, 313.60784912109375, 0.9570432305335999, 1109.43798828125, 483.8747253417969, 0.9726632833480835, 1061.0888671875, 309.926513671875, 0.9532411694526672, 1139.7333984375, 488.2480163574219, 0.8840277791023254, 983.5205078125, 214.90411376953125, 0.9573495984077454, 1026.2254638671875, 298.5205078125, 0.8953431248664856, 1173.2508544921875, 484.077392578125, 0.9111941456794739, 1089.3480224609375, 781.778076171875, 0.936341404914856, 995.3497314453125, 798.02392578125, 0.8901238441467285], "score": 3.1878504753112793, "box": [945.2725830078125, 214.30908203125, 260.1826171875, 629.4027099609375], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06952172517776489, 0.07905629277229309, 0.0369805246591568], [-0.044731371104717255, 0.09653355926275253, -0.025229565799236298], [-0.02890903502702713, -0.09904661774635315, 0.019094757735729218], [0.1259615421295166, 0.45729860663414, 0.022678997367620468], [-0.010678025893867016, 0.4808931052684784, -0.07548610866069794], [-0.022080454975366592, -0.22307580709457397, -0.023976784199476242], [0.16879621148109436, 0.8126621246337891, 0.20629951357841492], [-0.06427796930074692, 0.8095976114273071, 0.14929288625717163], [-0.010714887641370296, -0.2633008360862732, -0.06034824624657631], [0.22172978520393372, 0.8698234558105469, 0.09935540705919266], [-0.09772995859384537, 0.890283465385437, 0.05014912039041519], [-0.07714202255010605, -0.46178922057151794, -0.07531407475471497], [0.0017638327553868294, -0.3969186842441559, -0.016128163784742355], [-0.11309446394443512, -0.3524664342403412, -0.1003536805510521], [-0.05363643914461136, -0.5173631906509399, -0.13297754526138306], [0.07000626623630524, -0.44052883982658386, 0.025122221559286118], [-0.17781966924667358, -0.3286280333995819, -0.1665802299976349], [0.27383100986480713, -0.6048810482025146, 0.0035221371799707413], [-0.055963724851608276, -0.10779610276222229, -0.2061702311038971], [0.10725300014019012, -0.49279317259788513, -0.14257043600082397], [0.18969331681728363, -0.0367143452167511, -0.21117055416107178], [0.02663026750087738, -0.5133823156356812, -0.14097321033477783], [0.2716035842895508, -0.02473224699497223, -0.2174089550971985]]}, {"image_id": "167.jpg", "category_id": 1, "keypoints": [1215.5462646484375, 556.6416625976562, 0.974063515663147, 1187.3961181640625, 588.68505859375, 0.9896026849746704, 1226.2255859375, 595.5797729492188, 0.9870686531066895, 1231.5517578125, 516.015380859375, 0.9892479181289673, 1168.1705322265625, 717.883056640625, 0.9804539084434509, 1185.083740234375, 713.7068481445312, 0.9740797281265259, 1231.650634765625, 479.33404541015625, 0.9899442195892334, 1186.537353515625, 846.5330200195312, 0.9195492267608643, 1129.070068359375, 811.48974609375, 0.753619909286499, 1222.1796875, 468.885498046875, 0.9885052442550659, 1182.2647705078125, 896.6954345703125, 0.8208357691764832, 1108.8670654296875, 887.3428344726562, 0.8132814168930054, 1212.140380859375, 395.75579833984375, 0.9909837245941162, 1199.753662109375, 421.6410827636719, 0.9875186681747437, 1242.094970703125, 426.49517822265625, 0.9850619435310364, 1188.88916015625, 382.9080810546875, 0.9785851240158081, 1178.5135498046875, 410.6191711425781, 0.9722198247909546, 1260.534912109375, 422.326171875, 0.9379152059555054, 1115.996337890625, 409.3705139160156, 0.9566182494163513, 1258.2872314453125, 471.8166809082031, 0.9257943630218506, 1049.4107666015625, 353.4375915527344, 0.9291815757751465, 1208.763427734375, 426.54150390625, 0.8566865921020508, 1046.1536865234375, 336.9226379394531, 0.935603141784668, 1206.42822265625, 412.5741271972656, 0.7234787940979004, 1174.8126220703125, 321.2828063964844, 0.9385252594947815, 1029.794677734375, 304.5713195800781, 0.8628288507461548, 1210.026123046875, 399.02801513671875, 0.5933948159217834, 1173.7008056640625, 892.53369140625, 0.8560231328010559, 1107.46923828125, 900.2972412109375, 0.82081538438797], "score": 2.7654922008514404, "box": [1092.82958984375, 341.34710693359375, 197.9200439453125, 530.756591796875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.08603870123624802, 0.06684507429599762, -0.03913820534944534], [0.041698139160871506, 0.10555901378393173, -0.00623089075088501], [0.0346851572394371, -0.10268406569957733, -0.0031411685049533844], [-0.1271451711654663, 0.43243592977523804, 0.10771390795707703], [-0.09663186222314835, 0.4658007025718689, -0.12296343594789505], [0.04138025641441345, -0.2168952077627182, 0.05782955884933472], [-0.08267316967248917, 0.8214747309684753, -0.049239516258239746], [-0.2681044936180115, 0.6979252696037292, -0.43037956953048706], [0.01763742044568062, -0.24867306649684906, 0.09798955172300339], [-0.08575387299060822, 0.9382438063621521, 0.021182000637054443], [-0.2860262393951416, 0.7973472476005554, -0.3384875953197479], [0.006627480033785105, -0.46165287494659424, 0.06829370558261871], [-0.044208675622940063, -0.3606375455856323, 0.027127675712108612], [0.08160967379808426, -0.37933433055877686, 0.11352607607841492], [-0.06074099987745285, -0.501636266708374, 0.09350134432315826], [-0.10911913216114044, -0.38873034715652466, -0.03255411610007286], [0.13859696686267853, -0.3937060236930847, 0.1910632848739624], [-0.30173224210739136, -0.3825046420097351, -0.2277400642633438], [0.15507790446281433, -0.22945453226566315, 0.4012455642223358], [-0.49497348070144653, -0.5491745471954346, -0.18471962213516235], [0.04866892099380493, -0.3544238805770874, 0.6117550134658813], [-0.5121180415153503, -0.6309213638305664, -0.2057136744260788], [0.03624491021037102, -0.438360333442688, 0.6273319721221924]]}, {"image_id": "168.jpg", "category_id": 1, "keypoints": [1047.22607421875, 489.72821044921875, 0.9838473200798035, 1069.8648681640625, 516.4453735351562, 0.9923737049102783, 1035.4490966796875, 525.8428344726562, 0.9929048418998718, 1035.750732421875, 453.56671142578125, 0.9929192662239075, 1111.424072265625, 656.4818115234375, 0.9758882522583008, 1039.7799072265625, 652.7784423828125, 0.9845200181007385, 1031.69677734375, 410.8282470703125, 0.9890745282173157, 1120.27734375, 763.09521484375, 0.9735417366027832, 1019.8466796875, 757.8050537109375, 0.9323379993438721, 1033.052490234375, 394.4908447265625, 0.9924558997154236, 1154.80615234375, 787.3343505859375, 0.9262343645095825, 1001.8846435546875, 786.6627197265625, 0.9043196439743042, 1005.9916381835938, 324.8860778808594, 0.9854754209518433, 1035.5347900390625, 350.4449462890625, 0.9906709790229797, 993.7503051757812, 360.8924560546875, 0.9905462265014648, 1012.042724609375, 301.21392822265625, 0.9417688846588135, 1055.8363037109375, 334.99395751953125, 0.9732712507247925, 966.8851928710938, 367.84521484375, 0.9851868152618408, 1124.1475830078125, 279.24658203125, 0.9560890197753906, 1021.3460693359375, 455.387939453125, 0.956463098526001, 1082.5589599609375, 308.4829406738281, 0.9507911205291748, 1112.1424560546875, 479.82745361328125, 0.9712547659873962, 1062.3304443359375, 298.3658752441406, 0.9648464322090149, 1141.170654296875, 488.6140441894531, 0.8938805460929871, 988.172119140625, 215.4300537109375, 0.9577768445014954, 1026.498046875, 283.8314208984375, 0.9198378920555115, 1166.8868408203125, 481.1443176269531, 0.8544703722000122, 1130.045166015625, 791.6956787109375, 0.9383098483085632, 1004.2401733398438, 792.17822265625, 0.9202641844749451], "score": 3.1818718910217285, "box": [951.1514282226562, 208.36061096191406, 263.25665283203125, 635.3519134521484], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.07072481513023376, 0.07627581059932709, 0.038416869938373566], [-0.03906438127160072, 0.09732381254434586, -0.02819761447608471], [-0.03319016471505165, -0.09607814252376556, 0.018600568175315857], [0.17153584957122803, 0.4460909366607666, 0.0049071237444877625], [-0.026596076786518097, 0.4865037798881531, -0.06126875430345535], [-0.042408980429172516, -0.2208867222070694, -0.01680334284901619], [0.20932668447494507, 0.8189781308174133, 0.1542975753545761], [-0.08018835633993149, 0.8092561960220337, 0.17369432747364044], [-0.03934769704937935, -0.2652488350868225, -0.04836001247167587], [0.30367791652679443, 0.8828380703926086, 0.08768871426582336], [-0.13625627756118774, 0.8905210494995117, 0.08660410344600677], [-0.11934814602136612, -0.4567365050315857, -0.05711296945810318], [-0.0391138456761837, -0.39560389518737793, 0.0014792606234550476], [-0.14547640085220337, -0.34749549627304077, -0.08728070557117462], [-0.10283064842224121, -0.5207793116569519, -0.10771113634109497], [0.02018369361758232, -0.4427712559700012, 0.04933519661426544], [-0.20933957397937775, -0.316908597946167, -0.1494525521993637], [0.2242637574672699, -0.6091063618659973, 0.044192537665367126], [-0.07749976962804794, -0.10234357416629791, -0.19415196776390076], [0.06892824918031693, -0.4926493167877197, -0.11069793999195099], [0.16995124518871307, -0.035674914717674255, -0.19608718156814575], [-0.005077462177723646, -0.5290434956550598, -0.11725351959466934], [0.24163106083869934, -0.012812182307243347, -0.2301364690065384]]}, {"image_id": "168.jpg", "category_id": 1, "keypoints": [1209.357666015625, 542.08203125, 0.972041130065918, 1175.7022705078125, 568.9028930664062, 0.9890424609184265, 1224.0186767578125, 577.7925415039062, 0.9856405854225159, 1223.4189453125, 503.66497802734375, 0.9857454895973206, 1161.9263916015625, 696.852783203125, 0.9809333086013794, 1184.385009765625, 701.2296752929688, 0.9760293960571289, 1228.6087646484375, 468.67840576171875, 0.9893271923065186, 1188.02197265625, 841.132080078125, 0.9440574645996094, 1099.3580322265625, 802.3524169921875, 0.8067656755447388, 1221.7235107421875, 459.6492919921875, 0.9914291501045227, 1174.885986328125, 880.5517578125, 0.8698998093605042, 1080.6546630859375, 851.6766967773438, 0.8539906740188599, 1218.2291259765625, 391.2441711425781, 0.9907207489013672, 1198.7191162109375, 415.67669677734375, 0.9910379648208618, 1248.51123046875, 420.424560546875, 0.9843101501464844, 1197.232666015625, 379.1431579589844, 0.9826343655586243, 1177.3153076171875, 403.17498779296875, 0.9781613349914551, 1272.474853515625, 416.91314697265625, 0.9529192447662354, 1121.5235595703125, 406.171875, 0.9446282386779785, 1270.5084228515625, 458.457275390625, 0.978779673576355, 1052.4595947265625, 341.08856201171875, 0.9317821264266968, 1197.19287109375, 409.38446044921875, 0.928573489189148, 1043.4873046875, 329.0547180175781, 0.9621692895889282, 1191.88525390625, 394.4604187011719, 0.848130464553833, 1182.3133544921875, 317.610595703125, 0.9516001343727112, 1037.4949951171875, 312.5296325683594, 0.868912935256958, 1183.8040771484375, 381.7301940917969, 0.8780432343482971, 1151.7493896484375, 879.81787109375, 0.928020715713501, 1071.605712890625, 890.6458129882812, 0.8206491470336914], "score": 2.6296963691711426, "box": [1069.6878662109375, 333.0584716796875, 221.5958251953125, 542.4939575195312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.09336192905902863, 0.06604436039924622, -0.016742218285799026], [0.0384434312582016, 0.10228507220745087, -0.03066658042371273], [0.03096659854054451, -0.10397222638130188, -0.002834608778357506], [-0.12135158479213715, 0.4335003197193146, 0.12335380166769028], [-0.0898451954126358, 0.45990321040153503, -0.15980872511863708], [0.05364683270454407, -0.2117409110069275, 0.06588461250066757], [-0.05335359275341034, 0.839314341545105, 0.040915898978710175], [-0.31015220284461975, 0.6759925484657288, -0.44395819306373596], [0.038287125527858734, -0.23937323689460754, 0.11272501200437546], [-0.07611013203859329, 0.940414309501648, 0.12911507487297058], [-0.35523274540901184, 0.8015149831771851, -0.4160493314266205], [0.04008970037102699, -0.4528963267803192, 0.08484888076782227], [-0.024925222620368004, -0.35676196217536926, 0.052501484751701355], [0.11452464014291763, -0.3642682135105133, 0.11784211546182632], [-0.018374944105744362, -0.49144211411476135, 0.12802353501319885], [-0.09241272509098053, -0.3908262550830841, -0.0012734681367874146], [0.18620756268501282, -0.37666913866996765, 0.1828615367412567], [-0.2613801062107086, -0.3716653883457184, -0.2147313952445984], [0.2026837319135666, -0.21322360634803772, 0.39201655983924866], [-0.43075960874557495, -0.5414628982543945, -0.12045811861753464], [0.014851385727524757, -0.35270270705223083, 0.5179337859153748], [-0.4733803868293762, -0.6036642789840698, -0.07913520932197571], [-0.008423859253525734, -0.4283508360385895, 0.5518211126327515]]}, {"image_id": "169.jpg", "category_id": 1, "keypoints": [1049.9688720703125, 489.1417541503906, 0.9848463535308838, 1069.18701171875, 515.4595947265625, 0.9940746426582336, 1040.400390625, 528.3020629882812, 0.993730366230011, 1039.80419921875, 451.6875305175781, 0.9880919456481934, 1113.1385498046875, 675.621826171875, 0.965947151184082, 1039.7730712890625, 667.4021606445312, 0.9845905900001526, 1038.7435302734375, 405.21673583984375, 0.9873294830322266, 1105.9248046875, 779.0341796875, 0.9635228514671326, 1010.9774169921875, 764.021484375, 0.9065774083137512, 1039.8626708984375, 389.43511962890625, 0.9934868812561035, 1141.31640625, 797.9620971679688, 0.9362101554870605, 994.7112426757812, 785.2489013671875, 0.9327402114868164, 1012.6516723632812, 319.13995361328125, 0.9850046634674072, 1039.9908447265625, 343.84625244140625, 0.9863117933273315, 1004.4752807617188, 353.0451965332031, 0.9925271272659302, 1016.1178588867188, 296.1645202636719, 0.9536324143409729, 1056.1619873046875, 329.4413146972656, 0.9715111255645752, 978.4000854492188, 359.29278564453125, 0.9861401319503784, 1124.8111572265625, 274.66455078125, 0.9504556655883789, 1028.015869140625, 451.8489685058594, 0.9590485095977783, 1102.14501953125, 318.8062744140625, 0.9514284729957581, 1119.9490966796875, 476.5595703125, 0.9721432328224182, 1088.56103515625, 306.68988037109375, 0.9675055146217346, 1146.5634765625, 489.3221435546875, 0.917647659778595, 990.6185302734375, 213.35806274414062, 0.9538805484771729, 1040.2587890625, 278.46527099609375, 0.93317711353302, 1177.485107421875, 476.5238952636719, 0.8407018184661865, 1131.3232421875, 799.3160400390625, 0.9056933522224426, 1006.1608276367188, 788.448486328125, 0.9463102221488953], "score": 3.1632585525512695, "box": [949.304443359375, 207.1809844970703, 267.8614501953125, 634.0146942138672], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06527253985404968, 0.07138825953006744, 0.05155910551548004], [-0.0378994345664978, 0.09852402657270432, -0.019075516611337662], [-0.032227009534835815, -0.09666945040225983, 0.00443660281598568], [0.16634516417980194, 0.43897706270217896, 0.0568866953253746], [-0.039502982050180435, 0.4856296181678772, -0.013597892597317696], [-0.029434550553560257, -0.22194905579090118, -0.03199869394302368], [0.14767538011074066, 0.8115630745887756, 0.1962672919034958], [-0.12228501588106155, 0.7936506271362305, 0.22351141273975372], [-0.026845229789614677, -0.2634355425834656, -0.06664998829364777], [0.25353479385375977, 0.8653428554534912, 0.14174918830394745], [-0.18213464319705963, 0.8630771636962891, 0.1310526579618454], [-0.10264602303504944, -0.4541164040565491, -0.08087755739688873], [-0.02891519106924534, -0.3919166922569275, -0.01708977483212948], [-0.12721286714076996, -0.34616804122924805, -0.11266900599002838], [-0.09331592172384262, -0.5181483626365662, -0.13372433185577393], [0.023123541846871376, -0.4404107332229614, 0.035915784537792206], [-0.1873876005411148, -0.3223797082901001, -0.1797601729631424], [0.2249923050403595, -0.6026411652565002, 0.06261346489191055], [-0.07101523131132126, -0.1023368388414383, -0.22230572998523712], [0.13374818861484528, -0.42756152153015137, -0.08309841901063919], [0.1706877201795578, -0.027343496680259705, -0.21417780220508575], [0.07347501814365387, -0.4791155457496643, -0.10273171961307526], [0.23483571410179138, 0.005471393465995789, -0.25219833850860596]]}, {"image_id": "169.jpg", "category_id": 1, "keypoints": [1202.7001953125, 543.4537353515625, 0.9757192730903625, 1170.35595703125, 569.0252075195312, 0.9891241788864136, 1215.18408203125, 581.32080078125, 0.9882557988166809, 1216.531982421875, 505.42193603515625, 0.9898279905319214, 1155.682861328125, 686.4365844726562, 0.9778020977973938, 1163.9085693359375, 694.3114013671875, 0.9747606515884399, 1226.59375, 465.3213806152344, 0.9829389452934265, 1194.9190673828125, 806.163330078125, 0.9270714521408081, 1067.2681884765625, 799.1796875, 0.8646981120109558, 1221.07275390625, 453.2044677734375, 0.9870036840438843, 1182.0662841796875, 841.5819702148438, 0.919576108455658, 1048.1787109375, 840.8467407226562, 0.8669893741607666, 1225.539306640625, 378.1830749511719, 0.9920877814292908, 1210.9984130859375, 404.622802734375, 0.9873456358909607, 1248.7105712890625, 411.94189453125, 0.9877376556396484, 1201.1102294921875, 363.3675231933594, 0.9601932168006897, 1195.2652587890625, 388.31170654296875, 0.9791502952575684, 1275.685302734375, 408.85125732421875, 0.9391985535621643, 1117.0418701171875, 406.5955505371094, 0.9188189506530762, 1272.35302734375, 468.80413818359375, 0.9597018957138062, 1064.303466796875, 350.55316162109375, 0.8790556788444519, 1198.97900390625, 407.60528564453125, 0.8936747312545776, 1048.69873046875, 342.80328369140625, 0.9053508043289185, 1200.2589111328125, 384.18487548828125, 0.8621299266815186, 1137.686279296875, 289.7835998535156, 0.8750041127204895, 1023.2084350585938, 320.8255310058594, 0.9278491139411926, 1193.49658203125, 375.528564453125, 0.9068750143051147, 1165.3194580078125, 854.396728515625, 0.9442476034164429, 1031.3084716796875, 858.8029174804688, 0.8264492750167847], "score": 2.5401735305786133, "box": [1009.3995361328125, 303.56817626953125, 284.1368408203125, 586.92529296875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.09102419018745422, 0.06570036709308624, -0.024683892726898193], [0.0380663201212883, 0.1058981716632843, -0.007842307910323143], [0.03560931235551834, -0.10078594088554382, -0.011229806579649448], [-0.11709658801555634, 0.3993082046508789, 0.18449866771697998], [-0.13021229207515717, 0.4539364278316498, -0.11599111557006836], [0.0687994733452797, -0.22059321403503418, 0.024945808574557304], [0.01130307000130415, 0.7967137694358826, 0.14888271689414978], [-0.34912145137786865, 0.652592122554779, -0.4127495288848877], [0.05394750460982323, -0.2613562047481537, 0.06042369455099106], [-0.026215432211756706, 0.9165137410163879, 0.20036199688911438], [-0.4016430675983429, 0.77308189868927, -0.3787670135498047], [0.07450798898935318, -0.4641464948654175, -0.004789283499121666], [0.0132139278575778, -0.3651536703109741, -0.032377392053604126], [0.1339181363582611, -0.3825276494026184, 0.05910637229681015], [0.010484154336154461, -0.5063747763633728, 0.025386719033122063], [-0.03746999427676201, -0.40901046991348267, -0.0953255146741867], [0.20792435109615326, -0.393039345741272, 0.12043258547782898], [-0.25089967250823975, -0.35371577739715576, -0.25561147928237915], [0.21636255085468292, -0.1975313425064087, 0.2998313903808594], [-0.3915303349494934, -0.5177526473999023, -0.1163083016872406], [0.03009694255888462, -0.3633573651313782, 0.3902711868286133], [-0.4648396372795105, -0.556001603603363, -0.09444130957126617], [0.03617506101727486, -0.446685791015625, 0.4091203808784485]]}, {"image_id": "170.jpg", "category_id": 1, "keypoints": [1064.2669677734375, 498.0770263671875, 0.9884313344955444, 1084.1502685546875, 526.7109375, 0.9930179715156555, 1053.7652587890625, 533.1929931640625, 0.9932116866111755, 1052.5860595703125, 454.9624328613281, 0.9915924072265625, 1101.7462158203125, 680.3333740234375, 0.9760167598724365, 1050.327880859375, 662.06396484375, 0.9810894727706909, 1048.3251953125, 401.10614013671875, 0.9903585910797119, 1085.160888671875, 792.3433837890625, 0.959609866142273, 1036.15966796875, 777.2265014648438, 0.9408965110778809, 1047.5225830078125, 385.9241943359375, 0.9926252365112305, 1110.2098388671875, 807.5029296875, 0.9414413571357727, 998.3072509765625, 798.387451171875, 0.9286483526229858, 1020.3639526367188, 310.55804443359375, 0.985519289970398, 1043.783203125, 339.2989501953125, 0.9842674136161804, 1013.7769165039062, 342.85345458984375, 0.9928808212280273, 1022.014892578125, 289.87591552734375, 0.9606564044952393, 1054.9781494140625, 326.2149658203125, 0.9589433073997498, 990.380859375, 344.4515380859375, 0.9872646927833557, 1122.499755859375, 292.26953125, 0.953593909740448, 1031.2030029296875, 441.71002197265625, 0.9607772827148438, 1089.52734375, 311.0843505859375, 0.9649196863174438, 1119.3358154296875, 462.05120849609375, 0.9638225436210632, 1072.8284912109375, 298.9167785644531, 0.9710786938667297, 1147.91796875, 461.287353515625, 0.9285196661949158, 1000.5894165039062, 219.38677978515625, 0.9536769986152649, 1033.5582275390625, 272.4693603515625, 0.9289371371269226, 1202.3341064453125, 415.91436767578125, 0.9564253091812134, 1093.220947265625, 805.718994140625, 0.9309661984443665, 1004.707275390625, 796.832763671875, 0.926978349685669], "score": 3.1647448539733887, "box": [944.3402709960938, 213.11412048339844, 283.94757080078125, 632.3211822509766], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06896858662366867, 0.07452057301998138, 0.04202597588300705], [-0.04390052333474159, 0.09706856310367584, -0.014760571531951427], [-0.02757113240659237, -0.09763243794441223, 0.009287193417549133], [0.11315572261810303, 0.45478975772857666, 0.057524751871824265], [-0.05505577474832535, 0.4850214123725891, -0.041398920118808746], [-0.038558490574359894, -0.22185948491096497, -0.02674945443868637], [0.06550470739603043, 0.826770007610321, 0.19864177703857422], [-0.09328845143318176, 0.8436681032180786, 0.13125373423099518], [-0.04271477088332176, -0.2687698006629944, -0.05311534181237221], [0.17304810881614685, 0.8895373344421387, 0.15811769664287567], [-0.2023957371711731, 0.9007561206817627, 0.08814041316509247], [-0.1045982614159584, -0.46219009160995483, -0.08710514008998871], [-0.03813716769218445, -0.40113842487335205, -0.014848385006189346], [-0.1351136565208435, -0.35375064611434937, -0.1106562614440918], [-0.10033624619245529, -0.5249148607254028, -0.14182378351688385], [0.005327512510120869, -0.45381277799606323, 0.0414884015917778], [-0.1953265368938446, -0.3452339768409729, -0.18093125522136688], [0.23691874742507935, -0.5719119906425476, 0.07255789637565613], [-0.10103026777505875, -0.11583840847015381, -0.2354929894208908], [0.0971197560429573, -0.48298126459121704, -0.1098700761795044], [0.14675334095954895, -0.059050023555755615, -0.2247319519519806], [0.03115449845790863, -0.5313121676445007, -0.10733196139335632], [0.2263055145740509, -0.06160843372344971, -0.2066168189048767]]}, {"image_id": "170.jpg", "category_id": 1, "keypoints": [1202.759521484375, 538.09814453125, 0.9764053821563721, 1166.2652587890625, 558.4634399414062, 0.9890905022621155, 1214.4246826171875, 575.3941650390625, 0.9875595569610596, 1218.4375, 501.50103759765625, 0.9872457981109619, 1165.085693359375, 680.0830078125, 0.9812173843383789, 1157.045166015625, 698.505126953125, 0.9705749154090881, 1232.9486083984375, 462.0298156738281, 0.9854718446731567, 1193.2039794921875, 804.4749755859375, 0.9412584900856018, 1032.089599609375, 796.2391967773438, 0.8872847557067871, 1228.8040771484375, 450.6136474609375, 0.9853714108467102, 1175.7489013671875, 836.33544921875, 0.9315618276596069, 1015.3968505859375, 836.16943359375, 0.8182947039604187, 1234.3651123046875, 375.2051086425781, 0.9908006191253662, 1213.8614501953125, 400.289306640625, 0.9880586862564087, 1260.3829345703125, 410.01702880859375, 0.9820718765258789, 1211.83349609375, 362.5382385253906, 0.9777381420135498, 1192.550537109375, 381.48675537109375, 0.9765543341636658, 1287.837158203125, 406.45416259765625, 0.9482949376106262, 1104.035888671875, 395.5408020019531, 0.9559054970741272, 1279.8228759765625, 469.2403564453125, 0.9601141214370728, 1043.191162109375, 313.74078369140625, 0.9786556363105774, 1197.098388671875, 423.57867431640625, 0.9151290655136108, 1037.1448974609375, 284.3734436035156, 0.945945143699646, 1192.5400390625, 392.00250244140625, 0.860490083694458, 1166.8643798828125, 302.5415344238281, 0.9284864068031311, 1014.015869140625, 276.4862060546875, 0.8795384168624878, 1181.4208984375, 373.8885498046875, 0.8747990131378174, 1157.840087890625, 847.1411743164062, 0.9589574933052063, 1005.8831176757812, 849.2844848632812, 0.7460452914237976], "score": 2.5732882022857666, "box": [983.9796142578125, 304.93231201171875, 323.04248046875, 580.156494140625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.09927114844322205, 0.05778433382511139, -0.003046063706278801], [0.025859439745545387, 0.10627958923578262, -0.027503620833158493], [0.038998909294605255, -0.09951256215572357, -0.012338408268988132], [-0.08692482113838196, 0.38843637704849243, 0.21037405729293823], [-0.14481714367866516, 0.4474533200263977, -0.14945030212402344], [0.08416347205638885, -0.2114153355360031, 0.03433455526828766], [-0.0031318296678364277, 0.7859404683113098, 0.11136793345212936], [-0.4290432035923004, 0.6438103914260864, -0.3845958113670349], [0.07668338716030121, -0.24499066174030304, 0.07861702889204025], [-0.03615667670965195, 0.870708167552948, 0.21188364923000336], [-0.4798363745212555, 0.7681772112846375, -0.36565595865249634], [0.09487602859735489, -0.45543819665908813, 0.04358122497797012], [0.023762866854667664, -0.3637542128562927, 0.013904890045523643], [0.16149616241455078, -0.3630608916282654, 0.08017600327730179], [0.0393533818423748, -0.4921113848686218, 0.09205561131238937], [-0.03735356032848358, -0.4112624526023865, -0.036058515310287476], [0.240119069814682, -0.37504369020462036, 0.1355745792388916], [-0.2771710753440857, -0.3680078387260437, -0.15668785572052002], [0.2273649126291275, -0.15232814848423004, 0.27843552827835083], [-0.41781744360923767, -0.5667524933815002, -0.07576276361942291], [0.017427846789360046, -0.2771240472793579, 0.3805692195892334], [-0.4343177378177643, -0.6497032642364502, -0.06314832717180252], [0.009434973821043968, -0.3545945882797241, 0.41617128252983093]]}, {"image_id": "171.jpg", "category_id": 1, "keypoints": [1194.704833984375, 537.1790161132812, 0.9817747473716736, 1161.8521728515625, 557.2872924804688, 0.9880694150924683, 1201.7855224609375, 576.2579345703125, 0.9896203875541687, 1206.2669677734375, 502.0232238769531, 0.9872031211853027, 1181.492431640625, 691.2820434570312, 0.9786513447761536, 1145.03759765625, 702.942626953125, 0.9693664312362671, 1228.348388671875, 461.52557373046875, 0.987074613571167, 1196.0316162109375, 816.786376953125, 0.9268218278884888, 1010.0025024414062, 790.10302734375, 0.8434576988220215, 1227.18408203125, 449.99371337890625, 0.9852716326713562, 1186.8359375, 842.8988647460938, 0.9315267205238342, 1002.5802001953125, 826.1885986328125, 0.7852175831794739, 1238.90283203125, 373.054931640625, 0.9903483390808105, 1213.5145263671875, 400.08209228515625, 0.9835671782493591, 1262.1925048828125, 408.04193115234375, 0.9892733693122864, 1221.004638671875, 357.62493896484375, 0.9794439673423767, 1193.755859375, 382.07318115234375, 0.9781925678253174, 1292.094970703125, 401.97930908203125, 0.9717279672622681, 1099.9307861328125, 390.46966552734375, 0.9596692323684692, 1272.7054443359375, 435.61651611328125, 0.9796594977378845, 1043.11572265625, 313.2297668457031, 0.9420468211174011, 1200.140869140625, 392.19439697265625, 0.9513610005378723, 1026.4786376953125, 292.6833801269531, 0.9742457866668701, 1196.70947265625, 368.27056884765625, 0.8911733627319336, 1110.1640625, 264.0886535644531, 0.8408737182617188, 1002.9273071289062, 276.51995849609375, 0.9155147075653076, 1188.78076171875, 348.82012939453125, 0.8585056662559509, 1192.3668212890625, 844.01806640625, 0.8386363983154297, 993.7801513671875, 849.8489990234375, 0.7785027027130127], "score": 3.144925594329834, "box": [962.2285766601562, 271.383056640625, 343.71539306640625, 599.1885375976562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.09484203904867172, 0.06040292978286743, 0.021500207483768463], [0.014417185448110104, 0.10086363554000854, -0.04726205766201019], [0.03356284648180008, -0.10130169987678528, -0.011571753770112991], [-0.032390668988227844, 0.4204460084438324, 0.1635654866695404], [-0.14539533853530884, 0.42399999499320984, -0.2180803418159485], [0.09556466341018677, -0.2095937430858612, 0.026762843132019043], [0.0024463622830808163, 0.8085302710533142, 0.018392004072666168], [-0.47235140204429626, 0.6189699172973633, -0.3845718801021576], [0.09571333974599838, -0.24718552827835083, 0.06852743774652481], [-0.01062204409390688, 0.8820927739143372, 0.13100576400756836], [-0.4996083378791809, 0.7442390322685242, -0.4275652766227722], [0.12052857130765915, -0.4517520070075989, 0.012433335185050964], [0.04000978544354439, -0.3638197183609009, 0.0037172064185142517], [0.18626627326011658, -0.35756152868270874, 0.04493345320224762], [0.0735054537653923, -0.4991168975830078, 0.061456017196178436], [-0.023804770782589912, -0.417008638381958, -0.035512957721948624], [0.27147531509399414, -0.3758470416069031, 0.08671770989894867], [-0.28836801648139954, -0.3909050226211548, -0.0873524472117424], [0.23520642518997192, -0.27674412727355957, 0.328346848487854], [-0.42729103565216064, -0.5892578959465027, -0.005659803748130798], [0.027964631095528603, -0.41008174419403076, 0.4219406545162201], [-0.48086628317832947, -0.6555324792861938, -0.0046807266771793365], [0.022783685475587845, -0.47808927297592163, 0.4731414020061493]]}, {"image_id": "171.jpg", "category_id": 1, "keypoints": [1005.9093017578125, 492.8725280761719, 0.9770994782447815, 1020.338134765625, 520.1666870117188, 0.9905787706375122, 994.1912231445312, 529.5523071289062, 0.9912146925926208, 998.5911254882812, 457.0566101074219, 0.991475522518158, 1040.4541015625, 661.5941772460938, 0.9693673253059387, 1013.0424194335938, 651.6333618164062, 0.9837552309036255, 1006.6807250976562, 412.4752502441406, 0.9848636984825134, 1017.2779541015625, 754.3784790039062, 0.9658367037773132, 993.1744995117188, 774.43408203125, 0.8735949993133545, 1016.8553466796875, 396.73980712890625, 0.9904493689537048, 1060.88671875, 781.617919921875, 0.9519053101539612, 1006.4530029296875, 795.794677734375, 0.8548057079315186, 1004.6756591796875, 319.9005126953125, 0.9885254502296448, 1022.0966796875, 348.3968811035156, 0.9887707829475403, 990.51318359375, 360.19036865234375, 0.9836351871490479, 1017.7523803710938, 294.6536865234375, 0.9460695385932922, 1042.184814453125, 328.9962158203125, 0.968076229095459, 977.6666870117188, 360.7829895019531, 0.9696642756462097, 1108.2193603515625, 296.96917724609375, 0.937336266040802, 1044.6148681640625, 434.521728515625, 0.954710841178894, 1092.609619140625, 292.5166320800781, 0.9758344888687134, 1134.5623779296875, 456.6322326660156, 0.9686586260795593, 1084.7161865234375, 280.5944519042969, 0.9468933343887329, 1164.850830078125, 457.70654296875, 0.924144983291626, 1006.0635375976562, 213.81842041015625, 0.9376181364059448, 1039.306640625, 262.4386901855469, 0.947892427444458, 1195.604736328125, 447.58709716796875, 0.913628876209259, 1071.055908203125, 786.8741455078125, 0.9354977607727051, 1014.051513671875, 795.568603515625, 0.8799678087234497], "score": 2.698457956314087, "box": [939.3140258789062, 201.70130920410156, 218.16070556640625, 615.9988861083984], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04165515676140785, 0.07684578001499176, 0.0662541389465332], [-0.036132071167230606, 0.09526810795068741, -0.03379310667514801], [-0.02608351781964302, -0.09879378974437714, -0.0017852671444416046], [0.09589139372110367, 0.4516904950141907, 0.11006955802440643], [0.019610397517681122, 0.4642457962036133, -0.1373891979455948], [0.0018803281709551811, -0.2212786227464676, -0.03811994194984436], [0.020431943237781525, 0.7842177152633667, 0.3163541555404663], [-0.03770028054714203, 0.8369738459587097, -0.01079661026597023], [0.028798986226320267, -0.2614884376525879, -0.06265321373939514], [0.12970715761184692, 0.8508944511413574, 0.28974002599716187], [0.01891195774078369, 0.9232588410377502, -0.09028540551662445], [-0.002800757996737957, -0.4595975875854492, -0.11235609650611877], [0.04234879091382027, -0.3944127559661865, -0.027340251952409744], [-0.04134616255760193, -0.35368144512176514, -0.13850080966949463], [0.028990615159273148, -0.5322533845901489, -0.13950785994529724], [0.0961618721485138, -0.4484512209892273, 0.018411271274089813], [-0.07784602791070938, -0.35029327869415283, -0.2243720442056656], [0.3255131244659424, -0.562351405620575, 0.06524842977523804], [0.08893445879220963, -0.16422905027866364, -0.26021525263786316], [0.22616012394428253, -0.5694320201873779, -0.15887174010276794], [0.33198097348213196, -0.09515653550624847, -0.24842748045921326], [0.1817585825920105, -0.6325024962425232, -0.1856953352689743], [0.413109689950943, -0.09034512937068939, -0.2526175379753113]]}, {"image_id": "172.jpg", "category_id": 1, "keypoints": [1192.5472412109375, 538.9586181640625, 0.9816129803657532, 1164.146728515625, 561.243896484375, 0.9848149418830872, 1196.8277587890625, 576.9130249023438, 0.9881656169891357, 1199.3603515625, 500.08355712890625, 0.9848467707633972, 1195.9969482421875, 709.7454833984375, 0.9697694182395935, 1130.2999267578125, 701.5895385742188, 0.9709731340408325, 1224.0233154296875, 461.53045654296875, 0.9896597862243652, 1195.37255859375, 830.52099609375, 0.9035794734954834, 988.0899047851562, 786.150390625, 0.8611997961997986, 1227.04833984375, 449.2542419433594, 0.9877797961235046, 1208.149169921875, 868.8533325195312, 0.9045343399047852, 981.93505859375, 827.8626708984375, 0.7049342393875122, 1242.0806884765625, 369.27728271484375, 0.9899677634239197, 1213.201171875, 397.65185546875, 0.9857931733131409, 1265.017333984375, 405.9759521484375, 0.9875091910362244, 1226.74462890625, 351.2756042480469, 0.9807228446006775, 1194.1639404296875, 377.66058349609375, 0.9756510257720947, 1296.14453125, 398.6163024902344, 0.9801974296569824, 1098.0633544921875, 385.59063720703125, 0.9464697241783142, 1266.6776123046875, 429.0952453613281, 0.9791958928108215, 1046.4627685546875, 305.02362060546875, 0.9316524267196655, 1197.8299560546875, 400.3092346191406, 0.955394446849823, 1033.931640625, 284.8980407714844, 0.9623121619224548, 1196.296142578125, 381.1475830078125, 0.8979788422584534, 1151.3831787109375, 277.00164794921875, 0.9153457283973694, 1015.502685546875, 263.6526184082031, 0.9222123026847839, 1188.441162109375, 362.0641174316406, 0.8967723846435547, 1218.279296875, 858.1447143554688, 0.8566448092460632, 983.3723754882812, 870.9674072265625, 0.8186207413673401], "score": 3.158764123916626, "box": [956.6464233398438, 262.19915771484375, 351.41558837890625, 605.9417724609375], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.08176600933074951, 0.07038246095180511, 0.037036456167697906], [0.008247987367212772, 0.09390106797218323, -0.06023450568318367], [0.022838570177555084, -0.10402882099151611, -0.007814906537532806], [0.003906460478901863, 0.44503289461135864, 0.11588005721569061], [-0.17385372519493103, 0.40839168429374695, -0.22503502666950226], [0.09245238453149796, -0.20894736051559448, 0.026719138026237488], [-0.010204080492258072, 0.8317126631736755, -0.03540239855647087], [-0.5263777375221252, 0.6104831695556641, -0.3097476065158844], [0.10545144975185394, -0.24952182173728943, 0.06300266087055206], [0.025111738592386246, 0.9248690605163574, 0.055696647614240646], [-0.5462551116943359, 0.7410755157470703, -0.3376772403717041], [0.12569983303546906, -0.4508119821548462, -0.0038036666810512543], [0.04281580448150635, -0.3654906749725342, 0.005087103694677353], [0.19301748275756836, -0.3554113507270813, 0.019627433270215988], [0.08442815393209457, -0.5069530606269836, 0.041568491607904434], [-0.017713801935315132, -0.42411690950393677, -0.030691388994455338], [0.2838841378688812, -0.3773805499076843, 0.0428006611764431], [-0.2807096838951111, -0.3995683193206787, -0.08958251774311066], [0.22349520027637482, -0.29792261123657227, 0.28652817010879517], [-0.40369728207588196, -0.6031774282455444, 0.003037046641111374], [-0.003976909443736076, -0.3998974561691284, 0.37147971987724304], [-0.4486692547798157, -0.6753342747688293, 0.002479448914527893], [-0.00478701014071703, -0.46612751483917236, 0.4248499274253845]]}, {"image_id": "172.jpg", "category_id": 1, "keypoints": [1004.748779296875, 495.9921569824219, 0.9802064895629883, 1020.735595703125, 523.21630859375, 0.9919868111610413, 987.6622924804688, 536.14111328125, 0.9890278577804565, 997.4984130859375, 456.9244384765625, 0.9927266836166382, 1028.65673828125, 676.52685546875, 0.9811884760856628, 983.5538330078125, 677.3715209960938, 0.9829796552658081, 1005.8985595703125, 409.8782958984375, 0.989100992679596, 991.524658203125, 798.269287109375, 0.9337184429168701, 971.9932250976562, 792.908935546875, 0.8723675012588501, 1016.7382202148438, 394.1128234863281, 0.9922446608543396, 1017.2670288085938, 826.22119140625, 0.9278432726860046, 964.2567138671875, 833.33984375, 0.8914210796356201, 1004.6303100585938, 316.25274658203125, 0.9891281723976135, 1021.78662109375, 342.56817626953125, 0.9861885905265808, 990.60546875, 360.60693359375, 0.9821613430976868, 1017.9745483398438, 292.0296325683594, 0.9398417472839355, 1041.9061279296875, 321.0025329589844, 0.9564558863639832, 979.624755859375, 363.41314697265625, 0.968100905418396, 1107.7615966796875, 255.0208740234375, 0.9060449600219727, 1056.1024169921875, 437.4730224609375, 0.9401572942733765, 1080.125, 263.0658264160156, 0.969415009021759, 1140.8984375, 456.0527038574219, 0.981209397315979, 1069.1243896484375, 256.5628662109375, 0.9074144959449768, 1176.0628662109375, 455.73974609375, 0.9718139171600342, 1009.2139892578125, 207.33807373046875, 0.9499179720878601, 1045.804931640625, 253.41017150878906, 0.9368296265602112, 1192.167724609375, 428.791748046875, 0.8150792717933655, 1020.7767333984375, 833.7420654296875, 0.9361002445220947, 966.36279296875, 840.1844482421875, 0.8850401639938354], "score": 2.5900352001190186, "box": [939.935791015625, 210.046142578125, 209.05029296875, 591.408203125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04512954130768776, 0.07242406904697418, 0.06935683637857437], [-0.044376663863658905, 0.09608105570077896, -0.019609970971941948], [-0.021488279104232788, -0.09998953342437744, -0.0093388631939888], [0.06573807448148727, 0.448711097240448, 0.12405983358621597], [-0.055864591151475906, 0.4806196093559265, 0.021551266312599182], [0.0014427014393731952, -0.22138604521751404, -0.05379056558012962], [-0.038048241287469864, 0.8066073656082153, 0.2647554278373718], [-0.08851873874664307, 0.8308919668197632, 0.20688962936401367], [0.027586955577135086, -0.26138466596603394, -0.08015059679746628], [0.037992533296346664, 0.8943999409675598, 0.20433977246284485], [-0.11120644956827164, 0.9424945712089539, 0.14317411184310913], [0.0006725759012624621, -0.4526401162147522, -0.15574133396148682], [0.041388992220163345, -0.3981245160102844, -0.06097489595413208], [-0.03820612654089928, -0.3441498279571533, -0.17042240500450134], [0.03077692911028862, -0.5219854712486267, -0.19227272272109985], [0.09421474486589432, -0.45738476514816284, -0.02015993744134903], [-0.06699967384338379, -0.33485251665115356, -0.2591836452484131], [0.27539607882499695, -0.6409186720848083, 0.015853185206651688], [0.11255064606666565, -0.159187912940979, -0.2856241762638092], [0.059443507343530655, -0.570288360118866, -0.07685308158397675], [0.3586953580379486, -0.10635361075401306, -0.25994279980659485], [-0.01115627121180296, -0.611197829246521, -0.08370066434144974], [0.435899555683136, -0.10628563165664673, -0.2864145338535309]]}, {"image_id": "173.jpg", "category_id": 1, "keypoints": [1192.188720703125, 533.8668823242188, 0.98332279920578, 1167.09716796875, 555.62109375, 0.9870564341545105, 1193.2449951171875, 570.4942016601562, 0.9878230094909668, 1199.596923828125, 494.7879943847656, 0.9832477569580078, 1200.251708984375, 686.4030151367188, 0.9594161510467529, 1123.113037109375, 691.5526733398438, 0.978685200214386, 1225.0699462890625, 455.1647644042969, 0.9887359142303467, 1201.7177734375, 824.4963989257812, 0.8658314943313599, 980.541748046875, 779.3494262695312, 0.81669020652771, 1228.35107421875, 443.2451477050781, 0.98760586977005, 1220.3438720703125, 849.572509765625, 0.9250651001930237, 984.779541015625, 819.8289794921875, 0.7613481283187866, 1241.7994384765625, 362.9682922363281, 0.990872323513031, 1213.8853759765625, 392.186767578125, 0.9849979877471924, 1265.3880615234375, 398.6966552734375, 0.9907411932945251, 1225.9031982421875, 346.60809326171875, 0.9680318832397461, 1195.42333984375, 371.41253662109375, 0.9730440974235535, 1297.7493896484375, 390.23956298828125, 0.9733218550682068, 1096.8226318359375, 378.36578369140625, 0.9546880722045898, 1280.5362548828125, 448.6943359375, 0.978710412979126, 1043.469970703125, 297.7305908203125, 0.9425897598266602, 1191.10595703125, 424.654052734375, 0.9297926425933838, 1037.1329345703125, 267.99456787109375, 0.9636686444282532, 1183.4615478515625, 401.86358642578125, 0.8380905389785767, 1171.5699462890625, 284.78411865234375, 0.947221040725708, 1030.2330322265625, 237.10662841796875, 0.907019317150116, 1178.92041015625, 373.97430419921875, 0.8338867425918579, 1236.110595703125, 841.3135986328125, 0.8004124164581299, 986.6712646484375, 849.6292114257812, 0.784159779548645], "score": 3.155461072921753, "box": [941.1930541992188, 262.1825866699219, 373.37994384765625, 598.2594299316406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07727672904729843, 0.07005083560943604, 0.045788638293743134], [0.0013679550029337406, 0.09371086210012436, -0.06079709529876709], [0.022113438695669174, -0.10371123254299164, -0.010153977200388908], [0.02227519266307354, 0.42925071716308594, 0.16789424419403076], [-0.1959684193134308, 0.4151157736778259, -0.19047822058200836], [0.09258884936571121, -0.21093867719173431, 0.011227238923311234], [0.014699502848088741, 0.8188124895095825, 0.024569839239120483], [-0.5367486476898193, 0.61392742395401, -0.3185036778450012], [0.1069776639342308, -0.2531306743621826, 0.04475539177656174], [0.05913420766592026, 0.877048134803772, 0.13780198991298676], [-0.5234301090240479, 0.7404871582984924, -0.3631182909011841], [0.12492392212152481, -0.45683711767196655, -0.014188006520271301], [0.04200851172208786, -0.37194257974624634, -0.0036243870854377747], [0.19253826141357422, -0.36008763313293457, 0.0004702731966972351], [0.08378025144338608, -0.5074007511138916, 0.037217263132333755], [-0.0165471863001585, -0.43257689476013184, -0.03903673589229584], [0.2849345803260803, -0.3844653367996216, 0.011466313153505325], [-0.28618937730789185, -0.41359102725982666, -0.03847494721412659], [0.25320565700531006, -0.2102826088666916, 0.20607134699821472], [-0.4176327586174011, -0.620914876461029, 0.030229978263378143], [0.029164856299757957, -0.2778109908103943, 0.3262738585472107], [-0.4350745379924774, -0.7038434743881226, 0.03522269427776337], [0.008663478307425976, -0.349925696849823, 0.3661976456642151]]}, {"image_id": "173.jpg", "category_id": 1, "keypoints": [1007.1513061523438, 492.6568908691406, 0.9743311405181885, 1020.9786376953125, 520.3926391601562, 0.9879791736602783, 989.1942138671875, 530.0722045898438, 0.9853635430335999, 1001.954345703125, 454.29632568359375, 0.9916631579399109, 1033.3153076171875, 666.9783325195312, 0.9784263372421265, 973.896240234375, 668.8572998046875, 0.980584979057312, 1009.2411499023438, 407.9669189453125, 0.9883303642272949, 991.7421875, 796.8477783203125, 0.9402872323989868, 953.44873046875, 792.1202392578125, 0.9111870527267456, 1019.4668579101562, 392.0084533691406, 0.9912596940994263, 1025.285400390625, 815.7911376953125, 0.9307003617286682, 952.8578491210938, 823.4392700195312, 0.9258422255516052, 1004.484619140625, 316.16265869140625, 0.9885562658309937, 1021.4558715820312, 342.5224914550781, 0.9844495058059692, 991.812255859375, 358.908203125, 0.9837542176246643, 1017.127685546875, 290.53936767578125, 0.9484431147575378, 1038.493896484375, 320.0380859375, 0.9655640721321106, 981.3218994140625, 360.543212890625, 0.9717408418655396, 1100.3916015625, 260.58477783203125, 0.8937693238258362, 1057.392822265625, 430.24566650390625, 0.9527974724769592, 1076.47412109375, 261.7127380371094, 0.9679811000823975, 1144.505126953125, 451.56976318359375, 0.981509268283844, 1068.185302734375, 253.24063110351562, 0.9403338432312012, 1177.30029296875, 447.9267883300781, 0.9638277888298035, 1004.3499755859375, 209.8125, 0.9465529918670654, 1033.831298828125, 237.88189697265625, 0.9250842928886414, 1189.0631103515625, 423.2887268066406, 0.8939507603645325, 1034.341796875, 819.2957153320312, 0.9499524235725403, 962.2060546875, 829.3868408203125, 0.9115523099899292], "score": 2.640026092529297, "box": [936.115234375, 208.90655517578125, 209.5462646484375, 597.0045776367188], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03852461278438568, 0.07601585984230042, 0.06991708278656006], [-0.047577712684869766, 0.09379450976848602, -0.024206148460507393], [-0.017014218494296074, -0.10181672871112823, -0.00783403217792511], [0.07068322598934174, 0.45181411504745483, 0.11334416270256042], [-0.0887705609202385, 0.47623974084854126, 0.006606092676520348], [0.00556750176474452, -0.22526873648166656, -0.04929210990667343], [-0.03757195919752121, 0.8177362084388733, 0.2239580899477005], [-0.14258642494678497, 0.8111565709114075, 0.21228185296058655], [0.03373388200998306, -0.2648833394050598, -0.07508489489555359], [0.07132017612457275, 0.8755870461463928, 0.1794808954000473], [-0.14449778199195862, 0.9150521755218506, 0.13292376697063446], [-0.011756562627851963, -0.45843613147735596, -0.13671541213989258], [0.03457442671060562, -0.4011894464492798, -0.04554294794797897], [-0.04028255492448807, -0.3475669026374817, -0.16000773012638092], [0.02815597504377365, -0.5260255932807922, -0.16692595183849335], [0.08516618609428406, -0.45685476064682007, 0.00362609326839447], [-0.06963629275560379, -0.3320092558860779, -0.24851219356060028], [0.2682989835739136, -0.6350811719894409, 0.05051489174365997], [0.11399202793836594, -0.16168679296970367, -0.27740877866744995], [0.08459357917308807, -0.61137855052948, -0.11019453406333923], [0.35947105288505554, -0.10181547701358795, -0.2726171612739563], [0.031209468841552734, -0.6607245206832886, -0.14847908914089203], [0.4291437864303589, -0.10819534957408905, -0.3151469826698303]]}, {"image_id": "174.jpg", "category_id": 1, "keypoints": [1189.0267333984375, 525.0280151367188, 0.9798398613929749, 1165.052490234375, 548.1800537109375, 0.9883220195770264, 1192.3046875, 559.744140625, 0.9844592809677124, 1194.68408203125, 486.53802490234375, 0.9844262599945068, 1206.9591064453125, 679.2994384765625, 0.9666173458099365, 1119.687744140625, 684.4934692382812, 0.9823287725448608, 1218.7923583984375, 447.4456787109375, 0.988665759563446, 1202.0736083984375, 823.6275634765625, 0.8774957656860352, 978.7743530273438, 772.5867919921875, 0.8692806959152222, 1222.0281982421875, 435.2893371582031, 0.9875698685646057, 1222.7991943359375, 842.0578002929688, 0.9320218563079834, 977.032470703125, 805.682861328125, 0.7750712633132935, 1238.0084228515625, 356.48175048828125, 0.990109920501709, 1207.533203125, 386.7044677734375, 0.9896650314331055, 1261.8287353515625, 390.2019348144531, 0.9914097785949707, 1222.1119384765625, 339.1007080078125, 0.962493896484375, 1188.3077392578125, 365.108154296875, 0.9762847423553467, 1296.5655517578125, 381.4730224609375, 0.9771988391876221, 1091.9459228515625, 367.3339538574219, 0.9549117684364319, 1294.97607421875, 482.21832275390625, 0.9807541966438293, 1044.8634033203125, 281.32904052734375, 0.9362042546272278, 1216.338623046875, 479.5776062011719, 0.953300416469574, 1041.3741455078125, 254.05349731445312, 0.9651965498924255, 1198.99365234375, 466.27313232421875, 0.8964884877204895, 1196.0311279296875, 284.6150207519531, 0.9416215419769287, 1033.0513916015625, 225.88861083984375, 0.9491620063781738, 1178.5155029296875, 439.9580078125, 0.8194113373756409, 1241.8050537109375, 832.69677734375, 0.7891979813575745, 984.45849609375, 832.4114990234375, 0.803490161895752], "score": 3.1539530754089355, "box": [927.3800659179688, 245.3870849609375, 398.03314208984375, 611.9436645507812], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07280807197093964, 0.07412171363830566, 0.04473035782575607], [0.005729347467422485, 0.09205484390258789, -0.061579734086990356], [0.01667991653084755, -0.1040090024471283, -0.00871264934539795], [0.048195730894804, 0.4327322840690613, 0.1390439122915268], [-0.19172748923301697, 0.4145350456237793, -0.18095989525318146], [0.08445969223976135, -0.21044450998306274, 0.02300403080880642], [0.025356801226735115, 0.8284366130828857, 0.026911547407507896], [-0.5289624929428101, 0.6152492165565491, -0.3046201169490814], [0.09784853458404541, -0.24999427795410156, 0.05951244384050369], [0.07360492646694183, 0.8740060329437256, 0.14338143169879913], [-0.5361371040344238, 0.7459976673126221, -0.33286672830581665], [0.12749867141246796, -0.4547109007835388, 0.015603950247168541], [0.03988606855273247, -0.3753645420074463, 0.02370898611843586], [0.18809373676776886, -0.3532721996307373, 0.01954939402639866], [0.08460590243339539, -0.5090847611427307, 0.06142302602529526], [-0.02020236849784851, -0.4394698739051819, 0.00020392797887325287], [0.2808643877506256, -0.3765617609024048, 0.0186388548463583], [-0.2866852283477783, -0.431556761264801, -0.030762020498514175], [0.2882072925567627, -0.1354014277458191, 0.11834878474473953], [-0.40068894624710083, -0.6485441327095032, 0.032351501286029816], [0.07112951576709747, -0.14603641629219055, 0.2631674110889435], [-0.4106372594833374, -0.7309103012084961, 0.04725439101457596], [0.007847730070352554, -0.19658339023590088, 0.28649401664733887]]}, {"image_id": "174.jpg", "category_id": 1, "keypoints": [1006.4993286132812, 485.527099609375, 0.9709256887435913, 1018.471923828125, 512.4992065429688, 0.9875314235687256, 990.7694702148438, 520.2980346679688, 0.9879648089408875, 1002.1124877929688, 448.4554443359375, 0.9902400970458984, 1028.0692138671875, 657.8160400390625, 0.9810715913772583, 980.6213989257812, 655.8236694335938, 0.9797786474227905, 1008.9213256835938, 404.2479248046875, 0.9888964891433716, 979.976806640625, 780.408203125, 0.9202960729598999, 941.537353515625, 787.4864501953125, 0.9316345453262329, 1019.115234375, 389.063720703125, 0.9912991523742676, 1004.2586669921875, 810.679931640625, 0.9583800435066223, 940.74609375, 817.888916015625, 0.935662031173706, 1005.1126098632812, 317.55938720703125, 0.9886852502822876, 1020.1597290039062, 342.7413330078125, 0.9842564463615417, 993.496337890625, 356.62646484375, 0.9845041632652283, 1017.7001342773438, 293.6092529296875, 0.9515026211738586, 1034.4871826171875, 324.623779296875, 0.9650330543518066, 983.698486328125, 358.66693115234375, 0.9736605882644653, 1084.9490966796875, 302.13299560546875, 0.9413922429084778, 1054.6026611328125, 428.8594055175781, 0.9476090669631958, 1094.002197265625, 278.528076171875, 0.9733366370201111, 1140.730224609375, 448.96014404296875, 0.9790443181991577, 1098.588134765625, 265.5807189941406, 0.9230912923812866, 1173.5072021484375, 449.1923522949219, 0.9652310609817505, 1008.4556274414062, 214.64743041992188, 0.9398093223571777, 1081.4278564453125, 237.46206665039062, 0.9219056367874146, 1190.061767578125, 436.95574951171875, 0.9045416116714478, 1012.0096435546875, 816.76953125, 0.9591596126556396, 948.254638671875, 823.8311767578125, 0.9366308450698853], "score": 2.3614566326141357, "box": [930.2275390625, 204.00506591796875, 221.4671630859375, 607.928466796875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03368639945983887, 0.07646363973617554, 0.07241181284189224], [-0.045848339796066284, 0.09390894323587418, -0.028393078595399857], [-0.01666126400232315, -0.10229094326496124, -0.00841511320322752], [0.05954087898135185, 0.4519660472869873, 0.12435224652290344], [-0.07218949496746063, 0.4791533350944519, -0.019435711205005646], [0.006620357744395733, -0.22573481500148773, -0.04862553998827934], [-0.07827357947826385, 0.8127527832984924, 0.22098812460899353], [-0.17047931253910065, 0.8213118314743042, 0.15757319331169128], [0.035858944058418274, -0.2657265067100525, -0.07282177358865738], [-0.0022196948993951082, 0.9152058959007263, 0.1898845136165619], [-0.1730203777551651, 0.9302732348442078, 0.08482635021209717], [-0.008974446915090084, -0.4610708951950073, -0.130959153175354], [0.03562958911061287, -0.40184903144836426, -0.0397750586271286], [-0.03660120069980621, -0.35048067569732666, -0.15805816650390625], [0.02828396111726761, -0.5306635499000549, -0.1591678410768509], [0.07978376001119614, -0.45985734462738037, 0.013468854129314423], [-0.0653141662478447, -0.3344309329986572, -0.24714097380638123], [0.2775169909000397, -0.5564990639686584, 0.15216663479804993], [0.11163706332445145, -0.15705807507038116, -0.2789919376373291], [0.31909728050231934, -0.6712324619293213, -0.0611250102519989], [0.3558691143989563, -0.09218977391719818, -0.26406800746917725], [0.34092527627944946, -0.7347396016120911, -0.1088879257440567], [0.4366140365600586, -0.09163089096546173, -0.2790502905845642]]}, {"image_id": "175.jpg", "category_id": 1, "keypoints": [1187.56103515625, 519.6091918945312, 0.9818206429481506, 1164.653564453125, 543.1375122070312, 0.9885892271995544, 1188.1353759765625, 553.684326171875, 0.9850819110870361, 1192.7425537109375, 481.3583984375, 0.9815755486488342, 1211.1192626953125, 672.8326416015625, 0.9686533808708191, 1114.3175048828125, 682.155029296875, 0.9839839339256287, 1218.702880859375, 440.9176025390625, 0.98731529712677, 1203.707763671875, 820.04345703125, 0.8536511659622192, 975.9141235351562, 767.6436767578125, 0.8737984299659729, 1223.8963623046875, 427.9716491699219, 0.9879717230796814, 1231.6920166015625, 835.764892578125, 0.9069501757621765, 978.7869262695312, 810.6594848632812, 0.7980191111564636, 1239.57861328125, 346.827880859375, 0.9922420978546143, 1208.2401123046875, 379.4407958984375, 0.9914982914924622, 1264.214599609375, 380.54852294921875, 0.993484616279602, 1227.1846923828125, 328.87420654296875, 0.9583478569984436, 1188.3497314453125, 358.0216979980469, 0.9730614423751831, 1300.481689453125, 369.115478515625, 0.9705406427383423, 1089.0103759765625, 362.9138488769531, 0.9564686417579651, 1300.53173828125, 468.4166259765625, 0.974321722984314, 1039.2244873046875, 279.85968017578125, 0.9631156921386719, 1221.605712890625, 466.4983215332031, 0.9611824154853821, 1036.1575927734375, 249.96673583984375, 0.9649720191955566, 1199.6182861328125, 454.4805603027344, 0.8780157566070557, 1200.433837890625, 277.7813720703125, 0.947619616985321, 1040.2646484375, 215.25497436523438, 0.9208532571792603, 1176.5494384765625, 422.72589111328125, 0.7344641089439392, 1248.9215087890625, 828.2523193359375, 0.7605205774307251, 989.1798095703125, 848.546875, 0.8567632436752319], "score": 3.154417037963867, "box": [915.4472045898438, 243.4243927001953, 419.08270263671875, 619.8469085693359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06398742645978928, 0.07315205037593842, 0.056247495114803314], [-0.0035274592228233814, 0.09237466007471085, -0.05969614535570145], [0.014560718089342117, -0.1028590053319931, -0.012687021866440773], [0.06843174248933792, 0.4226257801055908, 0.16352234780788422], [-0.20044876635074615, 0.42293667793273926, -0.14926236867904663], [0.0847766250371933, -0.2102973610162735, 0.006669914349913597], [0.03946340084075928, 0.8168454766273499, 0.05644384026527405], [-0.5332167148590088, 0.6177887320518494, -0.2855227291584015], [0.10328127443790436, -0.2505444288253784, 0.039276041090488434], [0.10010769963264465, 0.856213390827179, 0.16847938299179077], [-0.5243712067604065, 0.75026935338974, -0.2954253554344177], [0.1289338916540146, -0.4562344551086426, 0.0056333038955926895], [0.043730832636356354, -0.37838858366012573, 0.028702663257718086], [0.18403276801109314, -0.3543238639831543, -0.013324899598956108], [0.0967249870300293, -0.5130464434623718, 0.05701293796300888], [-0.017261218279600143, -0.444776713848114, 0.03371371328830719], [0.2741488814353943, -0.3825252056121826, -0.023207398131489754], [-0.2835748493671417, -0.43237656354904175, 0.04638548940420151], [0.288175106048584, -0.15482433140277863, 0.10042068362236023], [-0.41007259488105774, -0.6475113034248352, 0.07807539403438568], [0.07222310453653336, -0.16387106478214264, 0.24436995387077332], [-0.41844430565834045, -0.7306592464447021, 0.08261581510305405], [0.005066038109362125, -0.2028075009584427, 0.27554890513420105]]}, {"image_id": "176.jpg", "category_id": 1, "keypoints": [1187.1651611328125, 517.569580078125, 0.9789387583732605, 1168.99658203125, 543.7286987304688, 0.9882643818855286, 1183.859130859375, 550.93212890625, 0.9786139726638794, 1190.979248046875, 478.7770080566406, 0.9832068085670471, 1213.4482421875, 675.3899536132812, 0.9682976603507996, 1109.8614501953125, 679.8095092773438, 0.980420708656311, 1216.1273193359375, 436.1428527832031, 0.9880848526954651, 1202.7269287109375, 823.247802734375, 0.845245897769928, 973.6102905273438, 762.5930786132812, 0.8701823353767395, 1221.9110107421875, 421.8763732910156, 0.987114667892456, 1234.0533447265625, 838.806884765625, 0.9003490209579468, 978.2304077148438, 811.0750122070312, 0.7294636368751526, 1238.7998046875, 339.9598388671875, 0.9916957020759583, 1207.2410888671875, 372.818359375, 0.9912446141242981, 1262.056396484375, 373.39849853515625, 0.9935988783836365, 1227.0072021484375, 322.4596252441406, 0.9486933350563049, 1186.592529296875, 350.67828369140625, 0.9712538719177246, 1300.059326171875, 359.150390625, 0.9734419584274292, 1084.022705078125, 354.9410400390625, 0.9642198085784912, 1300.630615234375, 465.879638671875, 0.9707848429679871, 1046.572509765625, 269.3879089355469, 0.9654973745346069, 1225.09033203125, 456.8781433105469, 0.9361048340797424, 1044.708984375, 235.98196411132812, 0.9554202556610107, 1206.11328125, 446.667236328125, 0.9178600907325745, 1206.607177734375, 268.8160705566406, 0.9498984217643738, 1049.003662109375, 203.3262939453125, 0.8834505081176758, 1152.217041015625, 394.18524169921875, 0.8930369019508362, 1251.4764404296875, 831.2495727539062, 0.7993512153625488, 988.0159301757812, 840.7015380859375, 0.8074932098388672], "score": 3.150822639465332, "box": [913.7445678710938, 240.6925048828125, 423.76422119140625, 622.5698852539062], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.04938262701034546, 0.07472191751003265, 0.06655734032392502], [-0.011982674710452557, 0.09186863899230957, -0.058018699288368225], [0.008757401257753372, -0.10230313241481781, -0.01446549966931343], [0.07670774310827255, 0.4283336400985718, 0.1646590232849121], [-0.209459125995636, 0.42940428853034973, -0.10654212534427643], [0.07473903149366379, -0.21291537582874298, -0.0029788780957460403], [0.04312388598918915, 0.8316667675971985, 0.1145709902048111], [-0.5554353594779968, 0.6348790526390076, -0.16887784004211426], [0.09422912448644638, -0.2563759684562683, 0.02359008975327015], [0.11319582909345627, 0.872102677822113, 0.21981695294380188], [-0.5430529117584229, 0.7653250098228455, -0.1495220810174942], [0.1256866753101349, -0.45996326208114624, -0.009853741154074669], [0.03850431740283966, -0.3843953609466553, 0.009489377960562706], [0.17878428101539612, -0.35731858015060425, -0.025568610057234764], [0.09415773302316666, -0.5171245336532593, 0.04151555895805359], [-0.022399643436074257, -0.4501621723175049, 0.012748653069138527], [0.266935259103775, -0.39026939868927, -0.031208496540784836], [-0.28645795583724976, -0.4408913850784302, 0.04153282940387726], [0.2796955704689026, -0.15352801978588104, 0.07123862951993942], [-0.38356122374534607, -0.6685481667518616, 0.079359270632267], [0.06872951239347458, -0.18418727815151215, 0.21753618121147156], [-0.38732603192329407, -0.7488398551940918, 0.1007147803902626], [0.005267160478979349, -0.2212189882993698, 0.25637927651405334]]}, {"image_id": "177.jpg", "category_id": 1, "keypoints": [1184.0118408203125, 510.95074462890625, 0.9794678688049316, 1165.343994140625, 537.1550903320312, 0.9856173396110535, 1181.258544921875, 545.675048828125, 0.9772934913635254, 1188.61474609375, 472.2088317871094, 0.9830353260040283, 1214.36279296875, 668.738037109375, 0.9680786728858948, 1105.7501220703125, 679.5997314453125, 0.9791013598442078, 1212.241455078125, 427.19866943359375, 0.988166093826294, 1202.6376953125, 819.1929321289062, 0.8567237257957458, 968.98779296875, 763.2234497070312, 0.8326146006584167, 1217.1751708984375, 411.9206237792969, 0.9870097041130066, 1243.0712890625, 837.82177734375, 0.8985698223114014, 973.0675048828125, 818.06396484375, 0.7019869089126587, 1231.868408203125, 330.03857421875, 0.9907515048980713, 1200.614501953125, 363.0451965332031, 0.9905068874359131, 1256.7664794921875, 362.7857360839844, 0.9935778379440308, 1218.5355224609375, 311.38787841796875, 0.9467930197715759, 1179.910888671875, 343.06396484375, 0.9725306034088135, 1296.3291015625, 348.3887939453125, 0.9772612452507019, 1079.393798828125, 345.10516357421875, 0.9574398398399353, 1305.999267578125, 458.17584228515625, 0.9733975529670715, 1046.6900634765625, 264.02862548828125, 0.9661363959312439, 1225.6602783203125, 446.0784912109375, 0.929482638835907, 1045.21240234375, 229.23764038085938, 0.954014241695404, 1205.3424072265625, 435.3636474609375, 0.9204941391944885, 1200.529296875, 257.067138671875, 0.9455136060714722, 1049.683349609375, 192.25057983398438, 0.8558270931243896, 1137.1778564453125, 359.56317138671875, 0.8983033299446106, 1261.546630859375, 828.1524658203125, 0.8419027924537659, 977.84130859375, 847.8638305664062, 0.8015564680099487], "score": 3.153703212738037, "box": [907.9013061523438, 234.5286407470703, 432.83233642578125, 624.7632904052734], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0506545789539814, 0.07336059212684631, 0.06703329086303711], [-0.011219491250813007, 0.09285829961299896, -0.05649343878030777], [0.009219082072377205, -0.1020178496837616, -0.016198620200157166], [0.08593183010816574, 0.42177486419677734, 0.16741055250167847], [-0.2057407647371292, 0.43203461170196533, -0.1012030616402626], [0.06970839947462082, -0.2158762812614441, -0.00477391853928566], [0.048982150852680206, 0.8218245506286621, 0.10079739987850189], [-0.54649418592453, 0.6334078311920166, -0.1943213939666748], [0.08613868802785873, -0.261125385761261, 0.020924225449562073], [0.1343080848455429, 0.8661495447158813, 0.1921544075012207], [-0.5368940830230713, 0.7632501125335693, -0.17063480615615845], [0.11656893789768219, -0.4658908545970917, -0.0050945039838552475], [0.029801685363054276, -0.38932082056999207, 0.012117594480514526], [0.16994841396808624, -0.3641428053379059, -0.025012321770191193], [0.08084602653980255, -0.5248256921768188, 0.04123159497976303], [-0.03266170248389244, -0.45174315571784973, 0.028063222765922546], [0.25855377316474915, -0.3963468372821808, -0.026757722720503807], [-0.2888029217720032, -0.45093944668769836, 0.09776616096496582], [0.28968942165374756, -0.15492823719978333, 0.05849819630384445], [-0.38067734241485596, -0.682422399520874, 0.1208556517958641], [0.07671727985143661, -0.19318249821662903, 0.1993905007839203], [-0.3839937448501587, -0.7652305364608765, 0.12707766890525818], [0.0114790303632617, -0.23030877113342285, 0.23487550020217896]]}, {"image_id": "177.jpg", "category_id": 1, "keypoints": [1007.00537109375, 484.550537109375, 0.978797435760498, 1011.965576171875, 512.1878051757812, 0.9843348264694214, 999.2958374023438, 518.0601806640625, 0.9861689209938049, 998.9158935546875, 447.2310791015625, 0.991204559803009, 1009.5237426757812, 657.2128295898438, 0.9784655570983887, 1011.888671875, 653.4398193359375, 0.9618712663650513, 1006.8496704101562, 399.73529052734375, 0.9811426997184753, 916.9735107421875, 733.5162963867188, 0.9482972025871277, 930.620849609375, 771.62109375, 0.9196393489837646, 1017.65673828125, 383.947509765625, 0.9910914301872253, 925.431884765625, 773.7479248046875, 0.9571815729141235, 928.861572265625, 808.2718505859375, 0.9080076217651367, 1007.4434204101562, 307.71710205078125, 0.9841806888580322, 1012.871337890625, 336.54150390625, 0.9833235740661621, 1000.6251831054688, 346.129150390625, 0.9843569397926331, 1024.099365234375, 286.07501220703125, 0.9341351985931396, 1022.3488159179688, 318.2615661621094, 0.9784825444221497, 994.4935913085938, 345.2278137207031, 0.9755788445472717, 1084.2979736328125, 312.5537414550781, 0.9455952644348145, 1058.435302734375, 427.247802734375, 0.946234405040741, 1088.214111328125, 259.06829833984375, 0.9742182493209839, 1149.33251953125, 439.53228759765625, 0.9716511368751526, 1090.2100830078125, 243.70059204101562, 0.9562081098556519, 1183.0914306640625, 437.582275390625, 0.9485401511192322, 1051.7593994140625, 227.26046752929688, 0.9418065547943115, 1063.802734375, 193.72732543945312, 0.945016086101532, 1206.6448974609375, 418.9516296386719, 0.9258590936660767, 944.6153564453125, 792.5349731445312, 0.9076423048973083, 931.6188354492188, 812.6657104492188, 0.9249866604804993], "score": 2.338599681854248, "box": [904.0643920898438, 173.3214111328125, 285.97271728515625, 614.401123046875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.015018487349152565, 0.07813936471939087, 0.07680529356002808], [-0.02348187193274498, 0.09536456316709518, -0.045658983290195465], [-0.023273330181837082, -0.10065051913261414, -0.010003496892750263], [0.01028362289071083, 0.4487529695034027, 0.16449128091335297], [0.01265023648738861, 0.4799332618713379, -0.019531792029738426], [-0.00032374472357332706, -0.22699356079101562, -0.039092257618904114], [-0.2957281470298767, 0.7028161287307739, 0.198091059923172], [-0.20416545867919922, 0.8011062741279602, 0.07377651333808899], [0.03124421276152134, -0.26955530047416687, -0.05391808971762657], [-0.2717730700969696, 0.8230406641960144, 0.24544121325016022], [-0.21030206978321075, 0.9310301542282104, 0.057382043451070786], [-0.0038671924266964197, -0.46797430515289307, -0.1079813539981842], [0.01596761681139469, -0.4024044871330261, -0.012625135481357574], [-0.018135668709874153, -0.3594980239868164, -0.14948813617229462], [0.0468570739030838, -0.5330376029014587, -0.12285357713699341], [0.044455721974372864, -0.4595023989677429, 0.05093040689826012], [-0.038599275052547455, -0.3539687991142273, -0.24178366363048553], [0.2508767545223236, -0.4897833466529846, 0.20735269784927368], [0.11494528502225876, -0.1547529697418213, -0.2701542377471924], [0.2577919661998749, -0.6675658226013184, 0.03729790076613426], [0.3584091067314148, -0.11335539817810059, -0.212387815117836], [0.265699565410614, -0.7382413744926453, -0.004290398210287094], [0.4403924345970154, -0.11677631735801697, -0.21570365130901337]]}, {"image_id": "178.jpg", "category_id": 1, "keypoints": [1185.3787841796875, 504.72808837890625, 0.9793831706047058, 1166.6329345703125, 531.6612548828125, 0.9845227003097534, 1183.293701171875, 539.7630004882812, 0.978274405002594, 1190.5123291015625, 466.25860595703125, 0.9843161106109619, 1214.279052734375, 665.7247924804688, 0.9715341925621033, 1100.4208984375, 676.7427368164062, 0.9748409986495972, 1212.3876953125, 420.3218688964844, 0.9870805144309998, 1203.4881591796875, 816.05029296875, 0.8623685836791992, 961.7492065429688, 755.5474243164062, 0.8776612281799316, 1217.29736328125, 404.5229187011719, 0.9860892295837402, 1242.5955810546875, 835.21923828125, 0.8846572637557983, 959.9373168945312, 807.035888671875, 0.7375832796096802, 1231.1533203125, 323.2680358886719, 0.9900586009025574, 1199.8309326171875, 356.9579772949219, 0.9906591176986694, 1255.833984375, 354.74560546875, 0.9942829012870789, 1220.406982421875, 304.6256103515625, 0.9444010257720947, 1178.1146240234375, 336.63751220703125, 0.9758084416389465, 1293.151123046875, 338.0005187988281, 0.9821580648422241, 1073.9114990234375, 342.1069641113281, 0.9586036801338196, 1307.802490234375, 450.8865966796875, 0.9721933007240295, 1038.629150390625, 252.0882568359375, 0.971505880355835, 1224.5147705078125, 436.82562255859375, 0.9289246201515198, 1035.665283203125, 216.14068603515625, 0.9674249887466431, 1200.765625, 425.02117919921875, 0.9055415987968445, 1211.7469482421875, 250.51751708984375, 0.9458579421043396, 1038.27587890625, 180.60153198242188, 0.8073437213897705, 1126.2939453125, 343.3188171386719, 0.8821687698364258, 1260.3564453125, 826.03076171875, 0.8177407383918762, 967.7003173828125, 831.9932861328125, 0.8082578182220459], "score": 3.156097173690796, "box": [908.1348876953125, 223.01039123535156, 430.740966796875, 636.7839813232422], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05244404822587967, 0.07435877621173859, 0.06544231623411179], [-0.00961249228566885, 0.09276682138442993, -0.05804675072431564], [0.00928560458123684, -0.103150874376297, -0.015178968198597431], [0.07897651195526123, 0.42740529775619507, 0.1536819338798523], [-0.21416522562503815, 0.42702099680900574, -0.09049610048532486], [0.06555387377738953, -0.21910688281059265, 0.001518411561846733], [0.044322919100522995, 0.8271794319152832, 0.08334115892648697], [-0.5613359212875366, 0.6178507208824158, -0.18327386677265167], [0.08145381510257721, -0.2641981542110443, 0.028785264119505882], [0.1323482245206833, 0.8747379779815674, 0.1708843857049942], [-0.5658882260322571, 0.7489478588104248, -0.16299006342887878], [0.11631356924772263, -0.47106143832206726, 0.024334033951163292], [0.0279951523989439, -0.3946651518344879, 0.03914671391248703], [0.1658404916524887, -0.37068936228752136, -0.011043502017855644], [0.08547186851501465, -0.534284234046936, 0.068315289914608], [-0.03551030904054642, -0.4564473330974579, 0.057146184146404266], [0.2525375783443451, -0.4095480740070343, -0.01366626936942339], [-0.2921321392059326, -0.44715139269828796, 0.12476778775453568], [0.2912079095840454, -0.16026678681373596, 0.040983378887176514], [-0.3816312253475189, -0.6796025037765503, 0.1508951038122177], [0.08996535837650299, -0.20168951153755188, 0.19764326512813568], [-0.3879017233848572, -0.7615231275558472, 0.1655930131673813], [0.02688688226044178, -0.23622679710388184, 0.23984168469905853]]}, {"image_id": "179.jpg", "category_id": 1, "keypoints": [1186.123779296875, 501.7344970703125, 0.9771009087562561, 1168.6832275390625, 530.4381713867188, 0.9830589294433594, 1181.7591552734375, 536.8174438476562, 0.9785674810409546, 1190.9603271484375, 462.4701232910156, 0.9809233546257019, 1217.2088623046875, 669.517578125, 0.9729809761047363, 1095.1070556640625, 674.7610473632812, 0.9754176735877991, 1212.072998046875, 414.9473876953125, 0.9860547184944153, 1201.2781982421875, 817.805419921875, 0.8848172426223755, 960.3529052734375, 755.44970703125, 0.8520920872688293, 1216.884033203125, 398.586669921875, 0.9875282049179077, 1239.310546875, 837.5072021484375, 0.907073974609375, 963.1219482421875, 811.834228515625, 0.7449851036071777, 1230.341552734375, 316.9337463378906, 0.9906153678894043, 1199.142822265625, 351.5811767578125, 0.9901077151298523, 1254.2454833984375, 347.7572326660156, 0.9942701458930969, 1220.05517578125, 298.511962890625, 0.9693653583526611, 1176.8599853515625, 331.6864013671875, 0.9779841303825378, 1289.6409912109375, 330.0891418457031, 0.9823462963104248, 1072.6510009765625, 328.224609375, 0.956468939781189, 1313.3509521484375, 441.361572265625, 0.975117564201355, 1039.274658203125, 237.42709350585938, 0.9540594816207886, 1218.55908203125, 427.6528625488281, 0.8899553418159485, 1034.970703125, 205.08441162109375, 0.9418458938598633, 1195.454833984375, 419.613037109375, 0.8855351805686951, 1215.464111328125, 240.67095947265625, 0.9370537996292114, 1032.29248046875, 179.75128173828125, 0.7465819120407104, 1169.32080078125, 386.6950378417969, 0.8661668300628662, 1256.437255859375, 828.6390991210938, 0.816780686378479, 967.77001953125, 847.7069091796875, 0.8079804182052612], "score": 3.1514806747436523, "box": [909.8624877929688, 219.96266174316406, 429.17987060546875, 633.9968719482422], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.04650832340121269, 0.07642826437950134, 0.06733699142932892], [-0.015795964747667313, 0.09057582169771194, -0.059924304485321045], [0.008395915850996971, -0.10401399433612823, -0.012511138804256916], [0.08231690526008606, 0.43118807673454285, 0.14103415608406067], [-0.22467076778411865, 0.420086145401001, -0.08649244904518127], [0.06208697706460953, -0.22215349972248077, 0.006485585123300552], [0.035732727497816086, 0.8311607241630554, 0.09975884854793549], [-0.5712876319885254, 0.6251507997512817, -0.12214753031730652], [0.0774478167295456, -0.2679769992828369, 0.033599138259887695], [0.12251898646354675, 0.8804343938827515, 0.18719038367271423], [-0.5648448467254639, 0.7570642828941345, -0.11140501499176025], [0.11400086432695389, -0.47486406564712524, 0.03903655335307121], [0.026785176247358322, -0.3977603316307068, 0.0587795190513134], [0.15831886231899261, -0.3766084909439087, -0.008397392928600311], [0.08489605039358139, -0.5375885963439941, 0.08543981611728668], [-0.03570937737822533, -0.45721977949142456, 0.08699105679988861], [0.2436358481645584, -0.4191235303878784, -0.013296348974108696], [-0.29132533073425293, -0.470251202583313, 0.1522010862827301], [0.3011075556278229, -0.1722184270620346, 0.026896033436059952], [-0.37445327639579773, -0.7025144100189209, 0.18877080082893372], [0.09085264056921005, -0.20954488217830658, 0.16995173692703247], [-0.38382503390312195, -0.780813992023468, 0.21590490639209747], [0.027075301855802536, -0.23481903970241547, 0.21709677577018738]]}, {"image_id": "179.jpg", "category_id": 1, "keypoints": [1009.2733154296875, 471.153076171875, 0.9727218151092529, 1011.856201171875, 496.7566223144531, 0.9875838756561279, 1005.0526733398438, 503.51080322265625, 0.9841967821121216, 1000.4987182617188, 434.2687683105469, 0.9933269619941711, 1029.1417236328125, 642.6856079101562, 0.9811512231826782, 1029.331298828125, 641.005615234375, 0.9774237871170044, 1010.8330688476562, 388.9976806640625, 0.9758253693580627, 944.2554931640625, 732.2289428710938, 0.9638490676879883, 929.2533569335938, 748.8990478515625, 0.918064534664154, 1022.2581787109375, 373.91168212890625, 0.9901041388511658, 964.99169921875, 770.8870849609375, 0.9637131094932556, 933.429443359375, 795.1893310546875, 0.9208875894546509, 1021.9445190429688, 300.170166015625, 0.9863039255142212, 1024.5626220703125, 327.555908203125, 0.9894505739212036, 1008.9500122070312, 336.0235595703125, 0.9888373017311096, 1037.1527099609375, 280.97637939453125, 0.9387093782424927, 1033.194091796875, 311.51922607421875, 0.9785907864570618, 1002.7965087890625, 336.8921813964844, 0.9758023023605347, 1073.38525390625, 292.50872802734375, 0.9287329316139221, 1057.6812744140625, 420.8650207519531, 0.9580499529838562, 1095.687255859375, 252.20449829101562, 0.977020800113678, 1146.56494140625, 432.7253723144531, 0.9771062731742859, 1109.9593505859375, 244.80288696289062, 0.9476150274276733, 1182.485595703125, 430.1044006347656, 0.9434144496917725, 1108.5748291015625, 225.31204223632812, 0.9297906756401062, 1086.8759765625, 194.26324462890625, 0.9358908534049988, 1210.0177001953125, 415.2764587402344, 0.8625236749649048, 975.9391479492188, 786.5494995117188, 0.9634302258491516, 944.95458984375, 815.4692993164062, 0.918586254119873], "score": 2.3080663681030273, "box": [899.3812255859375, 152.28346252441406, 297.0997314453125, 655.6038665771484], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.009316656738519669, 0.08138597011566162, 0.07690946757793427], [-0.01522513572126627, 0.09583724290132523, -0.05213114991784096], [-0.026533696800470352, -0.10241714119911194, -0.009384207427501678], [0.05480556935071945, 0.45533236861228943, 0.14401409029960632], [0.05220220237970352, 0.47912415862083435, -0.06785141676664352], [0.005412830971181393, -0.22879192233085632, -0.03405123949050903], [-0.22128432989120483, 0.7481112480163574, 0.17211422324180603], [-0.21063967049121857, 0.7679678201675415, 0.03187565505504608], [0.04033994674682617, -0.2690514624118805, -0.05169171839952469], [-0.16422580182552338, 0.8578413724899292, 0.22061322629451752], [-0.19858229160308838, 0.8958742618560791, -0.0015709344297647476], [0.027677729725837708, -0.4748593270778656, -0.10109962522983551], [0.04446164891123772, -0.4044085443019867, -0.006274795159697533], [-0.002504451898857951, -0.3685067594051361, -0.14515052735805511], [0.07730556279420853, -0.5360561609268188, -0.1295485645532608], [0.07484355568885803, -0.4627022445201874, 0.05762389302253723], [-0.022238507866859436, -0.3599359691143036, -0.23913361132144928], [0.2513832449913025, -0.5565921068191528, 0.22915002703666687], [0.11656419932842255, -0.14583072066307068, -0.2598763704299927], [0.33875206112861633, -0.7121753692626953, 0.05545105040073395], [0.36693498492240906, -0.11426520347595215, -0.2152203619480133], [0.39866167306900024, -0.7397503852844238, 0.004003779962658882], [0.4499095678329468, -0.12048819661140442, -0.2094438076019287]]}, {"image_id": "180.jpg", "category_id": 1, "keypoints": [1185.169189453125, 494.6070556640625, 0.9790163040161133, 1166.615478515625, 524.0523071289062, 0.9801565408706665, 1182.0667724609375, 530.8796997070312, 0.9782891273498535, 1187.9632568359375, 453.2120361328125, 0.9771720767021179, 1218.749267578125, 671.7263793945312, 0.982681930065155, 1094.0694580078125, 671.7604370117188, 0.980310320854187, 1209.47802734375, 406.1333923339844, 0.9829238653182983, 1203.384033203125, 820.0057373046875, 0.8611437678337097, 959.7025756835938, 761.8583374023438, 0.8754528760910034, 1215.662353515625, 390.93841552734375, 0.9866118431091309, 1240.673583984375, 840.1676025390625, 0.9172437191009521, 965.250244140625, 815.4781494140625, 0.7290963530540466, 1229.0286865234375, 308.57916259765625, 0.9900056719779968, 1197.822998046875, 345.0144348144531, 0.9875612854957581, 1251.500244140625, 338.6566162109375, 0.9931184649467468, 1220.6114501953125, 291.57794189453125, 0.971208930015564, 1176.8145751953125, 327.2110595703125, 0.9797986745834351, 1288.0419921875, 320.6467590332031, 0.9820848107337952, 1072.10400390625, 314.07830810546875, 0.9525384902954102, 1322.4268798828125, 428.9104309082031, 0.9785733819007874, 1039.9185791015625, 224.880615234375, 0.9417651891708374, 1226.021240234375, 411.52752685546875, 0.9597081542015076, 1036.01708984375, 191.36734008789062, 0.9345743060112, 1202.250244140625, 402.9937744140625, 0.9141213893890381, 1213.9100341796875, 234.1968994140625, 0.94559246301651, 1037.435302734375, 161.94183349609375, 0.7278335094451904, 1183.673583984375, 380.8187255859375, 0.8742471933364868, 1259.76953125, 833.8145141601562, 0.8436119556427002, 975.54541015625, 847.2386474609375, 0.8689714074134827], "score": 3.1612308025360107, "box": [918.1708984375, 207.46994018554688, 423.0728759765625, 649.2766418457031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.04622562229633331, 0.07765506207942963, 0.06687384843826294], [-0.01141754537820816, 0.09170593321323395, -0.060030799359083176], [0.005640549585223198, -0.10439470410346985, -0.012973995879292488], [0.08453036844730377, 0.4338796138763428, 0.14151443541049957], [-0.2205195277929306, 0.42389219999313354, -0.08363553881645203], [0.05995016172528267, -0.21916422247886658, 0.018349170684814453], [0.042399968951940536, 0.8393090963363647, 0.14013777673244476], [-0.5545287132263184, 0.6513336896896362, -0.033920615911483765], [0.07892782241106033, -0.2611292600631714, 0.049200788140296936], [0.13435932993888855, 0.8927847146987915, 0.22034019231796265], [-0.5408436059951782, 0.7821801900863647, -0.05399681627750397], [0.11188210546970367, -0.46869733929634094, 0.06243789941072464], [0.029480377212166786, -0.38817617297172546, 0.08883760124444962], [0.15141619741916656, -0.3745562732219696, 0.0034754201769828796], [0.09033705294132233, -0.5259777307510376, 0.11875253915786743], [-0.028085293248295784, -0.44253072142601013, 0.13337944447994232], [0.23626543581485748, -0.41611751914024353, -0.010673887096345425], [-0.2845213711261749, -0.4792056381702423, 0.19299490749835968], [0.31786873936653137, -0.1737087368965149, 0.02610384300351143], [-0.36451414227485657, -0.7103569507598877, 0.24889589846134186], [0.12640485167503357, -0.2175999879837036, 0.19444043934345245], [-0.37281695008277893, -0.7897213697433472, 0.2743634581565857], [0.06385768204927444, -0.2435254454612732, 0.24357567727565765]]}, {"image_id": "180.jpg", "category_id": 1, "keypoints": [998.0919799804688, 477.436767578125, 0.9716910719871521, 997.0071411132812, 505.4926452636719, 0.9844455718994141, 999.977294921875, 511.3253173828125, 0.9812088012695312, 987.0890502929688, 442.0164794921875, 0.9796724319458008, 1021.9049682617188, 633.0664672851562, 0.9718886613845825, 1042.122802734375, 641.760986328125, 0.9796875715255737, 995.1891479492188, 397.17401123046875, 0.9842756986618042, 943.059326171875, 738.65673828125, 0.9630894064903259, 944.8846435546875, 766.000732421875, 0.8640787601470947, 1006.6888427734375, 382.06353759765625, 0.9891562461853027, 961.2427978515625, 772.6563720703125, 0.9438593983650208, 952.5045166015625, 809.0098876953125, 0.8539383411407471, 999.5648193359375, 310.20654296875, 0.9846259355545044, 998.8585205078125, 334.69232177734375, 0.9816264510154724, 998.7589111328125, 349.4239807128906, 0.9861093163490295, 1012.5784301757812, 288.8006591796875, 0.952957034111023, 1003.9243774414062, 313.12042236328125, 0.9845414757728577, 1006.75341796875, 351.35565185546875, 0.9724769592285156, 1051.8118896484375, 282.94757080078125, 0.9164919853210449, 1070.1060791015625, 423.84625244140625, 0.9345604777336121, 1044.7281494140625, 213.07699584960938, 0.8795273900032043, 1143.626708984375, 420.1925048828125, 0.9697896838188171, 1043.729736328125, 194.05599975585938, 0.9100488424301147, 1166.148193359375, 408.7410583496094, 0.9339511394500732, 1012.548583984375, 227.43905639648438, 0.923851490020752, 1044.2357177734375, 166.67144775390625, 0.7826146483421326, 1175.3770751953125, 389.2127380371094, 0.913912296295166, 977.0196533203125, 788.7794189453125, 0.9524326920509338, 954.8922729492188, 829.5206298828125, 0.7485068440437317], "score": 2.2800679206848145, "box": [915.5645751953125, 211.0850830078125, 228.22509765625, 591.82958984375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0016970037249848247, 0.07950513064861298, 0.07831291854381561], [0.0040940456092357635, 0.09631438553333282, -0.05167954042553902], [-0.03132888674736023, -0.09921158850193024, -0.017201004549860954], [0.07051733136177063, 0.4405819773674011, 0.17566561698913574], [0.12427768856287003, 0.4646589756011963, -0.04961630702018738], [-0.007160926703363657, -0.22699175775051117, -0.04232113063335419], [-0.16797596216201782, 0.7613829374313354, 0.1988157033920288], [-0.12198980897665024, 0.7797971963882446, -0.04283202812075615], [0.028638722375035286, -0.2670295834541321, -0.05744864046573639], [-0.11344245821237564, 0.8678373694419861, 0.25511348247528076], [-0.09952399879693985, 0.9016940593719482, -0.08837521821260452], [-0.00036161800380796194, -0.46231698989868164, -0.13099448382854462], [0.0004896164173260331, -0.4029257297515869, -0.028287095949053764], [-0.0016409758245572448, -0.350089967250824, -0.16865703463554382], [0.04302654042840004, -0.5330095291137695, -0.14285366237163544], [0.018093740567564964, -0.46164917945861816, 0.03935716301202774], [0.02186765894293785, -0.3380178213119507, -0.2610417306423187], [0.16727522015571594, -0.568497359752655, 0.22581827640533447], [0.18889643251895905, -0.14645497500896454, -0.26631587743759155], [0.14232796430587769, -0.8146414756774902, 0.2260228544473648], [0.4077971279621124, -0.1622820347547531, -0.13710437715053558], [0.13796375691890717, -0.8977283239364624, 0.22594404220581055], [0.47699835896492004, -0.19773273169994354, -0.1082126796245575]]}, {"image_id": "181.jpg", "category_id": 1, "keypoints": [1186.495849609375, 486.8471984863281, 0.9792166352272034, 1169.2215576171875, 517.2589111328125, 0.9807625412940979, 1181.9619140625, 522.8912963867188, 0.9808104634284973, 1189.6787109375, 445.564697265625, 0.9812068939208984, 1214.923583984375, 667.3159790039062, 0.9746233224868774, 1096.5081787109375, 665.4017944335938, 0.9733741283416748, 1208.4755859375, 397.89532470703125, 0.984561026096344, 1205.897705078125, 817.17138671875, 0.8603142499923706, 961.2667236328125, 761.8995971679688, 0.8596971035003662, 1213.5733642578125, 382.66778564453125, 0.9882861375808716, 1237.1173095703125, 839.4295043945312, 0.925651490688324, 963.783447265625, 814.9457397460938, 0.7092281579971313, 1225.92431640625, 299.84552001953125, 0.9897934198379517, 1195.431884765625, 337.6260070800781, 0.9870924949645996, 1248.2513427734375, 329.98077392578125, 0.9913994669914246, 1216.629150390625, 281.1144104003906, 0.9748204350471497, 1173.148193359375, 321.45904541015625, 0.9812091588973999, 1283.81591796875, 312.291259765625, 0.9831874370574951, 1071.404296875, 310.0544128417969, 0.9512806534767151, 1324.4915771484375, 417.2734069824219, 0.9724788665771484, 1038.252685546875, 214.47854614257812, 0.9483700394630432, 1226.7791748046875, 406.11273193359375, 0.964694619178772, 1032.239501953125, 181.06558227539062, 0.9281221032142639, 1200.4288330078125, 399.424560546875, 0.9079761505126953, 1215.8885498046875, 222.29751586914062, 0.9488896727561951, 1031.58740234375, 156.09130859375, 0.7451010346412659, 1179.9029541015625, 380.6590576171875, 0.8818639516830444, 1254.6302490234375, 834.015869140625, 0.840600848197937, 975.0158081054688, 853.1666870117188, 0.8436865210533142], "score": 3.1662850379943848, "box": [927.6315307617188, 199.0859832763672, 410.25335693359375, 659.0672149658203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.043244969099760056, 0.07870982587337494, 0.0669732540845871], [-0.014952287077903748, 0.0898846760392189, -0.06124037876725197], [0.005798444151878357, -0.10404469072818756, -0.010730004869401455], [0.07189419120550156, 0.43994444608688354, 0.14320282638072968], [-0.21767155826091766, 0.4262361526489258, -0.07693955302238464], [0.05381949245929718, -0.22097094357013702, 0.021294664591550827], [0.04791295900940895, 0.8461971879005432, 0.1491784006357193], [-0.5470459461212158, 0.6630299687385559, -0.05126063525676727], [0.07000071555376053, -0.26350200176239014, 0.05241146311163902], [0.1320040225982666, 0.9087397456169128, 0.2309941053390503], [-0.540847659111023, 0.7917336821556091, -0.08324839174747467], [0.10036449134349823, -0.4708280563354492, 0.06065792962908745], [0.019638806581497192, -0.3901898264884949, 0.08943197131156921], [0.14011892676353455, -0.3762625455856323, 0.003590863198041916], [0.07581015676259995, -0.5324081778526306, 0.11083269119262695], [-0.040421947836875916, -0.43916523456573486, 0.13600841164588928], [0.22446641325950623, -0.41792696714401245, -0.010384581983089447], [-0.2974429726600647, -0.47228193283081055, 0.19317390024662018], [0.320507287979126, -0.18071047961711884, 0.021875619888305664], [-0.3769782483577728, -0.7073288559913635, 0.2267361879348755], [0.1314873844385147, -0.2111562341451645, 0.1952751874923706], [-0.38947954773902893, -0.7840189933776855, 0.25732260942459106], [0.06280042976140976, -0.23127363622188568, 0.23811131715774536]]}, {"image_id": "181.jpg", "category_id": 1, "keypoints": [1003.9900512695312, 476.84149169921875, 0.9815593361854553, 1000.2389526367188, 503.9378356933594, 0.9851502180099487, 1005.839111328125, 508.9410705566406, 0.9788923859596252, 993.2364501953125, 441.6177978515625, 0.9850983023643494, 1020.1050415039062, 636.6463012695312, 0.9812383055686951, 1057.550537109375, 636.4547119140625, 0.9667905569076538, 1001.4420776367188, 397.43121337890625, 0.9831656217575073, 952.667724609375, 755.907470703125, 0.9640763998031616, 963.8931884765625, 757.0409545898438, 0.8460108041763306, 1011.9677124023438, 383.14312744140625, 0.9889311790466309, 974.41552734375, 799.2077026367188, 0.9456533193588257, 977.53564453125, 804.328857421875, 0.6416676044464111, 1004.01513671875, 310.87841796875, 0.9809820652008057, 1001.5674438476562, 337.2279052734375, 0.9799001812934875, 1005.6754150390625, 347.4891357421875, 0.9864140152931213, 1018.0187377929688, 289.06292724609375, 0.9577403664588928, 1006.7667236328125, 317.20550537109375, 0.9792791604995728, 1012.1956176757812, 350.06982421875, 0.966167151927948, 1051.429443359375, 279.3669738769531, 0.9261407852172852, 1080.355224609375, 415.57220458984375, 0.9432308077812195, 1046.2042236328125, 208.84786987304688, 0.9085593819618225, 1159.8349609375, 406.94183349609375, 0.9687612652778625, 1045.333251953125, 194.85354614257812, 0.8297958970069885, 1181.1710205078125, 393.1578369140625, 0.9272065162658691, 1011.58447265625, 221.17916870117188, 0.9102779030799866, 1051.725830078125, 203.752197265625, 0.8137061595916748, 1185.296630859375, 363.90570068359375, 0.9295119643211365, 991.8510131835938, 815.3079833984375, 0.8343522548675537, 979.1351318359375, 814.552734375, 0.7528274059295654], "score": 2.347280979156494, "box": [936.4255981445312, 234.1647491455078, 205.93121337890625, 539.5140228271484], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0075781624764204025, 0.07921388745307922, 0.07548785954713821], [0.005777327343821526, 0.09412295371294022, -0.051310572773218155], [-0.026952369138598442, -0.09680153429508209, -0.01726475916802883], [0.04836392402648926, 0.4475421607494354, 0.16224339604377747], [0.1518489420413971, 0.4529799222946167, -0.02687687799334526], [-0.006387365981936455, -0.2233361154794693, -0.037396423518657684], [-0.14850355684757233, 0.7951133251190186, 0.1546645164489746], [-0.09200475364923477, 0.768156886100769, -0.01253333780914545], [0.02826027385890484, -0.2627519369125366, -0.04987717047333717], [-0.08290443569421768, 0.9002285003662109, 0.19687283039093018], [-0.055769894272089005, 0.8933380246162415, -0.01792595535516739], [-0.0047477539628744125, -0.4556323289871216, -0.11391649395227432], [-0.008208421990275383, -0.3917543888092041, -0.017501819878816605], [0.001448998344130814, -0.3481537103652954, -0.15517783164978027], [0.040375977754592896, -0.5256861448287964, -0.11788909882307053], [0.009343938902020454, -0.445012629032135, 0.05128221958875656], [0.019936446100473404, -0.333618700504303, -0.24546736478805542], [0.13856546580791473, -0.5661351680755615, 0.24270403385162354], [0.2008047252893448, -0.157859668135643, -0.26678335666656494], [0.12151307612657547, -0.8101013898849487, 0.2670866549015045], [0.43027418851852417, -0.1871836930513382, -0.16252291202545166], [0.11753956228494644, -0.8886396884918213, 0.2896426320075989], [0.4969543516635895, -0.23028968274593353, -0.14363259077072144]]}, {"image_id": "182.jpg", "category_id": 1, "keypoints": [1182.045166015625, 482.4456481933594, 0.9790938496589661, 1165.4124755859375, 513.0901489257812, 0.9826493859291077, 1177.2197265625, 519.7578735351562, 0.9811736941337585, 1182.922607421875, 440.26922607421875, 0.9804846048355103, 1218.05859375, 665.281494140625, 0.9721890687942505, 1094.6766357421875, 659.8886108398438, 0.9738542437553406, 1201.823974609375, 391.6319885253906, 0.9836108088493347, 1209.38623046875, 819.0614013671875, 0.8914235234260559, 966.0486450195312, 768.2027587890625, 0.8627744913101196, 1208.4412841796875, 375.9091796875, 0.9891316890716553, 1249.0457763671875, 837.9335327148438, 0.9107891917228699, 975.7039184570312, 820.4891357421875, 0.7592906951904297, 1218.528076171875, 291.5751953125, 0.9901741147041321, 1189.0169677734375, 328.816650390625, 0.986946165561676, 1239.6170654296875, 322.7623291015625, 0.9914065003395081, 1215.895263671875, 272.48968505859375, 0.9790553450584412, 1166.69091796875, 312.12811279296875, 0.9828709363937378, 1275.25146484375, 304.9302978515625, 0.9827090501785278, 1068.944580078125, 296.96820068359375, 0.9544997215270996, 1326.8140869140625, 402.3274230957031, 0.962528645992279, 1033.072265625, 204.58035278320312, 0.9338470697402954, 1238.1805419921875, 393.870361328125, 0.9555144906044006, 1025.0037841796875, 172.419921875, 0.9281784296035767, 1205.6724853515625, 386.4035339355469, 0.9363399744033813, 1215.4345703125, 209.55392456054688, 0.9488363265991211, 1019.129638671875, 156.4493408203125, 0.8087821006774902, 1185.13623046875, 374.057861328125, 0.8795773983001709, 1264.72265625, 834.6163330078125, 0.8572041392326355, 985.1785278320312, 856.2733764648438, 0.850793719291687], "score": 3.174485445022583, "box": [933.19677734375, 196.54843139648438, 404.1265869140625, 659.6123962402344], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03900464251637459, 0.07924698293209076, 0.06992951035499573], [-0.014597362838685513, 0.09167144447565079, -0.059820763766765594], [0.0023210756480693817, -0.10509248077869415, -0.012549830600619316], [0.0895092561841011, 0.4383960962295532, 0.13408735394477844], [-0.21499566733837128, 0.42927467823028564, -0.08391468226909637], [0.05026358738541603, -0.22479455173015594, 0.012351753190159798], [0.06717291474342346, 0.845518171787262, 0.14165914058685303], [-0.5268426537513733, 0.6897789239883423, -0.11282533407211304], [0.07020831853151321, -0.26843786239624023, 0.0406564399600029], [0.1648850291967392, 0.8957898020744324, 0.21746432781219482], [-0.5032063722610474, 0.8191436529159546, -0.09030620753765106], [0.08960829675197601, -0.47867351770401, 0.044120170176029205], [0.016503550112247467, -0.39356881380081177, 0.08242827653884888], [0.1289091259241104, -0.38507217168807983, -0.01671488769352436], [0.0862162634730339, -0.5402470231056213, 0.10024156421422958], [-0.03923792019486427, -0.44162338972091675, 0.13624000549316406], [0.21312180161476135, -0.42674338817596436, -0.0363120511174202], [-0.296820729970932, -0.4855750799179077, 0.18582437932491302], [0.3360365927219391, -0.200234517455101, -0.014338353648781776], [-0.38000693917274475, -0.7114954590797424, 0.2576500475406647], [0.16695071756839752, -0.22678907215595245, 0.18004320561885834], [-0.3976828455924988, -0.7878484725952148, 0.2879677414894104], [0.09986922889947891, -0.245258167386055, 0.22698545455932617]]}, {"image_id": "182.jpg", "category_id": 1, "keypoints": [1006.395751953125, 478.82769775390625, 0.983172595500946, 1002.0115966796875, 507.8691101074219, 0.9862638711929321, 1011.44482421875, 513.0059204101562, 0.9866491556167603, 996.7421264648438, 441.57861328125, 0.9894207715988159, 1020.2680053710938, 657.77587890625, 0.9822525978088379, 1070.6328125, 632.3515625, 0.9723042249679565, 1005.8111572265625, 398.53082275390625, 0.9816935658454895, 985.0762329101562, 734.4114990234375, 0.891414225101471, 1012.5869750976562, 734.3062744140625, 0.7724743485450745, 1016.7311401367188, 384.766845703125, 0.9928381443023682, 1005.9961547851562, 734.601318359375, 0.8147838711738586, 1041.7330322265625, 734.6242065429688, 0.8314339518547058, 1006.9658203125, 312.4588928222656, 0.987245500087738, 1003.117431640625, 339.8463439941406, 0.9851150512695312, 1011.818603515625, 345.334228515625, 0.9852356314659119, 1018.7777099609375, 289.2208557128906, 0.9619877934455872, 1002.3355712890625, 326.4491271972656, 0.9845432043075562, 1020.0700073242188, 343.897705078125, 0.9669538736343384, 1035.2667236328125, 319.40216064453125, 0.9319345355033875, 1089.49951171875, 413.1305236816406, 0.8890475034713745, 1057.4622802734375, 308.37994384765625, 0.9253238439559937, 1154.879150390625, 403.1274719238281, 0.9555356502532959, 1052.951416015625, 239.8720703125, 0.5782164335250854, 1176.917236328125, 386.6617431640625, 0.9480019211769104, 998.496337890625, 223.62049865722656, 0.91350919008255, 1079.2235107421875, 348.5052185058594, 0.8821450471878052, 1196.0067138671875, 370.1435241699219, 0.874850869178772, 1029.355224609375, 734.4583740234375, 0.8695437908172607, 1046.2889404296875, 734.2969970703125, 0.8647946119308472], "score": 2.3539702892303467, "box": [950.8263549804688, 232.9290771484375, 185.10760498046875, 462.0484619140625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.01387073565274477, 0.08299363404512405, 0.07039033621549606], [0.01290099322795868, 0.09156320989131927, -0.05455680564045906], [-0.026972640305757523, -0.09732523560523987, -0.015566179528832436], [0.03296474739909172, 0.45705661177635193, 0.1332765519618988], [0.18233084678649902, 0.4373629093170166, -0.00711122527718544], [-0.0033892530482262373, -0.224694162607193, -0.03192087262868881], [-0.11691408604383469, 0.7990196943283081, 0.27442052960395813], [-0.004938908852636814, 0.7775866985321045, 0.08176683634519577], [0.02785351313650608, -0.2678951621055603, -0.04153326153755188], [-0.03396647423505783, 0.8084529638290405, 0.37527304887771606], [0.1211683377623558, 0.7818121910095215, 0.11495482176542282], [0.0031058129388839006, -0.4640263617038727, -0.10056424140930176], [-0.011563397012650967, -0.3958532512187958, -0.007916068658232689], [0.01345593947917223, -0.3580600917339325, -0.1454429030418396], [0.03477301448583603, -0.5406841039657593, -0.11245428025722504], [-0.012892300263047218, -0.44839605689048767, 0.06362741440534592], [0.0374281108379364, -0.3548137843608856, -0.23561400175094604], [0.11427568644285202, -0.49577394127845764, 0.2861134707927704], [0.22037917375564575, -0.18111643195152283, -0.2526126503944397], [0.3006778955459595, -0.5771671533584595, 0.14852938055992126], [0.42321524024009705, -0.21303331851959229, -0.10395614057779312], [0.29513514041900635, -0.6587003469467163, 0.14504092931747437], [0.4871363639831543, -0.2624322772026062, -0.09257536381483078]]}, {"image_id": "183.jpg", "category_id": 1, "keypoints": [1178.515625, 474.1376037597656, 0.9803757071495056, 1163.5693359375, 505.47406005859375, 0.9834033250808716, 1172.822509765625, 510.5686340332031, 0.9807011485099792, 1178.5284423828125, 432.66339111328125, 0.9817078113555908, 1214.851806640625, 657.6790771484375, 0.9622388482093811, 1094.6522216796875, 650.997802734375, 0.9750102758407593, 1197.988037109375, 384.76031494140625, 0.9836137890815735, 1208.4755859375, 811.9219970703125, 0.8995161652565002, 969.9600830078125, 770.78955078125, 0.8652799725532532, 1205.931640625, 369.49591064453125, 0.9869441986083984, 1240.465576171875, 833.80859375, 0.9082856774330139, 985.0887451171875, 819.53759765625, 0.7841399312019348, 1214.6746826171875, 285.9640197753906, 0.9875284433364868, 1187.9835205078125, 322.620849609375, 0.9873513579368591, 1234.9674072265625, 317.1475830078125, 0.9911608695983887, 1214.100830078125, 266.0866394042969, 0.9749404788017273, 1167.7552490234375, 306.8030700683594, 0.9826019406318665, 1268.4947509765625, 300.29052734375, 0.9780310392379761, 1068.8814697265625, 285.01422119140625, 0.9496347308158875, 1329.058837890625, 390.112060546875, 0.9582270383834839, 1033.878173828125, 202.76385498046875, 0.9462388157844543, 1242.65966796875, 378.7015380859375, 0.9706425070762634, 1028.3369140625, 170.82818603515625, 0.9449713826179504, 1209.825927734375, 368.17242431640625, 0.9288129806518555, 1214.2960205078125, 201.8214111328125, 0.9503567218780518, 1028.5350341796875, 146.13409423828125, 0.7764342427253723, 1193.4599609375, 353.63726806640625, 0.8984291553497314, 1260.4720458984375, 830.1722412109375, 0.8369019627571106, 996.119384765625, 847.7881469726562, 0.9003992080688477], "score": 3.173577308654785, "box": [937.875, 189.5772247314453, 401.56591796875, 668.7777557373047], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03438909351825714, 0.08045661449432373, 0.07112228870391846], [-0.01667541265487671, 0.09132859855890274, -0.059976935386657715], [0.000431060791015625, -0.10531499981880188, -0.011576328426599503], [0.09126091003417969, 0.44316092133522034, 0.12338477373123169], [-0.20910729467868805, 0.43299850821495056, -0.09722240269184113], [0.05019426718354225, -0.22508269548416138, 0.009145908057689667], [0.0731252133846283, 0.850900411605835, 0.10728970170021057], [-0.5036237239837646, 0.715198278427124, -0.10731375217437744], [0.07387733459472656, -0.2681620121002197, 0.03541695699095726], [0.1616017371416092, 0.9138659834861755, 0.18523281812667847], [-0.46462884545326233, 0.8418757915496826, -0.09044016897678375], [0.08886583149433136, -0.4789104461669922, 0.033868998289108276], [0.020341401919722557, -0.3930225372314453, 0.07852339744567871], [0.12600140273571014, -0.3849470615386963, -0.027922164648771286], [0.0910864770412445, -0.5446612238883972, 0.08520638942718506], [-0.030781416222453117, -0.44015073776245117, 0.1375562697649002], [0.20768550038337708, -0.4252256751060486, -0.058455679565668106], [-0.2869650423526764, -0.500162661075592, 0.17918118834495544], [0.3546944856643677, -0.21511375904083252, -0.021386396139860153], [-0.3788296580314636, -0.7258535027503967, 0.24201713502407074], [0.18685586750507355, -0.24913573265075684, 0.17353036999702454], [-0.3918718099594116, -0.8061022758483887, 0.263777494430542], [0.12236826121807098, -0.27352842688560486, 0.2216535061597824]]}, {"image_id": "183.jpg", "category_id": 1, "keypoints": [1015.485595703125, 484.6268005371094, 0.9850945472717285, 1007.4459838867188, 516.6107177734375, 0.986320436000824, 1019.706298828125, 520.4133911132812, 0.9891954064369202, 1008.0820922851562, 446.8292236328125, 0.98726487159729, 1008.1133422851562, 674.8530883789062, 0.9854930639266968, 1070.016845703125, 643.8840942382812, 0.979986310005188, 1013.7894897460938, 401.7500305175781, 0.9762929677963257, 969.4865112304688, 756.467529296875, 0.8859543800354004, 1002.0973510742188, 756.312255859375, 0.6720830202102661, 1023.7297973632812, 386.5264587402344, 0.9921506643295288, 996.8917236328125, 756.4776611328125, 0.8753609657287598, 1029.06640625, 756.456298828125, 0.7886325120925903, 1008.3108520507812, 312.0096435546875, 0.9873510599136353, 1005.5777587890625, 339.86273193359375, 0.9886589646339417, 1015.57958984375, 345.83978271484375, 0.9856916666030884, 1020.9579467773438, 288.7022705078125, 0.9595622420310974, 1004.2230224609375, 323.1392822265625, 0.985791027545929, 1025.149169921875, 344.9579772949219, 0.9724605083465576, 1045.0809326171875, 265.6804504394531, 0.918644368648529, 1100.2569580078125, 410.6067199707031, 0.8925966024398804, 1033.6123046875, 188.37319946289062, 0.9090963006019592, 1162.702880859375, 396.3077697753906, 0.9579225778579712, 1025.615966796875, 181.37237548828125, 0.7525951266288757, 1182.9453125, 378.10211181640625, 0.9560695886611938, 1016.6109008789062, 223.3563690185547, 0.921445906162262, 1015.9231567382812, 182.21438598632812, 0.6745419502258301, 1190.896240234375, 359.35186767578125, 0.9037735462188721, 1035.6842041015625, 756.1895751953125, 0.9132862687110901, 1043.4698486328125, 755.5711669921875, 0.8963344693183899], "score": 2.400641918182373, "box": [953.5215454101562, 223.2847137451172, 190.31207275390625, 491.0728302001953], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0226756539195776, 0.08311557024717331, 0.06665322184562683], [0.01137564703822136, 0.0905274897813797, -0.054956547915935516], [-0.020077262073755264, -0.0977647602558136, -0.014821364544332027], [-0.02006976492702961, 0.4624749720096588, 0.11739086359739304], [0.15801222622394562, 0.4473152160644531, -0.010454414412379265], [-0.005136463791131973, -0.2262309193611145, -0.031371913850307465], [-0.1874704360961914, 0.8209669589996338, 0.16598564386367798], [-0.04634562134742737, 0.7879050970077515, 0.008948121219873428], [0.024368908256292343, -0.26962506771087646, -0.04241824150085449], [-0.0885220468044281, 0.8286463022232056, 0.2506427764892578], [0.08214035630226135, 0.7902915477752686, 0.027810191735625267], [-0.020435873419046402, -0.45933762192726135, -0.10401671379804611], [-0.027622226625680923, -0.39179709553718567, -0.011399917304515839], [6.325519643723965e-05, -0.35503825545310974, -0.14621175825595856], [0.01731203868985176, -0.533471941947937, -0.11613599956035614], [-0.030475229024887085, -0.45465990900993347, 0.04974588751792908], [0.027248406782746315, -0.3506046235561371, -0.23422540724277496], [0.09225976467132568, -0.6267064809799194, 0.20200051367282867], [0.21933916211128235, -0.1871187686920166, -0.24510817229747772], [0.05918456241488457, -0.8654320240020752, 0.24662743508815765], [0.40475979447364807, -0.23869770765304565, -0.0805097445845604], [0.01414274051785469, -0.9131878614425659, 0.29458120465278625], [0.4638851583003998, -0.2916053235530853, -0.06386270374059677]]}, {"image_id": "184.jpg", "category_id": 1, "keypoints": [1178.4154052734375, 471.11114501953125, 0.9827737212181091, 1166.0838623046875, 503.095947265625, 0.9863422513008118, 1173.22216796875, 508.1644592285156, 0.9821557402610779, 1177.036865234375, 429.26568603515625, 0.9817668795585632, 1213.4312744140625, 656.5167236328125, 0.9634647369384766, 1094.6627197265625, 647.83837890625, 0.9719162583351135, 1195.781494140625, 380.3387451171875, 0.980475902557373, 1208.9129638671875, 808.177734375, 0.8968292474746704, 975.862548828125, 771.9349365234375, 0.8921712636947632, 1204.2459716796875, 365.1690673828125, 0.9862033724784851, 1241.966552734375, 828.9783935546875, 0.9103989005088806, 1000.0099487304688, 812.2515258789062, 0.8268304467201233, 1210.0311279296875, 282.52935791015625, 0.9867568016052246, 1186.1949462890625, 318.816162109375, 0.9900801181793213, 1229.421142578125, 313.3132019042969, 0.9907929301261902, 1211.648193359375, 262.12750244140625, 0.9713265895843506, 1166.1856689453125, 303.87054443359375, 0.9842897653579712, 1261.30517578125, 295.44940185546875, 0.9733543992042542, 1074.125244140625, 296.047607421875, 0.9503967761993408, 1330.976318359375, 378.1630859375, 0.9578365683555603, 1032.10888671875, 199.02069091796875, 0.9477776288986206, 1272.924560546875, 363.22119140625, 0.9684242010116577, 1027.053466796875, 169.99673461914062, 0.9453361630439758, 1243.5809326171875, 348.69268798828125, 0.963401198387146, 1205.6361083984375, 195.85552978515625, 0.9471049904823303, 1028.1336669921875, 144.9383544921875, 0.7770251631736755, 1223.9588623046875, 336.25079345703125, 0.9015066623687744, 1258.725341796875, 829.7587280273438, 0.8594200611114502, 1010.432861328125, 836.3934326171875, 0.8942281007766724], "score": 3.1765918731689453, "box": [940.4234619140625, 188.3041534423828, 399.1446533203125, 667.5201263427734], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.028269130736589432, 0.08206877112388611, 0.07183537632226944], [-0.01560753770172596, 0.09148795902729034, -0.05985080823302269], [-0.003919379785656929, -0.10486426949501038, -0.010742821730673313], [0.08831420540809631, 0.4498636722564697, 0.1179618388414383], [-0.21006757020950317, 0.4336487054824829, -0.09343035519123077], [0.04321454465389252, -0.2257072925567627, 0.004882451146841049], [0.07530919462442398, 0.8591830134391785, 0.10767728090286255], [-0.4933653771877289, 0.7271676063537598, -0.1250242441892624], [0.06811746209859848, -0.2682991325855255, 0.030149705708026886], [0.1669781506061554, 0.9194825291633606, 0.1840125471353531], [-0.4263615906238556, 0.8404644131660461, -0.10238822549581528], [0.078949473798275, -0.4786686301231384, 0.032487280666828156], [0.014283793047070503, -0.39081472158432007, 0.07788888365030289], [0.11493538320064545, -0.38710176944732666, -0.03254908323287964], [0.08766784518957138, -0.5464468002319336, 0.07998773455619812], [-0.034637562930583954, -0.43484747409820557, 0.14047881960868835], [0.1914120763540268, -0.42904096841812134, -0.07166693359613419], [-0.2911612093448639, -0.4620189666748047, 0.20951569080352783], [0.3598458170890808, -0.2320367693901062, -0.05564291775226593], [-0.38880956172943115, -0.6923309564590454, 0.24045103788375854], [0.2425847053527832, -0.28014272451400757, 0.1713932305574417], [-0.4025731086730957, -0.7742879986763, 0.2531418204307556], [0.1949903517961502, -0.3100607395172119, 0.23382076621055603]]}, {"image_id": "184.jpg", "category_id": 1, "keypoints": [1020.8944091796875, 488.4878234863281, 0.9848750829696655, 1009.8823852539062, 521.6539306640625, 0.986809492111206, 1028.5657958984375, 523.0963134765625, 0.9910412430763245, 1013.2014770507812, 450.23779296875, 0.9877309799194336, 1009.5382690429688, 678.1500854492188, 0.9837470650672913, 1076.186767578125, 647.4581298828125, 0.9782766699790955, 1017.3578491210938, 404.189697265625, 0.9779064655303955, 968.2440795898438, 765.9552001953125, 0.8585267066955566, 999.760498046875, 765.4237060546875, 0.5776307582855225, 1026.1402587890625, 387.7128601074219, 0.9925300478935242, 987.7701416015625, 766.0492553710938, 0.8469462990760803, 1025.3924560546875, 766.0540771484375, 0.7225073575973511, 1008.6486206054688, 312.46661376953125, 0.986240029335022, 1003.7926025390625, 340.9058837890625, 0.9888219237327576, 1018.3516235351562, 346.6776123046875, 0.9874657392501831, 1022.672119140625, 290.81365966796875, 0.9619532227516174, 999.4248657226562, 321.7577209472656, 0.9848306179046631, 1028.5089111328125, 343.8619689941406, 0.9701877236366272, 1041.3428955078125, 252.94529724121094, 0.9541523456573486, 1110.1383056640625, 407.6165466308594, 0.9125657081604004, 1026.4013671875, 182.16409301757812, 0.888963520526886, 1164.4344482421875, 386.3128967285156, 0.9661625027656555, 1018.0877075195312, 176.11886596679688, 0.7453951835632324, 1183.138427734375, 364.5580139160156, 0.9550970792770386, 1040.3563232421875, 221.21099853515625, 0.9060713648796082, 1008.236328125, 176.9842529296875, 0.7537190318107605, 1186.279541015625, 345.4349670410156, 0.9368119835853577, 1009.3934326171875, 765.8560791015625, 0.8855271339416504, 1027.1109619140625, 765.3361206054688, 0.8162395358085632], "score": 2.5119564533233643, "box": [946.842529296875, 219.1873016357422, 203.4061279296875, 503.6957550048828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03065592050552368, 0.0875825509428978, 0.05839470401406288], [0.02081696316599846, 0.08758363872766495, -0.058288559317588806], [-0.01974339596927166, -0.09897740185260773, -0.012059371918439865], [-0.030458584427833557, 0.4684285521507263, 0.10945317149162292], [0.16063480079174042, 0.44992101192474365, -0.023204922676086426], [-0.009433945640921593, -0.2286502867937088, -0.0210505872964859], [-0.20157672464847565, 0.8309821486473083, 0.09632326662540436], [-0.05801411718130112, 0.7831587791442871, -0.05965887010097504], [0.01780180260539055, -0.27379268407821655, -0.03236393630504608], [-0.1268761307001114, 0.8411903977394104, 0.20353859663009644], [0.0656779557466507, 0.7899709939956665, -0.018348924815654755], [-0.036583270877599716, -0.4600423574447632, -0.10002391040325165], [-0.04571172967553139, -0.39279675483703613, -0.006756063550710678], [-0.0050051333382725716, -0.3568838834762573, -0.13955044746398926], [0.009049414657056332, -0.5304741859436035, -0.10046590864658356], [-0.05810859426856041, -0.456609308719635, 0.05277039483189583], [0.024759091436862946, -0.3588157296180725, -0.22728195786476135], [0.058459606021642685, -0.6451996564865112, 0.1924026906490326], [0.22261251509189606, -0.20159299671649933, -0.2538291811943054], [0.009827098809182644, -0.8846380710601807, 0.2255401313304901], [0.3759901523590088, -0.2676040530204773, -0.06141531094908714], [-0.03597945719957352, -0.9267164468765259, 0.2786555290222168], [0.42685288190841675, -0.3254384994506836, -0.03440011292695999]]}, {"image_id": "185.jpg", "category_id": 1, "keypoints": [1173.8214111328125, 466.73345947265625, 0.984351634979248, 1161.6142578125, 497.54949951171875, 0.9871342778205872, 1168.1168212890625, 504.36297607421875, 0.9832597374916077, 1172.75390625, 425.3390197753906, 0.9804372191429138, 1212.106201171875, 651.7726440429688, 0.9676591157913208, 1094.8924560546875, 644.4486083984375, 0.9710208177566528, 1191.4063720703125, 376.667236328125, 0.9810112714767456, 1208.540771484375, 806.5399169921875, 0.8982536792755127, 983.4525146484375, 773.0360717773438, 0.8935598134994507, 1200.403564453125, 361.25091552734375, 0.9878143668174744, 1242.599853515625, 825.1199340820312, 0.9141861796379089, 1018.2015991210938, 802.6090087890625, 0.8517042398452759, 1205.6781005859375, 280.2124938964844, 0.9862666130065918, 1183.033203125, 315.9072265625, 0.9899898171424866, 1223.957763671875, 310.330322265625, 0.9906286597251892, 1209.0615234375, 259.4259948730469, 0.9674612283706665, 1165.56787109375, 302.09881591796875, 0.9821219444274902, 1254.8284912109375, 292.3594970703125, 0.9713029861450195, 1091.964111328125, 323.4813232421875, 0.9673416614532471, 1333.8885498046875, 363.0516357421875, 0.9678237438201904, 1059.26806640625, 202.81866455078125, 0.9306409358978271, 1286.6346435546875, 340.8642578125, 0.9686701893806458, 1056.3126220703125, 167.501220703125, 0.9124400019645691, 1259.1884765625, 324.4898681640625, 0.964230477809906, 1199.5400390625, 191.7369384765625, 0.9428670406341553, 1053.3419189453125, 144.84280395507812, 0.7065476179122925, 1236.695556640625, 312.7615966796875, 0.928596019744873, 1256.6629638671875, 822.738525390625, 0.8390905857086182, 1034.22802734375, 812.528076171875, 0.8950194716453552], "score": 3.1733691692352295, "box": [939.6427612304688, 186.87767028808594, 404.19488525390625, 665.1906280517578], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.02848878689110279, 0.0804612785577774, 0.07239662110805511], [-0.016356397420167923, 0.09149980545043945, -0.05820254608988762], [-0.0029860930517315865, -0.10383684933185577, -0.01195415947586298], [0.09388389438390732, 0.44500821828842163, 0.1179337278008461], [-0.19877395033836365, 0.440094530582428, -0.061681538820266724], [0.04398428648710251, -0.22467927634716034, 0.0007464513182640076], [0.08424944430589676, 0.8522136807441711, 0.11470169574022293], [-0.46536001563072205, 0.7472774386405945, -0.06696008890867233], [0.0700339823961258, -0.26771706342697144, 0.02298944815993309], [0.17745715379714966, 0.906204342842102, 0.19267719984054565], [-0.3689412772655487, 0.8316231369972229, -0.03206280618906021], [0.07864303886890411, -0.47690778970718384, 0.023684430867433548], [0.016784274950623512, -0.38904905319213867, 0.07121188193559647], [0.11317531764507294, -0.3857537508010864, -0.041402775794267654], [0.09265841543674469, -0.546073317527771, 0.06771571934223175], [-0.02612079121172428, -0.43126851320266724, 0.13852274417877197], [0.1867057979106903, -0.42754584550857544, -0.08465038239955902], [-0.2524089813232422, -0.3724355101585388, 0.2643989324569702], [0.3792154788970947, -0.25562888383865356, -0.08327119797468185], [-0.3162301778793335, -0.6134295463562012, 0.28964293003082275], [0.2892695665359497, -0.3231249451637268, 0.14950954914093018], [-0.3235887885093689, -0.6957354545593262, 0.2776508331298828], [0.24435336887836456, -0.35736626386642456, 0.21087700128555298]]}, {"image_id": "185.jpg", "category_id": 1, "keypoints": [1026.3863525390625, 488.30029296875, 0.9858266711235046, 1011.9297485351562, 521.8582763671875, 0.9866091012954712, 1037.18994140625, 522.8863525390625, 0.9880992770195007, 1017.654296875, 448.4726257324219, 0.9885977506637573, 1007.873779296875, 676.9764404296875, 0.9821076393127441, 1081.1688232421875, 652.7048950195312, 0.9792078733444214, 1019.7828369140625, 400.79437255859375, 0.97904372215271, 968.6436157226562, 767.3236083984375, 0.8507426977157593, 1007.9140625, 767.0914306640625, 0.6448289155960083, 1028.436279296875, 383.9766540527344, 0.9921256303787231, 990.9031372070312, 767.2802734375, 0.8601335883140564, 1043.6785888671875, 767.3143310546875, 0.8277113437652588, 1011.6327514648438, 308.8774719238281, 0.9799975752830505, 1002.6444091796875, 338.14776611328125, 0.987290620803833, 1023.9777221679688, 345.4800109863281, 0.9870333075523376, 1027.3109130859375, 287.725341796875, 0.9622832536697388, 992.4660034179688, 317.18603515625, 0.9713499546051025, 1034.97412109375, 342.34222412109375, 0.9638851284980774, 1034.2725830078125, 249.09910583496094, 0.919139564037323, 1124.33984375, 401.4730224609375, 0.9394610524177551, 1022.7362670898438, 178.30755615234375, 0.9160050749778748, 1165.5706787109375, 379.11932373046875, 0.9614963531494141, 1018.6436767578125, 167.02291870117188, 0.8376704454421997, 1191.18212890625, 351.2041015625, 0.9436752200126648, 1077.6611328125, 211.46250915527344, 0.953177273273468, 1007.9593505859375, 166.80499267578125, 0.8563137054443359, 1197.9793701171875, 333.4788818359375, 0.9155038595199585, 1010.5090942382812, 767.1783447265625, 0.9144647121429443, 1043.9803466796875, 766.7315673828125, 0.8848990797996521], "score": 2.546539545059204, "box": [949.6815185546875, 210.31439208984375, 199.556640625, 513.0007934570312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.037306416779756546, 0.0879826694726944, 0.0533713698387146], [0.02936801314353943, 0.08682356029748917, -0.055366575717926025], [-0.018821606412529945, -0.09855355322360992, -0.014052895829081535], [-0.046067990362644196, 0.46762537956237793, 0.11009352654218674], [0.15485318005084991, 0.45299583673477173, -0.012013101950287819], [-0.017735665664076805, -0.22791500389575958, -0.022496189922094345], [-0.20625051856040955, 0.8333221673965454, 0.07762923836708069], [-0.061794131994247437, 0.7863655686378479, -0.05285855382680893], [0.006810080260038376, -0.2743091583251953, -0.033730924129486084], [-0.13098876178264618, 0.8428529500961304, 0.1842561662197113], [0.058757178485393524, 0.7915819883346558, -0.0035475362092256546], [-0.043620601296424866, -0.45809096097946167, -0.10944915562868118], [-0.06193926930427551, -0.3917546272277832, -0.01723339967429638], [-0.00523332878947258, -0.355654776096344, -0.14374014735221863], [0.0061726681888103485, -0.5252752900123596, -0.1093558594584465], [-0.09250140935182571, -0.4577378034591675, 0.03229723125696182], [0.026065219193696976, -0.3584628105163574, -0.23075471818447113], [0.028532609343528748, -0.6472067832946777, 0.16591770946979523], [0.2375606745481491, -0.21832720935344696, -0.23273608088493347], [-0.011752240359783173, -0.8893484473228455, 0.14895759522914886], [0.38206395506858826, -0.3004691004753113, -0.040197186172008514], [-0.036382630467414856, -0.9627708792686462, 0.17476214468479156], [0.43541350960731506, -0.35806578397750854, -0.018345290794968605]]}, {"image_id": "186.jpg", "category_id": 1, "keypoints": [1167.203857421875, 465.33233642578125, 0.9853326082229614, 1155.6788330078125, 496.76409912109375, 0.9875977039337158, 1160.263916015625, 502.83416748046875, 0.9860948324203491, 1165.279296875, 423.6714782714844, 0.9803146719932556, 1210.2825927734375, 651.6563720703125, 0.9685888886451721, 1093.2220458984375, 646.4265747070312, 0.9718299508094788, 1182.766357421875, 374.79962158203125, 0.9798586368560791, 1207.5421142578125, 804.5406494140625, 0.9033112525939941, 983.7662963867188, 776.0516357421875, 0.8882776498794556, 1193.4649658203125, 360.20977783203125, 0.9863780736923218, 1228.3729248046875, 819.7266845703125, 0.9110008478164673, 1026.4647216796875, 803.4166259765625, 0.8048751950263977, 1201.40625, 278.78753662109375, 0.9873487949371338, 1177.8858642578125, 314.6391906738281, 0.9861964583396912, 1216.1031494140625, 309.63104248046875, 0.9928523898124695, 1207.876220703125, 257.04296875, 0.9669824242591858, 1161.2225341796875, 300.40765380859375, 0.9819353222846985, 1246.499755859375, 292.77337646484375, 0.9768013954162598, 1086.2166748046875, 307.3358154296875, 0.9773975610733032, 1335.30126953125, 351.0631103515625, 0.9485914707183838, 1066.9854736328125, 202.59661865234375, 0.9629206657409668, 1300.7646484375, 335.40850830078125, 0.9563772678375244, 1063.050537109375, 160.68460083007812, 0.9040187001228333, 1279.833251953125, 325.1302490234375, 0.9614769220352173, 1195.4439697265625, 188.1357421875, 0.9440256953239441, 1057.79541015625, 140.32394409179688, 0.6810360550880432, 1254.709228515625, 318.4363708496094, 0.9104063510894775, 1241.565185546875, 818.6595458984375, 0.8662068843841553, 1040.99853515625, 810.8682250976562, 0.8728395700454712], "score": 3.173079013824463, "box": [946.40771484375, 182.56288146972656, 392.2020263671875, 670.7711639404297], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.025621134787797928, 0.08172909170389175, 0.07179102301597595], [-0.018393773585557938, 0.09029532223939896, -0.05913769081234932], [-0.0035064974799752235, -0.10382594168186188, -0.009889570996165276], [0.10481030493974686, 0.44322872161865234, 0.11826768517494202], [-0.1844988763332367, 0.4467650055885315, -0.053278371691703796], [0.04075508564710617, -0.22499488294124603, 0.00823686271905899], [0.09723714739084244, 0.8501885533332825, 0.11465266346931458], [-0.44715774059295654, 0.7566083669662476, -0.06834453344345093], [0.07105831801891327, -0.26540595293045044, 0.02982506901025772], [0.1646312028169632, 0.9019426107406616, 0.21682463586330414], [-0.3432716131210327, 0.8261767029762268, -0.024012934416532516], [0.08371443301439285, -0.4743410348892212, 0.03483996540307999], [0.02240595407783985, -0.38641709089279175, 0.08304113894701004], [0.11342532932758331, -0.384030282497406, -0.033708252012729645], [0.10704270750284195, -0.5471886396408081, 0.06791652739048004], [-0.016698824241757393, -0.42855364084243774, 0.15260256826877594], [0.18545083701610565, -0.42267465591430664, -0.0819234549999237], [-0.24630510807037354, -0.41628390550613403, 0.2850651144981384], [0.40028756856918335, -0.2803618311882019, -0.09164755046367645], [-0.29196569323539734, -0.6622385382652283, 0.2753753066062927], [0.34133103489875793, -0.3340151906013489, 0.15400509536266327], [-0.3004235029220581, -0.7419394254684448, 0.25235456228256226], [0.30143195390701294, -0.36130696535110474, 0.22180677950382233]]}, {"image_id": "186.jpg", "category_id": 1, "keypoints": [1023.98828125, 481.7740173339844, 0.9831729531288147, 1012.194580078125, 513.752685546875, 0.9870754480361938, 1034.848876953125, 516.0985717773438, 0.9893537163734436, 1014.7682495117188, 443.1274108886719, 0.988102376461029, 1002.9796142578125, 655.822265625, 0.986308753490448, 1064.678955078125, 650.346435546875, 0.9823691844940186, 1014.9664916992188, 396.857421875, 0.9772942066192627, 986.3877563476562, 781.59814453125, 0.8885785341262817, 1002.3199462890625, 781.3587646484375, 0.7445476651191711, 1023.7064819335938, 381.3760986328125, 0.9907193183898926, 1026.0538330078125, 782.9422607421875, 0.902826189994812, 1034.1500244140625, 783.2322998046875, 0.7899907231330872, 1011.418701171875, 310.349609375, 0.9747976064682007, 999.1869506835938, 337.1101379394531, 0.982967734336853, 1023.7411499023438, 348.6331787109375, 0.9840725660324097, 1029.7205810546875, 289.4847412109375, 0.9671772718429565, 985.0784301757812, 314.4332580566406, 0.9696400165557861, 1036.6551513671875, 347.6781005859375, 0.9664542078971863, 1018.1808471679688, 250.5301513671875, 0.9589363932609558, 1132.400634765625, 393.7825622558594, 0.9459397196769714, 1013.3140869140625, 180.8800048828125, 0.9592810869216919, 1128.27197265625, 344.474853515625, 0.9777535796165466, 1011.1810913085938, 157.47610473632812, 0.8898977041244507, 1115.2315673828125, 326.69183349609375, 0.9396533370018005, 1061.78662109375, 227.20407104492188, 0.9531511068344116, 1007.656982421875, 152.409912109375, 0.8341825604438782, 1096.557861328125, 324.5489501953125, 0.868796169757843, 1047.8753662109375, 783.160888671875, 0.9057883620262146, 1040.275634765625, 783.1085205078125, 0.9234629273414612], "score": 2.4499642848968506, "box": [947.9326782226562, 197.5970458984375, 194.15484619140625, 539.4061279296875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.033531304448843, 0.08649887144565582, 0.05822492763400078], [0.030472446233034134, 0.08839570730924606, -0.052424535155296326], [-0.022388463839888573, -0.09795483946800232, -0.01814092881977558], [-0.05660127475857735, 0.4612199366092682, 0.1226610392332077], [0.11157996952533722, 0.46274814009666443, 0.0009324923157691956], [-0.025249887257814407, -0.2271154224872589, -0.03754613548517227], [-0.10590649396181107, 0.8480366468429565, 0.20051200687885284], [-0.054520439356565475, 0.8144230842590332, 0.07997024059295654], [-0.00016184360720217228, -0.2728331685066223, -0.052163753658533096], [-0.001775708282366395, 0.8587033748626709, 0.27862098813056946], [0.06478782743215561, 0.8260424137115479, 0.130654439330101], [-0.04049075022339821, -0.4543565809726715, -0.14049367606639862], [-0.06686253100633621, -0.3932636082172394, -0.045771822333335876], [-0.0020670501980930567, -0.3489779531955719, -0.1673552542924881], [0.01759219542145729, -0.5141998529434204, -0.14680379629135132], [-0.10879822820425034, -0.4586240351200104, -0.0028344765305519104], [0.037960950285196304, -0.3459685146808624, -0.2515956163406372], [-0.010672513395547867, -0.6571756601333618, 0.13283321261405945], [0.26428306102752686, -0.23969006538391113, -0.22054354846477509], [-0.025596879422664642, -0.894895076751709, 0.18947912752628326], [0.2602529525756836, -0.4284341037273407, -0.05260353162884712], [-0.03294937685132027, -0.9761742353439331, 0.19117331504821777], [0.22922958433628082, -0.4796382486820221, 0.0025391876697540283]]}, {"image_id": "187.jpg", "category_id": 1, "keypoints": [1162.158935546875, 463.0762023925781, 0.9836868643760681, 1151.772705078125, 495.84527587890625, 0.987310528755188, 1155.54248046875, 500.94317626953125, 0.9862759709358215, 1159.5592041015625, 420.82391357421875, 0.9834467172622681, 1209.1505126953125, 651.7789916992188, 0.9728891849517822, 1090.8170166015625, 643.7418823242188, 0.9743016958236694, 1176.146728515625, 373.07196044921875, 0.9846726655960083, 1206.25146484375, 803.069091796875, 0.9088227152824402, 986.5144653320312, 778.89794921875, 0.879597008228302, 1186.252197265625, 358.364501953125, 0.9888545274734497, 1220.5843505859375, 816.9730224609375, 0.9005417823791504, 1029.763916015625, 804.2387084960938, 0.7920966148376465, 1195.7508544921875, 276.9866943359375, 0.9882876873016357, 1171.708984375, 314.00225830078125, 0.9886375069618225, 1208.9248046875, 307.9481201171875, 0.9924155473709106, 1200.569580078125, 254.97833251953125, 0.9587543606758118, 1155.246826171875, 299.36962890625, 0.9767563939094543, 1237.122802734375, 290.664306640625, 0.9806275367736816, 1074.7105712890625, 273.84722900390625, 0.9577614665031433, 1329.2379150390625, 335.6834411621094, 0.9476451873779297, 1038.439453125, 180.57070922851562, 0.9789945483207703, 1298.011474609375, 336.2073974609375, 0.9564647078514099, 1036.363037109375, 149.32611083984375, 0.9513106942176819, 1280.2757568359375, 335.07171630859375, 0.9562453627586365, 1189.3104248046875, 182.59939575195312, 0.9455788731575012, 1026.4918212890625, 134.391845703125, 0.8762156367301941, 1256.9263916015625, 334.0158996582031, 0.9269788265228271, 1232.335205078125, 816.8353881835938, 0.9028880596160889, 1046.5096435546875, 810.4287719726562, 0.8522045016288757], "score": 3.180790901184082, "box": [942.7738647460938, 183.1613006591797, 397.59075927734375, 670.8232574462891], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022631634026765823, 0.0835527628660202, 0.07029272615909576], [-0.017713692039251328, 0.08912445604801178, -0.060629457235336304], [-0.005618078634142876, -0.10360686480998993, -0.007527552545070648], [0.11229559034109116, 0.4445093870162964, 0.1034950390458107], [-0.18041425943374634, 0.44641417264938354, -0.07451894879341125], [0.037395983934402466, -0.22525672614574432, 0.008141797035932541], [0.1041121855378151, 0.8506713509559631, 0.0982741191983223], [-0.42756491899490356, 0.7678251266479492, -0.06072079390287399], [0.06687227636575699, -0.2672991156578064, 0.027157118543982506], [0.15709328651428223, 0.9028778076171875, 0.20815522968769073], [-0.3189501166343689, 0.8339839577674866, -0.02377704717218876], [0.08229102939367294, -0.47539812326431274, 0.03636343032121658], [0.018901225179433823, -0.38768118619918823, 0.08143556863069534], [0.11207834631204605, -0.38616758584976196, -0.03311450034379959], [0.10059503465890884, -0.5530991554260254, 0.06010790169239044], [-0.021042853593826294, -0.4317357540130615, 0.14905188977718353], [0.1817043423652649, -0.42765432596206665, -0.08216258883476257], [-0.25516727566719055, -0.514441967010498, 0.24120153486728668], [0.400033175945282, -0.3123924732208252, -0.1550171673297882], [-0.34655365347862244, -0.7462021708488464, 0.22222240269184113], [0.3522731363773346, -0.3268916606903076, 0.09795340150594711], [-0.35262036323547363, -0.8244572281837463, 0.19451646506786346], [0.31764891743659973, -0.3342856168746948, 0.17317073047161102]]}, {"image_id": "187.jpg", "category_id": 1, "keypoints": [1028.4447021484375, 480.6284484863281, 0.9811758995056152, 1015.695068359375, 512.8272705078125, 0.9909984469413757, 1038.5142822265625, 512.5951538085938, 0.9864100813865662, 1021.8338623046875, 444.6201171875, 0.9884100556373596, 1010.3013916015625, 645.6688842773438, 0.9861273169517517, 1049.1961669921875, 646.6568603515625, 0.9887819290161133, 1022.54736328125, 398.6405029296875, 0.9812939763069153, 1017.160888671875, 773.71337890625, 0.9029385447502136, 992.7246704101562, 775.8746337890625, 0.7942382097244263, 1029.647216796875, 382.7981872558594, 0.9918861985206604, 1065.1473388671875, 776.1489868164062, 0.8453477025032043, 1015.9998779296875, 777.513671875, 0.8041348457336426, 1017.9725952148438, 311.91693115234375, 0.9749917984008789, 1004.3974609375, 338.4331970214844, 0.9877151250839233, 1031.3526611328125, 350.1541442871094, 0.9834824800491333, 1035.0693359375, 290.7117919921875, 0.9610146880149841, 988.522216796875, 316.1253662109375, 0.9738603234291077, 1042.47412109375, 348.8627014160156, 0.9653756022453308, 1016.969482421875, 254.30975341796875, 0.9558241963386536, 1129.405517578125, 384.22186279296875, 0.9640678763389587, 1012.939697265625, 183.12582397460938, 0.9476017355918884, 1120.379150390625, 317.76678466796875, 0.9779075384140015, 1008.6141967773438, 165.27011108398438, 0.9148967862129211, 1120.2437744140625, 302.17315673828125, 0.9570701122283936, 1082.46484375, 214.10939025878906, 0.9372102618217468, 1000.0750122070312, 162.81787109375, 0.8995416760444641, 1117.22412109375, 285.320068359375, 0.961445689201355, 1070.4334716796875, 776.260986328125, 0.8232370018959045, 1011.70947265625, 777.4051513671875, 0.9010515213012695], "score": 2.4953789710998535, "box": [948.4614868164062, 207.20217895507812, 193.49749755859375, 525.3838806152344], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.040040791034698486, 0.08653420209884644, 0.054803911596536636], [0.032810527831315994, 0.08886712789535522, -0.05119084566831589], [-0.019075265154242516, -0.09920667111873627, -0.01893257163465023], [-0.048757586628198624, 0.46342921257019043, 0.10834890604019165], [0.0586099736392498, 0.47154128551483154, -0.0011303871870040894], [-0.017596248537302017, -0.22807742655277252, -0.04149607568979263], [-0.026878060773015022, 0.8515602946281433, 0.19471752643585205], [-0.09563099592924118, 0.8289451599121094, 0.07962186634540558], [0.00406658137217164, -0.27658623456954956, -0.05351046100258827], [0.08266644179821014, 0.8634740114212036, 0.2653355896472931], [0.023561300709843636, 0.842020571231842, 0.13104300200939178], [-0.03545559570193291, -0.45954805612564087, -0.1416642963886261], [-0.0664483830332756, -0.3959513306617737, -0.049258556216955185], [0.00790032185614109, -0.3552851676940918, -0.16799767315387726], [0.017673389986157417, -0.5238805413246155, -0.1454804390668869], [-0.11554273962974548, -0.46484649181365967, -0.020745115354657173], [0.04447479173541069, -0.3534168601036072, -0.25440678000450134], [-0.024867286905646324, -0.6701695322990417, 0.11057130992412567], [0.2772386074066162, -0.2615908980369568, -0.22186221182346344], [-0.037092097103595734, -0.9103544354438782, 0.15871454775333405], [0.2593703866004944, -0.47051483392715454, -0.08038514852523804], [-0.05679992958903313, -0.9887108206748962, 0.14535640180110931], [0.2626816928386688, -0.5258631110191345, -0.02045314386487007]]}, {"image_id": "188.jpg", "category_id": 1, "keypoints": [1156.17138671875, 462.7012634277344, 0.9828636050224304, 1145.506591796875, 496.2579040527344, 0.9881239533424377, 1150.933837890625, 500.6756896972656, 0.9876599907875061, 1151.7938232421875, 419.7721862792969, 0.9845035672187805, 1205.9312744140625, 648.9959716796875, 0.9661539793014526, 1084.7923583984375, 646.8557739257812, 0.9773949384689331, 1169.622802734375, 371.8076171875, 0.9843818545341492, 1204.5294189453125, 800.5606079101562, 0.9315013885498047, 974.6367797851562, 787.27197265625, 0.784340500831604, 1181.267333984375, 356.5684814453125, 0.9882177114486694, 1224.99951171875, 819.5076904296875, 0.9401205778121948, 1009.4889526367188, 807.709716796875, 0.8396766185760498, 1189.6641845703125, 275.2367858886719, 0.9867432117462158, 1166.0623779296875, 311.38262939453125, 0.9869856238365173, 1201.8641357421875, 304.8576354980469, 0.9917632341384888, 1196.57666015625, 255.60134887695312, 0.9625083208084106, 1150.1416015625, 297.4874267578125, 0.9816604852676392, 1228.0947265625, 287.57537841796875, 0.9791849255561829, 1069.1033935546875, 268.9710998535156, 0.949102520942688, 1328.0321044921875, 319.28778076171875, 0.9534731507301331, 1023.1732177734375, 178.72650146484375, 0.950293242931366, 1299.258056640625, 319.74786376953125, 0.9620896577835083, 1022.4840087890625, 154.9254150390625, 0.9577140212059021, 1282.0821533203125, 320.9073791503906, 0.9545679092407227, 1185.7742919921875, 184.26541137695312, 0.9347391724586487, 1008.367431640625, 137.4351806640625, 0.8828005194664001, 1256.9822998046875, 321.9791259765625, 0.9349282383918762, 1244.49853515625, 817.300048828125, 0.8857470154762268, 1031.7032470703125, 815.859130859375, 0.8936684727668762], "score": 3.1820926666259766, "box": [939.8594970703125, 186.34068298339844, 402.042724609375, 664.5505523681641], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.021959276869893074, 0.08446430414915085, 0.06863343715667725], [-0.01378067396581173, 0.08863856643438339, -0.06146414950489998], [-0.00823722593486309, -0.10316945612430573, -0.006787976250052452], [0.12117768824100494, 0.4357491135597229, 0.13527651131153107], [-0.17547309398651123, 0.4445773959159851, -0.07350391149520874], [0.03744767606258392, -0.2237793356180191, 0.012023214250802994], [0.11963146179914474, 0.838618814945221, 0.16392406821250916], [-0.4248785078525543, 0.7608086466789246, -0.09409864246845245], [0.06865143030881882, -0.26395928859710693, 0.032086197286844254], [0.18872326612472534, 0.9035423398017883, 0.2561194598674774], [-0.32351312041282654, 0.8243467807769775, -0.0384143628180027], [0.080215223133564, -0.4711536765098572, 0.05071203038096428], [0.02138601802289486, -0.3799603581428528, 0.09460464119911194], [0.10783064365386963, -0.38617920875549316, -0.02447228506207466], [0.10647296905517578, -0.5413440465927124, 0.0875219851732254], [-0.015829967334866524, -0.4213343858718872, 0.16525420546531677], [0.1767233908176422, -0.4304620027542114, -0.0719081461429596], [-0.2482183575630188, -0.5112518072128296, 0.2506389319896698], [0.4088277518749237, -0.3494117259979248, -0.14302939176559448], [-0.360803484916687, -0.7328746318817139, 0.2534041106700897], [0.364936888217926, -0.36540621519088745, 0.10916446149349213], [-0.36331257224082947, -0.8156148791313171, 0.24842680990695953], [0.3298615515232086, -0.36759620904922485, 0.18410693109035492]]}, {"image_id": "188.jpg", "category_id": 1, "keypoints": [1033.5430908203125, 486.5998840332031, 0.9789532423019409, 1015.9950561523438, 518.177001953125, 0.9908829927444458, 1048.4893798828125, 517.9745483398438, 0.9898988604545593, 1027.2679443359375, 449.4788513183594, 0.9875971078872681, 1004.229248046875, 657.027587890625, 0.9854315519332886, 1076.48583984375, 654.3748779296875, 0.9815066456794739, 1026.902587890625, 402.19903564453125, 0.9854493141174316, 982.883544921875, 768.8208618164062, 0.8576115369796753, 1028.81689453125, 767.4277954101562, 0.8788114786148071, 1033.5625, 386.2599182128906, 0.9917593598365784, 1008.7026977539062, 768.592041015625, 0.9035760164260864, 1053.8294677734375, 768.3242797851562, 0.9058270454406738, 1025.030517578125, 316.5465393066406, 0.9696273803710938, 1005.7333984375, 344.39263916015625, 0.9849287867546082, 1042.9383544921875, 352.89776611328125, 0.988166332244873, 1041.80322265625, 296.8309020996094, 0.9691675305366516, 986.4966430664062, 326.08978271484375, 0.9648225903511047, 1055.9954833984375, 350.8494567871094, 0.9727928042411804, 989.3995971679688, 268.1277770996094, 0.9552425742149353, 1126.6124267578125, 366.03582763671875, 0.9621403217315674, 1003.15283203125, 188.03936767578125, 0.9517858028411865, 1046.7562255859375, 239.81591796875, 0.9764472246170044, 1000.09765625, 168.36666870117188, 0.9250048995018005, 1027.4237060546875, 212.142822265625, 0.963038444519043, 1103.5230712890625, 209.85784912109375, 0.889238715171814, 992.2561645507812, 164.88320922851562, 0.8886132836341858, 1004.957763671875, 185.68060302734375, 0.7845175266265869, 1037.2646484375, 768.726318359375, 0.9173253774642944, 1049.50732421875, 768.4166259765625, 0.9363332986831665], "score": 2.5203349590301514, "box": [947.764892578125, 208.66909790039062, 188.5013427734375, 515.9723205566406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05165758728981018, 0.08820531517267227, 0.03993929922580719], [0.04638678953051567, 0.0869508907198906, -0.04272620752453804], [-0.014671008102595806, -0.09901651740074158, -0.02057616412639618], [-0.08236037194728851, 0.46488556265830994, 0.09652076661586761], [0.11969593167304993, 0.464692085981369, 0.0065886229276657104], [-0.019580896943807602, -0.2272166609764099, -0.04343196377158165], [-0.15617236495018005, 0.8558985590934753, 0.1285918802022934], [-0.020199105143547058, 0.8159688115119934, 0.132338747382164], [-0.0019393258262425661, -0.27789807319641113, -0.05059337615966797], [-0.07794469594955444, 0.8647132515907288, 0.23318356275558472], [0.10155651718378067, 0.8244455456733704, 0.17839954793453217], [-0.029140645638108253, -0.45943158864974976, -0.1448735147714615], [-0.07873986661434174, -0.3918440341949463, -0.06473677605390549], [0.026144277304410934, -0.3589833378791809, -0.15921136736869812], [0.020915234461426735, -0.5241960287094116, -0.12767262756824493], [-0.13992726802825928, -0.4545605182647705, -0.050212062895298004], [0.0695037767291069, -0.36007052659988403, -0.24191200733184814], [-0.12857432663440704, -0.6614636778831482, 0.10781455039978027], [0.30982890725135803, -0.3136727809906006, -0.17844244837760925], [-0.08889126032590866, -0.8951123356819153, 0.17203891277313232], [0.19561970233917236, -0.5128352642059326, -0.07102502137422562], [-0.10175192356109619, -0.9750803112983704, 0.16066396236419678], [0.15262198448181152, -0.5782527327537537, -0.04805297031998634]]}, {"image_id": "189.jpg", "category_id": 1, "keypoints": [1147.97216796875, 465.88323974609375, 0.984563946723938, 1138.1600341796875, 501.0229187011719, 0.9880739450454712, 1143.93798828125, 503.30517578125, 0.9858384132385254, 1142.0418701171875, 422.38104248046875, 0.9828680753707886, 1205.494384765625, 648.8613891601562, 0.9580326676368713, 1082.9267578125, 655.2064819335938, 0.9818985462188721, 1159.73974609375, 373.6649475097656, 0.9841287136077881, 1199.6585693359375, 804.7757568359375, 0.9282824397087097, 970.865478515625, 790.566162109375, 0.7375354170799255, 1171.009521484375, 357.18878173828125, 0.9880146980285645, 1227.21728515625, 822.7745361328125, 0.9311719536781311, 987.7034301757812, 832.9957275390625, 0.8761491775512695, 1178.126220703125, 273.1339416503906, 0.9845713973045349, 1154.111328125, 311.03680419921875, 0.9888919591903687, 1190.8795166015625, 303.8294677734375, 0.9917680621147156, 1184.758056640625, 253.57769775390625, 0.9683646559715271, 1136.3270263671875, 296.12249755859375, 0.9774487018585205, 1217.350341796875, 284.7978515625, 0.9732465744018555, 1052.55029296875, 254.26980590820312, 0.9494524598121643, 1320.024169921875, 299.84283447265625, 0.9429420828819275, 1002.645263671875, 181.829833984375, 0.9355469942092896, 1298.7322998046875, 299.011474609375, 0.9643078446388245, 991.7474365234375, 158.11444091796875, 0.9339306354522705, 1278.966796875, 298.96551513671875, 0.9442383646965027, 1176.0548095703125, 176.62588500976562, 0.922003984451294, 973.7666625976562, 140.740234375, 0.8607600927352905, 1251.3094482421875, 300.9000244140625, 0.856241762638092, 1250.7593994140625, 821.3343505859375, 0.8852364420890808, 997.7508544921875, 850.92919921875, 0.8481600880622864], "score": 3.1772665977478027, "box": [938.618896484375, 192.332275390625, 395.6436767578125, 651.0637817382812], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.01960369199514389, 0.08818014711141586, 0.06379607319831848], [-0.010978839360177517, 0.08543272316455841, -0.06562422215938568], [-0.011064058169722557, -0.10255782306194305, -0.0015447437763214111], [0.14089404046535492, 0.4339659810066223, 0.1125822514295578], [-0.15724843740463257, 0.4464142918586731, -0.08969515562057495], [0.033619582653045654, -0.2229045182466507, 0.020438142120838165], [0.1273432821035385, 0.8358008861541748, 0.13155768811702728], [-0.4139677882194519, 0.755091667175293, -0.10676571726799011], [0.062451671808958054, -0.264240026473999, 0.04109182953834534], [0.21378149092197418, 0.8949795961380005, 0.21159788966178894], [-0.3654016852378845, 0.8772368431091309, -0.11011429876089096], [0.06966686993837357, -0.47097522020339966, 0.058735884726047516], [0.011931953951716423, -0.37911468744277954, 0.10163354873657227], [0.10017208009958267, -0.38636183738708496, -0.015050068497657776], [0.09474191814661026, -0.5402559638023376, 0.09810619056224823], [-0.029671208932995796, -0.4222109317779541, 0.1682368814945221], [0.16722320020198822, -0.43354374170303345, -0.06151040270924568], [-0.2571653127670288, -0.5415435433387756, 0.22264808416366577], [0.4124605655670166, -0.3923872709274292, -0.11817046999931335], [-0.38979169726371765, -0.7419893145561218, 0.28267204761505127], [0.39023882150650024, -0.4135482907295227, 0.13560950756072998], [-0.4217720925807953, -0.8147602081298828, 0.30506986379623413], [0.35082370042800903, -0.41912758350372314, 0.20776532590389252]]}, {"image_id": "190.jpg", "category_id": 1, "keypoints": [1140.1915283203125, 466.04608154296875, 0.984370231628418, 1130.8321533203125, 501.6656494140625, 0.9886871576309204, 1136.3043212890625, 503.7533264160156, 0.9873607754707336, 1132.8031005859375, 422.4642028808594, 0.9807165265083313, 1203.491943359375, 647.5836181640625, 0.9594447612762451, 1070.2301025390625, 653.9434204101562, 0.9832159280776978, 1150.2291259765625, 372.6321716308594, 0.984012246131897, 1200.609375, 802.8763427734375, 0.8885620832443237, 964.381103515625, 794.4249267578125, 0.7428268790245056, 1161.4158935546875, 356.1229553222656, 0.9875332117080688, 1226.27734375, 822.3896484375, 0.9101278185844421, 994.0050048828125, 831.93017578125, 0.8820949792861938, 1169.4287109375, 270.70489501953125, 0.9860527515411377, 1144.0413818359375, 309.7139892578125, 0.9867602586746216, 1183.064697265625, 300.96087646484375, 0.9906882643699646, 1176.56298828125, 251.98895263671875, 0.9729304909706116, 1126.603271484375, 295.5058898925781, 0.9799145460128784, 1210.533447265625, 281.4854736328125, 0.9672589898109436, 1039.7911376953125, 252.71841430664062, 0.946947455406189, 1317.565673828125, 286.09356689453125, 0.9463257789611816, 993.1585693359375, 184.31558227539062, 0.9455035924911499, 1270.74462890625, 286.18292236328125, 0.9598244428634644, 985.7306518554688, 159.50222778320312, 0.9539902806282043, 1248.767333984375, 288.00299072265625, 0.9249141812324524, 1169.8248291015625, 175.79745483398438, 0.9222549796104431, 971.3611450195312, 137.01760864257812, 0.8633034825325012, 1220.87353515625, 291.68719482421875, 0.8701725006103516, 1246.568603515625, 824.313720703125, 0.8692783713340759, 1005.0570068359375, 847.6458740234375, 0.8625628352165222], "score": 3.175175189971924, "box": [935.3263549804688, 188.45396423339844, 391.18536376953125, 657.3045196533203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.018185358494520187, 0.08963078260421753, 0.06293818354606628], [-0.009371851570904255, 0.08514674752950668, -0.06695695221424103], [-0.013052718713879585, -0.10284267365932465, -0.0003049541264772415], [0.15441767871379852, 0.43299707770347595, 0.09037470817565918], [-0.16761191189289093, 0.442363440990448, -0.08871015906333923], [0.030083632096648216, -0.22307850420475006, 0.026271451264619827], [0.1451597809791565, 0.836266815662384, 0.06720373034477234], [-0.41030746698379517, 0.7601341605186462, -0.14212390780448914], [0.05839720368385315, -0.26406484842300415, 0.04885817691683769], [0.22392255067825317, 0.8982927203178406, 0.153449147939682], [-0.33071333169937134, 0.8627256155014038, -0.11863042414188385], [0.06724413484334946, -0.4712374806404114, 0.06827297806739807], [0.006610242649912834, -0.37957507371902466, 0.10839451849460602], [0.0998767837882042, -0.38656365871429443, -0.005093961954116821], [0.09307663887739182, -0.5348482728004456, 0.11590723693370819], [-0.03426394611597061, -0.42098718881607056, 0.1768396496772766], [0.16829343140125275, -0.43394142389297485, -0.049926068633794785], [-0.266623318195343, -0.5393995642662048, 0.21504715085029602], [0.4230429530143738, -0.42109251022338867, -0.07233487069606781], [-0.39289647340774536, -0.7354963421821594, 0.3013629615306854], [0.33857738971710205, -0.43999046087265015, 0.16923299431800842], [-0.41341492533683777, -0.8088117241859436, 0.3342069983482361], [0.2932092249393463, -0.44115138053894043, 0.2384408414363861]]}, {"image_id": "191.jpg", "category_id": 1, "keypoints": [1129.0098876953125, 465.3776550292969, 0.9844428896903992, 1114.7613525390625, 499.7899475097656, 0.988098680973053, 1128.97998046875, 503.65277099609375, 0.9886687397956848, 1122.1466064453125, 422.903564453125, 0.9803889393806458, 1195.223876953125, 645.7850952148438, 0.9572706818580627, 1064.6580810546875, 657.0223388671875, 0.9843672513961792, 1138.857177734375, 371.23809814453125, 0.9854623675346375, 1200.799072265625, 801.968505859375, 0.8808206915855408, 961.8070678710938, 793.7662353515625, 0.760136604309082, 1147.4814453125, 353.6556701660156, 0.9884793758392334, 1218.9366455078125, 815.621337890625, 0.8983379602432251, 992.91162109375, 823.35498046875, 0.8885511159896851, 1152.46484375, 267.79156494140625, 0.9881435632705688, 1126.4805908203125, 306.461181640625, 0.9906430840492249, 1173.461669921875, 296.4349670410156, 0.990866482257843, 1155.59033203125, 251.0086669921875, 0.9752772450447083, 1105.132568359375, 292.6946105957031, 0.9822724461555481, 1202.6136474609375, 276.3919982910156, 0.971897304058075, 1005.2858276367188, 264.45294189453125, 0.9671511650085449, 1308.9444580078125, 272.53253173828125, 0.9319190382957458, 983.030517578125, 204.32861328125, 0.9312260746955872, 1255.9014892578125, 266.9089660644531, 0.9623894095420837, 976.1932373046875, 171.60498046875, 0.9512430429458618, 1234.919189453125, 271.99114990234375, 0.9422652721405029, 1151.3831787109375, 180.2547607421875, 0.9391187429428101, 972.7991333007812, 137.59225463867188, 0.9075541496276855, 1203.76123046875, 283.8372802734375, 0.9068731069564819, 1242.8106689453125, 818.55517578125, 0.9007868766784668, 1008.0518798828125, 837.114501953125, 0.8506816625595093], "score": 3.180199146270752, "box": [934.0784301757812, 182.6826171875, 386.44866943359375, 663.861328125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03285622596740723, 0.09207913279533386, 0.05449077859520912], [0.0010630358010530472, 0.0822552889585495, -0.07254983484745026], [-0.009948225691914558, -0.10435895621776581, 0.0024196431040763855], [0.15409378707408905, 0.4269903004169464, 0.09790471196174622], [-0.1514560729265213, 0.4411435127258301, -0.11481262743473053], [0.02989441715180874, -0.22325731813907623, 0.038582488894462585], [0.16668203473091125, 0.8319600820541382, 0.07175025343894958], [-0.392546147108078, 0.7545774579048157, -0.20469672977924347], [0.0517488569021225, -0.26618534326553345, 0.06549759209156036], [0.2269314080476761, 0.8800088167190552, 0.18006475269794464], [-0.2987215518951416, 0.8456233143806458, -0.18162901699543], [0.05355774611234665, -0.4751054644584656, 0.08685822784900665], [-0.01591174490749836, -0.38245224952697754, 0.10925538837909698], [0.10661454498767853, -0.390325665473938, 0.024764548987150192], [0.06635864824056625, -0.5292811989784241, 0.14885525405406952], [-0.07178693264722824, -0.42455440759658813, 0.1669786125421524], [0.17872683703899384, -0.4387211799621582, -0.014888472855091095], [-0.3140231668949127, -0.49980998039245605, 0.24273259937763214], [0.42843425273895264, -0.4428843855857849, -0.07722897082567215], [-0.38664060831069946, -0.7100035548210144, 0.3568879961967468], [0.3369079828262329, -0.47502219676971436, 0.16162948310375214], [-0.4024850130081177, -0.7889136075973511, 0.3792734742164612], [0.2939588129520416, -0.4690479636192322, 0.2329036146402359]]}, {"image_id": "192.jpg", "category_id": 1, "keypoints": [1123.9326171875, 460.0434875488281, 0.9835350513458252, 1113.77490234375, 494.4138488769531, 0.9886120557785034, 1121.7745361328125, 496.2893371582031, 0.9886839985847473, 1117.09130859375, 417.1820068359375, 0.9842624664306641, 1193.9708251953125, 640.4415283203125, 0.9614384174346924, 1061.1451416015625, 648.9442138671875, 0.9827244877815247, 1132.462890625, 365.794677734375, 0.9870396256446838, 1200.96826171875, 801.19482421875, 0.8896375894546509, 961.4644165039062, 794.52294921875, 0.8156851530075073, 1142.1314697265625, 347.68707275390625, 0.9884905219078064, 1229.685546875, 816.8238525390625, 0.9145675897598267, 996.0839233398438, 832.0367431640625, 0.8726410269737244, 1148.47119140625, 263.13671875, 0.9864993095397949, 1124.2662353515625, 301.4422912597656, 0.9897361397743225, 1165.1346435546875, 291.28955078125, 0.9900461435317993, 1157.9080810546875, 247.26470947265625, 0.9739521741867065, 1105.677001953125, 287.341064453125, 0.9741283655166626, 1192.7003173828125, 272.3992919921875, 0.9565396308898926, 1020.2076416015625, 254.0814208984375, 0.9491222500801086, 1297.60546875, 262.4656982421875, 0.9383089542388916, 975.118896484375, 209.9295654296875, 0.9107661843299866, 1269.927978515625, 247.810546875, 0.9655745625495911, 961.196533203125, 183.50164794921875, 0.944618284702301, 1254.8782958984375, 250.20770263671875, 0.9608327746391296, 1148.555419921875, 176.73825073242188, 0.9280074238777161, 946.6973266601562, 149.45663452148438, 0.8741560578346252, 1212.5576171875, 269.36865234375, 0.9201245307922363, 1257.197998046875, 820.2452392578125, 0.8668550848960876, 1009.3038330078125, 840.3822021484375, 0.8283221125602722], "score": 3.177417039871216, "box": [935.7053833007812, 186.78533935546875, 372.78106689453125, 659.7313842773438], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022203993052244186, 0.09227056056261063, 0.059271190315485], [-0.006338108796626329, 0.08301405608654022, -0.0713576152920723], [-0.012623846530914307, -0.1038234680891037, 0.002926994115114212], [0.16469794511795044, 0.42972099781036377, 0.08773283660411835], [-0.15215149521827698, 0.44529086351394653, -0.11438587307929993], [0.024609990417957306, -0.22447358071804047, 0.033537644892930984], [0.17978711426258087, 0.8345851898193359, 0.0521770603954792], [-0.3812580108642578, 0.7749655246734619, -0.1761927455663681], [0.04924149811267853, -0.269716739654541, 0.05274539068341255], [0.26580747961997986, 0.8849535584449768, 0.14018583297729492], [-0.29800018668174744, 0.8686313629150391, -0.13228800892829895], [0.05738001689314842, -0.47920364141464233, 0.05539434030652046], [-0.004445486702024937, -0.39067691564559937, 0.10215812921524048], [0.09241704642772675, -0.3886268734931946, -0.010698344558477402], [0.09012701362371445, -0.5336122512817383, 0.10905708372592926], [-0.04991978779435158, -0.4326186180114746, 0.1682092845439911], [0.15604881942272186, -0.430306077003479, -0.06809116899967194], [-0.28067752718925476, -0.5306640267372131, 0.254099041223526], [0.40870290994644165, -0.4506610035896301, -0.11490815877914429], [-0.42174017429351807, -0.6836608052253723, 0.39295145869255066], [0.36851340532302856, -0.5071661472320557, 0.1337769776582718], [-0.4589436650276184, -0.7562749981880188, 0.4108501374721527], [0.33641916513442993, -0.5078614354133606, 0.21082039177417755]]}, {"image_id": "193.jpg", "category_id": 1, "keypoints": [1121.209228515625, 455.54986572265625, 0.9817847609519958, 1114.8955078125, 491.4106750488281, 0.9867745637893677, 1117.5693359375, 491.93902587890625, 0.9853678345680237, 1110.2982177734375, 412.92333984375, 0.9784788489341736, 1190.4779052734375, 641.1904296875, 0.9634858965873718, 1051.54736328125, 642.4556274414062, 0.980623185634613, 1123.0504150390625, 361.91424560546875, 0.9838224053382874, 1197.79296875, 804.9500732421875, 0.8947740793228149, 959.6627197265625, 800.504150390625, 0.8604733347892761, 1134.1302490234375, 344.4320068359375, 0.987602174282074, 1238.049072265625, 822.4375, 0.9023449420928955, 993.522216796875, 834.1275634765625, 0.8739922046661377, 1133.77783203125, 258.8556213378906, 0.9884216785430908, 1113.9342041015625, 298.6328125, 0.9885358214378357, 1149.9189453125, 287.4583740234375, 0.9910405874252319, 1147.93896484375, 240.94964599609375, 0.9741669297218323, 1096.19921875, 286.466552734375, 0.9828923344612122, 1174.8480224609375, 266.0150146484375, 0.9599196910858154, 1009.810546875, 264.62005615234375, 0.9789288640022278, 1283.5589599609375, 251.761962890625, 0.9319630265235901, 969.9093017578125, 212.76513671875, 0.8812482357025146, 1275.865966796875, 228.63150024414062, 0.9611860513687134, 959.9849853515625, 188.17245483398438, 0.9297574758529663, 1269.425537109375, 223.91360473632812, 0.9589188098907471, 1129.4173583984375, 167.5155029296875, 0.9379785060882568, 952.9812622070312, 164.5426025390625, 0.9416236877441406, 1243.916748046875, 229.76205444335938, 0.9331094622612, 1261.2581787109375, 826.553466796875, 0.8653382062911987, 1008.51953125, 841.0517578125, 0.8764796257019043], "score": 3.18286395072937, "box": [938.1466674804688, 179.34085083007812, 360.79217529296875, 668.8565979003906], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.009096961468458176, 0.0923258364200592, 0.06379800289869308], [-0.008331647142767906, 0.0858745127916336, -0.06882278621196747], [-0.019841285422444344, -0.10368789732456207, 0.0020757336169481277], [0.166312113404274, 0.4378003478050232, 0.08335448801517487], [-0.16730184853076935, 0.44507598876953125, -0.10259602963924408], [0.012079233303666115, -0.22758637368679047, 0.028144313022494316], [0.18366894125938416, 0.8460109233856201, 0.07066860049962997], [-0.37298333644866943, 0.7972531914710999, -0.12282182276248932], [0.04068630933761597, -0.2723364233970642, 0.044095903635025024], [0.2929137349128723, 0.8963490724563599, 0.12889403104782104], [-0.2829063832759857, 0.889484167098999, -0.08798734843730927], [0.02636932209134102, -0.48253947496414185, 0.05633632838726044], [-0.020173318684101105, -0.3853875398635864, 0.10553865879774094], [0.06357475370168686, -0.3985360860824585, -0.01814778707921505], [0.0734160766005516, -0.542654812335968, 0.08971976488828659], [-0.06030581519007683, -0.4207478165626526, 0.17923623323440552], [0.11970219761133194, -0.44511497020721436, -0.08043312281370163], [-0.282367467880249, -0.4884188175201416, 0.30982422828674316], [0.3714243769645691, -0.4740297794342041, -0.1347433626651764], [-0.40476876497268677, -0.6615774035453796, 0.4451099634170532], [0.37520867586135864, -0.5575044751167297, 0.11090495437383652], [-0.43390464782714844, -0.7364435791969299, 0.46987202763557434], [0.3632495701313019, -0.5795881152153015, 0.19107355177402496]]}, {"image_id": "194.jpg", "category_id": 1, "keypoints": [1109.1641845703125, 451.7275695800781, 0.9821229577064514, 1110.7962646484375, 490.2636413574219, 0.983822226524353, 1107.4478759765625, 486.273681640625, 0.9865536093711853, 1097.1104736328125, 413.37176513671875, 0.9775794148445129, 1183.204345703125, 640.8174438476562, 0.9781723618507385, 1046.2587890625, 640.9002075195312, 0.978309154510498, 1104.751708984375, 363.6776123046875, 0.9887236952781677, 1198.9188232421875, 802.965576171875, 0.9281308650970459, 962.1707763671875, 797.026611328125, 0.8449984788894653, 1112.185791015625, 346.44085693359375, 0.9899775385856628, 1229.2442626953125, 819.1713256835938, 0.8852737545967102, 988.8806762695312, 831.929443359375, 0.88609778881073, 1110.8116455078125, 267.041015625, 0.9888898134231567, 1094.211669921875, 307.309814453125, 0.9892820715904236, 1125.9248046875, 290.12060546875, 0.9897998571395874, 1122.7730712890625, 250.09262084960938, 0.976963996887207, 1078.8045654296875, 297.6337585449219, 0.9844529032707214, 1155.7568359375, 266.44757080078125, 0.9573761820793152, 1009.8787231445312, 281.17327880859375, 0.9810717701911926, 1261.7679443359375, 241.0198974609375, 0.8822702765464783, 959.1285400390625, 221.181884765625, 0.9112519025802612, 1247.88623046875, 221.72988891601562, 0.956613302230835, 954.9949951171875, 201.84219360351562, 0.9474804401397705, 1227.51025390625, 221.28140258789062, 0.9669592380523682, 1119.080078125, 181.2637939453125, 0.9411846399307251, 956.18115234375, 174.57244873046875, 0.950928270816803, 1181.2635498046875, 243.8092041015625, 0.9530876278877258, 1246.0152587890625, 822.9984741210938, 0.877045214176178, 1010.4658203125, 839.7015380859375, 0.884364128112793], "score": 3.1857333183288574, "box": [903.9307861328125, 182.2371063232422, 390.115478515625, 665.0404205322266], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.008213317021727562, 0.09664443135261536, 0.05735718458890915], [-0.007917538285255432, 0.08177942037582397, -0.07384969294071198], [-0.030090784654021263, -0.10083499550819397, 0.012238746508955956], [0.1757885217666626, 0.44507595896720886, 0.057341568171978], [-0.15307381749153137, 0.4461830258369446, -0.09840721637010574], [-0.009755408391356468, -0.22342708706855774, 0.053233422338962555], [0.21346455812454224, 0.8501434326171875, 0.033289626240730286], [-0.34624814987182617, 0.8045667409896851, -0.1019415557384491], [0.010752931237220764, -0.26985636353492737, 0.07608886063098907], [0.3094567358493805, 0.9045754671096802, 0.10851810872554779], [-0.2667357325553894, 0.9100018739700317, -0.08235440403223038], [0.009922439232468605, -0.47562626004219055, 0.12483769655227661], [-0.04418163001537323, -0.37462320923805237, 0.1559562385082245], [0.043649233877658844, -0.4033930003643036, 0.03700500726699829], [0.04829372465610504, -0.5308915376663208, 0.1739334613084793], [-0.0833783745765686, -0.4066677391529083, 0.23205111920833588], [0.10974854975938797, -0.45408710837364197, -0.011308291926980019], [-0.30229201912879944, -0.47032275795936584, 0.3684835135936737], [0.35606661438941956, -0.5092651844024658, -0.06723941117525101], [-0.45853930711746216, -0.6600359678268433, 0.4197204113006592], [0.34060797095298767, -0.5853744745254517, 0.1797129064798355], [-0.47335633635520935, -0.7331299781799316, 0.4586201012134552], [0.29503875970840454, -0.5933918952941895, 0.24988298118114471]]}, {"image_id": "195.jpg", "category_id": 1, "keypoints": [1106.998291015625, 449.23565673828125, 0.9816709160804749, 1105.142822265625, 486.56695556640625, 0.9838744401931763, 1105.6517333984375, 483.2250061035156, 0.9827626943588257, 1095.6429443359375, 410.4627990722656, 0.98147052526474, 1177.78466796875, 638.7771606445312, 0.9798340201377869, 1038.5667724609375, 638.5846557617188, 0.9768562316894531, 1101.3525390625, 360.78533935546875, 0.9859323501586914, 1193.8963623046875, 804.6317749023438, 0.9239236116409302, 959.2410888671875, 801.0338134765625, 0.8465202450752258, 1108.7490234375, 344.56610107421875, 0.9887677431106567, 1228.4652099609375, 822.7230224609375, 0.8791507482528687, 992.8626708984375, 834.6639404296875, 0.855306088924408, 1106.5859375, 266.6134033203125, 0.9900662302970886, 1087.33349609375, 307.93560791015625, 0.9879655838012695, 1124.8817138671875, 285.96697998046875, 0.9889177680015564, 1118.76953125, 250.36080932617188, 0.9799372553825378, 1069.1982421875, 301.6064453125, 0.9835634231567383, 1151.310791015625, 260.24609375, 0.9600624442100525, 969.4728393554688, 307.51434326171875, 0.9523895978927612, 1250.151611328125, 228.18975830078125, 0.8951289057731628, 951.2745971679688, 226.774169921875, 0.908929169178009, 1262.9273681640625, 198.87847900390625, 0.9531083106994629, 945.3594970703125, 205.80169677734375, 0.9293274879455566, 1261.6806640625, 192.81881713867188, 0.9594206213951111, 1108.58935546875, 180.44485473632812, 0.9449708461761475, 946.5020751953125, 179.08407592773438, 0.895463764667511, 1222.6968994140625, 197.85635375976562, 0.9515020251274109, 1246.1627197265625, 824.8740844726562, 0.8810842037200928, 1014.0357666015625, 841.6158447265625, 0.8547095060348511], "score": 3.180800199508667, "box": [902.95849609375, 177.78724670410156, 384.6329345703125, 674.0326385498047], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0005524652078747749, 0.09753430634737015, 0.05723007023334503], [-0.005499960854649544, 0.08124636113643646, -0.0752621442079544], [-0.02679690346121788, -0.10239152610301971, 0.010739417746663094], [0.16675318777561188, 0.4470796585083008, 0.06660886853933334], [-0.16218766570091248, 0.44078439474105835, -0.11432544142007828], [-0.011110412888228893, -0.225310280919075, 0.053228482604026794], [0.20466968417167664, 0.8536826968193054, 0.04159656912088394], [-0.34160006046295166, 0.8080906271934509, -0.11570773273706436], [0.009675788693130016, -0.2698356509208679, 0.0797935351729393], [0.30253854393959045, 0.9080789089202881, 0.11512695997953415], [-0.2503390312194824, 0.9016940593719482, -0.08654972165822983], [0.0033973201643675566, -0.47295111417770386, 0.14084887504577637], [-0.05074349790811539, -0.36928319931030273, 0.16341768205165863], [0.042472317814826965, -0.4063992500305176, 0.050273336470127106], [0.041321974247694016, -0.524796724319458, 0.1939183473587036], [-0.09974804520606995, -0.3925932049751282, 0.23730650544166565], [0.10311376303434372, -0.4640449285507202, 0.002046557143330574], [-0.3632509410381317, -0.37973302602767944, 0.27632132172584534], [0.34788942337036133, -0.5408170223236084, -0.03746361285448074], [-0.40775951743125916, -0.5883912444114685, 0.410464882850647], [0.4030057489871979, -0.6422406435012817, 0.19530446827411652], [-0.42809373140335083, -0.6633279323577881, 0.4435928761959076], [0.40502452850341797, -0.675202488899231, 0.2729335129261017]]}, {"image_id": "196.jpg", "category_id": 1, "keypoints": [1099.421142578125, 443.415771484375, 0.9808196425437927, 1097.167236328125, 481.39251708984375, 0.9855170249938965, 1097.698974609375, 478.8924865722656, 0.9817941188812256, 1088.052490234375, 404.3626403808594, 0.9809466004371643, 1172.015380859375, 636.3521728515625, 0.9808970093727112, 1031.30712890625, 634.6551513671875, 0.9811983704566956, 1091.9622802734375, 355.53033447265625, 0.9866904616355896, 1195.0174560546875, 800.6124267578125, 0.9262851476669312, 957.624755859375, 800.1646728515625, 0.8416861891746521, 1098.9832763671875, 339.7751159667969, 0.9904361963272095, 1229.3741455078125, 817.070068359375, 0.8602592945098877, 986.8291625976562, 833.677978515625, 0.8413242101669312, 1101.15869140625, 265.8720703125, 0.9899826049804688, 1082.543212890625, 306.27130126953125, 0.9862003922462463, 1115.45751953125, 280.99560546875, 0.9905576109886169, 1114.2294921875, 248.00216674804688, 0.9783962965011597, 1066.8035888671875, 303.0830078125, 0.9800478219985962, 1141.1708984375, 251.48892211914062, 0.9625410437583923, 952.5475463867188, 327.19451904296875, 0.9271847009658813, 1234.2454833984375, 219.22409057617188, 0.9200678467750549, 943.61279296875, 239.79641723632812, 0.9352633953094482, 1261.230712890625, 185.02230834960938, 0.9469248056411743, 935.6928100585938, 221.88861083984375, 0.9204733967781067, 1265.1568603515625, 170.64471435546875, 0.953498125076294, 1103.474365234375, 178.100341796875, 0.933642566204071, 942.1432495117188, 194.01638793945312, 0.945111870765686, 1242.9501953125, 163.7630615234375, 0.9391723275184631, 1244.1593017578125, 818.5716552734375, 0.8576313853263855, 1009.9384155273438, 844.837646484375, 0.830542802810669], "score": 3.1791868209838867, "box": [900.7511596679688, 174.42861938476562, 378.18304443359375, 678.5016174316406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0014803280355408788, 0.0982339009642601, 0.05783407762646675], [-0.005886204540729523, 0.0817938894033432, -0.07604192197322845], [-0.026633605360984802, -0.10376648604869843, 0.01080930233001709], [0.16773498058319092, 0.4481092691421509, 0.062232453376054764], [-0.16127368807792664, 0.4432176351547241, -0.11565399169921875], [-0.01516735553741455, -0.22460760176181793, 0.06144096329808235], [0.22344622015953064, 0.855071485042572, 0.040910910815000534], [-0.3275257647037506, 0.8184547424316406, -0.0923505574464798], [0.004888433963060379, -0.26863235235214233, 0.09052032232284546], [0.33304378390312195, 0.9100686311721802, 0.09680281579494476], [-0.23880043625831604, 0.9192772507667542, -0.10487081110477448], [0.014867257326841354, -0.4625726342201233, 0.18024805188179016], [-0.04144570976495743, -0.35754650831222534, 0.19496867060661316], [0.04080801084637642, -0.40837550163269043, 0.0762990266084671], [0.05446724593639374, -0.5178913474082947, 0.22841334342956543], [-0.08871878683567047, -0.3732084035873413, 0.27295565605163574], [0.09673703461885452, -0.47135818004608154, 0.027098488062620163], [-0.35060858726501465, -0.319172739982605, 0.29196879267692566], [0.3366242051124573, -0.5499657988548279, -0.03968700394034386], [-0.371677964925766, -0.5310806035995483, 0.42963242530822754], [0.42768481373786926, -0.6636222004890442, 0.17727221548557281], [-0.4046741724014282, -0.6072059273719788, 0.4487449526786804], [0.44930851459503174, -0.7326926589012146, 0.22206944227218628]]}, {"image_id": "197.jpg", "category_id": 1, "keypoints": [1091.88037109375, 443.5696716308594, 0.9801830649375916, 1090.0721435546875, 482.23773193359375, 0.9833701252937317, 1087.9581298828125, 480.0999755859375, 0.979524552822113, 1082.226806640625, 404.80328369140625, 0.9788967370986938, 1163.1988525390625, 634.564208984375, 0.979162335395813, 1024.136962890625, 632.7613525390625, 0.9821335673332214, 1088.5810546875, 354.96368408203125, 0.9864448308944702, 1191.909423828125, 792.927978515625, 0.9232286810874939, 957.3045654296875, 804.5452880859375, 0.8263466358184814, 1095.5489501953125, 339.30072021484375, 0.9869414567947388, 1213.579345703125, 806.14111328125, 0.8463104963302612, 984.2154541015625, 833.6641845703125, 0.8333426117897034, 1093.2955322265625, 263.60101318359375, 0.9876975417137146, 1082.0201416015625, 304.80352783203125, 0.9859214425086975, 1104.57470703125, 282.2337341308594, 0.9912719130516052, 1103.7310791015625, 242.06063842773438, 0.9751798510551453, 1070.8790283203125, 302.9333190917969, 0.9777199625968933, 1128.243896484375, 254.42800903320312, 0.9656031131744385, 975.48583984375, 333.93438720703125, 0.9413353800773621, 1219.240478515625, 210.89620971679688, 0.9066501259803772, 952.927490234375, 245.196044921875, 0.9535230398178101, 1244.621826171875, 172.90994262695312, 0.9442770481109619, 931.135986328125, 224.42361450195312, 0.9003930687904358, 1248.759765625, 157.66845703125, 0.9611923098564148, 1092.7008056640625, 171.57958984375, 0.9440478682518005, 928.6834716796875, 214.82046508789062, 0.9408285021781921, 1218.9200439453125, 151.2752685546875, 0.9447387456893921, 1220.924072265625, 808.761962890625, 0.8823473453521729, 1003.53173828125, 845.265869140625, 0.8470054268836975], "score": 3.177368640899658, "box": [897.4299926757812, 164.47438049316406, 370.17120361328125, 688.3026580810547], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0006581181660294533, 0.09881194680929184, 0.05741290748119354], [-0.011691585183143616, 0.08137233555316925, -0.07622597366571426], [-0.02384617179632187, -0.10458408296108246, 0.012792114168405533], [0.16832993924617767, 0.4496920108795166, 0.06896346062421799], [-0.16460281610488892, 0.44325685501098633, -0.12921589612960815], [-0.006864581257104874, -0.22571681439876556, 0.06202438473701477], [0.24029405415058136, 0.8550404906272888, 0.04143951088190079], [-0.3144277334213257, 0.8271347284317017, -0.14522193372249603], [0.013627713546156883, -0.2709376811981201, 0.08925987780094147], [0.34412577748298645, 0.9202352166175842, 0.09823083877563477], [-0.2231186181306839, 0.9265992045402527, -0.13688182830810547], [0.011702312156558037, -0.46772533655166626, 0.17462040483951569], [-0.031563665717840195, -0.3575595021247864, 0.1966298669576645], [0.03294992074370384, -0.41359812021255493, 0.06919993460178375], [0.045328252017498016, -0.5371454358100891, 0.20673538744449615], [-0.06666456162929535, -0.369911253452301, 0.28153979778289795], [0.08550536632537842, -0.4738677144050598, 0.012974821031093597], [-0.3216243088245392, -0.28862106800079346, 0.3077234625816345], [0.3167836368083954, -0.5808064937591553, -0.04768815636634827], [-0.371143639087677, -0.49459534883499146, 0.4484732151031494], [0.40676742792129517, -0.7118268609046936, 0.160701721906662], [-0.43295687437057495, -0.5535052418708801, 0.44832557439804077], [0.4284815192222595, -0.7834998965263367, 0.20168684422969818]]}, {"image_id": "198.jpg", "category_id": 1, "keypoints": [1083.8155517578125, 443.4429931640625, 0.9808628559112549, 1083.3172607421875, 480.4596862792969, 0.9822585582733154, 1080.45556640625, 479.0542907714844, 0.9799047708511353, 1071.5394287109375, 403.7301025390625, 0.979517936706543, 1155.6895751953125, 632.043212890625, 0.9824281930923462, 1019.9392700195312, 635.62353515625, 0.9748966097831726, 1078.435791015625, 355.1689453125, 0.9800491333007812, 1181.591796875, 794.2822265625, 0.9326804876327515, 956.8457641601562, 805.17919921875, 0.873374342918396, 1089.0379638671875, 340.76019287109375, 0.9843769073486328, 1218.209228515625, 810.6070556640625, 0.8583669066429138, 988.5767822265625, 831.529052734375, 0.8111879825592041, 1087.36572265625, 262.6982116699219, 0.9874093532562256, 1076.543701171875, 303.968017578125, 0.9826825261116028, 1092.20361328125, 282.9065246582031, 0.9895836710929871, 1103.5728759765625, 242.38400268554688, 0.9717696905136108, 1073.747802734375, 299.41717529296875, 0.9789000749588013, 1112.2252197265625, 256.50048828125, 0.9566099047660828, 999.988037109375, 332.040283203125, 0.9580551385879517, 1204.347412109375, 201.84332275390625, 0.9028237462043762, 955.84814453125, 248.43344116210938, 0.9491612911224365, 1227.241455078125, 166.22463989257812, 0.9526859521865845, 924.25537109375, 225.93399047851562, 0.9168433547019958, 1231.5, 149.8515625, 0.9644033312797546, 1089.670654296875, 169.168212890625, 0.9502333402633667, 911.9696044921875, 211.05606079101562, 0.8915545344352722, 1227.02197265625, 134.14276123046875, 0.8988718390464783, 1237.92822265625, 807.6519775390625, 0.8666508793830872, 1010.2740478515625, 839.720458984375, 0.8917735815048218], "score": 3.174879550933838, "box": [893.743408203125, 157.96734619140625, 355.1761474609375, 701.9598388671875], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0032827071845531464, 0.096283458173275, 0.060370758175849915], [-0.008467501029372215, 0.08382947742938995, -0.07303936779499054], [-0.027491586282849312, -0.10302872955799103, 0.009222760796546936], [0.17168430984020233, 0.44705432653427124, 0.0813574269413948], [-0.15164269506931305, 0.4520164132118225, -0.10366059839725494], [-0.008944393135607243, -0.22570283710956573, 0.05108220875263214], [0.23627975583076477, 0.8538546562194824, 0.07468660920858383], [-0.2952297627925873, 0.8378133773803711, -0.10465783625841141], [0.020596815273165703, -0.2660273313522339, 0.07647119462490082], [0.35561421513557434, 0.9084255695343018, 0.10486496984958649], [-0.192369282245636, 0.9240885972976685, -0.09367163479328156], [0.007596316747367382, -0.47056686878204346, 0.1348145455121994], [-0.018943706527352333, -0.3617541193962097, 0.17664195597171783], [0.020079204812645912, -0.40453028678894043, 0.03600645437836647], [0.056212108582258224, -0.5324400663375854, 0.16212692856788635], [-0.02517678029835224, -0.38299721479415894, 0.2659907937049866], [0.06443432718515396, -0.461464524269104, -0.028812650591135025], [-0.2661121189594269, -0.279593288898468, 0.3228763937950134], [0.2887495458126068, -0.5931887626647949, -0.053009890019893646], [-0.3626789152622223, -0.4734269380569458, 0.45486706495285034], [0.37318411469459534, -0.7219634056091309, 0.15831013023853302], [-0.4313354790210724, -0.5229161977767944, 0.461922824382782], [0.39391013979911804, -0.7940676212310791, 0.19807089865207672]]}, {"image_id": "199.jpg", "category_id": 1, "keypoints": [1077.2640380859375, 440.9640197753906, 0.9799779057502747, 1077.5301513671875, 478.7099609375, 0.9812717437744141, 1074.1939697265625, 476.5273742675781, 0.9781060218811035, 1064.532470703125, 399.6212158203125, 0.9799826145172119, 1147.611328125, 627.4649047851562, 0.9817336201667786, 1012.4552612304688, 632.7631225585938, 0.9777759909629822, 1072.8858642578125, 352.24395751953125, 0.9814507961273193, 1172.6243896484375, 792.0068359375, 0.9268035888671875, 952.2322998046875, 804.7762451171875, 0.8705442547798157, 1085.6826171875, 339.5225830078125, 0.9813923239707947, 1212.576904296875, 807.2559814453125, 0.8672536015510559, 989.7832641601562, 834.2908325195312, 0.8201718330383301, 1080.5087890625, 259.3617248535156, 0.9894810318946838, 1073.23828125, 302.19708251953125, 0.9788194894790649, 1082.72314453125, 280.12774658203125, 0.988782525062561, 1097.1827392578125, 241.08892822265625, 0.9707534909248352, 1075.346923828125, 296.81005859375, 0.9802508354187012, 1100.2303466796875, 253.17926025390625, 0.9580293297767639, 1026.83447265625, 328.1038513183594, 0.9691594839096069, 1189.4530029296875, 200.07696533203125, 0.9046321511268616, 967.5306396484375, 263.2867736816406, 0.9380130171775818, 1214.45458984375, 159.16799926757812, 0.963752031326294, 924.3394775390625, 238.59100341796875, 0.9398506879806519, 1218.561767578125, 141.34356689453125, 0.9436804056167603, 1070.8009033203125, 162.43756103515625, 0.9504311680793762, 900.2949829101562, 218.86224365234375, 0.9154295325279236, 1217.927490234375, 116.103759765625, 0.9258754253387451, 1233.9285888671875, 806.299560546875, 0.8645090460777283, 1016.4544067382812, 837.10205078125, 0.8810427784919739], "score": 3.1738359928131104, "box": [894.6759643554688, 153.14718627929688, 346.23455810546875, 707.2096252441406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.00459663663059473, 0.09744458645582199, 0.058345817029476166], [-0.008192677050828934, 0.08238418400287628, -0.07463815063238144], [-0.028156336396932602, -0.10224224627017975, 0.011469066143035889], [0.17153245210647583, 0.4507598876953125, 0.06972239166498184], [-0.1554284244775772, 0.4504016041755676, -0.10297943651676178], [-0.005885133519768715, -0.2226729840040207, 0.05636657774448395], [0.2328616827726364, 0.8591340780258179, 0.05485621094703674], [-0.2909853756427765, 0.840191125869751, -0.09057074040174484], [0.029771534726023674, -0.2586348056793213, 0.079922616481781], [0.3534379303455353, 0.9069609045982361, 0.09134738892316818], [-0.18490906059741974, 0.9232226610183716, -0.09494462609291077], [0.0030670238193124533, -0.46413928270339966, 0.1282767653465271], [-0.010427383705973625, -0.35632479190826416, 0.17750155925750732], [0.013680120930075645, -0.3937152624130249, 0.03267432004213333], [0.055781323462724686, -0.5230343341827393, 0.1544521450996399], [-0.0007338759023696184, -0.3797758221626282, 0.26567333936691284], [0.051390405744314194, -0.450350284576416, -0.03599861264228821], [-0.21383388340473175, -0.24704758822917938, 0.3625456988811493], [0.27190402150154114, -0.5779862999916077, -0.09722054749727249], [-0.35073593258857727, -0.4083021879196167, 0.5034388303756714], [0.36292868852615356, -0.7248988747596741, 0.09996410459280014], [-0.41927996277809143, -0.449786901473999, 0.5316108465194702], [0.3814038932323456, -0.7962151765823364, 0.1422632336616516]]}, {"image_id": "200.jpg", "category_id": 1, "keypoints": [1068.8935546875, 435.79376220703125, 0.9785172939300537, 1068.037109375, 473.8017578125, 0.9812593460083008, 1067.0650634765625, 471.2742004394531, 0.9822478890419006, 1055.382080078125, 392.76318359375, 0.977152943611145, 1140.619140625, 623.4033203125, 0.9774608016014099, 1007.57470703125, 632.7124633789062, 0.9788040518760681, 1066.553955078125, 344.9354248046875, 0.9820810556411743, 1169.7457275390625, 789.4360961914062, 0.9255182147026062, 951.7304077148438, 803.3297119140625, 0.8753736019134521, 1080.029052734375, 332.49127197265625, 0.9863206744194031, 1211.4027099609375, 805.588623046875, 0.8678407669067383, 993.072998046875, 833.0006713867188, 0.850308895111084, 1073.455322265625, 252.8669891357422, 0.9883102774620056, 1066.7305908203125, 296.52716064453125, 0.9826498031616211, 1077.3486328125, 271.6383056640625, 0.9882226586341858, 1088.4925537109375, 234.48101806640625, 0.9723408222198486, 1065.7696533203125, 293.1501159667969, 0.9846025109291077, 1093.97119140625, 244.29501342773438, 0.9568959474563599, 1016.7061767578125, 333.2796325683594, 0.9742069244384766, 1177.640869140625, 190.92303466796875, 0.9107577800750732, 972.0967407226562, 279.0121765136719, 0.9537460207939148, 1201.53271484375, 149.69073486328125, 0.9550016522407532, 932.7890625, 258.44403076171875, 0.9168126583099365, 1203.399658203125, 131.92855834960938, 0.9443566799163818, 1055.577392578125, 161.45938110351562, 0.9554567337036133, 907.8712768554688, 243.32305908203125, 0.8776274919509888, 1197.93212890625, 110.61044311523438, 0.8840847015380859, 1233.4630126953125, 806.39501953125, 0.8370472192764282, 1021.150146484375, 831.6261596679688, 0.8776364326477051], "score": 3.169196605682373, "box": [899.1524658203125, 150.45606994628906, 330.9755859375, 705.8830413818359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0014677587896585464, 0.0979292020201683, 0.05841514840722084], [-0.004594486206769943, 0.08242236077785492, -0.0754532516002655], [-0.028524275869131088, -0.10247185826301575, 0.010381724685430527], [0.1731509268283844, 0.45065662264823914, 0.07196687161922455], [-0.1443597376346588, 0.45469456911087036, -0.1084914356470108], [-0.0014999577542766929, -0.22123393416404724, 0.05652819946408272], [0.24315287172794342, 0.8587347269058228, 0.0390336848795414], [-0.272361695766449, 0.8485134840011597, -0.08115224540233612], [0.034834373742341995, -0.2554933726787567, 0.08165784180164337], [0.366099089384079, 0.9077408313751221, 0.06637400388717651], [-0.1624092012643814, 0.9268583059310913, -0.08840443193912506], [0.008523154072463512, -0.46052780747413635, 0.13369311392307281], [-0.007935534231364727, -0.35174718499183655, 0.18003472685813904], [0.021815510466694832, -0.39205315709114075, 0.036887504160404205], [0.05597499758005142, -0.519996166229248, 0.16735012829303741], [-0.008178608492016792, -0.3687831461429596, 0.27021005749702454], [0.05894682556390762, -0.45168009400367737, -0.02955280989408493], [-0.20207087695598602, -0.21528655290603638, 0.3796117305755615], [0.2795679569244385, -0.5900050401687622, -0.06900250166654587], [-0.3147850036621094, -0.3661864101886749, 0.5519280433654785], [0.3644835352897644, -0.7349915504455566, 0.13391628861427307], [-0.3801611363887787, -0.40348973870277405, 0.5918250679969788], [0.37449854612350464, -0.8007804155349731, 0.1872103214263916]]}, {"image_id": "201.jpg", "category_id": 1, "keypoints": [1057.541748046875, 437.4552307128906, 0.977104902267456, 1060.4166259765625, 475.9354248046875, 0.9771137237548828, 1054.3577880859375, 473.09130859375, 0.9781725406646729, 1043.1217041015625, 394.084228515625, 0.9715036749839783, 1135.066650390625, 623.9450073242188, 0.9768071174621582, 1004.2384643554688, 638.1786499023438, 0.9787855744361877, 1055.736572265625, 345.51171875, 0.9750183820724487, 1166.78076171875, 788.4281005859375, 0.9253453612327576, 952.832275390625, 804.5555419921875, 0.9008129239082336, 1069.5843505859375, 331.77099609375, 0.9881958961486816, 1210.7442626953125, 807.31494140625, 0.8747357130050659, 994.7559814453125, 836.2149047851562, 0.8863402605056763, 1061.2210693359375, 253.10023498535156, 0.9876484274864197, 1058.558349609375, 296.17108154296875, 0.9791187047958374, 1063.7955322265625, 273.72540283203125, 0.9885544180870056, 1073.5775146484375, 233.87435913085938, 0.9717130661010742, 1060.4876708984375, 291.9653015136719, 0.9817686676979065, 1077.3970947265625, 245.55552673339844, 0.9608079195022583, 1027.316650390625, 323.4034118652344, 0.9646605253219604, 1159.9864501953125, 191.75320434570312, 0.9250991940498352, 965.7467041015625, 283.4378662109375, 0.9475738406181335, 1190.3345947265625, 144.86203002929688, 0.9543911814689636, 926.8488159179688, 271.97186279296875, 0.9031416177749634, 1196.0267333984375, 121.083251953125, 0.9477763772010803, 1037.5660400390625, 159.93887329101562, 0.9585050344467163, 903.513916015625, 258.80950927734375, 0.8694658279418945, 1191.1304931640625, 96.0474853515625, 0.8991996049880981, 1232.510986328125, 808.91357421875, 0.8342446684837341, 1025.2198486328125, 833.1610107421875, 0.911338210105896], "score": 3.1712875366210938, "box": [900.1365966796875, 140.30349731445312, 326.0526123046875, 718.3614196777344], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.009602378122508526, 0.09577106684446335, 0.060849085450172424], [-0.007511107251048088, 0.08474907279014587, -0.07234575599431992], [-0.03136821091175079, -0.10171723365783691, 0.00965026579797268], [0.1858738362789154, 0.44485199451446533, 0.06639479845762253], [-0.12546885013580322, 0.4643735885620117, -0.07959497720003128], [0.0002490414772182703, -0.22245365381240845, 0.04742565006017685], [0.2624594569206238, 0.8499588966369629, 0.032759375870227814], [-0.24511797726154327, 0.8556503057479858, -0.021042777225375175], [0.03602682426571846, -0.2586153447628021, 0.07070745527744293], [0.38638415932655334, 0.9031755328178406, 0.03227602690458298], [-0.13742269575595856, 0.9369269013404846, -0.021710794419050217], [0.005327967926859856, -0.46183574199676514, 0.12695832550525665], [-0.0013295465614646673, -0.3521767854690552, 0.17372837662696838], [0.012382479384541512, -0.39458441734313965, 0.02860969863831997], [0.04669004678726196, -0.5273110270500183, 0.157265305519104], [0.007307751104235649, -0.37174421548843384, 0.2630501091480255], [0.043974656611680984, -0.45906513929367065, -0.0362880602478981], [-0.16374239325523376, -0.21562457084655762, 0.4006626605987549], [0.26195982098579407, -0.5983467102050781, -0.08011557161808014], [-0.32486316561698914, -0.331994891166687, 0.559471607208252], [0.362794429063797, -0.7562065124511719, 0.10376573354005814], [-0.38935962319374084, -0.3547287583351135, 0.6100189089775085], [0.3819998502731323, -0.8304924964904785, 0.14054293930530548]]}, {"image_id": "202.jpg", "category_id": 1, "keypoints": [1047.275390625, 438.0425109863281, 0.9812092185020447, 1050.7777099609375, 476.630859375, 0.9841150641441345, 1043.7406005859375, 471.7838439941406, 0.9821903705596924, 1034.75634765625, 396.3316650390625, 0.974351167678833, 1130.691162109375, 626.009765625, 0.9745805263519287, 1002.4656372070312, 635.760498046875, 0.9787377119064331, 1046.8580322265625, 345.0000915527344, 0.9823482632637024, 1163.0865478515625, 782.5289306640625, 0.9295397400856018, 954.347412109375, 801.5795288085938, 0.8989939093589783, 1058.825439453125, 330.2192077636719, 0.9869097471237183, 1203.5888671875, 802.1875610351562, 0.8659114241600037, 996.6234130859375, 835.0343627929688, 0.8775789737701416, 1054.532958984375, 257.3563232421875, 0.9874101281166077, 1052.4576416015625, 297.2759704589844, 0.9834735989570618, 1053.1724853515625, 274.98553466796875, 0.9910820722579956, 1067.9229736328125, 238.43975830078125, 0.9717487096786499, 1056.103759765625, 294.96185302734375, 0.9847591519355774, 1062.7457275390625, 247.4949188232422, 0.9682389497756958, 1032.40478515625, 332.7232971191406, 0.9526054859161377, 1146.557373046875, 194.5235595703125, 0.9135400056838989, 951.4964599609375, 297.83428955078125, 0.9225031137466431, 1177.4835205078125, 148.87271118164062, 0.9475573301315308, 923.1803588867188, 287.42730712890625, 0.9387907385826111, 1180.5350341796875, 126.32217407226562, 0.9547193050384521, 1032.24853515625, 162.965576171875, 0.9408652782440186, 904.9852905273438, 272.29608154296875, 0.8856024146080017, 1179.787841796875, 107.095703125, 0.8647128343582153, 1223.4283447265625, 801.6846923828125, 0.7882204055786133, 1022.0419311523438, 833.006591796875, 0.8999279141426086], "score": 3.1723060607910156, "box": [904.611572265625, 151.6968994140625, 312.9609375, 698.209228515625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.010039414279162884, 0.0979120209813118, 0.05614598095417023], [-0.009856017306447029, 0.08108446002006531, -0.07535459101200104], [-0.02991413325071335, -0.10088324546813965, 0.01462278887629509], [0.19616581499576569, 0.43833839893341064, 0.025114387273788452], [-0.10729514807462692, 0.4625411927700043, -0.11411845684051514], [0.0016572743188589811, -0.22157427668571472, 0.05102518945932388], [0.2750304639339447, 0.8351505994796753, -0.04769756644964218], [-0.21846425533294678, 0.8509087562561035, -0.03990352898836136], [0.035129837691783905, -0.25920841097831726, 0.07464975118637085], [0.3957359492778778, 0.8936563730239868, -0.049622781574726105], [-0.11326368898153305, 0.9341216087341309, -0.04037662595510483], [0.01691785827279091, -0.46032461524009705, 0.13914351165294647], [0.01072364579886198, -0.35000792145729065, 0.18282824754714966], [0.012788905762135983, -0.396493524312973, 0.03913295641541481], [0.06340663135051727, -0.5267461538314819, 0.15619008243083954], [0.02506718970835209, -0.3639281094074249, 0.27205172181129456], [0.035495877265930176, -0.46174952387809753, -0.027972694486379623], [-0.10135895013809204, -0.16594460606575012, 0.4004404544830322], [0.25019514560699463, -0.5928981304168701, -0.09608934819698334], [-0.30227407813072205, -0.2610020935535431, 0.520784318447113], [0.3466160297393799, -0.7392005920410156, 0.09710341691970825], [-0.36254268884658813, -0.2868877053260803, 0.5740524530410767], [0.3584919571876526, -0.8126635551452637, 0.13719753921031952]]}, {"image_id": "203.jpg", "category_id": 1, "keypoints": [1044.2772216796875, 441.67193603515625, 0.9807683825492859, 1048.0576171875, 481.2392883300781, 0.9860793948173523, 1040.1629638671875, 475.84161376953125, 0.9812605977058411, 1033.531494140625, 400.24969482421875, 0.9832000732421875, 1130.142578125, 622.4075927734375, 0.9800115823745728, 995.1998291015625, 632.8726806640625, 0.9793751239776611, 1044.0885009765625, 347.79046630859375, 0.9847854971885681, 1157.7479248046875, 776.2393798828125, 0.9281662106513977, 952.1419067382812, 797.890380859375, 0.8839350938796997, 1054.3795166015625, 331.527099609375, 0.9869357347488403, 1201.7158203125, 795.2163696289062, 0.8306490778923035, 993.1990356445312, 830.9461059570312, 0.8949244618415833, 1050.0606689453125, 257.4840393066406, 0.9878475069999695, 1047.75439453125, 298.33514404296875, 0.9896381497383118, 1046.649169921875, 275.874755859375, 0.987945556640625, 1065.5489501953125, 235.3140869140625, 0.9729632139205933, 1051.3682861328125, 297.669189453125, 0.9836553335189819, 1054.9345703125, 250.5013885498047, 0.9700388312339783, 1035.4244384765625, 357.74737548828125, 0.9253089427947998, 1135.8006591796875, 189.80429077148438, 0.9313324093818665, 976.0672607421875, 303.86090087890625, 0.9067914485931396, 1163.15234375, 151.39263916015625, 0.9717977643013, 954.1193237304688, 295.15625, 0.8994497060775757, 1166.5870361328125, 135.04592895507812, 0.9598295092582703, 1029.8331298828125, 151.03958129882812, 0.9273024797439575, 936.9851684570312, 274.31793212890625, 0.9338487386703491, 1166.018310546875, 124.37823486328125, 0.8919157981872559, 1220.068359375, 795.70556640625, 0.7415449619293213, 1015.4329223632812, 831.0413818359375, 0.898891806602478], "score": 3.1672120094299316, "box": [906.554931640625, 158.9694061279297, 306.8109130859375, 686.0154571533203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.009717616252601147, 0.09961266815662384, 0.052678752690553665], [-0.012683264911174774, 0.07839091122150421, -0.07745152711868286], [-0.028027355670928955, -0.10072962939739227, 0.01841142401099205], [0.20391102135181427, 0.4348386526107788, 0.03267866000533104], [-0.12053058296442032, 0.4502143859863281, -0.15238846838474274], [0.0019534528255462646, -0.22265289723873138, 0.05268629267811775], [0.2709760069847107, 0.8301097750663757, -0.050698716193437576], [-0.2234785258769989, 0.8458790183067322, -0.13591092824935913], [0.029958929866552353, -0.26409149169921875, 0.07707545161247253], [0.39362502098083496, 0.88255774974823, -0.061544019728899], [-0.12010149657726288, 0.9300225973129272, -0.12433512508869171], [0.011972641572356224, -0.46744072437286377, 0.13378053903579712], [0.007469646632671356, -0.3589492440223694, 0.18197277188301086], [0.0060991644859313965, -0.3996158242225647, 0.03656979277729988], [0.05741555616259575, -0.5334514379501343, 0.1548006385564804], [0.02125226892530918, -0.3675433397293091, 0.27191242575645447], [0.027057133615016937, -0.46382367610931396, -0.032027874141931534], [-0.03982315957546234, -0.13395388424396515, 0.38515594601631165], [0.23323096334934235, -0.6158308386802673, -0.07414371520280838], [-0.2020537406206131, -0.28970885276794434, 0.4984034299850464], [0.3176403343677521, -0.7408937811851501, 0.1373244822025299], [-0.2600245475769043, -0.31667405366897583, 0.5532872676849365], [0.3335316479206085, -0.8082171082496643, 0.18545065820217133]]}, {"image_id": "203.jpg", "category_id": 1, "keypoints": [1122.893798828125, 486.7311706542969, 0.9734983444213867, 1114.7685546875, 517.529052734375, 0.9871712327003479, 1137.90283203125, 523.4234619140625, 0.9870650768280029, 1125.3433837890625, 449.03448486328125, 0.9927625060081482, 1111.0015869140625, 644.7623291015625, 0.976444661617279, 1148.1767578125, 649.818359375, 0.9680002927780151, 1121.2098388671875, 403.0967712402344, 0.9870235323905945, 1123.73193359375, 760.7286376953125, 0.9314505457878113, 1156.459228515625, 761.4766845703125, 0.8505566716194153, 1117.2169189453125, 383.4042663574219, 0.991698145866394, 1102.7821044921875, 761.5103759765625, 0.8441153168678284, 1144.9246826171875, 761.6414794921875, 0.8825094699859619, 1117.64697265625, 313.5780029296875, 0.9835208058357239, 1111.5289306640625, 351.19451904296875, 0.9907463192939758, 1128.3773193359375, 341.74444580078125, 0.9920840263366699, 1108.3330078125, 283.48504638671875, 0.9678859114646912, 1109.0433349609375, 349.08477783203125, 0.9815531373023987, 1152.81640625, 325.91925048828125, 0.9743468165397644, 1123.1810302734375, 228.922119140625, 0.9647127985954285, 1161.9063720703125, 239.75010681152344, 0.9605454802513123, 1138.2235107421875, 177.07546997070312, 0.9552015066146851, 1155.6861572265625, 175.23898315429688, 0.9000381231307983, 1142.705322265625, 174.84909057617188, 0.9402884840965271, 1157.2259521484375, 173.42691040039062, 0.8716070652008057, 1035.240478515625, 175.30984497070312, 0.7980186343193054, 1139.81591796875, 184.23825073242188, 0.765562891960144, 1156.12353515625, 174.4713134765625, 0.7896292209625244, 1100.31005859375, 761.606689453125, 0.8799993991851807, 1134.30078125, 761.4913330078125, 0.9056515693664551], "score": 2.3717451095581055, "box": [1083.2130126953125, 216.2393035888672, 107.560791015625, 502.4203643798828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.040625374764204025, 0.09179188311100006, -0.04736630246043205], [0.05524710938334465, 0.08475279062986374, 0.03965609520673752], [0.011736907996237278, -0.10178600251674652, -0.016667913645505905], [-0.04700997844338417, 0.47015148401260376, 0.029321106150746346], [0.0905420258641243, 0.4718501567840576, 0.0920766144990921], [-0.007954643107950687, -0.22972242534160614, -0.039924561977386475], [0.002022372791543603, 0.8519149422645569, 0.1546034961938858], [0.12803426384925842, 0.8546348810195923, 0.21605545282363892], [-0.019721603021025658, -0.28266263008117676, -0.04833738133311272], [-0.07523789256811142, 0.8646727800369263, 0.26139920949935913], [0.027132006362080574, 0.8638299107551575, 0.3008619248867035], [-0.025129912421107292, -0.4671545624732971, -0.1453550010919571], [-0.06096312776207924, -0.3565279245376587, -0.15960249304771423], [0.03536687418818474, -0.4105071425437927, -0.06303689628839493], [-0.05148090794682503, -0.5467610955238342, -0.13826577365398407], [-0.08450563997030258, -0.36537057161331177, -0.24569305777549744], [0.11460815370082855, -0.46176397800445557, -0.06454270333051682], [-0.05131092295050621, -0.6190718412399292, -0.18086278438568115], [0.1462312936782837, -0.6952331066131592, 0.036241427063941956], [0.01440211571753025, -0.8347399234771729, -0.07523329555988312], [0.11924228817224503, -0.9493072032928467, 0.0097731351852417], [0.049584224820137024, -0.8601207733154297, -0.004569461569190025], [0.15595434606075287, -0.9956802129745483, 0.06760291010141373]]}, {"image_id": "204.jpg", "category_id": 1, "keypoints": [1039.4822998046875, 448.3020935058594, 0.979826807975769, 1045.0653076171875, 487.5328369140625, 0.984323263168335, 1034.2060546875, 482.3114929199219, 0.9774048924446106, 1029.2230224609375, 407.21820068359375, 0.9816706776618958, 1122.1285400390625, 627.6845703125, 0.9726902842521667, 991.6610717773438, 636.994384765625, 0.9799822568893433, 1035.620361328125, 353.333251953125, 0.9807298183441162, 1152.2191162109375, 774.605224609375, 0.914264976978302, 949.8673095703125, 793.145263671875, 0.8528516888618469, 1043.7838134765625, 335.3466491699219, 0.9829585552215576, 1189.8603515625, 789.2496337890625, 0.8274767994880676, 991.3339233398438, 828.5349731445312, 0.9035342931747437, 1036.24658203125, 257.91705322265625, 0.9891601204872131, 1039.5125732421875, 298.7801513671875, 0.9892225861549377, 1033.6064453125, 278.4080810546875, 0.9906434416770935, 1054.2969970703125, 235.02627563476562, 0.9666693210601807, 1044.7093505859375, 295.61077880859375, 0.9841743111610413, 1037.0284423828125, 253.52000427246094, 0.9649092555046082, 1018.9015502929688, 365.1888122558594, 0.9465354084968567, 1119.21240234375, 198.91046142578125, 0.9056755900382996, 999.8619995117188, 315.5023193359375, 0.9477805495262146, 1149.81005859375, 152.328369140625, 0.9721830487251282, 1009.435302734375, 297.661865234375, 0.93150395154953, 1152.126220703125, 139.18057250976562, 0.9293316006660461, 1028.556884765625, 155.75509643554688, 0.890652060508728, 1020.9957885742188, 275.22698974609375, 0.9510194659233093, 1114.3416748046875, 156.03958129882812, 0.8694777488708496, 1210.9549560546875, 790.5670166015625, 0.7571332454681396, 1010.5581665039062, 830.4791259765625, 0.9118791222572327], "score": 3.1654834747314453, "box": [904.1937255859375, 172.16519165039062, 310.1484375, 662.4153747558594], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01490043941885233, 0.09635699540376663, 0.05589824914932251], [-0.017217453569173813, 0.08166754245758057, -0.07192344963550568], [-0.027467254549264908, -0.10022357106208801, 0.01551361009478569], [0.2019820511341095, 0.43585020303726196, 0.0675303041934967], [-0.12091770768165588, 0.4535275101661682, -0.15074315667152405], [-0.007606728933751583, -0.2262231707572937, 0.03901210427284241], [0.2821202576160431, 0.834845781326294, 0.0320892296731472], [-0.22662553191184998, 0.8471837639808655, -0.17014938592910767], [0.01451351959258318, -0.272780179977417, 0.05858098715543747], [0.40405622124671936, 0.8834344744682312, 0.055347785353660583], [-0.12797138094902039, 0.9333230257034302, -0.14614742994308472], [-0.004457415081560612, -0.47576719522476196, 0.11085611581802368], [-0.0013366558123379946, -0.3692377209663391, 0.16150671243667603], [-0.017062988132238388, -0.40517473220825195, 0.01741822063922882], [0.04557861387729645, -0.5400928258895874, 0.12607541680335999], [0.014941222034394741, -0.3844006061553955, 0.24937704205513], [-0.008908972144126892, -0.4703400731086731, -0.05178626626729965], [-0.07079572975635529, -0.15375018119812012, 0.35043010115623474], [0.20545624196529388, -0.6099522113800049, -0.09066854417324066], [-0.1482028067111969, -0.3667045831680298, 0.4582480490207672], [0.29566720128059387, -0.7532703876495361, 0.10529939830303192], [-0.11657391488552094, -0.4278600811958313, 0.5058926343917847], [0.309736043214798, -0.8241091966629028, 0.14762167632579803]]}, {"image_id": "204.jpg", "category_id": 1, "keypoints": [1127.179443359375, 479.1244812011719, 0.9822087287902832, 1125.886962890625, 506.4615478515625, 0.9925144910812378, 1134.582275390625, 512.2296142578125, 0.9872246980667114, 1127.8099365234375, 444.08990478515625, 0.9883736371994019, 1130.00927734375, 636.9237670898438, 0.9707543849945068, 1147.7381591796875, 637.2608642578125, 0.9577134847640991, 1125.069580078125, 400.67999267578125, 0.9884064197540283, 1157.252197265625, 768.540771484375, 0.9652989506721497, 1146.9014892578125, 763.55517578125, 0.9346403479576111, 1121.8404541015625, 384.11004638671875, 0.9905081987380981, 1150.775634765625, 787.1077880859375, 0.8558062314987183, 1129.6534423828125, 781.753662109375, 0.9344679117202759, 1122.6253662109375, 315.8505554199219, 0.9821280241012573, 1117.15185546875, 352.795166015625, 0.9900397062301636, 1132.5616455078125, 342.8211975097656, 0.9857609868049622, 1115.0018310546875, 294.4788818359375, 0.9381220936775208, 1107.9642333984375, 346.6782531738281, 0.9849179983139038, 1153.107666015625, 328.2884521484375, 0.9805237054824829, 1099.569091796875, 240.44351196289062, 0.8718726634979248, 1151.5382080078125, 235.47015380859375, 0.8551988005638123, 1099.5889892578125, 217.85125732421875, 0.9579191207885742, 1144.10595703125, 216.2257080078125, 0.9485633373260498, 1095.240478515625, 218.0970458984375, 0.8986074328422546, 1142.4835205078125, 215.525390625, 0.8773155808448792, 1121.7603759765625, 220.7706298828125, 0.6551424860954285, 1082.0323486328125, 238.132568359375, 0.8904258012771606, 1125.6051025390625, 223.21527099609375, 0.8721966743469238, 1140.50048828125, 789.8924560546875, 0.8859493732452393, 1131.0191650390625, 785.833251953125, 0.9496601223945618], "score": 2.4420065879821777, "box": [1078.0272216796875, 257.5452880859375, 120.7930908203125, 500.90826416015625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.021247565746307373, 0.0921931117773056, -0.05413142219185829], [0.04397175461053848, 0.0806487500667572, 0.054107509553432465], [0.011376092210412025, -0.09963968396186829, -0.013826856389641762], [-0.006199473515152931, 0.4719127118587494, -0.009450998157262802], [0.08740826696157455, 0.46405354142189026, 0.09674327075481415], [0.0015046035405248404, -0.22717121243476868, -0.039442628622055054], [0.07551360875368118, 0.8616619110107422, 0.007518727332353592], [0.08670975267887115, 0.8609317541122437, 0.1218138113617897], [-0.00923154316842556, -0.2792682647705078, -0.046866487711668015], [0.03907039389014244, 0.9797947406768799, 0.04958874732255936], [0.01534449402242899, 0.9475359916687012, 0.18753910064697266], [-0.027305014431476593, -0.4655260145664215, -0.12960994243621826], [-0.05645277351140976, -0.3560059368610382, -0.14958614110946655], [0.037373147904872894, -0.4077581465244293, -0.054655201733112335], [-0.054103683680295944, -0.5441428422927856, -0.11705372482538223], [-0.1138705164194107, -0.38717278838157654, -0.20875445008277893], [0.11221881955862045, -0.46106889843940735, -0.04259021207690239], [-0.13091304898262024, -0.642555832862854, -0.16173166036605835], [0.11647583544254303, -0.6920478343963623, 0.058906398713588715], [-0.11860117316246033, -0.7611562013626099, 0.052591003477573395], [0.08372386544942856, -0.8426210880279541, 0.25985023379325867], [-0.1952161192893982, -0.7603843212127686, 0.08028488606214523], [0.07209961116313934, -0.8605550527572632, 0.33818909525871277]]}, {"image_id": "205.jpg", "category_id": 1, "keypoints": [1038.3643798828125, 451.65216064453125, 0.9799472093582153, 1049.025146484375, 490.8211364746094, 0.9899978041648865, 1029.7193603515625, 481.4551086425781, 0.9847816824913025, 1028.496337890625, 412.29345703125, 0.9895588755607605, 1112.9173583984375, 624.1978149414062, 0.9750604629516602, 998.5264282226562, 623.0256958007812, 0.9780306220054626, 1034.346435546875, 362.325439453125, 0.983489453792572, 1136.2418212890625, 769.4107055664062, 0.9307013750076294, 968.463134765625, 768.8514404296875, 0.9001419544219971, 1040.7139892578125, 342.4808349609375, 0.9858998656272888, 1162.3009033203125, 780.831787109375, 0.8569055795669556, 1001.1243896484375, 801.67578125, 0.8257352113723755, 1032.3260498046875, 256.00811767578125, 0.9888126850128174, 1043.3621826171875, 298.5206298828125, 0.9922150373458862, 1025.140625, 283.824462890625, 0.9933502078056335, 1045.69140625, 234.89263916015625, 0.9684823751449585, 1053.7686767578125, 289.3899841308594, 0.9905773997306824, 1019.3345336914062, 260.4527587890625, 0.9779202938079834, 1067.9600830078125, 324.03338623046875, 0.9770382046699524, 1083.9930419921875, 223.583251953125, 0.9551353454589844, 1043.0447998046875, 307.5067138671875, 0.9706183671951294, 1120.2689208984375, 172.98110961914062, 0.9679415225982666, 1015.3671264648438, 303.3558349609375, 0.9238997101783752, 1112.833251953125, 164.5859375, 0.9337791204452515, 1027.3094482421875, 152.25048828125, 0.9025241732597351, 985.693603515625, 295.541015625, 0.8360555171966553, 1088.24609375, 168.4444580078125, 0.9004923105239868, 1178.5228271484375, 783.0557250976562, 0.8299694061279297, 1020.0988159179688, 815.837646484375, 0.9053693413734436], "score": 3.1737167835235596, "box": [900.6005249023438, 176.92747497558594, 312.12152099609375, 652.6061553955078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.028057951480150223, 0.09386453777551651, 0.05363842099905014], [-0.028806235641241074, 0.08362599462270737, -0.06446724385023117], [-0.026144016534090042, -0.09925100207328796, 0.01801976002752781], [0.19522348046302795, 0.4425262212753296, 0.057718776166439056], [-0.11320308595895767, 0.46713200211524963, -0.05871380865573883], [-0.008053884841501713, -0.227522075176239, 0.02110949344933033], [0.25922873616218567, 0.8437223434448242, 0.04775441437959671], [-0.1930437684059143, 0.8598425388336182, 0.005432507023215294], [0.010423817671835423, -0.2786686420440674, 0.027586335316300392], [0.3758069574832916, 0.8929094076156616, 0.00783318467438221], [-0.0998273491859436, 0.9523296356201172, -0.011845538392663002], [-0.008066901005804539, -0.4848218858242035, 0.05621598660945892], [0.015337684191763401, -0.38734540343284607, 0.11689185351133347], [-0.03967282548546791, -0.40169528126716614, -0.019706351682543755], [0.03631114959716797, -0.5546519756317139, 0.05094294995069504], [0.044914837926626205, -0.4174957573413849, 0.19639618694782257], [-0.05852193757891655, -0.4667953550815582, -0.08592528849840164], [0.11186473816633224, -0.28725820779800415, 0.4169844090938568], [0.14471769332885742, -0.573718786239624, -0.2022143453359604], [-0.08777979761362076, -0.41219863295555115, 0.3340308368206024], [0.2636646628379822, -0.7463928461074829, -0.052209220826625824], [-0.16990256309509277, -0.4240012466907501, 0.3273477852344513], [0.2207539677619934, -0.8024165630340576, -0.008154613897204399]]}, {"image_id": "205.jpg", "category_id": 1, "keypoints": [1130.6358642578125, 479.32745361328125, 0.9811155796051025, 1139.7322998046875, 505.5043640136719, 0.9916226267814636, 1121.85595703125, 511.8750915527344, 0.9927645325660706, 1129.46337890625, 444.8004150390625, 0.9900713562965393, 1143.710693359375, 633.9172973632812, 0.9862345457077026, 1121.185791015625, 633.6859130859375, 0.9887999296188354, 1126.168701171875, 404.673828125, 0.9836033582687378, 1142.598388671875, 748.3602294921875, 0.960404098033905, 1134.3902587890625, 757.3736572265625, 0.9526656270027161, 1124.8447265625, 389.9696044921875, 0.9877715706825256, 1141.173828125, 756.98095703125, 0.9311898350715637, 1131.019775390625, 781.63818359375, 0.9554128646850586, 1121.1260986328125, 327.7511901855469, 0.9877049922943115, 1135.9376220703125, 355.18280029296875, 0.9899100065231323, 1107.876953125, 354.923095703125, 0.9808037281036377, 1120.69970703125, 307.51226806640625, 0.9445134997367859, 1151.584228515625, 343.28155517578125, 0.9677230715751648, 1095.8656005859375, 346.1114501953125, 0.9864529967308044, 1146.6435546875, 283.8988952636719, 0.8051702976226807, 1110.717529296875, 281.95361328125, 0.9158473610877991, 1140.2459716796875, 197.43649291992188, 0.91640704870224, 1124.4833984375, 197.8828125, 0.9091954231262207, 1134.47802734375, 195.69015502929688, 0.9056432843208313, 1115.105224609375, 197.35769653320312, 0.827765166759491, 1129.86572265625, 244.21429443359375, 0.9139090180397034, 1086.1279296875, 220.09951782226562, 0.9226901531219482, 1081.100830078125, 252.86228942871094, 0.8660236597061157, 1132.1519775390625, 763.8081665039062, 0.939380407333374, 1140.7117919921875, 788.7437744140625, 0.9223206043243408], "score": 2.8455779552459717, "box": [1074.0289306640625, 240.72117614746094, 119.07373046875, 536.0878448486328], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0680389553308487, 0.08305782824754715, 0.013903176411986351], [-0.05766735225915909, 0.08752407878637314, 0.014647120609879494], [-0.006636118981987238, -0.09937155246734619, 0.011181099340319633], [0.08390343189239502, 0.4600488245487213, 0.07449058443307877], [-0.05660836026072502, 0.471599280834198, 0.06600034981966019], [-0.014965941198170185, -0.22416970133781433, -0.024710582569241524], [0.08398061245679855, 0.8532756567001343, 0.12977318465709686], [-0.01187597680836916, 0.8614336252212524, 0.11993500590324402], [-0.02134152501821518, -0.26918473839759827, -0.0524439737200737], [0.06036708131432533, 0.9644196033477783, 0.06647803634405136], [-0.030187807977199554, 0.9893728494644165, 0.11301778256893158], [-0.035837240517139435, -0.4667499363422394, -0.09865695983171463], [0.04152075946331024, -0.3881945312023163, -0.06798793375492096], [-0.09981494396924973, -0.37947729229927063, -0.06301730871200562], [-0.04078524559736252, -0.5276612043380737, -0.15658235549926758], [0.11106132715940475, -0.44117090106010437, -0.06375528872013092], [-0.17384257912635803, -0.4321762025356293, -0.07735370099544525], [0.10320444405078888, -0.663253664970398, 0.06992024183273315], [-0.11929315328598022, -0.6512323617935181, 0.03309771791100502], [0.08472006767988205, -0.9066973924636841, 0.06391516327857971], [-0.08166798204183578, -0.8947235345840454, -0.02108486369252205], [0.00789461936801672, -0.9277511835098267, 0.04937547445297241], [-0.15235784649848938, -0.8934650421142578, -0.05995114520192146]]}, {"image_id": "206.jpg", "category_id": 1, "keypoints": [1047.58837890625, 451.9825744628906, 0.978690505027771, 1057.3499755859375, 491.939208984375, 0.9904120564460754, 1037.132080078125, 483.0300598144531, 0.9855632781982422, 1042.1727294921875, 412.4581298828125, 0.9885746240615845, 1107.292236328125, 623.4129028320312, 0.9781407117843628, 1000.08154296875, 620.4429931640625, 0.9692193269729614, 1047.4285888671875, 365.10296630859375, 0.9868581295013428, 1133.53271484375, 763.5679931640625, 0.9542070031166077, 975.4583129882812, 755.55517578125, 0.9294200539588928, 1052.3765869140625, 347.0323486328125, 0.9903801083564758, 1151.840087890625, 780.2490844726562, 0.8769623041152954, 1006.0800170898438, 790.6381225585938, 0.8382129073143005, 1041.795654296875, 263.5646667480469, 0.9841867089271545, 1053.9404296875, 303.9534912109375, 0.9936079382896423, 1036.513427734375, 290.6527404785156, 0.9939177632331848, 1048.7755126953125, 242.03225708007812, 0.9719627499580383, 1063.0750732421875, 296.1139221191406, 0.9876055121421814, 1028.3642578125, 267.92822265625, 0.9761732220649719, 1074.5284423828125, 324.13458251953125, 0.9757742285728455, 1075.1363525390625, 228.4716796875, 0.9613499045372009, 1031.635986328125, 326.2752380371094, 0.9825555086135864, 1100.039306640625, 181.67181396484375, 0.9489361047744751, 1013.2621459960938, 318.779541015625, 0.954259991645813, 1096.531982421875, 169.100830078125, 0.9235033988952637, 1023.066650390625, 156.41802978515625, 0.8822175860404968, 993.4415893554688, 314.4227294921875, 0.8934065699577332, 1089.629638671875, 164.97747802734375, 0.8736574649810791, 1159.3431396484375, 782.1953125, 0.8677279949188232, 1031.9095458984375, 799.6287841796875, 0.8994552493095398], "score": 3.181840419769287, "box": [900.8344116210938, 176.22671508789062, 311.79364013671875, 656.7596740722656], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03026002272963524, 0.09353584796190262, 0.05192791298031807], [-0.04214978590607643, 0.08314632624387741, -0.056328680366277695], [-0.017754243686795235, -0.10062479972839355, 0.01803012564778328], [0.16743920743465424, 0.452958881855011, 0.06987512111663818], [-0.14265331625938416, 0.45888370275497437, -0.014482337981462479], [-0.003557556541636586, -0.22969642281532288, 0.011955853551626205], [0.2423637956380844, 0.849912166595459, 0.08461567759513855], [-0.21049554646015167, 0.8414056301116943, 0.09503912925720215], [0.010871170088648796, -0.2824214994907379, 0.011284146457910538], [0.3150036036968231, 0.9142671823501587, -0.00514565035700798], [-0.12685932219028473, 0.9346809387207031, 0.05377494916319847], [-0.007306372746825218, -0.4885807931423187, 0.035434745252132416], [0.023288298398256302, -0.3933093249797821, 0.09604480862617493], [-0.04516683518886566, -0.402872771024704, -0.03406473994255066], [0.018327362835407257, -0.5676389932632446, 0.03282007947564125], [0.05809059739112854, -0.4268481433391571, 0.17179475724697113], [-0.0735008493065834, -0.4738639295101166, -0.08964090049266815], [0.12557952105998993, -0.29551252722740173, 0.3901249170303345], [0.11728791147470474, -0.6302117109298706, -0.15843921899795532], [-0.08218163251876831, -0.2762850522994995, 0.2549375593662262], [0.21855302155017853, -0.8244771957397461, -0.024946849793195724], [-0.15771698951721191, -0.3058066666126251, 0.23786389827728271], [0.20498457551002502, -0.8871426582336426, 0.027365319430828094]]}, {"image_id": "206.jpg", "category_id": 1, "keypoints": [1131.761474609375, 477.6995849609375, 0.9840409755706787, 1136.3594970703125, 506.56573486328125, 0.9909246563911438, 1128.5113525390625, 510.1888427734375, 0.9893211722373962, 1134.396728515625, 443.85638427734375, 0.9943839907646179, 1119.2999267578125, 632.6477661132812, 0.9815542101860046, 1141.9129638671875, 637.9160766601562, 0.9794325828552246, 1128.066162109375, 403.9917297363281, 0.9827497601509094, 1121.3375244140625, 753.9349365234375, 0.9640301465988159, 1156.9117431640625, 758.1174926757812, 0.9466308355331421, 1121.8033447265625, 390.3916320800781, 0.9781875014305115, 1103.7535400390625, 763.2129516601562, 0.9060946106910706, 1133.11474609375, 781.3130493164062, 0.9518246054649353, 1127.78564453125, 324.55224609375, 0.9874352216720581, 1138.7998046875, 358.68182373046875, 0.9840509295463562, 1115.511962890625, 350.70458984375, 0.9845613241195679, 1123.413330078125, 308.2305908203125, 0.9384965300559998, 1150.144287109375, 358.00860595703125, 0.9651774764060974, 1105.919189453125, 340.65216064453125, 0.9813732504844666, 1104.7674560546875, 429.9156494140625, 0.9140952825546265, 1088.2288818359375, 376.37554931640625, 0.9615163207054138, 1063.991943359375, 408.24761962890625, 0.9250338077545166, 1065.0306396484375, 331.04718017578125, 0.9663278460502625, 1046.9083251953125, 375.70758056640625, 0.9606530666351318, 1063.3753662109375, 318.92413330078125, 0.9516968727111816, 1130.456787109375, 236.54885864257812, 0.8428255915641785, 1051.1304931640625, 333.7276306152344, 0.897632896900177, 1048.83251953125, 336.18792724609375, 0.9175139665603638, 1102.8515625, 766.021728515625, 0.9218625426292419, 1124.062255859375, 789.4647827148438, 0.9436977505683899], "score": 2.995117664337158, "box": [1070.683349609375, 250.36119079589844, 123.7320556640625, 530.5324249267578], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.023173265159130096, 0.08857482671737671, -0.05857653543353081], [-0.006336776539683342, 0.08423206955194473, 0.06453096866607666], [0.017192553728818893, -0.09921704232692719, 0.0038175173103809357], [-0.024470120668411255, 0.4644179940223694, -0.010184559971094131], [0.0374932698905468, 0.46458423137664795, 0.12372563779354095], [-0.013966362923383713, -0.2230387181043625, -0.02049681730568409], [-0.012415574863553047, 0.8512166142463684, 0.08106343448162079], [0.08905763179063797, 0.8556479215621948, 0.1659734547138214], [-0.03750663250684738, -0.2646581530570984, -0.04447299987077713], [-0.12552179396152496, 0.9130643606185913, 0.0998457670211792], [-5.9541198424994946e-05, 0.9464682936668396, 0.19096095860004425], [-0.015459129586815834, -0.46158576011657715, -0.09542815387248993], [0.02433568239212036, -0.3572627902030945, -0.12332640588283539], [-0.052066620439291, -0.3959207534790039, -0.008981028571724892], [-0.03557293117046356, -0.5173128843307495, -0.15499109029769897], [0.05690726637840271, -0.3538130521774292, -0.20500591397285461], [-0.08593279123306274, -0.4413451552391052, 0.0640813559293747], [-0.08103227615356445, -0.13687454164028168, -0.24080444872379303], [-0.15644414722919464, -0.2919713258743286, 0.2539059817790985], [-0.29443198442459106, -0.24698208272457123, -0.2864060699939728], [-0.2507765293121338, -0.448455274105072, 0.07980181276798248], [-0.33238455653190613, -0.317884624004364, -0.2973063290119171], [-0.2624424993991852, -0.5246461629867554, 0.05530794337391853]]}, {"image_id": "207.jpg", "category_id": 1, "keypoints": [1020.2265014648438, 434.81964111328125, 0.9765937924385071, 1027.78173828125, 473.7440185546875, 0.985140323638916, 1012.472900390625, 466.41864013671875, 0.9837656617164612, 1007.0861206054688, 394.689697265625, 0.9727841019630432, 1085.96630859375, 610.1720581054688, 0.9783841371536255, 984.8950805664062, 625.54345703125, 0.9820305109024048, 1013.1486206054688, 348.3916320800781, 0.9878844618797302, 1109.29931640625, 762.9953002929688, 0.9019976854324341, 950.9479370117188, 782.3519287109375, 0.8769468665122986, 1023.105224609375, 330.1527099609375, 0.9902889132499695, 1126.9322509765625, 768.357177734375, 0.8665735721588135, 988.9955444335938, 815.2373046875, 0.8719438910484314, 1014.7394409179688, 247.9413299560547, 0.9846453666687012, 1011.2803344726562, 289.1048583984375, 0.9916310906410217, 1016.9571533203125, 274.1623229980469, 0.9896201491355896, 1029.2520751953125, 226.2691192626953, 0.9515710473060608, 997.6278686523438, 286.32177734375, 0.9869510531425476, 1027.0423583984375, 247.7726287841797, 0.9631461501121521, 926.1359252929688, 335.22393798828125, 0.9502754807472229, 1090.6070556640625, 202.94747924804688, 0.9666112661361694, 969.1904907226562, 352.325927734375, 0.964877724647522, 1117.063232421875, 149.533935546875, 0.9648593068122864, 974.9287109375, 321.42950439453125, 0.8773514628410339, 1118.0665283203125, 128.53530883789062, 0.921167254447937, 1006.9122314453125, 164.01132202148438, 0.9408822655677795, 993.3980712890625, 295.48199462890625, 0.8827023506164551, 1111.699951171875, 110.14959716796875, 0.9106618762016296, 1134.94189453125, 767.050048828125, 0.9116557836532593, 1003.55712890625, 823.96533203125, 0.898070752620697], "score": 3.1811013221740723, "box": [898.3360595703125, 133.43063354492188, 298.5550537109375, 693.1638488769531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0211295485496521, 0.09447241574525833, 0.05797538533806801], [-0.01954927295446396, 0.08456000685691833, -0.06864362955093384], [-0.029718836769461632, -0.10072314739227295, 0.014485560357570648], [0.17320820689201355, 0.44889408349990845, 0.09050533175468445], [-0.08827399462461472, 0.4718194305896759, -0.07962410151958466], [-0.01286422461271286, -0.2279752790927887, 0.03758401796221733], [0.23605449497699738, 0.8489683866500854, 0.1422789990901947], [-0.17371942102909088, 0.8688026666641235, -0.04089364781975746], [0.013401633128523827, -0.27631571888923645, 0.0456833578646183], [0.34180742502212524, 0.8849707841873169, 0.2155553251504898], [-0.07274322956800461, 0.9550250768661499, -0.05514414608478546], [-0.01722014509141445, -0.4827507436275482, 0.07968281209468842], [-0.0244078878313303, -0.37923553586006165, 0.1372741162776947], [-0.009212080389261246, -0.40604981780052185, -0.010325562208890915], [0.027124734595417976, -0.5501644611358643, 0.09887273609638214], [-0.06024080887436867, -0.3929453194141388, 0.22022618353366852], [0.020387910306453705, -0.4817238748073578, -0.06190808489918709], [-0.26957961916923523, -0.25582149624824524, 0.3103357255458832], [0.22470293939113617, -0.6201555728912354, -0.13995108008384705], [-0.0511506088078022, -0.16430485248565674, 0.22626174986362457], [0.2983458340167999, -0.7730799913406372, 0.0558544360101223], [-0.03590673208236694, -0.24580010771751404, 0.21197620034217834], [0.303621381521225, -0.8354469537734985, 0.11199653148651123]]}, {"image_id": "207.jpg", "category_id": 1, "keypoints": [1127.49755859375, 478.6436462402344, 0.9859131574630737, 1134.830322265625, 508.83367919921875, 0.9917066693305969, 1119.74169921875, 508.4106750488281, 0.9899951219558716, 1132.9573974609375, 444.53485107421875, 0.9933544397354126, 1115.9761962890625, 633.697998046875, 0.9659851789474487, 1133.9521484375, 636.8560791015625, 0.9633535742759705, 1129.483154296875, 405.0581359863281, 0.9891049861907959, 1135.66015625, 757.4906616210938, 0.9429420828819275, 1155.3681640625, 748.3761596679688, 0.9254477024078369, 1122.7850341796875, 391.4944152832031, 0.9854592084884644, 1119.3992919921875, 771.1593627929688, 0.9038445949554443, 1131.8746337890625, 774.6661987304688, 0.9544015526771545, 1135.4896240234375, 323.4233703613281, 0.987775981426239, 1144.8858642578125, 362.8266296386719, 0.986899197101593, 1119.2174072265625, 348.0654296875, 0.9848916530609131, 1128.0074462890625, 306.04962158203125, 0.9457533955574036, 1153.17626953125, 369.37713623046875, 0.9768663048744202, 1108.454345703125, 333.0130310058594, 0.9918022155761719, 1089.681396484375, 435.605712890625, 0.9426934719085693, 1086.26318359375, 340.736328125, 0.9779409170150757, 1044.4595947265625, 425.0824279785156, 0.9633568525314331, 1056.9556884765625, 337.4412841796875, 0.9840865731239319, 1015.9938354492188, 414.5841064453125, 0.9759345054626465, 1052.3232421875, 330.5711669921875, 0.9780498743057251, 1134.662109375, 234.95559692382812, 0.896724283695221, 1018.7655029296875, 377.43499755859375, 0.9509021043777466, 1038.301025390625, 342.53643798828125, 0.8429746031761169, 1115.8623046875, 771.304443359375, 0.9199610948562622, 1126.43212890625, 785.76953125, 0.9464250802993774], "score": 3.0496129989624023, "box": [1070.5391845703125, 245.01856994628906, 127.510009765625, 533.0708465576172], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03173384442925453, 0.09487790614366531, -0.04643202945590019], [-0.023282606154680252, 0.0794028490781784, 0.06936761736869812], [0.020819157361984253, -0.10075190663337708, -0.00022633187472820282], [-0.024252306669950485, 0.4735107719898224, -0.028283966705203056], [0.02392525225877762, 0.4550700783729553, 0.15939952433109283], [0.0018618849571794271, -0.22435620427131653, -0.038044221699237823], [0.04189545288681984, 0.8586118221282959, 0.06238169968128204], [0.10218148678541183, 0.8423693180084229, 0.22441156208515167], [-0.021031823009252548, -0.265760600566864, -0.06501957029104233], [-0.058125000447034836, 0.9384633898735046, 0.03226688504219055], [0.015104664489626884, 0.9403058290481567, 0.22742757201194763], [0.017323080450296402, -0.4552645683288574, -0.14054623246192932], [0.049255188554525375, -0.3440670967102051, -0.15592451393604279], [-0.0257323756814003, -0.40364623069763184, -0.0456724613904953], [-0.011729639023542404, -0.5089716911315918, -0.19791379570960999], [0.0701131671667099, -0.31731104850769043, -0.23866412043571472], [-0.06375657021999359, -0.46621012687683105, 0.013252386823296547], [-0.11097478866577148, -0.12857234477996826, -0.2509753108024597], [-0.1687002032995224, -0.44343143701553345, 0.24359267950057983], [-0.35023796558380127, -0.1828211545944214, -0.27860045433044434], [-0.37701892852783203, -0.4548764228820801, 0.09756816923618317], [-0.4273490905761719, -0.2109493613243103, -0.2841357886791229], [-0.42218396067619324, -0.522905707359314, 0.10544923692941666]]}, {"image_id": "208.jpg", "category_id": 1, "keypoints": [1012.170654296875, 434.39404296875, 0.9810442328453064, 1014.7266235351562, 469.3486328125, 0.9835941195487976, 1008.1069946289062, 467.4563293457031, 0.9796534180641174, 1001.2039794921875, 394.13134765625, 0.9731540679931641, 1071.4766845703125, 613.0377197265625, 0.9857075810432434, 981.436279296875, 629.1798095703125, 0.9822232127189636, 1006.7095336914062, 344.9081726074219, 0.9864017963409424, 1095.711181640625, 770.2926025390625, 0.8696765899658203, 949.9219360351562, 787.436767578125, 0.8650675415992737, 1015.7858276367188, 326.3272705078125, 0.9905936121940613, 1118.48193359375, 772.562744140625, 0.8193097114562988, 984.8734130859375, 820.9593505859375, 0.901337742805481, 1005.9849243164062, 243.99684143066406, 0.9838205575942993, 1001.2166748046875, 285.1546630859375, 0.9926773905754089, 1012.5552978515625, 271.389892578125, 0.9905067086219788, 1019.1528930664062, 221.1175537109375, 0.9467694759368896, 983.3037109375, 280.67828369140625, 0.9804825782775879, 1021.0191650390625, 246.83120727539062, 0.966856837272644, 928.8109741210938, 346.27142333984375, 0.895206093788147, 1085.848388671875, 203.39459228515625, 0.9711187481880188, 977.9144897460938, 357.2818298339844, 0.9544031023979187, 1115.5611572265625, 150.75375366210938, 0.9731947183609009, 993.8936157226562, 334.8181457519531, 0.942965567111969, 1118.8841552734375, 128.84234619140625, 0.9418250918388367, 991.9743041992188, 160.80377197265625, 0.9321931600570679, 1004.0020751953125, 292.77197265625, 0.9066218137741089, 1113.9102783203125, 111.04226684570312, 0.9323441982269287, 1122.5306396484375, 769.5054931640625, 0.8626273274421692, 997.8480834960938, 828.5181884765625, 0.8666253089904785], "score": 3.1801440715789795, "box": [900.5149536132812, 135.68605041503906, 285.15435791015625, 691.8848724365234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.00809680949896574, 0.09099036455154419, 0.0647440180182457], [-0.011649404652416706, 0.08711317926645279, -0.06573700904846191], [-0.027370642870664597, -0.10127207636833191, 0.0042653512209653854], [0.14981311559677124, 0.4476691484451294, 0.09932445734739304], [-0.07536588609218597, 0.47350892424583435, -0.06413920223712921], [-0.012058704160153866, -0.23001420497894287, 0.017545416951179504], [0.21216444671154022, 0.8475310802459717, 0.12389381974935532], [-0.15336674451828003, 0.8683426380157471, -0.019081108272075653], [0.014977644197642803, -0.27674317359924316, 0.02900593727827072], [0.3270885646343231, 0.8631385564804077, 0.18857160210609436], [-0.057480886578559875, 0.9535980820655823, -0.052659161388874054], [-0.014541804790496826, -0.4810405969619751, 0.06689909100532532], [-0.029539011418819427, -0.3764268755912781, 0.11909297853708267], [0.0007788736838847399, -0.4076029062271118, -0.023723158985376358], [0.025480560958385468, -0.5516790747642517, 0.08409485220909119], [-0.0787392407655716, -0.39453548192977905, 0.1931648552417755], [0.027474232017993927, -0.48328137397766113, -0.07553689926862717], [-0.24537239968776703, -0.19795924425125122, 0.25160905718803406], [0.23675480484962463, -0.6188717484474182, -0.13753587007522583], [-0.00318755186162889, -0.14528533816337585, 0.28112781047821045], [0.31921136379241943, -0.7713559865951538, 0.052720122039318085], [0.043929748237133026, -0.21227607131004333, 0.2972758114337921], [0.33083733916282654, -0.8391387462615967, 0.09984873980283737]]}, {"image_id": "208.jpg", "category_id": 1, "keypoints": [1126.935302734375, 490.21612548828125, 0.9823311567306519, 1130.5660400390625, 519.5773315429688, 0.9890375137329102, 1121.9046630859375, 518.3292236328125, 0.9863049387931824, 1133.6090087890625, 455.6573791503906, 0.9920812249183655, 1108.788818359375, 638.2982788085938, 0.9604532122612, 1138.0345458984375, 639.3820190429688, 0.968280553817749, 1130.105712890625, 415.2355651855469, 0.9907675981521606, 1126.122314453125, 754.380126953125, 0.9456871747970581, 1166.985595703125, 749.3030395507812, 0.9251490831375122, 1123.2218017578125, 401.0926513671875, 0.9844443798065186, 1102.8818359375, 763.579833984375, 0.8896287679672241, 1144.9942626953125, 775.20166015625, 0.9416636824607849, 1139.7998046875, 334.06402587890625, 0.9867016673088074, 1144.764404296875, 373.249755859375, 0.9860020875930786, 1123.5030517578125, 357.49188232421875, 0.9826363325119019, 1133.1182861328125, 312.6719970703125, 0.9440472722053528, 1149.845703125, 379.125, 0.9756526350975037, 1113.1512451171875, 342.3434753417969, 0.9880688786506653, 1081.9530029296875, 446.570556640625, 0.9436808228492737, 1083.6396484375, 354.71893310546875, 0.9801151156425476, 1042.032958984375, 427.5494689941406, 0.950438380241394, 1064.204833984375, 332.07794189453125, 0.9661368727684021, 1015.3223876953125, 422.1277770996094, 0.9764636754989624, 1066.197265625, 311.3616943359375, 0.9620453119277954, 1148.308837890625, 241.73361206054688, 0.9128955602645874, 1019.1161499023438, 374.2404479980469, 0.9278326630592346, 1045.2342529296875, 338.2010803222656, 0.9006566405296326, 1109.077880859375, 768.1237182617188, 0.9214078187942505, 1132.4544677734375, 785.091552734375, 0.9607239961624146], "score": 3.061006784439087, "box": [1064.4696044921875, 241.11956787109375, 135.5762939453125, 541.298828125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.016441164538264275, 0.09594625234603882, -0.05441705882549286], [-0.010995165444910526, 0.08085687458515167, 0.07267194986343384], [0.025550836697220802, -0.10142400860786438, -0.003527846187353134], [-0.05043216794729233, 0.47207823395729065, -0.020812246948480606], [0.044904645532369614, 0.4538285732269287, 0.17215752601623535], [0.006008013151586056, -0.22783765196800232, -0.03425183147192001], [0.012264265678822994, 0.8569439649581909, 0.08221916854381561], [0.14969122409820557, 0.8366949558258057, 0.2408488541841507], [-0.020402198657393456, -0.269963800907135, -0.05856386199593544], [-0.10616431385278702, 0.9071100950241089, 0.11322756111621857], [0.06585697084665298, 0.9377779960632324, 0.2545833885669708], [0.03297122195363045, -0.46237799525260925, -0.12472738325595856], [0.052128251641988754, -0.3486197292804718, -0.15080751478672028], [-0.009560455568134785, -0.407968670129776, -0.02926606312394142], [0.008216901682317257, -0.5281739234924316, -0.17024502158164978], [0.06270351260900497, -0.323942095041275, -0.2373141497373581], [-0.04457392916083336, -0.46937015652656555, 0.03442378714680672], [-0.12401904910802841, -0.13844847679138184, -0.23723840713500977], [-0.1891481876373291, -0.41907504200935364, 0.23906360566616058], [-0.32799893617630005, -0.24122178554534912, -0.13988959789276123], [-0.3124757409095764, -0.5391736030578613, 0.04986089840531349], [-0.40873053669929504, -0.25708550214767456, -0.15059536695480347], [-0.3051900267601013, -0.6200966835021973, 0.03425218537449837]]}, {"image_id": "209.jpg", "category_id": 1, "keypoints": [1018.1932373046875, 440.7465515136719, 0.9818823337554932, 1023.5706176757812, 476.075927734375, 0.9876393675804138, 1010.9661254882812, 473.99334716796875, 0.9863235950469971, 1008.5032348632812, 396.1073913574219, 0.9883235692977905, 1072.485595703125, 619.58984375, 0.9867430925369263, 979.9002685546875, 630.2429809570312, 0.9854685068130493, 1010.8751220703125, 345.3016052246094, 0.9875572919845581, 1101.7239990234375, 768.457763671875, 0.8881728649139404, 951.7091674804688, 784.669189453125, 0.867132306098938, 1016.61328125, 327.15325927734375, 0.9907634854316711, 1116.7818603515625, 773.79150390625, 0.8287325501441956, 983.06396484375, 819.28564453125, 0.8947970867156982, 1001.0972290039062, 243.2274627685547, 0.9867488741874695, 1001.5073852539062, 285.5032958984375, 0.9928547143936157, 1010.0625, 267.4285888671875, 0.9915139079093933, 1010.4442138671875, 219.12106323242188, 0.9630495309829712, 979.6854248046875, 279.2099609375, 0.9803211092948914, 1015.8521118164062, 241.54495239257812, 0.9639628529548645, 924.5054321289062, 346.23187255859375, 0.9274591207504272, 1070.514404296875, 207.36569213867188, 0.9574345350265503, 973.9110107421875, 332.2655944824219, 0.9712350964546204, 1110.189208984375, 154.215576171875, 0.9735995531082153, 987.1021728515625, 304.48138427734375, 0.903255045413971, 1115.956787109375, 131.17880249023438, 0.94284987449646, 984.4379272460938, 153.77328491210938, 0.9094256162643433, 1005.9638671875, 287.52667236328125, 0.8796367645263672, 1122.9425048828125, 103.82244873046875, 0.9224004745483398, 1112.0965576171875, 773.4235229492188, 0.8466424942016602, 994.5427856445312, 823.9531860351562, 0.8998367190361023], "score": 3.1816353797912598, "box": [900.1522827148438, 137.5120086669922, 285.48748779296875, 690.8356475830078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.016966575756669044, 0.09114029258489609, 0.06254415214061737], [-0.02441456727683544, 0.08675265312194824, -0.062374621629714966], [-0.024126045405864716, -0.10179239511489868, 0.00852663442492485], [0.141403466463089, 0.45392903685569763, 0.09356780350208282], [-0.10073975473642349, 0.4702948331832886, -0.0684904083609581], [-0.017593076452612877, -0.2322997748851776, 0.01480899378657341], [0.22004321217536926, 0.84958815574646, 0.12596406042575836], [-0.17195220291614532, 0.8638486862182617, -0.009862862527370453], [-0.0015997898299247026, -0.2835446000099182, 0.02793736755847931], [0.33895912766456604, 0.8937652111053467, 0.16484788060188293], [-0.08521389216184616, 0.956800103187561, -0.04720131307840347], [-0.03491858392953873, -0.48526403307914734, 0.07524974644184113], [-0.046587955206632614, -0.37807199358940125, 0.12299752235412598], [-0.019729889929294586, -0.41606131196022034, -0.01870065927505493], [-0.006940915249288082, -0.5589350461959839, 0.10204418003559113], [-0.10181548446416855, -0.3994307816028595, 0.19175377488136292], [-0.0008417658973485231, -0.49990424513816833, -0.06033381447196007], [-0.26968878507614136, -0.19718554615974426, 0.2153148204088211], [0.18774659931659698, -0.6071279048919678, -0.1972493678331375], [-0.042102742940187454, -0.2660452425479889, 0.2902086675167084], [0.2980329394340515, -0.7642213106155396, -0.02636493369936943], [-0.0070015909150242805, -0.3406426012516022, 0.30278125405311584], [0.3174053132534027, -0.8397479057312012, 0.0028070099651813507]]}, {"image_id": "209.jpg", "category_id": 1, "keypoints": [1125.920166015625, 489.2865905761719, 0.9836583137512207, 1128.4515380859375, 520.1813354492188, 0.9860027432441711, 1118.943603515625, 516.8253784179688, 0.9875756502151489, 1133.5208740234375, 455.0916748046875, 0.9926512837409973, 1104.332763671875, 639.8916015625, 0.9608269333839417, 1134.1820068359375, 637.0460815429688, 0.9727753400802612, 1130.2020263671875, 414.89990234375, 0.9901204705238342, 1128.06591796875, 755.2861328125, 0.9511608481407166, 1173.10791015625, 748.2265625, 0.9094544053077698, 1122.6737060546875, 400.627685546875, 0.9822859168052673, 1106.201416015625, 763.6439208984375, 0.8919160962104797, 1150.756103515625, 772.6279907226562, 0.9386951923370361, 1142.1298828125, 333.9156494140625, 0.9864051938056946, 1147.44140625, 374.70794677734375, 0.9803402423858643, 1122.430908203125, 356.66900634765625, 0.9793137907981873, 1134.57080078125, 311.67645263671875, 0.949049711227417, 1152.647705078125, 384.30810546875, 0.964646577835083, 1109.9149169921875, 339.69122314453125, 0.9865258932113647, 1090.683837890625, 452.2278747558594, 0.9134508371353149, 1080.08935546875, 297.6055908203125, 0.9473479986190796, 1022.7945556640625, 486.89697265625, 0.9376797676086426, 1071.67578125, 207.7237548828125, 0.9175529479980469, 1001.7215576171875, 495.73651123046875, 0.9641441702842712, 1070.9393310546875, 199.01449584960938, 0.8256511092185974, 1148.6580810546875, 241.97579956054688, 0.927970826625824, 983.1747436523438, 501.4380798339844, 0.8671618103981018, 1061.7911376953125, 205.98410034179688, 0.8281376957893372, 1112.60693359375, 768.139404296875, 0.9114065766334534, 1133.8155517578125, 779.2450561523438, 0.9580628871917725], "score": 3.0888381004333496, "box": [1061.96728515625, 241.70840454101562, 145.1949462890625, 539.3381042480469], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.013452190905809402, 0.0965263694524765, -0.053769733756780624], [-0.016200479120016098, 0.07999461889266968, 0.07232599705457687], [0.03007519245147705, -0.10012510418891907, -0.003016149625182152], [-0.05939404293894768, 0.4698694348335266, -0.01576562598347664], [0.03739359602332115, 0.44830965995788574, 0.18472009897232056], [0.017533522099256516, -0.2281418740749359, -0.031766265630722046], [0.023482825607061386, 0.8497124910354614, 0.08538752049207687], [0.1712530255317688, 0.8198298811912537, 0.2558194100856781], [-0.007329961750656366, -0.2711077034473419, -0.056293755769729614], [-0.0962323397397995, 0.8983550071716309, 0.11252792924642563], [0.08884035795927048, 0.9159255027770996, 0.2924083173274994], [0.04062749072909355, -0.4600156545639038, -0.13486920297145844], [0.06523648649454117, -0.3456105589866638, -0.15164723992347717], [-0.003164647612720728, -0.4110761880874634, -0.037088099867105484], [0.014217263087630272, -0.5246572494506836, -0.1812250018119812], [0.07569383829832077, -0.31027334928512573, -0.23439961671829224], [-0.04479316994547844, -0.47608107328414917, 0.018602989614009857], [-0.10090813785791397, -0.11653149127960205, -0.2265419065952301], [-0.15820534527301788, -0.6576712727546692, 0.15645670890808105], [-0.3189089894294739, -0.004919156432151794, -0.2622925937175751], [-0.18381887674331665, -0.9081563353538513, 0.11649235337972641], [-0.39337050914764404, 0.026499703526496887, -0.28041091561317444], [-0.1886082887649536, -0.9844267964363098, 0.14776110649108887]]}, {"image_id": "210.jpg", "category_id": 1, "keypoints": [1008.5576782226562, 437.6005859375, 0.9836991429328918, 1011.8634643554688, 474.2333984375, 0.9886951446533203, 1002.7894287109375, 471.0911560058594, 0.9893723130226135, 999.8110961914062, 392.53448486328125, 0.9883129000663757, 1066.4381103515625, 617.129638671875, 0.9847120046615601, 976.4197387695312, 627.2191162109375, 0.9835044145584106, 1004.2744750976562, 342.8048400878906, 0.9854547381401062, 1098.7933349609375, 770.883544921875, 0.8868140578269958, 947.6113891601562, 786.0257568359375, 0.8683609366416931, 1009.774658203125, 323.898681640625, 0.9920904040336609, 1115.0628662109375, 778.1029052734375, 0.808867335319519, 983.2885131835938, 818.40478515625, 0.8752223253250122, 994.2474975585938, 239.3123321533203, 0.9829773306846619, 997.066162109375, 281.97900390625, 0.993191659450531, 999.658203125, 264.5955810546875, 0.9920972585678101, 1003.9807739257812, 214.64498901367188, 0.9628868699073792, 979.6991577148438, 275.0693664550781, 0.9862449169158936, 1001.0631713867188, 236.88381958007812, 0.9711040258407593, 934.80517578125, 355.7831115722656, 0.8981258869171143, 1059.0770263671875, 215.80703735351562, 0.9522846341133118, 979.823974609375, 346.19854736328125, 0.9662060141563416, 1109.5462646484375, 154.20965576171875, 0.963951051235199, 994.8643188476562, 328.10638427734375, 0.9198514223098755, 1117.396728515625, 128.52987670898438, 0.9461914300918579, 973.1558227539062, 153.78121948242188, 0.920160174369812, 1007.4832763671875, 310.9109802246094, 0.9612457752227783, 1131.6947021484375, 94.85964965820312, 0.9003109931945801, 1108.7786865234375, 779.0875854492188, 0.8306585550308228, 994.4100952148438, 822.276123046875, 0.9231197237968445], "score": 3.1818203926086426, "box": [903.8489990234375, 133.64688110351562, 280.97607421875, 699.4607849121094], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.00968329980969429, 0.09185899794101715, 0.06340594589710236], [-0.020353570580482483, 0.08612121641635895, -0.0650441125035286], [-0.023153048008680344, -0.1026088297367096, 0.007043994963169098], [0.14686104655265808, 0.44906502962112427, 0.09686840325593948], [-0.08547891676425934, 0.4708942174911499, -0.08016219735145569], [-0.010185194201767445, -0.23311728239059448, 0.008699586614966393], [0.23073847591876984, 0.841496467590332, 0.14593571424484253], [-0.15659312903881073, 0.8654529452323914, -0.03134487196803093], [0.005350284278392792, -0.2855226397514343, 0.01842494308948517], [0.3411225974559784, 0.8930912613868713, 0.1986607313156128], [-0.058312587440013885, 0.9538114070892334, -0.042449407279491425], [-0.029750078916549683, -0.4882914423942566, 0.0632726326584816], [-0.03205496817827225, -0.3820874094963074, 0.11556912213563919], [-0.022607745602726936, -0.41626453399658203, -0.030131518840789795], [0.0008551739156246185, -0.5657234191894531, 0.061170369386672974], [-0.07831696420907974, -0.4064539670944214, 0.19020366668701172], [-0.018711140379309654, -0.5000334978103638, -0.0766865685582161], [-0.20647644996643066, -0.17605775594711304, 0.19048017263412476], [0.163993701338768, -0.5518842339515686, -0.2488400936126709], [0.01763170026242733, -0.2290506362915039, 0.28561219573020935], [0.2988622486591339, -0.7244611382484436, -0.11488927155733109], [0.064845971763134, -0.287647008895874, 0.321831077337265], [0.32299473881721497, -0.8029713034629822, -0.10069108009338379]]}, {"image_id": "210.jpg", "category_id": 1, "keypoints": [1122.02490234375, 489.358642578125, 0.9787936210632324, 1127.403076171875, 519.31982421875, 0.9849442839622498, 1110.3048095703125, 517.0822143554688, 0.9879655838012695, 1130.147216796875, 455.96881103515625, 0.9896169900894165, 1107.9874267578125, 639.9912719726562, 0.9586787223815918, 1120.4832763671875, 635.8972778320312, 0.9752210378646851, 1130.970947265625, 416.5859375, 0.9890385866165161, 1130.2454833984375, 757.2779541015625, 0.9464012980461121, 1172.0240478515625, 745.3817138671875, 0.9193039536476135, 1125.4871826171875, 401.8876647949219, 0.9844381213188171, 1112.621337890625, 770.8001098632812, 0.9119613170623779, 1146.44873046875, 769.8658447265625, 0.9217814207077026, 1146.56884765625, 336.58355712890625, 0.9890666007995605, 1152.8294677734375, 375.7679443359375, 0.9846097230911255, 1124.0142822265625, 359.05133056640625, 0.982466995716095, 1140.989501953125, 312.54156494140625, 0.9507676959037781, 1161.36669921875, 383.5702819824219, 0.9707408547401428, 1107.778564453125, 346.55108642578125, 0.9870485663414001, 1100.5469970703125, 457.0173645019531, 0.9200997352600098, 1075.05126953125, 398.8782653808594, 0.9786423444747925, 1047.9459228515625, 461.18218994140625, 0.9479581117630005, 1050.8968505859375, 373.6861267089844, 0.9624378681182861, 1018.8201293945312, 469.4739685058594, 0.9744296073913574, 1047.140869140625, 357.0359802246094, 0.9372435808181763, 1156.61328125, 245.31600952148438, 0.9227337837219238, 997.4283447265625, 444.26953125, 0.939132809638977, 1041.7547607421875, 378.6605224609375, 0.9196089506149292, 1115.9517822265625, 773.5003662109375, 0.9306970238685608, 1132.7371826171875, 777.674560546875, 0.9414920210838318], "score": 3.119757890701294, "box": [1058.087646484375, 238.936279296875, 153.46337890625, 549.0945434570312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.024296049028635025, 0.09718523174524307, -0.047709956765174866], [-0.03272469341754913, 0.07866454124450684, 0.0674399733543396], [0.030670015141367912, -0.09948007762432098, 0.002563605085015297], [-0.034891191869974136, 0.474196195602417, -0.023646265268325806], [0.005292342975735664, 0.4497162401676178, 0.17714467644691467], [0.0316203348338604, -0.22857065498828888, -0.025295516476035118], [0.04218259081244469, 0.8538126945495605, 0.08093613386154175], [0.17478622496128082, 0.80159592628479, 0.26649850606918335], [0.012732874602079391, -0.27359914779663086, -0.05109165608882904], [-0.06260364502668381, 0.9338484406471252, 0.07814794778823853], [0.08042456954717636, 0.8930321931838989, 0.27372366189956665], [0.07027622312307358, -0.46480464935302734, -0.11406244337558746], [0.0971226841211319, -0.35149407386779785, -0.13181668519973755], [0.014108255505561829, -0.4118724465370178, -0.025634009391069412], [0.05037757381796837, -0.5345481634140015, -0.1566518396139145], [0.11900646984577179, -0.32107359170913696, -0.2138790637254715], [-0.04553710296750069, -0.4637913107872009, 0.026697609573602676], [-0.047953177243471146, -0.11918030679225922, -0.20553000271320343], [-0.15998972952365875, -0.2786909341812134, 0.15846392512321472], [-0.2941586375236511, -0.10005013644695282, -0.19194495677947998], [-0.2739178240299225, -0.37750762701034546, -0.046952079981565475], [-0.3733671009540558, -0.07736201584339142, -0.19884100556373596], [-0.29154056310653687, -0.4469963312149048, -0.08760996162891388]]}, {"image_id": "211.jpg", "category_id": 1, "keypoints": [1002.6904907226562, 437.3730163574219, 0.9838578701019287, 1001.8837280273438, 472.9510192871094, 0.9883791208267212, 1000.8949584960938, 472.9001159667969, 0.9872643351554871, 993.2057495117188, 394.38555908203125, 0.9865007400512695, 1062.0537109375, 616.8914794921875, 0.9794961214065552, 975.80029296875, 632.8485107421875, 0.9855436682701111, 998.6583251953125, 342.30413818359375, 0.9834457635879517, 1092.2899169921875, 773.3373413085938, 0.898114025592804, 945.7157592773438, 791.8704833984375, 0.8687752485275269, 1006.0291137695312, 322.4948425292969, 0.9921160936355591, 1109.0438232421875, 781.44140625, 0.8202785849571228, 986.0659790039062, 821.032470703125, 0.8866371512413025, 989.9552612304688, 239.85887145996094, 0.9816505908966064, 986.14892578125, 282.98309326171875, 0.9896338582038879, 998.8897094726562, 263.29071044921875, 0.9920682907104492, 1001.8094482421875, 213.71334838867188, 0.9615058898925781, 963.795654296875, 278.266845703125, 0.9806458950042725, 1000.6716918945312, 234.69082641601562, 0.9682843685150146, 934.4557495117188, 364.4962158203125, 0.8525227308273315, 1057.507080078125, 206.84393310546875, 0.9508258700370789, 1009.3307495117188, 377.8665771484375, 0.9606454372406006, 1108.77978515625, 151.46224975585938, 0.9640769362449646, 1031.8704833984375, 367.7573547363281, 0.9528154134750366, 1116.09228515625, 129.47067260742188, 0.9426616430282593, 961.945556640625, 152.92919921875, 0.9078009128570557, 1050.1522216796875, 344.0250244140625, 0.9108418226242065, 1130.4718017578125, 99.10678100585938, 0.9337299466133118, 1106.632568359375, 783.873779296875, 0.8216291666030884, 995.4957275390625, 824.2833251953125, 0.9271459579467773], "score": 3.177234172821045, "box": [901.9384155273438, 130.21871948242188, 285.65899658203125, 705.3229064941406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0026656771078705788, 0.09104589372873306, 0.06520821154117584], [-0.006283586844801903, 0.08711844682693481, -0.06652332097291946], [-0.024630902335047722, -0.10225248336791992, 0.0008452367037534714], [0.14555765688419342, 0.4434138238430023, 0.11084635555744171], [-0.06576884537935257, 0.47383812069892883, -0.05685091018676758], [-0.009150217287242413, -0.23153913021087646, 0.015440445393323898], [0.22305603325366974, 0.8387434482574463, 0.15403154492378235], [-0.14039625227451324, 0.8700821399688721, -0.022177517414093018], [0.010087345726788044, -0.28150951862335205, 0.029666800051927567], [0.31840091943740845, 0.8886889815330505, 0.23185203969478607], [-0.03433188050985336, 0.9480069875717163, -0.005495116114616394], [-0.02950226701796055, -0.4828759431838989, 0.07530544698238373], [-0.04389026761054993, -0.375066876411438, 0.12134642899036407], [-0.005641183350235224, -0.4143848419189453, -0.017591867595911026], [0.004811433609575033, -0.558727502822876, 0.07780002057552338], [-0.10221149772405624, -0.39251089096069336, 0.18876226246356964], [-0.0006800220580771565, -0.49855661392211914, -0.06263046711683273], [-0.18749013543128967, -0.14256823062896729, 0.19823671877384186], [0.17761115729808807, -0.5718406438827515, -0.23243829607963562], [0.050048358738422394, -0.1034201979637146, 0.26410573720932007], [0.3054051101207733, -0.7208764553070068, -0.0661308616399765], [0.12234152853488922, -0.13686323165893555, 0.2891770303249359], [0.33005350828170776, -0.7944827079772949, -0.03571367263793945]]}, {"image_id": "211.jpg", "category_id": 1, "keypoints": [1117.22412109375, 495.69244384765625, 0.9807907938957214, 1122.7393798828125, 527.5537109375, 0.9899237155914307, 1104.2618408203125, 524.420654296875, 0.9816392660140991, 1127.2947998046875, 461.65972900390625, 0.9902890920639038, 1097.6309814453125, 647.0360107421875, 0.9638527631759644, 1111.6854248046875, 639.6282348632812, 0.9830970764160156, 1130.0526123046875, 420.76251220703125, 0.9894360303878784, 1127.13232421875, 764.1421508789062, 0.9209063649177551, 1177.5328369140625, 744.41357421875, 0.8966077566146851, 1124.9456787109375, 405.2005310058594, 0.9829212427139282, 1103.4217529296875, 776.792724609375, 0.8984687924385071, 1148.7745361328125, 771.0880737304688, 0.9202088117599487, 1147.2911376953125, 339.32891845703125, 0.9886836409568787, 1155.0570068359375, 378.6484375, 0.9880571365356445, 1123.1102294921875, 362.46771240234375, 0.9864487648010254, 1142.1602783203125, 312.91412353515625, 0.9534276723861694, 1167.6844482421875, 386.3752136230469, 0.9699403047561646, 1106.2095947265625, 351.12164306640625, 0.9888173937797546, 1110.831787109375, 465.1612548828125, 0.9298851490020752, 1069.9449462890625, 416.21685791015625, 0.9550649523735046, 1044.60693359375, 430.4027404785156, 0.9424174427986145, 1037.8759765625, 403.84185791015625, 0.9759880900382996, 1020.3873291015625, 411.29815673828125, 0.9636363387107849, 1027.1119384765625, 391.8465576171875, 0.95503169298172, 1155.7303466796875, 245.15151977539062, 0.9104715585708618, 997.8865966796875, 386.3116760253906, 0.8851027488708496, 1027.604248046875, 392.67279052734375, 0.8537687659263611, 1111.12548828125, 782.605224609375, 0.9251000881195068, 1133.1904296875, 779.482666015625, 0.9427306652069092], "score": 3.0485105514526367, "box": [1054.08935546875, 232.16079711914062, 158.87841796875, 563.1649475097656], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.022063132375478745, 0.09702693670988083, -0.05011730641126633], [-0.0362977534532547, 0.079530268907547, 0.06533589214086533], [0.03419969230890274, -0.09908512234687805, 0.005650930106639862], [-0.05616448447108269, 0.47092968225479126, -0.04418677091598511], [-0.0060790106654167175, 0.4463435113430023, 0.18994449079036713], [0.04162714630365372, -0.22942867875099182, -0.017464661970734596], [0.042836759239435196, 0.8500491380691528, 0.042621269822120667], [0.20057730376720428, 0.769159197807312, 0.30718547105789185], [0.02431991882622242, -0.2766640782356262, -0.041205763816833496], [-0.06674595922231674, 0.9129509925842285, 0.08154446631669998], [0.10437754541635513, 0.8593469858169556, 0.3136724829673767], [0.09077953547239304, -0.47002914547920227, -0.08941356837749481], [0.11576709896326065, -0.35685721039772034, -0.11283634603023529], [0.02772844024002552, -0.4138208329677582, -0.0071165356785058975], [0.07346685230731964, -0.5434414148330688, -0.12651672959327698], [0.14863142371177673, -0.32860246300697327, -0.19262947142124176], [-0.03073732927441597, -0.45936551690101624, 0.05318517982959747], [-0.004973273724317551, -0.11627325415611267, -0.20357277989387512], [-0.14076554775238037, -0.258865624666214, 0.16536182165145874], [-0.2218586951494217, -0.23188945651054382, -0.17172792553901672], [-0.2757357954978943, -0.2980707585811615, -0.04769285023212433], [-0.28667914867401123, -0.28345298767089844, -0.1649697721004486], [-0.3110939860343933, -0.33205941319465637, -0.11446146667003632]]}, {"image_id": "212.jpg", "category_id": 1, "keypoints": [1001.571533203125, 436.7583923339844, 0.9817388653755188, 1007.0032348632812, 474.5080871582031, 0.9871190190315247, 998.2882690429688, 471.9519348144531, 0.9824492931365967, 990.6889038085938, 394.0289001464844, 0.9867574572563171, 1069.1507568359375, 622.6980590820312, 0.9850064516067505, 975.0546875, 635.23388671875, 0.9865309000015259, 994.90283203125, 340.10626220703125, 0.9845483303070068, 1104.497314453125, 775.4327392578125, 0.9000428318977356, 946.3649291992188, 798.8297119140625, 0.879395604133606, 1002.849365234375, 319.39007568359375, 0.9912626147270203, 1125.8660888671875, 784.2598876953125, 0.8116064667701721, 983.7222900390625, 832.5843505859375, 0.8994882702827454, 985.2877197265625, 238.69993591308594, 0.9824634194374084, 984.452392578125, 281.73590087890625, 0.9909555315971375, 990.9910888671875, 261.0284729003906, 0.9915270209312439, 996.7390747070312, 212.43875122070312, 0.9632865786552429, 966.530517578125, 277.7361145019531, 0.9842448830604553, 990.7513427734375, 232.45162963867188, 0.9741535186767578, 941.7374877929688, 370.554931640625, 0.8966112732887268, 1059.8677978515625, 206.81597900390625, 0.9427957534790039, 1018.0578002929688, 375.6427001953125, 0.9608812928199768, 1110.7474365234375, 148.60250854492188, 0.9648745059967041, 1037.4427490234375, 358.6053466796875, 0.9460206627845764, 1118.6937255859375, 124.81271362304688, 0.942558765411377, 954.5630493164062, 149.8299560546875, 0.9161717295646667, 1037.7122802734375, 321.3096923828125, 0.9100924730300903, 1131.9300537109375, 94.33465576171875, 0.9293466806411743, 1133.621337890625, 783.6303100585938, 0.8694448471069336, 998.0332641601562, 835.0775146484375, 0.9240380525588989], "score": 3.182413101196289, "box": [899.48828125, 128.2809295654297, 287.655029296875, 707.3522491455078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01290716603398323, 0.09268166124820709, 0.06110398471355438], [-0.012246767058968544, 0.0852796733379364, -0.06760973483324051], [-0.02965284138917923, -0.10035422444343567, 0.008592858910560608], [0.16149678826332092, 0.44520217180252075, 0.09591557830572128], [-0.06354643404483795, 0.472260981798172, -0.05705530568957329], [-0.01506951916962862, -0.23023638129234314, 0.02162996307015419], [0.2531034052371979, 0.8363503217697144, 0.13755279779434204], [-0.13189923763275146, 0.8651951551437378, 0.0034166015684604645], [0.004928984679281712, -0.280568927526474, 0.033238641917705536], [0.36912277340888977, 0.8863248825073242, 0.17781183123588562], [-0.033515814691782, 0.9536094665527344, -0.0027131475508213043], [-0.03948511555790901, -0.47984644770622253, 0.08201702684164047], [-0.04323311522603035, -0.3719910681247711, 0.12968337535858154], [-0.022620949894189835, -0.4116969406604767, -0.012489892542362213], [-0.006057594902813435, -0.5562187433242798, 0.07795186340808868], [-0.09149190038442612, -0.38849011063575745, 0.20471042394638062], [-0.023793227970600128, -0.4920431077480316, -0.06408807635307312], [-0.15964393317699432, -0.1341695785522461, 0.21667158603668213], [0.1749856024980545, -0.5529391765594482, -0.21374300122261047], [0.08647546917200089, -0.1194429099559784, 0.2511840760707855], [0.30259108543395996, -0.7090028524398804, -0.054932646453380585], [0.14806334674358368, -0.17400720715522766, 0.2644560635089874], [0.32781699299812317, -0.7840826511383057, -0.029504312202334404]]}, {"image_id": "212.jpg", "category_id": 1, "keypoints": [1113.15869140625, 491.1289367675781, 0.9815417528152466, 1119.817626953125, 523.8748779296875, 0.9889485239982605, 1098.8294677734375, 519.58251953125, 0.9801710247993469, 1122.5322265625, 456.4019775390625, 0.9898707866668701, 1098.0721435546875, 647.2626342773438, 0.9633131623268127, 1104.193359375, 640.8319091796875, 0.9888774156570435, 1124.9813232421875, 415.7152099609375, 0.9873614311218262, 1133.5780029296875, 765.676025390625, 0.9266113042831421, 1171.5872802734375, 745.4505615234375, 0.9156236052513123, 1120.53955078125, 400.5535888671875, 0.9819607138633728, 1110.7265625, 784.1727294921875, 0.9247688055038452, 1142.044677734375, 772.5234375, 0.9353184103965759, 1145.392333984375, 336.44580078125, 0.9878207445144653, 1152.8743896484375, 376.09332275390625, 0.9894434213638306, 1119.4937744140625, 356.2928466796875, 0.9836587905883789, 1140.994140625, 311.776123046875, 0.9517595171928406, 1169.5062255859375, 384.40155029296875, 0.972471296787262, 1104.98974609375, 339.8202819824219, 0.9851861596107483, 1132.3397216796875, 474.4672546386719, 0.9523317217826843, 1077.4505615234375, 319.30230712890625, 0.9625140428543091, 1054.4422607421875, 441.271240234375, 0.952942430973053, 1073.8458251953125, 261.703857421875, 0.9491558074951172, 1025.336181640625, 427.2613525390625, 0.9673991203308105, 1085.0552978515625, 230.63897705078125, 0.8455872535705566, 1155.6934814453125, 242.68310546875, 0.9238999485969543, 994.962158203125, 395.4755554199219, 0.8999021649360657, 1074.08203125, 273.45928955078125, 0.8705576062202454, 1106.3692626953125, 788.6737060546875, 0.9430047869682312, 1121.5147705078125, 780.5792236328125, 0.9673125743865967], "score": 2.986067295074463, "box": [1048.1934814453125, 233.39039611816406, 169.0390625, 555.9700164794922], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.026662472635507584, 0.09767290949821472, -0.04699426144361496], [-0.04065708816051483, 0.07893955707550049, 0.06386171281337738], [0.03305649757385254, -0.09974023699760437, 0.0067136529833078384], [-0.039184171706438065, 0.47374191880226135, -0.03954588621854782], [-0.018473852425813675, 0.4502772092819214, 0.17568755149841309], [0.03932011500000954, -0.22934570908546448, -0.019795047119259834], [0.07642099261283875, 0.8476543426513672, 0.04988166689872742], [0.19280360639095306, 0.7733273506164551, 0.28437551856040955], [0.023729898035526276, -0.27587375044822693, -0.04620438441634178], [-0.024676602333784103, 0.9315809011459351, 0.06541172415018082], [0.09643252193927765, 0.8631571531295776, 0.2946763336658478], [0.099810890853405, -0.464329332113266, -0.10106164216995239], [0.12179028242826462, -0.34905388951301575, -0.11747948080301285], [0.030414946377277374, -0.41493454575538635, -0.01911071315407753], [0.08382496982812881, -0.5336363315582275, -0.1455080509185791], [0.16497637331485748, -0.3203040659427643, -0.19234038889408112], [-0.019048884510993958, -0.4781496822834015, 0.03325619548559189], [0.06464657187461853, -0.07806113362312317, -0.19916699826717377], [-0.16624392569065094, -0.6064059734344482, 0.19699543714523315], [-0.1634606570005417, -0.17489895224571228, -0.20638196170330048], [-0.18591444194316864, -0.8362259864807129, 0.08764463663101196], [-0.23753923177719116, -0.20976358652114868, -0.22129078209400177], [-0.157762348651886, -0.9141961336135864, 0.09112701565027237]]}, {"image_id": "213.jpg", "category_id": 1, "keypoints": [997.055419921875, 436.4258117675781, 0.981574296951294, 1008.2157592773438, 477.06817626953125, 0.9858402013778687, 992.4766235351562, 469.239990234375, 0.9839344024658203, 983.8400268554688, 396.2985534667969, 0.9888710379600525, 1070.912841796875, 618.9745483398438, 0.9759660959243774, 972.7366943359375, 631.9239501953125, 0.9857551455497742, 985.4953002929688, 344.00421142578125, 0.9854453802108765, 1100.808837890625, 776.3507080078125, 0.922430157661438, 944.696533203125, 797.369384765625, 0.8490197658538818, 993.1845092773438, 322.9691467285156, 0.9909968376159668, 1125.5091552734375, 783.0333251953125, 0.7898705005645752, 981.48388671875, 826.42138671875, 0.8354265093803406, 975.5810546875, 243.9775848388672, 0.9809601306915283, 978.0413208007812, 286.1576232910156, 0.9943665862083435, 977.0531005859375, 267.8145751953125, 0.9906532764434814, 987.7130126953125, 217.6629638671875, 0.9660017490386963, 967.2314453125, 281.56915283203125, 0.9911758899688721, 976.8214721679688, 239.9304962158203, 0.9782866835594177, 950.130126953125, 378.37530517578125, 0.944678783416748, 1054.226318359375, 211.16680908203125, 0.9353227019309998, 1019.072998046875, 360.0125732421875, 0.9618807435035706, 1107.88134765625, 148.96829223632812, 0.9539868235588074, 1031.0921630859375, 336.46270751953125, 0.9452207684516907, 1118.4921875, 125.173583984375, 0.9517796039581299, 953.346435546875, 148.8006591796875, 0.9276219010353088, 1036.7969970703125, 314.75799560546875, 0.920698881149292, 1133.3829345703125, 96.27105712890625, 0.9442496299743652, 1135.0904541015625, 776.950927734375, 0.8345833420753479, 993.2741088867188, 828.7822265625, 0.8734601736068726], "score": 3.183795213699341, "box": [893.8717651367188, 118.41482543945312, 289.06671142578125, 724.2744445800781], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.026857463642954826, 0.09566567838191986, 0.052314870059490204], [-0.015470152720808983, 0.08176639676094055, -0.07204964011907578], [-0.03510761633515358, -0.0977776050567627, 0.01981204003095627], [0.18228667974472046, 0.44709306955337524, 0.05983847379684448], [-0.06262726336717606, 0.4688616394996643, -0.09977889806032181], [-0.02625170163810253, -0.2279781997203827, 0.038282088935375214], [0.2565382122993469, 0.8433257341384888, 0.02225968986749649], [-0.12908902764320374, 0.863706111907959, -0.042631328105926514], [-0.004761685151606798, -0.2782619595527649, 0.049281246960163116], [0.38100364804267883, 0.8750734329223633, -0.01210048794746399], [-0.025479914620518684, 0.9438271522521973, -0.06497108936309814], [-0.05652331933379173, -0.47621437907218933, 0.10082744061946869], [-0.04633261635899544, -0.369039386510849, 0.15059340000152588], [-0.047252919524908066, -0.4069227874279022, 0.005317218601703644], [-0.021648528054356575, -0.5508668422698975, 0.08744951337575912], [-0.07589997351169586, -0.3878192603588104, 0.2348373830318451], [-0.04820624738931656, -0.48395994305610657, -0.05199222266674042], [-0.12193361669778824, -0.12871485948562622, 0.258945107460022], [0.16286388039588928, -0.551602840423584, -0.18186336755752563], [0.11939281970262527, -0.19295018911361694, 0.25806924700737], [0.29546022415161133, -0.7145342826843262, -0.033333636820316315], [0.15744099020957947, -0.26750388741493225, 0.25832289457321167], [0.3280504643917084, -0.7880004644393921, -0.010548826307058334]]}, {"image_id": "213.jpg", "category_id": 1, "keypoints": [1107.4075927734375, 487.1690979003906, 0.981523334980011, 1114.17919921875, 520.85107421875, 0.9915255904197693, 1091.002197265625, 513.8568115234375, 0.9850932359695435, 1116.755126953125, 453.4461975097656, 0.9907788634300232, 1090.8212890625, 645.6532592773438, 0.9754058122634888, 1082.847412109375, 637.4569091796875, 0.9898740649223328, 1122.2489013671875, 412.4324951171875, 0.9838524460792542, 1121.501220703125, 758.8890991210938, 0.9427396059036255, 1158.0562744140625, 739.7421875, 0.9306613802909851, 1119.8907470703125, 396.96978759765625, 0.9843522906303406, 1107.473876953125, 776.0595703125, 0.9154212474822998, 1131.0911865234375, 771.40283203125, 0.9610447287559509, 1147.1695556640625, 336.031005859375, 0.987568736076355, 1155.07373046875, 374.75537109375, 0.9909890294075012, 1119.3822021484375, 351.79644775390625, 0.985581636428833, 1141.53857421875, 309.8253479003906, 0.9482088685035706, 1173.8704833984375, 385.27777099609375, 0.9730386734008789, 1104.11083984375, 328.1336975097656, 0.9740015864372253, 1145.345458984375, 478.959228515625, 0.9386880397796631, 1083.1190185546875, 253.12818908691406, 0.974335789680481, 1066.19287109375, 445.4588317871094, 0.9656964540481567, 1088.6650390625, 195.12460327148438, 0.9166293144226074, 1038.85888671875, 432.63763427734375, 0.9545478820800781, 1095.3448486328125, 191.34674072265625, 0.8834410905838013, 1154.3013916015625, 244.0770263671875, 0.9135125875473022, 1003.8175048828125, 404.7217712402344, 0.9349300265312195, 1091.06689453125, 212.17630004882812, 0.8725317120552063, 1104.2623291015625, 780.2512817382812, 0.9373511075973511, 1120.459716796875, 779.84619140625, 0.967555820941925], "score": 2.887685775756836, "box": [1044.854248046875, 233.04644775390625, 174.7774658203125, 552.0845336914062], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.028585664927959442, 0.0999530777335167, -0.04002783074975014], [-0.04841982573270798, 0.07520754635334015, 0.06254233419895172], [0.03471103683114052, -0.09924976527690887, 0.005928549915552139], [-0.040977202355861664, 0.4740999937057495, -0.0317578949034214], [-0.0690297856926918, 0.45171380043029785, 0.1507686972618103], [0.05052205175161362, -0.22840632498264313, -0.021730314940214157], [0.06296510249376297, 0.8408303260803223, 0.08908390998840332], [0.16041356325149536, 0.7610222697257996, 0.2567747235298157], [0.04141000658273697, -0.27556121349334717, -0.05022077634930611], [-0.01863754540681839, 0.9334497451782227, 0.04204866662621498], [0.07435102760791779, 0.8584938049316406, 0.23446765542030334], [0.12564098834991455, -0.46145474910736084, -0.10240530967712402], [0.14668044447898865, -0.3452664017677307, -0.11422283947467804], [0.04834182560443878, -0.4150501489639282, -0.02569957636296749], [0.10696906596422195, -0.5308918952941895, -0.14618581533432007], [0.1961214542388916, -0.31063663959503174, -0.18251702189445496], [0.0008478683885186911, -0.49328356981277466, 0.00305791012942791], [0.11949972808361053, -0.06098674237728119, -0.19230541586875916], [-0.06183158606290817, -0.7325754165649414, 0.05992404744029045], [-0.10746535658836365, -0.1577272266149521, -0.1791471540927887], [-0.03829086944460869, -0.9852074384689331, 0.04259127005934715], [-0.18241111934185028, -0.1923995465040207, -0.18813538551330566], [0.028267834335565567, -1.025676965713501, 0.07058784365653992]]}, {"image_id": "214.jpg", "category_id": 1, "keypoints": [997.5718994140625, 439.0246276855469, 0.9809117317199707, 1009.9736328125, 477.2781982421875, 0.9857786297798157, 988.5679931640625, 472.9296569824219, 0.9846500158309937, 983.0783081054688, 397.66656494140625, 0.9825804829597473, 1071.247314453125, 619.4242553710938, 0.9766027331352234, 973.6786499023438, 636.555908203125, 0.9859924912452698, 979.624755859375, 346.4150085449219, 0.9817861318588257, 1105.5137939453125, 776.942626953125, 0.8992447257041931, 943.1467895507812, 801.4771118164062, 0.8461169004440308, 987.2919311523438, 324.6629638671875, 0.9883930683135986, 1135.0296630859375, 781.0435180664062, 0.8543940782546997, 980.6756591796875, 833.21875, 0.8485502004623413, 966.9683227539062, 241.94381713867188, 0.9840080738067627, 971.739013671875, 284.3647155761719, 0.995119571685791, 963.3642578125, 270.71044921875, 0.9889830946922302, 978.8037109375, 216.917236328125, 0.9709512591362, 968.8163452148438, 277.0552978515625, 0.9898796081542969, 963.441162109375, 242.3549346923828, 0.9754341244697571, 990.5526123046875, 366.1693115234375, 0.9546701312065125, 1053.2806396484375, 204.17495727539062, 0.9382754564285278, 1054.7364501953125, 347.5798034667969, 0.9034555554389954, 1108.896240234375, 142.63238525390625, 0.9518558979034424, 1051.0802001953125, 321.42230224609375, 0.8709701299667358, 1119.88330078125, 113.65512084960938, 0.9551003575325012, 947.5184936523438, 143.2740478515625, 0.9068843126296997, 1021.6951293945312, 259.1546630859375, 0.8661709427833557, 1132.5499267578125, 83.83221435546875, 0.952345609664917, 1154.2637939453125, 768.7499389648438, 0.8676742315292358, 994.1390380859375, 835.3236083984375, 0.8765243887901306], "score": 3.182168483734131, "box": [893.2175903320312, 115.43560791015625, 286.02227783203125, 730.0274047851562], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03152681514620781, 0.09030959010124207, 0.05743594095110893], [-0.022373920306563377, 0.08718020468950272, -0.062068596482276917], [-0.032477546483278275, -0.09869566559791565, 0.014030937105417252], [0.18341019749641418, 0.4419644773006439, 0.07125252485275269], [-0.057729873806238174, 0.47517189383506775, -0.0700659304857254], [-0.041144710034132004, -0.22910994291305542, 0.027216926217079163], [0.2692020833492279, 0.8355151414871216, 0.07804615795612335], [-0.12940636277198792, 0.8655104637145996, -0.0037849061191082], [-0.022841477766633034, -0.2811892628669739, 0.03116055205464363], [0.3901834189891815, 0.8553555011749268, 0.12790547311306], [-0.02912924811244011, 0.948578953742981, -0.026346072554588318], [-0.08189889043569565, -0.47770604491233826, 0.07457512617111206], [-0.05865052714943886, -0.3759649693965912, 0.1294906735420227], [-0.07883895188570023, -0.4023132622241974, -0.015689749270677567], [-0.04703023284673691, -0.5494992733001709, 0.05019260570406914], [-0.06584104895591736, -0.40089520812034607, 0.2163824886083603], [-0.07867012917995453, -0.47980979084968567, -0.07136903703212738], [-0.004260111600160599, -0.1539718210697174, 0.28244420886039734], [0.14928802847862244, -0.5707931518554688, -0.14229072630405426], [0.2328757792711258, -0.22124335169792175, 0.25199756026268005], [0.2896482050418854, -0.7350654602050781, -0.005075197666883469], [0.22108596563339233, -0.3027487099170685, 0.24036003649234772], [0.3181454539299011, -0.8102511167526245, 0.01546252891421318]]}, {"image_id": "214.jpg", "category_id": 1, "keypoints": [1100.19091796875, 487.4266052246094, 0.9792684316635132, 1108.5396728515625, 521.97607421875, 0.9915465712547302, 1081.689208984375, 513.9984741210938, 0.9839940667152405, 1110.9215087890625, 452.0152587890625, 0.992836594581604, 1081.484130859375, 650.0108642578125, 0.9801269769668579, 1064.249755859375, 639.3988037109375, 0.9894197583198547, 1118.37451171875, 410.22039794921875, 0.9834590554237366, 1123.5089111328125, 761.4403076171875, 0.9296888709068298, 1149.34912109375, 744.2437744140625, 0.9399386644363403, 1116.4163818359375, 395.23193359375, 0.9865673184394836, 1110.98095703125, 781.67822265625, 0.9371376037597656, 1126.68701171875, 778.87744140625, 0.9699203372001648, 1144.826171875, 332.1007080078125, 0.987074613571167, 1153.59619140625, 371.2333984375, 0.9907904863357544, 1115.218505859375, 348.9936828613281, 0.9857712388038635, 1140.10205078125, 306.4670715332031, 0.9501240849494934, 1174.5726318359375, 381.0479736328125, 0.9753053784370422, 1097.1988525390625, 327.607177734375, 0.9845398664474487, 1162.750244140625, 476.16766357421875, 0.9497149586677551, 1072.9779052734375, 259.2318115234375, 0.9618338346481323, 1074.2884521484375, 446.90582275390625, 0.9537069797515869, 1080.976318359375, 194.25479125976562, 0.9125989079475403, 1047.7821044921875, 433.89727783203125, 0.9344006776809692, 1084.5115966796875, 191.32635498046875, 0.826908528804779, 1150.18994140625, 241.8209228515625, 0.8907927870750427, 1004.7760620117188, 408.3610534667969, 0.9336661100387573, 1082.65869140625, 215.97686767578125, 0.8849848508834839, 1108.1424560546875, 785.5971069335938, 0.9482021331787109, 1124.5523681640625, 787.0220947265625, 0.9691562652587891], "score": 2.8547091484069824, "box": [1042.33251953125, 231.87818908691406, 178.1036376953125, 552.9970550537109], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.029619906097650528, 0.10083653032779694, -0.037899166345596313], [-0.05228028446435928, 0.07444089651107788, 0.060895711183547974], [0.035472579300403595, -0.0992547869682312, 0.006838582456111908], [-0.0489315502345562, 0.4740821123123169, -0.03191990405321121], [-0.10140769183635712, 0.4517759382724762, 0.13747739791870117], [0.05673208460211754, -0.22706809639930725, -0.023760246112942696], [0.08685390651226044, 0.8227649927139282, 0.11263196170330048], [0.1398666650056839, 0.7477259635925293, 0.25905871391296387], [0.04874671623110771, -0.27222681045532227, -0.055885642766952515], [0.017667796462774277, 0.9265336990356445, 0.06816820055246353], [0.06691670417785645, 0.8534267544746399, 0.22740836441516876], [0.135463148355484, -0.4584854245185852, -0.104789137840271], [0.15727978944778442, -0.3420349955558777, -0.11505602300167084], [0.054316919296979904, -0.4122254252433777, -0.03164117783308029], [0.1191384494304657, -0.5252190232276917, -0.1535101681947708], [0.2112581431865692, -0.31039339303970337, -0.18154332041740417], [-0.0026389136910438538, -0.4838863015174866, -0.0024018622934818268], [0.17773540318012238, -0.050980061292648315, -0.199285626411438], [-0.0802844911813736, -0.7175368666648865, 0.06270189583301544], [-0.05752268061041832, -0.12836074829101562, -0.20833303034305573], [-0.05117332935333252, -0.9659144878387451, 0.012296989560127258], [-0.13162586092948914, -0.1639917492866516, -0.2216610312461853], [-0.008628793060779572, -1.0064876079559326, 0.0709293931722641]]}, {"image_id": "215.jpg", "category_id": 1, "keypoints": [992.5300903320312, 440.6448669433594, 0.9780524969100952, 1005.0960693359375, 478.66204833984375, 0.9877891540527344, 986.6578369140625, 475.6792297363281, 0.9830936789512634, 975.9343872070312, 399.3539733886719, 0.9811592698097229, 1077.319091796875, 620.1361083984375, 0.9776862859725952, 977.231689453125, 644.168701171875, 0.9860758781433105, 971.4924926757812, 348.01434326171875, 0.9827112555503845, 1113.6392822265625, 773.3956909179688, 0.9165776968002319, 946.2789306640625, 808.355224609375, 0.8701250553131104, 980.0847778320312, 326.26495361328125, 0.9876378774642944, 1140.5755615234375, 781.275634765625, 0.8878525495529175, 983.0526733398438, 842.17724609375, 0.8872652649879456, 960.1865844726562, 240.85523986816406, 0.9865333437919617, 960.0037231445312, 285.59375, 0.9951261281967163, 959.4357299804688, 270.69964599609375, 0.988673985004425, 971.7012939453125, 216.65179443359375, 0.9731054306030273, 953.7843017578125, 277.9766540527344, 0.9883531928062439, 963.92236328125, 239.59390258789062, 0.9773242473602295, 978.3917236328125, 370.93304443359375, 0.9550829529762268, 1051.6361083984375, 197.48806762695312, 0.9422653317451477, 1051.534423828125, 359.42108154296875, 0.8598037958145142, 1109.40966796875, 134.78207397460938, 0.9497997760772705, 1052.438232421875, 341.0638427734375, 0.8238263130187988, 1120.147216796875, 103.93572998046875, 0.9564701914787292, 940.5661010742188, 148.22674560546875, 0.910312831401825, 1026.748779296875, 280.94793701171875, 0.7806372046470642, 1131.8251953125, 74.74197387695312, 0.9445943236351013, 1157.5810546875, 775.1817626953125, 0.8904867768287659, 998.8831787109375, 845.8555908203125, 0.8861652612686157], "score": 3.181833267211914, "box": [892.403076171875, 110.76757049560547, 284.1358642578125, 734.7008743286133], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.030560247600078583, 0.08912178874015808, 0.06217188760638237], [-0.013631481677293777, 0.08963178098201752, -0.06348658353090286], [-0.03796711564064026, -0.09840115904808044, 0.009978972375392914], [0.20684000849723816, 0.43331488966941833, 0.08883564174175262], [-0.03569607436656952, 0.4830585718154907, -0.071944460272789], [-0.049043186008930206, -0.2277480959892273, 0.02468506619334221], [0.3017573058605194, 0.8289443254470825, 0.13112632930278778], [-0.10881412029266357, 0.8756408095359802, 0.014880221337080002], [-0.028770236298441887, -0.27929967641830444, 0.029865317046642303], [0.42179033160209656, 0.8664417266845703, 0.17649252712726593], [-0.010357427410781384, 0.9658551216125488, 0.010542761534452438], [-0.08611039072275162, -0.4793798327445984, 0.06803229451179504], [-0.0738101378083229, -0.37589675188064575, 0.12494257092475891], [-0.07419181615114212, -0.4042620062828064, -0.022867195308208466], [-0.05030256509780884, -0.5540175437927246, 0.060487907379865646], [-0.08980702608823776, -0.4015955924987793, 0.21106234192848206], [-0.06183959171175957, -0.48619771003723145, -0.07146866619586945], [-0.022652003914117813, -0.15232563018798828, 0.27740177512168884], [0.16866743564605713, -0.5924379229545593, -0.12447066605091095], [0.2190086394548416, -0.18754145503044128, 0.21655142307281494], [0.31396839022636414, -0.7593280076980591, 0.011089537292718887], [0.22162465751171112, -0.26035067439079285, 0.17449045181274414], [0.3404598832130432, -0.8352676630020142, 0.03553140163421631]]}, {"image_id": "215.jpg", "category_id": 1, "keypoints": [1078.649169921875, 486.5949401855469, 0.9849252700805664, 1086.2254638671875, 526.8145141601562, 0.9928343296051025, 1057.2369384765625, 510.72125244140625, 0.990774929523468, 1093.15283203125, 445.6780700683594, 0.9929502010345459, 1039.817626953125, 650.1484375, 0.9858778715133667, 1005.91552734375, 644.782958984375, 0.9827754497528076, 1105.2730712890625, 404.68695068359375, 0.9904811382293701, 1075.804931640625, 751.3487548828125, 0.9355695247650146, 1129.427734375, 736.771484375, 0.9216105341911316, 1105.509033203125, 389.9257507324219, 0.9889521598815918, 1065.52294921875, 753.4757690429688, 0.8146156072616577, 1112.235107421875, 752.2191772460938, 0.9049575924873352, 1141.9783935546875, 325.9276428222656, 0.9902995228767395, 1148.3851318359375, 366.4684143066406, 0.9926548004150391, 1110.6395263671875, 339.76055908203125, 0.9877950549125671, 1137.1292724609375, 301.9154357910156, 0.9681861400604248, 1172.681640625, 374.9939880371094, 0.9767909646034241, 1093.8094482421875, 311.3401794433594, 0.9832049608230591, 1175.349609375, 477.846923828125, 0.9365276098251343, 1062.3004150390625, 234.9353790283203, 0.9663302898406982, 1081.4862060546875, 443.82177734375, 0.9448306560516357, 1087.656494140625, 181.86862182617188, 0.8864524364471436, 1054.015380859375, 425.86181640625, 0.9497045278549194, 1096.37744140625, 181.18258666992188, 0.7919917702674866, 1140.697998046875, 238.3242645263672, 0.9094926714897156, 1023.7572021484375, 400.8248596191406, 0.8355086445808411, 1112.0423583984375, 189.49221801757812, 0.8577029705047607, 1074.355224609375, 753.3623046875, 0.7950223088264465, 1104.7381591796875, 753.0480346679688, 0.9218815565109253], "score": 2.7138123512268066, "box": [1043.1864013671875, 221.7666778564453, 168.543701171875, 489.7930145263672], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.025168919935822487, 0.10463454574346542, -0.03658658638596535], [-0.061195965856313705, 0.0713135153055191, 0.06001781299710274], [0.0428045429289341, -0.09883569180965424, 0.00805717334151268], [-0.11006911844015121, 0.4632872939109802, -0.04220416396856308], [-0.1956840306520462, 0.4351993203163147, 0.10614623129367828], [0.0696231797337532, -0.2199106067419052, -0.042240776121616364], [0.016532009467482567, 0.8113577961921692, 0.12404108047485352], [0.11730047315359116, 0.6714012622833252, 0.21116437017917633], [0.0676664188504219, -0.2606033682823181, -0.08236312866210938], [-0.09572215378284454, 0.8275914788246155, 0.053009506314992905], [0.026508143171668053, 0.7593963742256165, 0.2551414668560028], [0.16869083046913147, -0.43752843141555786, -0.15496119856834412], [0.18174122273921967, -0.3166778087615967, -0.15335813164710999], [0.08448123931884766, -0.4052010178565979, -0.07392622530460358], [0.15171542763710022, -0.4930238723754883, -0.21621717512607574], [0.23985324800014496, -0.2845533490180969, -0.21815985441207886], [0.03549799695611, -0.48927539587020874, -0.06678172945976257], [0.2413102090358734, -0.019556298851966858, -0.22380317747592926], [-0.06455347687005997, -0.724722146987915, -0.09775790572166443], [0.005632569547742605, -0.1033271998167038, -0.22402264177799225], [0.022358549758791924, -0.9002671837806702, -0.2646842896938324], [-0.06600350886583328, -0.14772166311740875, -0.22371269762516022], [0.09678903967142105, -0.9004225134849548, -0.30384567379951477]]}, {"image_id": "216.jpg", "category_id": 1, "keypoints": [988.8905029296875, 439.51226806640625, 0.9785587191581726, 1004.9894409179688, 477.8375244140625, 0.9865070581436157, 981.7398071289062, 473.4541015625, 0.9816033840179443, 969.7820434570312, 397.9321594238281, 0.9800137281417847, 1077.1302490234375, 618.5311889648438, 0.9776238799095154, 973.9253540039062, 640.4724731445312, 0.9874066114425659, 965.783203125, 346.59771728515625, 0.9837765097618103, 1112.354248046875, 767.1333618164062, 0.9356690645217896, 949.9755249023438, 800.9794311523438, 0.8765752911567688, 974.9813232421875, 324.72833251953125, 0.9870619177818298, 1148.1982421875, 778.5657958984375, 0.8750656247138977, 984.0048828125, 836.658447265625, 0.8858579397201538, 958.8721923828125, 239.87522888183594, 0.9866954684257507, 960.2132568359375, 284.59320068359375, 0.9951399564743042, 953.477783203125, 270.05816650390625, 0.9893132448196411, 970.8607177734375, 215.32003784179688, 0.9719524383544922, 960.953369140625, 276.58935546875, 0.9869495034217834, 956.3826904296875, 237.9475860595703, 0.9744720458984375, 982.687744140625, 372.525146484375, 0.9702985286712646, 1048.84423828125, 193.20355224609375, 0.9548088312149048, 1058.7216796875, 383.40484619140625, 0.7688995599746704, 1108.0069580078125, 128.88760375976562, 0.9543243646621704, 1058.43994140625, 365.80419921875, 0.7968069911003113, 1118.0635986328125, 99.45523071289062, 0.9538373351097107, 939.6251220703125, 147.40875244140625, 0.9017317891120911, 1041.5025634765625, 316.50677490234375, 0.7370036840438843, 1127.3426513671875, 69.25332641601562, 0.9303574562072754, 1165.943115234375, 776.732177734375, 0.8512938618659973, 1001.2904052734375, 840.7381591796875, 0.912645697593689], "score": 3.176541328430176, "box": [892.0366821289062, 106.55961608886719, 276.03765869140625, 737.9377593994141], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.038427725434303284, 0.0893552377820015, 0.05789647251367569], [-0.014743620529770851, 0.08899398148059845, -0.06468334794044495], [-0.0410924032330513, -0.09689822793006897, 0.015063939616084099], [0.2157319337129593, 0.4343055784702301, 0.07808175683021545], [-0.0331043004989624, 0.4832136929035187, -0.04839871823787689], [-0.0510701984167099, -0.22625038027763367, 0.03208198398351669], [0.3109268844127655, 0.8316396474838257, 0.11511541903018951], [-0.09115123748779297, 0.8774065971374512, 0.04780761897563934], [-0.02951349876821041, -0.27764853835105896, 0.034985437989234924], [0.4369494616985321, 0.8706687688827515, 0.09159300476312637], [0.0014171968214213848, 0.9741601943969727, 0.0437953844666481], [-0.08129122853279114, -0.47960665822029114, 0.07444547116756439], [-0.06444698572158813, -0.37688949704170227, 0.1322420835494995], [-0.07880020886659622, -0.402414470911026, -0.015883909538388252], [-0.04486474394798279, -0.553015947341919, 0.06015098839998245], [-0.06253170222043991, -0.40374889969825745, 0.21971148252487183], [-0.07096625864505768, -0.48424825072288513, -0.06604839116334915], [-0.0048106093890964985, -0.15478551387786865, 0.2980099320411682], [0.15709002315998077, -0.5888452529907227, -0.13439905643463135], [0.22834275662899017, -0.11720022559165955, 0.20888292789459229], [0.30620381236076355, -0.7597999572753906, -0.006917150691151619], [0.22638188302516937, -0.1981564462184906, 0.18520589172840118], [0.3322102427482605, -0.8357552289962769, 0.01881123147904873]]}, {"image_id": "216.jpg", "category_id": 1, "keypoints": [1078.0694580078125, 479.76837158203125, 0.9837883710861206, 1086.1295166015625, 519.1749877929688, 0.9933391213417053, 1054.4937744140625, 503.61187744140625, 0.9914969801902771, 1091.9461669921875, 439.2691650390625, 0.9948959946632385, 1061.1947021484375, 644.55908203125, 0.984998881816864, 988.4915161132812, 639.0284423828125, 0.9771606922149658, 1104.0782470703125, 398.858154296875, 0.9918872117996216, 1080.9644775390625, 740.4474487304688, 0.9027453064918518, 1074.852783203125, 738.1256103515625, 0.8670541048049927, 1105.8355712890625, 384.223388671875, 0.9886795878410339, 1059.37158203125, 741.348388671875, 0.7759313583374023, 1058.915771484375, 740.2564086914062, 0.9268968105316162, 1141.298583984375, 321.56195068359375, 0.9897357225418091, 1149.5377197265625, 362.53009033203125, 0.9926599264144897, 1107.665771484375, 334.33917236328125, 0.9863129258155823, 1136.2894287109375, 298.6297607421875, 0.9625308513641357, 1177.4271240234375, 371.3523254394531, 0.9759035706520081, 1091.106201171875, 304.17327880859375, 0.982629656791687, 1189.1246337890625, 468.62762451171875, 0.9349439144134521, 1059.72412109375, 217.43153381347656, 0.9537749886512756, 1095.3148193359375, 446.9228210449219, 0.9644174575805664, 1085.856689453125, 188.78158569335938, 0.9210231304168701, 1069.5880126953125, 432.0815124511719, 0.9607816934585571, 1096.4434814453125, 189.38119506835938, 0.8721541166305542, 1147.5911865234375, 235.54339599609375, 0.9170663356781006, 1037.1881103515625, 407.80902099609375, 0.8931715488433838, 1118.5394287109375, 207.1302490234375, 0.7563670873641968, 1061.849365234375, 741.219970703125, 0.794682502746582, 1053.2493896484375, 740.522216796875, 0.9063587188720703], "score": 2.8228955268859863, "box": [1041.629150390625, 228.65789794921875, 171.4686279296875, 472.28948974609375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.029789289459586143, 0.10647378116846085, -0.027554893866181374], [-0.06966190785169601, 0.06862489879131317, 0.05415875092148781], [0.04192788153886795, -0.09966595470905304, 0.009488631039857864], [-0.04623476043343544, 0.4812558889389038, -0.05576314777135849], [-0.23843853175640106, 0.41808074712753296, 0.10068382322788239], [0.06831750273704529, -0.21890567243099213, -0.04636196419596672], [0.03380902484059334, 0.8407437205314636, 0.11585548520088196], [0.008880313485860825, 0.7060388922691345, 0.24552877247333527], [0.07069233804941177, -0.2586439847946167, -0.08776585757732391], [-0.09334103763103485, 0.8422523736953735, 0.07325297594070435], [-0.12406214326620102, 0.7241374254226685, 0.2490273267030716], [0.17188918590545654, -0.43715953826904297, -0.1572195440530777], [0.18979692459106445, -0.31696492433547974, -0.14881961047649384], [0.08043842762708664, -0.404474675655365, -0.08407340943813324], [0.1542980968952179, -0.4881467819213867, -0.22220759093761444], [0.2563495635986328, -0.2792719602584839, -0.20197060704231262], [0.03355028107762337, -0.49049824476242065, -0.0811140388250351], [0.2798031270503998, -0.0178346186876297, -0.2408812940120697], [-0.056602854281663895, -0.7282574772834778, -0.12517854571342468], [0.037847962230443954, -0.07719267904758453, -0.26855430006980896], [0.08753716200590134, -0.8716188073158264, -0.28376033902168274], [-0.036378514021635056, -0.11766739189624786, -0.2714422941207886], [0.16413472592830658, -0.8727913498878479, -0.2482956200838089]]}, {"image_id": "217.jpg", "category_id": 1, "keypoints": [988.3574829101562, 442.59979248046875, 0.9810777306556702, 1006.1145629882812, 481.6268005371094, 0.9867965579032898, 979.1336059570312, 476.88287353515625, 0.9785321354866028, 969.4901733398438, 401.1806640625, 0.9821552634239197, 1078.3314208984375, 624.7769775390625, 0.9852370619773865, 973.1159057617188, 645.2260131835938, 0.9869253635406494, 965.23974609375, 348.798583984375, 0.985726535320282, 1107.257568359375, 776.8038330078125, 0.9216589331626892, 950.69677734375, 803.8199462890625, 0.9059358835220337, 975.3550415039062, 326.650390625, 0.9872089624404907, 1140.713623046875, 785.4462890625, 0.8606700301170349, 983.0406494140625, 842.5215454101562, 0.8915541768074036, 958.1561279296875, 240.2044219970703, 0.9864975214004517, 962.9616088867188, 284.9593505859375, 0.9953069686889648, 951.2002563476562, 271.383056640625, 0.9884744882583618, 969.5872802734375, 216.0640869140625, 0.972253680229187, 967.3318481445312, 274.9698486328125, 0.986396312713623, 952.482421875, 239.64434814453125, 0.9748297333717346, 997.7854614257812, 365.003662109375, 0.9795311689376831, 1044.06396484375, 186.00006103515625, 0.9568454027175903, 1068.6436767578125, 385.74176025390625, 0.7464641332626343, 1105.393310546875, 123.56561279296875, 0.9575465321540833, 1067.3626708984375, 379.75750732421875, 0.716065526008606, 1114.703369140625, 94.85784912109375, 0.9445574879646301, 935.2042236328125, 149.42807006835938, 0.9174010157585144, 1051.2872314453125, 334.9208679199219, 0.6483758091926575, 1124.594970703125, 64.0274658203125, 0.9205096364021301, 1154.918212890625, 784.1387939453125, 0.8216782212257385, 1000.047607421875, 848.0860595703125, 0.9266852140426636], "score": 3.1707613468170166, "box": [888.7604370117188, 105.84342956542969, 283.59039306640625, 736.8381500244141], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.041254568845033646, 0.08865097165107727, 0.05627690255641937], [-0.0187118798494339, 0.08941888064146042, -0.06233828514814377], [-0.03957880660891533, -0.09685522317886353, 0.016204899176955223], [0.2160765379667282, 0.434767484664917, 0.0663810670375824], [-0.03256833553314209, 0.48186689615249634, -0.025599872693419456], [-0.050027113407850266, -0.2266327440738678, 0.03047850914299488], [0.2924033999443054, 0.836735725402832, 0.06089922785758972], [-0.08640458434820175, 0.8692480325698853, 0.0932534858584404], [-0.026893090456724167, -0.27725011110305786, 0.029749413952231407], [0.4139341711997986, 0.8654892444610596, 0.013099854812026024], [-0.0005643584299832582, 0.9712519645690918, 0.08396738767623901], [-0.0800468921661377, -0.47928401827812195, 0.06259805709123611], [-0.05750637501478195, -0.3800959885120392, 0.1237204298377037], [-0.08185553550720215, -0.3978785574436188, -0.023427417501807213], [-0.044301752001047134, -0.5539700984954834, 0.05311448872089386], [-0.04629150405526161, -0.4115855395793915, 0.20854970812797546], [-0.07834690809249878, -0.47750523686408997, -0.07686842232942581], [0.037163447588682175, -0.17123624682426453, 0.2885858416557312], [0.1387661248445511, -0.5983729362487793, -0.15131883323192596], [0.2424442321062088, -0.10445079207420349, 0.1589174121618271], [0.2951381802558899, -0.7665997743606567, -0.030191952362656593], [0.2310846447944641, -0.14402267336845398, 0.08554668724536896], [0.3198097348213196, -0.8424403667449951, -0.0036417506635189056]]}, {"image_id": "217.jpg", "category_id": 1, "keypoints": [1068.970703125, 480.1412048339844, 0.983020544052124, 1080.3338623046875, 522.9275512695312, 0.9937195777893066, 1041.601318359375, 503.9233703613281, 0.9918826222419739, 1083.62109375, 438.4390563964844, 0.995810329914093, 1075.788818359375, 665.0885009765625, 0.9819979071617126, 972.8702392578125, 654.380615234375, 0.9604519605636597, 1097.05224609375, 394.9768371582031, 0.9911149740219116, 1115.2760009765625, 768.6773681640625, 0.8863774538040161, 1018.3392333984375, 767.2982177734375, 0.6928623914718628, 1098.2689208984375, 379.7684020996094, 0.9903958439826965, 1099.570068359375, 770.3056640625, 0.8663071990013123, 1026.403076171875, 769.9598388671875, 0.8464701175689697, 1137.801025390625, 314.7843017578125, 0.9893629550933838, 1145.9161376953125, 356.9038391113281, 0.9931166172027588, 1101.4739990234375, 326.22540283203125, 0.9873461127281189, 1133.6788330078125, 291.17120361328125, 0.9629601240158081, 1175.6414794921875, 364.6755065917969, 0.9764240980148315, 1084.434814453125, 294.1641540527344, 0.9862982034683228, 1200.816650390625, 460.05438232421875, 0.9388343095779419, 1057.114990234375, 216.69952392578125, 0.9711915850639343, 1100.8487548828125, 445.3894348144531, 0.9720756411552429, 1103.09375, 156.43215942382812, 0.8566243648529053, 1072.7392578125, 429.35546875, 0.936978816986084, 1116.499267578125, 157.13674926757812, 0.8426408767700195, 1087.2862548828125, 202.76937866210938, 0.8053086996078491, 1041.50146484375, 402.02325439453125, 0.9328659176826477, 1136.033203125, 186.5172119140625, 0.8901553750038147, 1084.8338623046875, 770.2586059570312, 0.7962626218795776, 1042.1263427734375, 769.8955688476562, 0.8960447311401367], "score": 2.918088674545288, "box": [1041.035888671875, 198.4309539794922, 178.003173828125, 526.7377471923828], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.031387001276016235, 0.10617159307003021, -0.024898149073123932], [-0.07490777224302292, 0.06803035736083984, 0.04634743928909302], [0.04107360541820526, -0.09846070408821106, 0.013842275366187096], [0.01869291439652443, 0.4899663031101227, -0.03399546444416046], [-0.2365262806415558, 0.42336320877075195, 0.07410305738449097], [0.07025827467441559, -0.21828028559684753, -0.03713218867778778], [0.1510595679283142, 0.8239994049072266, 0.15619540214538574], [-0.09922739863395691, 0.7695456743240356, 0.23682256042957306], [0.06977204978466034, -0.2556909918785095, -0.08002102375030518], [0.03733735904097557, 0.8291019201278687, 0.08592424541711807], [0.02085433527827263, 0.8053920269012451, 0.18999512493610382], [0.1811227649450302, -0.4316680133342743, -0.13525235652923584], [0.19317200779914856, -0.31122997403144836, -0.13214756548404694], [0.08581961691379547, -0.39955684542655945, -0.06842566281557083], [0.16667771339416504, -0.4827743470668793, -0.20067936182022095], [0.25803714990615845, -0.27518928050994873, -0.18732519447803497], [0.040352124720811844, -0.48546239733695984, -0.06653296947479248], [0.3196927309036255, -0.022083550691604614, -0.2379072904586792], [-0.045737963169813156, -0.7054541110992432, -0.1701284646987915], [0.07272329926490784, -0.05733969807624817, -0.25960806012153625], [0.08195558935403824, -0.8605265617370605, -0.3315609097480774], [0.00041497894562780857, -0.09751194715499878, -0.27537959814071655], [0.15994125604629517, -0.851855993270874, -0.3616301119327545]]}, {"image_id": "218.jpg", "category_id": 1, "keypoints": [991.5806884765625, 447.9315490722656, 0.9772505164146423, 1011.8037719726562, 488.3407287597656, 0.9821462631225586, 979.6649780273438, 480.9676818847656, 0.9818668365478516, 975.0999145507812, 407.03302001953125, 0.9894141554832458, 1079.6239013671875, 627.7738037109375, 0.9894652366638184, 973.998779296875, 647.8431396484375, 0.9850507974624634, 971.4304809570312, 355.7127685546875, 0.9830127954483032, 1102.82177734375, 778.3310546875, 0.9302768111228943, 952.14404296875, 803.02490234375, 0.9167070388793945, 980.8538208007812, 333.5168151855469, 0.9905519485473633, 1137.0372314453125, 788.5917358398438, 0.8369597792625427, 982.5194702148438, 842.418701171875, 0.9013416767120361, 961.4322509765625, 248.0851593017578, 0.9851927161216736, 972.5313110351562, 292.9390869140625, 0.9956993460655212, 952.838623046875, 277.82489013671875, 0.9910545945167542, 972.2840576171875, 220.0658416748047, 0.9735334515571594, 980.9871826171875, 285.0946044921875, 0.9865397214889526, 950.5486450195312, 246.3047332763672, 0.967580258846283, 1013.3027954101562, 381.0005798339844, 0.9610698819160461, 1038.908447265625, 184.64862060546875, 0.9612436294555664, 1077.555419921875, 402.5352478027344, 0.8171364665031433, 1102.019775390625, 119.1697998046875, 0.9539804458618164, 1079.6295166015625, 404.42193603515625, 0.6797010898590088, 1112.68115234375, 89.26065063476562, 0.9427282810211182, 936.8706665039062, 165.75723266601562, 0.8984580636024475, 1087.744140625, 400.2999572753906, 0.4903939366340637, 1126.0858154296875, 54.422760009765625, 0.9270992279052734, 1146.8455810546875, 789.235595703125, 0.8438262939453125, 1001.0316772460938, 849.6148071289062, 0.9415839910507202], "score": 3.1671741008758545, "box": [889.9754638671875, 94.19171142578125, 279.2412109375, 749.936767578125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.045336268842220306, 0.09148963540792465, 0.0495041199028492], [-0.026633623987436295, 0.08747635781764984, -0.06343617290258408], [-0.036488279700279236, -0.09765951335430145, 0.02340971678495407], [0.21520137786865234, 0.44053971767425537, 0.05366777256131172], [-0.03973895311355591, 0.47970449924468994, -0.01933285966515541], [-0.04571040719747543, -0.22791804373264313, 0.03702043369412422], [0.27828449010849, 0.8452818989753723, 0.07853056490421295], [-0.0929795652627945, 0.8650822043418884, 0.11032333970069885], [-0.023788049817085266, -0.2793683409690857, 0.03268260136246681], [0.38937950134277344, 0.874900221824646, 0.00927809253334999], [-0.010888254269957542, 0.9707545638084412, 0.09971685707569122], [-0.07900926470756531, -0.48019295930862427, 0.0767371654510498], [-0.04602769762277603, -0.38006407022476196, 0.13294827938079834], [-0.08864053338766098, -0.40021800994873047, -0.01126934215426445], [-0.0490431934595108, -0.5563449859619141, 0.06123250350356102], [-0.022663673385977745, -0.4071786403656006, 0.21755269169807434], [-0.09452283382415771, -0.478668212890625, -0.06752395629882812], [0.06268853694200516, -0.15776611864566803, 0.2625027298927307], [0.11438976228237152, -0.6190190315246582, -0.13367043435573578], [0.2239196002483368, -0.0948379784822464, 0.07844194769859314], [0.2781848609447479, -0.7962613701820374, -0.035894740372896194], [0.23328395187854767, -0.08078782260417938, -0.004444729536771774], [0.30618423223495483, -0.8748913407325745, -0.022545384243130684]]}, {"image_id": "218.jpg", "category_id": 1, "keypoints": [1068.22802734375, 473.65240478515625, 0.9825303554534912, 1080.8531494140625, 515.1248168945312, 0.9943917393684387, 1042.7781982421875, 500.70135498046875, 0.9908275604248047, 1079.338623046875, 432.51776123046875, 0.9932709336280823, 1077.453369140625, 645.1473388671875, 0.9837424755096436, 1003.4068603515625, 649.586669921875, 0.9738392233848572, 1093.33251953125, 389.7393798828125, 0.9909828901290894, 1106.43603515625, 770.4351196289062, 0.8895723819732666, 1092.7645263671875, 768.7482299804688, 0.7860391139984131, 1095.943359375, 375.181640625, 0.9894404411315918, 1089.57763671875, 771.3606567382812, 0.8065154552459717, 1073.8035888671875, 771.0700073242188, 0.9147151708602905, 1134.4322509765625, 308.48712158203125, 0.9883010983467102, 1143.9071044921875, 350.5718688964844, 0.9931097030639648, 1095.9832763671875, 321.69537353515625, 0.9864522814750671, 1133.366943359375, 286.10809326171875, 0.9587610363960266, 1175.1051025390625, 358.22705078125, 0.9795799255371094, 1077.91015625, 295.671142578125, 0.9861459136009216, 1211.19482421875, 448.7607727050781, 0.9509891271591187, 1042.22509765625, 301.990478515625, 0.9754577279090881, 1119.027587890625, 445.4801330566406, 0.9588295817375183, 1091.91064453125, 182.71371459960938, 0.871972918510437, 1091.487548828125, 431.8170166015625, 0.94889897108078, 1098.669921875, 177.98135375976562, 0.7833921313285828, 1120.67236328125, 209.70338439941406, 0.85988849401474, 1067.457275390625, 414.72161865234375, 0.8804347515106201, 1084.83203125, 286.611328125, 0.9391855001449585, 1079.6370849609375, 771.2981567382812, 0.7840433120727539, 1072.7000732421875, 771.0975952148438, 0.9304021596908569], "score": 2.935460329055786, "box": [1035.9217529296875, 187.67648315429688, 200.2005615234375, 537.5773620605469], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04101810231804848, 0.10462584346532822, -0.013130337931215763], [-0.07318267971277237, 0.06981849670410156, 0.04563117027282715], [0.0322079174220562, -0.10189321637153625, 0.008636392652988434], [0.030071550980210304, 0.4871825873851776, -0.03373120725154877], [-0.16268987953662872, 0.4483375549316406, 0.079575315117836], [0.06249788776040077, -0.2152978777885437, -0.05452657490968704], [0.11874950677156448, 0.8445745706558228, 0.1354614496231079], [0.06492259353399277, 0.7549643516540527, 0.21469950675964355], [0.06626953929662704, -0.2507772743701935, -0.09863123297691345], [0.01705910824239254, 0.8423144817352295, 0.04913158714771271], [-0.06589030474424362, 0.7727562189102173, 0.23370295763015747], [0.17081798613071442, -0.42983368039131165, -0.15396954119205475], [0.18933050334453583, -0.311005562543869, -0.14439691603183746], [0.0732513889670372, -0.3951524794101715, -0.0927516371011734], [0.16368013620376587, -0.47836193442344666, -0.22230035066604614], [0.2624506652355194, -0.27608722448349, -0.18843090534210205], [0.01860763691365719, -0.4749284088611603, -0.08583106100559235], [0.35350683331489563, -0.03328941762447357, -0.2407381534576416], [-0.22905899584293365, -0.4359067976474762, -0.029012177139520645], [0.10858749598264694, -0.04017472267150879, -0.2887423038482666], [-0.1444169282913208, -0.6370012760162354, -0.16470946371555328], [0.036237139254808426, -0.07439547777175903, -0.3140726089477539], [-0.09946855157613754, -0.661792516708374, -0.23088403046131134]]}, {"image_id": "219.jpg", "category_id": 1, "keypoints": [992.5374755859375, 450.6452941894531, 0.9776507616043091, 1011.9468994140625, 489.50067138671875, 0.9863385558128357, 979.6416015625, 485.5232238769531, 0.9861972332000732, 977.1162719726562, 410.4530029296875, 0.990869402885437, 1081.1871337890625, 629.154296875, 0.9864603281021118, 973.2455444335938, 652.2388916015625, 0.9855952262878418, 976.1931762695312, 359.40924072265625, 0.9769036769866943, 1105.614990234375, 777.271240234375, 0.9342555403709412, 950.2855834960938, 805.1929931640625, 0.9177660942077637, 986.2788696289062, 338.45721435546875, 0.9890817403793335, 1136.08154296875, 790.7913818359375, 0.8564103245735168, 983.0633544921875, 845.5303955078125, 0.8935560584068298, 966.4058837890625, 252.91297912597656, 0.984222412109375, 980.3017578125, 296.59912109375, 0.9948734641075134, 957.62158203125, 281.8091125488281, 0.9914363622665405, 977.7390747070312, 224.64480590820312, 0.9657115340232849, 987.811767578125, 289.56298828125, 0.9902702569961548, 952.199462890625, 252.42498779296875, 0.9668262600898743, 1018.3041381835938, 395.26068115234375, 0.9478546380996704, 1030.7081298828125, 173.9814453125, 0.9710937738418579, 1081.23583984375, 404.5024719238281, 0.8985261917114258, 1091.634521484375, 107.982177734375, 0.9634085893630981, 1092.4918212890625, 399.33917236328125, 0.8678747415542603, 1104.3453369140625, 80.09307861328125, 0.9336017370223999, 944.7034301757812, 167.52053833007812, 0.9201093316078186, 1115.6419677734375, 390.5643615722656, 0.8455458283424377, 1115.8460693359375, 49.755157470703125, 0.9102777242660522, 1143.883056640625, 795.1383056640625, 0.888669490814209, 1003.1068725585938, 850.3814697265625, 0.9117756485939026], "score": 3.188107490539551, "box": [886.5390625, 84.89014434814453, 295.71044921875, 753.143424987793], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.044683411717414856, 0.08840756863355637, 0.055084217339754105], [-0.02912941947579384, 0.0913197323679924, -0.056302763521671295], [-0.0346410870552063, -0.09986892342567444, 0.01696692779660225], [0.2157687097787857, 0.43146172165870667, 0.10280710458755493], [-0.043885719031095505, 0.4815792143344879, -0.010995063930749893], [-0.037037719041109085, -0.23187971115112305, 0.015195466578006744], [0.2831955552101135, 0.828278660774231, 0.17127546668052673], [-0.1004076674580574, 0.8650546073913574, 0.11633354425430298], [-0.012716668657958508, -0.2821037173271179, 0.0076674725860357285], [0.39461377263069153, 0.8750112652778625, 0.11353170871734619], [-0.0164671428501606, 0.9665113687515259, 0.09187513589859009], [-0.07174722850322723, -0.4825713634490967, 0.04830871894955635], [-0.034226421266794205, -0.38480108976364136, 0.10605689883232117], [-0.08203823119401932, -0.4000399112701416, -0.03737184405326843], [-0.04078012332320213, -0.5588186383247375, 0.034840118139982224], [-0.012287442572414875, -0.4105762243270874, 0.19161339104175568], [-0.0959247574210167, -0.47099536657333374, -0.10183557868003845], [0.06180849298834801, -0.15617254376411438, 0.21745198965072632], [0.08372426778078079, -0.6451156139373779, -0.16880284249782562], [0.24727754294872284, -0.12198662757873535, 0.05076949670910835], [0.24211882054805756, -0.8245359659194946, -0.06921336054801941], [0.2781875431537628, -0.13447973132133484, -0.026810523122549057], [0.2759217917919159, -0.8994395732879639, -0.05031106248497963]]}, {"image_id": "219.jpg", "category_id": 1, "keypoints": [1070.414306640625, 471.2130126953125, 0.9841206669807434, 1084.7889404296875, 511.41436767578125, 0.9937360286712646, 1045.1207275390625, 500.5003662109375, 0.9889952540397644, 1078.1966552734375, 429.5954284667969, 0.993183434009552, 1073.997802734375, 640.4689331054688, 0.985704243183136, 1048.5218505859375, 655.386962890625, 0.9850004315376282, 1091.6451416015625, 387.55029296875, 0.9894974827766418, 1090.1826171875, 767.0472412109375, 0.9168543219566345, 1110.8291015625, 768.2003173828125, 0.8225845098495483, 1094.8680419921875, 373.06072998046875, 0.9900368452072144, 1089.607421875, 770.1669921875, 0.7856769561767578, 1097.4190673828125, 770.195556640625, 0.8504418730735779, 1131.646240234375, 303.96502685546875, 0.9892374873161316, 1141.7388916015625, 346.0883483886719, 0.9909183382987976, 1093.7110595703125, 319.11883544921875, 0.9893943667411804, 1132.9364013671875, 281.19677734375, 0.9594203233718872, 1172.481689453125, 350.3079833984375, 0.9767759442329407, 1076.325439453125, 290.55987548828125, 0.9870844483375549, 1219.5240478515625, 437.2327880859375, 0.9477159380912781, 1043.62451171875, 247.82579040527344, 0.9693894982337952, 1138.08203125, 442.8847961425781, 0.9630576968193054, 1092.09814453125, 154.07391357421875, 0.8816835880279541, 1111.321533203125, 436.4495544433594, 0.9714660048484802, 1097.7275390625, 153.36990356445312, 0.8236481547355652, 1156.5086669921875, 214.5430145263672, 0.8866006135940552, 1082.0211181640625, 424.08636474609375, 0.8730258941650391, 1099.5333251953125, 263.0216979980469, 0.8832350969314575, 1087.662353515625, 770.1732177734375, 0.7508254647254944, 1100.7733154296875, 770.18798828125, 0.8975719809532166], "score": 2.9990856647491455, "box": [1035.2747802734375, 188.68568420410156, 211.01513671875, 535.7173919677734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04867949336767197, 0.10206113755702972, -0.009124761447310448], [-0.0746283084154129, 0.07512795925140381, 0.03420107066631317], [0.024791263043880463, -0.10373036563396454, 0.014694854617118835], [0.013528410345315933, 0.4731953740119934, -0.09713193774223328], [-0.055092405527830124, 0.4647256135940552, 0.019962895661592484], [0.053521327674388885, -0.21726562082767487, -0.04950067400932312], [0.06512199342250824, 0.8104636669158936, 0.12188339233398438], [0.12230105698108673, 0.7828631401062012, 0.19774718582630157], [0.05917651206254959, -0.2524668574333191, -0.09393323957920074], [0.055316533893346786, 0.8161800503730774, -0.011177334934473038], [0.03482173755764961, 0.7862157225608826, 0.09689362347126007], [0.159837007522583, -0.4361047148704529, -0.14351147413253784], [0.18372070789337158, -0.31860220432281494, -0.1275508552789688], [0.05742591619491577, -0.3976210355758667, -0.09271520376205444], [0.15841245651245117, -0.4844054579734802, -0.2122879922389984], [0.2667772173881531, -0.3040284514427185, -0.16547901928424835], [0.006506364792585373, -0.4801466464996338, -0.09935739636421204], [0.3856945037841797, -0.07302452623844147, -0.21609584987163544], [-0.150958850979805, -0.6818843483924866, -0.12568777799606323], [0.1479783058166504, -0.054112508893013, -0.29061296582221985], [-0.03352886810898781, -0.907002329826355, -0.16584113240242004], [0.07163052260875702, -0.07081227004528046, -0.3216388523578644], [0.03638511523604393, -0.9219461679458618, -0.12193471193313599]]}, {"image_id": "220.jpg", "category_id": 1, "keypoints": [998.4022827148438, 449.655029296875, 0.9762557148933411, 1021.8706665039062, 490.84564208984375, 0.9876765608787537, 980.7291870117188, 483.8638610839844, 0.9888408184051514, 983.9718017578125, 408.499755859375, 0.9902639389038086, 1088.356689453125, 627.58349609375, 0.9866693615913391, 971.6160888671875, 648.3631591796875, 0.9852076172828674, 983.1361083984375, 360.6296691894531, 0.982869565486908, 1108.2490234375, 772.31982421875, 0.8932808637619019, 949.3580932617188, 798.56689453125, 0.9110881686210632, 993.6693725585938, 341.5521240234375, 0.990273118019104, 1139.7430419921875, 784.5804443359375, 0.8114630579948425, 977.751708984375, 839.949951171875, 0.9031388759613037, 975.3296508789062, 258.0860595703125, 0.9881693124771118, 995.0325317382812, 302.17987060546875, 0.9964592456817627, 963.2400512695312, 285.146484375, 0.9925857782363892, 993.0986328125, 231.5456085205078, 0.969977080821991, 1001.2766723632812, 297.61968994140625, 0.9908962249755859, 951.8425903320312, 255.69534301757812, 0.9652248620986938, 1036.2210693359375, 397.234375, 0.930694580078125, 1016.4278564453125, 176.29898071289062, 0.9690375328063965, 1093.0103759765625, 406.12078857421875, 0.9578424692153931, 1070.9527587890625, 102.71951293945312, 0.9681665897369385, 1105.022216796875, 396.737060546875, 0.9452984929084778, 1078.1871337890625, 71.49954223632812, 0.9499330520629883, 983.1676025390625, 177.62701416015625, 0.9462583661079407, 1123.67529296875, 378.9627685546875, 0.9142400026321411, 1079.3985595703125, 42.64996337890625, 0.9207809567451477, 1151.261962890625, 782.8154296875, 0.807039201259613, 994.0128784179688, 847.488525390625, 0.9295607805252075], "score": 3.1920082569122314, "box": [886.0388793945312, 84.86123657226562, 301.61651611328125, 748.9227600097656], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05211664363741875, 0.09349238127470016, 0.038143590092659], [-0.03826514631509781, 0.08538089692592621, -0.06057780981063843], [-0.030960867181420326, -0.09749998152256012, 0.0325595960021019], [0.2213400900363922, 0.44166702032089233, 0.03517187014222145], [-0.059871308505535126, 0.47782182693481445, -0.032625094056129456], [-0.033163510262966156, -0.22887812554836273, 0.045210354030132294], [0.2773578464984894, 0.8472349643707275, 0.04388809949159622], [-0.11517184972763062, 0.8581830859184265, 0.10789970308542252], [-0.006270876619964838, -0.2771613597869873, 0.03392763435840607], [0.3478225767612457, 0.8693163394927979, -0.06817160546779633], [-0.04029986262321472, 0.9649034738540649, 0.0758262574672699], [-0.06481209397315979, -0.47381699085235596, 0.09223835170269012], [-0.016183597967028618, -0.3750165104866028, 0.1393941044807434], [-0.08515075594186783, -0.3945762515068054, 0.004957899451255798], [-0.02046741358935833, -0.5379696488380432, 0.06284108012914658], [0.0019200233509764075, -0.39337414503097534, 0.22789427638053894], [-0.11409243941307068, -0.4650322198867798, -0.05518534407019615], [0.09039832651615143, -0.14154644310474396, 0.23190337419509888], [0.044493988156318665, -0.6533167362213135, -0.13804835081100464], [0.22966229915618896, -0.11094443500041962, 0.02364460378885269], [0.18576042354106903, -0.8511848449707031, -0.04604845494031906], [0.2593233287334442, -0.1334926337003708, -0.05237630754709244], [0.20453649759292603, -0.93202805519104, -0.029849696904420853]]}, {"image_id": "220.jpg", "category_id": 1, "keypoints": [1074.9835205078125, 463.607177734375, 0.9823633432388306, 1091.477294921875, 502.6613464355469, 0.9941045045852661, 1045.95849609375, 495.9610290527344, 0.9892991781234741, 1082.3470458984375, 422.8927917480469, 0.9935739636421204, 1073.120361328125, 620.1072387695312, 0.9930604100227356, 1057.7886962890625, 642.2335815429688, 0.9899579286575317, 1093.6561279296875, 380.44781494140625, 0.9903450608253479, 1071.751708984375, 764.8658447265625, 0.9617469906806946, 1120.453857421875, 772.1287231445312, 0.9171031713485718, 1095.876953125, 366.33831787109375, 0.9910499453544617, 1071.95556640625, 797.705078125, 0.9128912091255188, 1123.4122314453125, 802.4412231445312, 0.8381505012512207, 1127.64208984375, 296.5881042480469, 0.9854731559753418, 1141.5498046875, 336.53717041015625, 0.9904953837394714, 1088.783203125, 313.74261474609375, 0.9889692068099976, 1129.56591796875, 273.4952392578125, 0.9543363451957703, 1173.2412109375, 341.473876953125, 0.9693530797958374, 1069.12451171875, 289.72100830078125, 0.9854695796966553, 1226.865478515625, 422.85406494140625, 0.9467150568962097, 1053.2113037109375, 252.21017456054688, 0.972474992275238, 1146.6597900390625, 438.2639465332031, 0.966738760471344, 1091.20166015625, 132.63433837890625, 0.8627243041992188, 1123.697265625, 433.9696350097656, 0.9651563763618469, 1098.044921875, 129.93801879882812, 0.7828590273857117, 1147.7109375, 208.28118896484375, 0.8609292507171631, 1093.0953369140625, 421.70654296875, 0.8735632300376892, 1104.0401611328125, 231.46768188476562, 0.8516035676002502, 1072.1068115234375, 802.1203002929688, 0.8734862804412842, 1126.791748046875, 805.5933837890625, 0.8668831586837769], "score": 2.9825429916381836, "box": [1035.594970703125, 169.38946533203125, 212.8682861328125, 588.232421875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05057363212108612, 0.10077279806137085, 0.00041275471448898315], [-0.07929230481386185, 0.07628268003463745, 0.010569080710411072], [0.018194369971752167, -0.10205081105232239, 0.0239088237285614], [-0.010987677611410618, 0.4617156386375427, -0.11721369624137878], [-0.051413215696811676, 0.45598483085632324, -0.08024684339761734], [0.048559028655290604, -0.22172805666923523, -0.02405685931444168], [-0.011196731589734554, 0.8576325178146362, -0.028079554438591003], [0.12384774535894394, 0.8203569650650024, -0.11122452467679977], [0.05301647633314133, -0.2598961591720581, -0.0650814026594162], [-0.012318379245698452, 0.9815355539321899, -0.07728666067123413], [0.1376732587814331, 0.9509732723236084, -0.08875230699777603], [0.1476084142923355, -0.44724300503730774, -0.1005220040678978], [0.17543785274028778, -0.33245399594306946, -0.0818895697593689], [0.04323143884539604, -0.4030560553073883, -0.06330305337905884], [0.14861364662647247, -0.4996581971645355, -0.1660359501838684], [0.26067477464675903, -0.316784530878067, -0.11153207719326019], [-0.018085738644003868, -0.4771133363246918, -0.0698026791214943], [0.4019942283630371, -0.09569194912910461, -0.1479770541191101], [-0.10830073058605194, -0.7041527032852173, 0.011591091752052307], [0.17955069243907928, -0.05054715275764465, -0.2528967559337616], [-0.03039337880909443, -0.9493918418884277, -0.00038724392652511597], [0.10979670286178589, -0.06143715977668762, -0.29818880558013916], [0.018250847235322, -0.9763115644454956, 0.06222110241651535]]}, {"image_id": "221.jpg", "category_id": 1, "keypoints": [1011.697265625, 452.95184326171875, 0.9765667915344238, 1038.796630859375, 495.09332275390625, 0.9846912622451782, 988.6011962890625, 490.1574401855469, 0.9914810061454773, 997.455078125, 411.182373046875, 0.9901182651519775, 1091.2935791015625, 634.7232055664062, 0.986873209476471, 978.8206787109375, 653.9364013671875, 0.986285924911499, 1005.6380004882812, 361.8039245605469, 0.9854870438575745, 1103.3397216796875, 775.5372924804688, 0.892676830291748, 953.0578002929688, 803.2186279296875, 0.9253566265106201, 1018.5476684570312, 343.917724609375, 0.9882803559303284, 1129.54443359375, 800.177734375, 0.8473784327507019, 980.7423706054688, 847.305419921875, 0.9204543828964233, 1017.4193725585938, 263.5138244628906, 0.991481363773346, 1040.81005859375, 305.25823974609375, 0.9956613779067993, 988.8640747070312, 286.72308349609375, 0.995172381401062, 1033.583251953125, 243.63137817382812, 0.9579847455024719, 1080.3477783203125, 308.5975341796875, 0.9903833270072937, 962.4156494140625, 258.2785949707031, 0.9650393128395081, 1156.255615234375, 391.45062255859375, 0.9651212692260742, 1006.9070434570312, 160.42425537109375, 0.9460048079490662, 1137.7122802734375, 420.21307373046875, 0.9695352911949158, 1055.3663330078125, 86.5037841796875, 0.9185291528701782, 1143.3140869140625, 422.57415771484375, 0.9163737893104553, 1057.9781494140625, 60.37359619140625, 0.9017226099967957, 992.2428588867188, 177.80374145507812, 0.9344273805618286, 1135.1396484375, 393.3489074707031, 0.9053878784179688, 1060.3878173828125, 46.167449951171875, 0.8929426074028015, 1133.7574462890625, 799.993896484375, 0.8429238796234131, 1001.80712890625, 857.9154052734375, 0.9019345045089722], "score": 3.187654733657837, "box": [885.0977172851562, 82.6036376953125, 315.43536376953125, 745.7093505859375], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.059122439473867416, 0.09293384104967117, 0.03195483982563019], [-0.046280551701784134, 0.08772621303796768, -0.05320855602622032], [-0.027282454073429108, -0.09870252013206482, 0.03549353778362274], [0.19617313146591187, 0.45785805583000183, 0.026226993650197983], [-0.06986483186483383, 0.4838655889034271, -0.042932428419589996], [-0.005717403721064329, -0.22869855165481567, 0.04056254401803017], [0.23161062598228455, 0.870105504989624, 0.03128809109330177], [-0.1331407129764557, 0.8602774143218994, 0.11645534634590149], [0.025899458676576614, -0.2719047963619232, 0.02159794420003891], [0.285064160823822, 0.917189359664917, -0.08358702063560486], [-0.06313992291688919, 0.9686857461929321, 0.0757569819688797], [0.0092041976749897, -0.4825681447982788, 0.061720605939626694], [0.06624600291252136, -0.3850434422492981, 0.1039922833442688], [-0.05026267468929291, -0.39500629901885986, 0.004168553277850151], [0.05099335312843323, -0.5309618711471558, 0.008493248373270035], [0.15605032444000244, -0.3789326548576355, 0.12620718777179718], [-0.11040248721837997, -0.4560379385948181, -0.04253529757261276], [0.3339417278766632, -0.1806853711605072, 0.08526402711868286], [-0.003000387456268072, -0.6876779198646545, -0.10286551713943481], [0.2711975574493408, -0.09324267506599426, -0.1455339640378952], [0.12038551270961761, -0.8859919309616089, 0.016521800309419632], [0.2815776765346527, -0.08436325192451477, -0.22977326810359955], [0.12870430946350098, -0.9649122953414917, 0.0478355698287487]]}, {"image_id": "221.jpg", "category_id": 1, "keypoints": [1079.3624267578125, 463.654052734375, 0.9834652543067932, 1092.28369140625, 502.71832275390625, 0.9935902953147888, 1053.3997802734375, 495.7386474609375, 0.988903284072876, 1086.45703125, 422.1656799316406, 0.9912375807762146, 1072.8841552734375, 624.340087890625, 0.9900555610656738, 1077.7938232421875, 638.463623046875, 0.9784311056137085, 1096.3515625, 378.1387939453125, 0.9875489473342896, 1051.0093994140625, 753.2420654296875, 0.9411743879318237, 1124.3863525390625, 771.7059326171875, 0.8873708844184875, 1098.8646240234375, 363.51666259765625, 0.9888654947280884, 1045.8868408203125, 779.7268676757812, 0.8856227993965149, 1114.278564453125, 785.735107421875, 0.8148736953735352, 1128.72802734375, 293.70599365234375, 0.9871640205383301, 1142.7052001953125, 334.5156555175781, 0.9907224178314209, 1092.0303955078125, 309.45697021484375, 0.9904738664627075, 1128.927490234375, 271.5235595703125, 0.9574405550956726, 1172.43798828125, 338.53875732421875, 0.9703229069709778, 1072.9136962890625, 283.7563781738281, 0.9873533248901367, 1231.869140625, 409.6669006347656, 0.935555636882782, 1049.2176513671875, 230.51502990722656, 0.9789961576461792, 1160.781982421875, 436.5604553222656, 0.9503976106643677, 1069.4608154296875, 140.320556640625, 0.8426913619041443, 1140.2274169921875, 435.4515075683594, 0.964265763759613, 1076.2039794921875, 164.8282470703125, 0.8558912873268127, 1152.4744873046875, 205.60675048828125, 0.907599151134491, 1111.5799560546875, 425.9267578125, 0.9311894774436951, 1117.390625, 387.7850036621094, 0.8247631788253784, 1059.144287109375, 783.1822509765625, 0.9284710884094238, 1111.6600341796875, 786.08203125, 0.8538544178009033], "score": 2.924375057220459, "box": [1034.0130615234375, 172.44346618652344, 227.86376953125, 565.5186920166016], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05071451887488365, 0.1013912558555603, -0.00035915151238441467], [-0.07796863466501236, 0.07556617259979248, 0.024189408868551254], [0.021269571036100388, -0.10454607009887695, 0.01665804162621498], [-0.010040471330285072, 0.47656014561653137, -0.020306933671236038], [-0.013931980356574059, 0.45700690150260925, -0.007480885833501816], [0.04210693761706352, -0.22076237201690674, -0.04662640765309334], [-0.06122836843132973, 0.8292660713195801, 0.16783645749092102], [0.11616355925798416, 0.8185608386993408, 0.11396432667970657], [0.04633200168609619, -0.2568974494934082, -0.09073349833488464], [-0.08722703903913498, 0.9545066356658936, 0.13076817989349365], [0.054455000907182693, 0.888361930847168, 0.018802456557750702], [0.1333039551973343, -0.4505036771297455, -0.12878566980361938], [0.16710056364536285, -0.3355614244937897, -0.10935940593481064], [0.02938261441886425, -0.4014597237110138, -0.09098272770643234], [0.12956593930721283, -0.4980659782886505, -0.1978704333305359], [0.25375866889953613, -0.32131585478782654, -0.13958290219306946], [-0.029249148443341255, -0.4787420332431793, -0.1014188751578331], [0.4179952144622803, -0.11883702874183655, -0.1754424273967743], [-0.12757086753845215, -0.7091470956802368, -0.05001101642847061], [0.2033778578042984, -0.03669935464859009, -0.2703035771846771], [-0.07161376625299454, -0.9579994678497314, -0.035246048122644424], [0.12562228739261627, -0.039595574140548706, -0.30168989300727844], [-0.05102217569947243, -0.8785355091094971, -0.051266446709632874]]}, {"image_id": "222.jpg", "category_id": 1, "keypoints": [1029.189697265625, 450.8507995605469, 0.9823564291000366, 1049.197998046875, 491.0582275390625, 0.9908879399299622, 1004.0012817382812, 484.7045593261719, 0.9911074638366699, 1022.093994140625, 406.33624267578125, 0.9862574338912964, 1086.1239013671875, 629.1182861328125, 0.9878976345062256, 982.9337768554688, 642.5030517578125, 0.9850886464118958, 1033.4903564453125, 358.77435302734375, 0.9791828989982605, 1106.998779296875, 770.7946166992188, 0.9207467436790466, 960.9801635742188, 792.8492431640625, 0.8672846555709839, 1041.9512939453125, 340.9319763183594, 0.9888947010040283, 1139.393310546875, 780.2190551757812, 0.782748281955719, 987.3484497070312, 834.38818359375, 0.9402489066123962, 1049.2650146484375, 261.4549865722656, 0.9881918430328369, 1066.322265625, 302.3292541503906, 0.9949347972869873, 1022.8623046875, 285.1553955078125, 0.994686484336853, 1056.83544921875, 242.09471130371094, 0.9675598740577698, 1094.078369140625, 299.463134765625, 0.9847164750099182, 998.408935546875, 261.06121826171875, 0.9836616516113281, 1125.43359375, 340.4456787109375, 0.9747539162635803, 988.4677734375, 177.06442260742188, 0.9709876179695129, 1126.885009765625, 325.70733642578125, 0.9824113249778748, 1025.343017578125, 98.43878173828125, 0.9732088446617126, 1129.5672607421875, 318.8175048828125, 0.9558117389678955, 1037.65087890625, 67.001708984375, 0.9339895844459534, 1052.84765625, 177.89669799804688, 0.9632882475852966, 1130.4307861328125, 322.51910400390625, 0.9238713979721069, 1050.6705322265625, 36.084808349609375, 0.8454856872558594, 1144.7314453125, 782.3226318359375, 0.8095344305038452, 1006.25341796875, 841.001220703125, 0.9388576149940491], "score": 3.1860945224761963, "box": [884.1625366210938, 76.98345947265625, 332.94110107421875, 751.439208984375], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05029731243848801, 0.09322553128004074, 0.03476747125387192], [-0.059961382299661636, 0.08426956832408905, -0.03516414016485214], [-0.010894360020756721, -0.10102981328964233, 0.024676429107785225], [0.14966951310634613, 0.4635712206363678, 0.04620048403739929], [-0.11171820014715195, 0.4699755012989044, -0.061389364302158356], [0.019534360617399216, -0.22835543751716614, 0.014944532886147499], [0.2096557468175888, 0.8565765619277954, 0.11373638361692429], [-0.16637231409549713, 0.8523383140563965, 0.05271949619054794], [0.042188480496406555, -0.27601081132888794, -0.0014157257974147797], [0.29952794313430786, 0.8778716325759888, 0.01907193847000599], [-0.09626997262239456, 0.9609369039535522, 0.025911254808306694], [0.05002095177769661, -0.48263612389564514, 0.03397275507450104], [0.10209102183580399, -0.3827114999294281, 0.06869017332792282], [-0.02266141213476658, -0.40123286843299866, -0.009634193032979965], [0.06928620487451553, -0.5310091972351074, -0.03132478892803192], [0.18531014025211334, -0.393389493227005, 0.102437824010849], [-0.08564908057451248, -0.45979925990104675, -0.050120752304792404], [0.3449636697769165, -0.18426933884620667, 0.09849285334348679], [-0.11572224646806717, -0.700831413269043, -0.12953440845012665], [0.33951228857040405, -0.22753015160560608, -0.14593403041362762], [-0.01281137578189373, -0.9256819486618042, -0.06369128078222275], [0.3492231070995331, -0.2569716274738312, -0.22290509939193726], [0.017387857660651207, -1.0020214319229126, -0.0743347704410553]]}, {"image_id": "222.jpg", "category_id": 1, "keypoints": [1078.8978271484375, 458.1514892578125, 0.9843172430992126, 1092.8941650390625, 496.6483154296875, 0.991215705871582, 1050.3941650390625, 492.19073486328125, 0.9893906712532043, 1083.1546630859375, 415.0638122558594, 0.9931060075759888, 1072.5240478515625, 623.7561645507812, 0.9864965677261353, 1071.6529541015625, 631.3849487304688, 0.9881463050842285, 1091.9466552734375, 370.3748779296875, 0.9874870181083679, 1049.12646484375, 745.5606689453125, 0.9255551099777222, 1110.2021484375, 775.5718383789062, 0.931532621383667, 1094.9234619140625, 356.1733703613281, 0.9897956848144531, 1065.9110107421875, 782.726806640625, 0.950454831123352, 1116.78125, 800.6641235351562, 0.8662569522857666, 1121.757568359375, 284.4289245605469, 0.9878695011138916, 1138.3802490234375, 324.55169677734375, 0.9901298880577087, 1084.662109375, 302.4208679199219, 0.9919032454490662, 1124.0640869140625, 261.82366943359375, 0.962069034576416, 1171.03369140625, 329.1554260253906, 0.9680541157722473, 1065.2362060546875, 278.9593811035156, 0.9874125123023987, 1238.951904296875, 397.7019958496094, 0.9506696462631226, 1049.5140380859375, 217.27061462402344, 0.9427043199539185, 1177.306396484375, 428.0248718261719, 0.9423438310623169, 1055.05712890625, 152.734375, 0.9087288975715637, 1162.4293212890625, 429.2872619628906, 0.9449884295463562, 1069.92431640625, 187.86456298828125, 0.8850484490394592, 1142.8348388671875, 188.41812133789062, 0.9017219543457031, 1143.4085693359375, 423.3130798339844, 0.9185423851013184, 1130.690673828125, 380.4847412109375, 0.8801870346069336, 1071.8731689453125, 795.9833984375, 0.9366918802261353, 1123.2550048828125, 803.0045166015625, 0.8440717458724976], "score": 2.7183351516723633, "box": [1037.8367919921875, 161.16493225097656, 223.9573974609375, 592.4222869873047], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.047292325645685196, 0.09772230684757233, 0.03070024773478508], [-0.07861422747373581, 0.0776149183511734, -0.006426412612199783], [0.009459154680371284, -0.10543757677078247, 0.014962464570999146], [-0.0073815593495965, 0.46402379870414734, 0.12323921918869019], [-0.022867897525429726, 0.45697104930877686, -0.07132217288017273], [0.032136209309101105, -0.2233498990535736, -0.042159538716077805], [-0.06576813757419586, 0.8128582239151001, 0.3171459436416626], [0.07960455864667892, 0.8260650634765625, 0.054470449686050415], [0.03879760205745697, -0.2616559565067291, -0.08321923017501831], [-0.01819911040365696, 0.9180033206939697, 0.25118088722229004], [0.10193388909101486, 0.9216649532318115, -0.035043179988861084], [0.11708126217126846, -0.45812639594078064, -0.11456960439682007], [0.15477555990219116, -0.346856027841568, -0.08885317295789719], [0.013614664785563946, -0.40360161662101746, -0.08825267106294632], [0.11862222850322723, -0.5050948858261108, -0.183893620967865], [0.24308808147907257, -0.3325842320919037, -0.11074738204479218], [-0.04839358478784561, -0.477620393037796, -0.09474656730890274], [0.4234115779399872, -0.14482492208480835, -0.1501094400882721], [-0.09738773852586746, -0.6979265213012695, 0.025721706449985504], [0.2387230545282364, -0.05373308062553406, -0.289400577545166], [-0.07485393434762955, -0.9472999572753906, 0.07789155840873718], [0.17673581838607788, -0.046671509742736816, -0.34510838985443115], [-0.04529617354273796, -0.8726649284362793, 0.055232807993888855]]}, {"image_id": "223.jpg", "category_id": 1, "keypoints": [1035.2716064453125, 451.89263916015625, 0.9841773509979248, 1057.288330078125, 491.3600769042969, 0.9920070171356201, 1009.4887084960938, 487.5314025878906, 0.9933691024780273, 1030.099365234375, 406.0381774902344, 0.9866379499435425, 1086.2657470703125, 633.483642578125, 0.9861751794815063, 982.489990234375, 642.3280029296875, 0.9848031997680664, 1038.416748046875, 357.8853759765625, 0.9802811741828918, 1110.8922119140625, 774.2273559570312, 0.912051796913147, 958.3896484375, 785.143798828125, 0.8664953708648682, 1044.1297607421875, 339.846923828125, 0.9904043078422546, 1140.2181396484375, 786.4095458984375, 0.7877605557441711, 979.03125, 825.8094482421875, 0.9033579230308533, 1048.391357421875, 258.44903564453125, 0.9874931573867798, 1065.708984375, 297.83526611328125, 0.9947612285614014, 1024.305908203125, 285.131591796875, 0.9936081767082214, 1054.62841796875, 237.788330078125, 0.9658569097518921, 1087.3668212890625, 289.13629150390625, 0.9811294674873352, 998.6613159179688, 263.3027648925781, 0.9871401190757751, 1091.71337890625, 253.49932861328125, 0.9716604948043823, 983.813232421875, 177.64108276367188, 0.9710362553596497, 1061.6353759765625, 180.85247802734375, 0.9695358276367188, 1002.2051391601562, 94.52304077148438, 0.9713036417961121, 1050.5458984375, 156.11688232421875, 0.9197243452072144, 1005.1419677734375, 63.2430419921875, 0.9234261512756348, 1050.3162841796875, 176.50833129882812, 0.9624304175376892, 1049.390869140625, 135.66787719726562, 0.9049773216247559, 1012.998291015625, 36.83770751953125, 0.9195553660392761, 1145.3587646484375, 787.138671875, 0.8063004016876221, 993.3814086914062, 835.2952880859375, 0.9365140199661255], "score": 3.187397003173828, "box": [882.7600708007812, 65.73837280273438, 340.54571533203125, 766.6335754394531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05608590692281723, 0.09129979461431503, 0.029036961495876312], [-0.06322450935840607, 0.08549973368644714, -0.022830959409475327], [-0.008296208456158638, -0.10127729177474976, 0.023037798702716827], [0.13283805549144745, 0.4648361802101135, 0.049716517329216], [-0.13003569841384888, 0.46782851219177246, -0.03467053920030594], [0.009095745161175728, -0.2309419810771942, 0.010233111679553986], [0.202875018119812, 0.8547658920288086, 0.11134257912635803], [-0.1931511014699936, 0.8485633134841919, 0.0720987617969513], [0.0249423049390316, -0.2812580466270447, -0.005818294361233711], [0.2833135724067688, 0.8835842609405518, 0.011048905551433563], [-0.13614879548549652, 0.9578282833099365, 0.026353217661380768], [0.03464118018746376, -0.4835803210735321, 0.04721532762050629], [0.09172206372022629, -0.3822149932384491, 0.06568504124879837], [-0.04174414649605751, -0.4047824442386627, 0.005650095641613007], [0.051143817603588104, -0.538428783416748, -0.01373559981584549], [0.16611526906490326, -0.4142264425754547, 0.10563613474369049], [-0.1106787845492363, -0.46068206429481506, -0.02793291211128235], [0.19619835913181305, -0.6703228950500488, 0.061063528060913086], [-0.15348710119724274, -0.6963467597961426, -0.11258895695209503], [0.10087432712316513, -0.892263650894165, 0.009726524353027344], [-0.10039649158716202, -0.9397821426391602, -0.0611097514629364], [0.06709178537130356, -0.9676339626312256, 0.00983852706849575], [-0.09303557127714157, -1.0182095766067505, -0.08509278297424316]]}, {"image_id": "223.jpg", "category_id": 1, "keypoints": [1079.4432373046875, 454.4267272949219, 0.9836931824684143, 1093.40283203125, 493.08538818359375, 0.9929335713386536, 1050.5426025390625, 482.82098388671875, 0.9907823204994202, 1086.4786376953125, 413.7432861328125, 0.9931570291519165, 1099.3206787109375, 641.5901489257812, 0.9830008149147034, 989.41455078125, 644.7816162109375, 0.9550755023956299, 1096.219482421875, 368.68560791015625, 0.9860824942588806, 1100.20556640625, 732.4617919921875, 0.8835859298706055, 994.1815185546875, 732.5157470703125, 0.7907896637916565, 1098.761962890625, 352.7784423828125, 0.9790477752685547, 1081.9833984375, 732.6416015625, 0.8115417957305908, 991.6497192382812, 732.629150390625, 0.7589476108551025, 1120.1158447265625, 279.4632263183594, 0.9902989864349365, 1137.7171630859375, 320.3248596191406, 0.9917988777160645, 1085.244384765625, 298.010009765625, 0.9918509721755981, 1116.9127197265625, 257.0068359375, 0.9585914611816406, 1170.0955810546875, 323.1376953125, 0.9763132929801941, 1062.66748046875, 277.17352294921875, 0.9866527318954468, 1240.7569580078125, 386.2272644042969, 0.9036362171173096, 1043.520263671875, 281.79791259765625, 0.969008207321167, 1186.959228515625, 423.9163513183594, 0.9635156393051147, 1095.7916259765625, 381.99163818359375, 0.9596612453460693, 1170.53955078125, 428.29547119140625, 0.9167736172676086, 1127.0909423828125, 408.92266845703125, 0.8635417819023132, 1125.4892578125, 194.0086212158203, 0.872217059135437, 1154.444580078125, 433.6142883300781, 0.7909008264541626, 1161.36474609375, 412.0711364746094, 0.9149929285049438, 1052.6217041015625, 732.59228515625, 0.8931007981300354, 992.8494262695312, 732.535400390625, 0.8235512375831604], "score": 2.4356565475463867, "box": [1028.1400146484375, 153.34103393554688, 243.8685302734375, 533.4731140136719], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.047151826322078705, 0.10219414532184601, -0.0012973248958587646], [-0.07941737025976181, 0.07278576493263245, 0.024160224944353104], [0.024299180135130882, -0.10278543829917908, 0.0167887844145298], [0.05022140592336655, 0.48058611154556274, -0.034062642604112625], [-0.2154613733291626, 0.43461233377456665, 0.04373582452535629], [0.042567018419504166, -0.2247529923915863, -0.03426333889365196], [0.06765817850828171, 0.7722165584564209, 0.2408079206943512], [-0.19584250450134277, 0.7555271983146667, 0.2833893597126007], [0.047360170632600784, -0.26514992117881775, -0.07369382679462433], [-0.02080441638827324, 0.7657603025436401, 0.14232134819030762], [-0.21026447415351868, 0.7463897466659546, 0.15205442905426025], [0.1073329895734787, -0.4662590026855469, -0.11554313451051712], [0.1555006504058838, -0.3573489785194397, -0.0971294566988945], [0.012835445813834667, -0.40524131059646606, -0.0735774114727974], [0.09529247879981995, -0.5149608850479126, -0.18280184268951416], [0.2432870864868164, -0.34733814001083374, -0.12354744970798492], [-0.058629680424928665, -0.4703255891799927, -0.07992616295814514], [0.4350815415382385, -0.17153042554855347, -0.1529475450515747], [-0.24717305600643158, -0.4401395916938782, 0.08804851025342941], [0.25497618317604065, -0.047252118587493896, -0.2681979835033417], [-0.1485626995563507, -0.23340100049972534, -0.02231055498123169], [0.1849455088376999, -0.027705833315849304, -0.3089485168457031], [-0.0952889695763588, -0.18339568376541138, -0.061797745525836945]]}, {"image_id": "224.jpg", "category_id": 1, "keypoints": [1037.8812255859375, 456.7194519042969, 0.983238160610199, 1062.5098876953125, 496.7754821777344, 0.993018388748169, 1010.103271484375, 491.26873779296875, 0.9895445108413696, 1040.3336181640625, 410.2064514160156, 0.988683819770813, 1085.825927734375, 644.742431640625, 0.983025074005127, 973.05322265625, 642.9403076171875, 0.985626220703125, 1044.14501953125, 357.7721862792969, 0.9710849523544312, 1101.705078125, 782.853271484375, 0.9498631358146667, 967.08984375, 784.86865234375, 0.8762788772583008, 1045.2694091796875, 340.7308349609375, 0.9855933785438538, 1108.700927734375, 802.582275390625, 0.8564757108688354, 985.7304077148438, 809.806640625, 0.8699948191642761, 1058.1162109375, 257.0631103515625, 0.9876694679260254, 1073.84375, 298.46893310546875, 0.9913157224655151, 1027.5196533203125, 283.2095642089844, 0.9928744435310364, 1063.7762451171875, 239.61090087890625, 0.9627983570098877, 1101.0318603515625, 297.50238037109375, 0.9838393926620483, 1003.6160278320312, 265.38037109375, 0.9888139367103577, 1188.1827392578125, 374.0911865234375, 0.9700286388397217, 984.3303833007812, 185.95144653320312, 0.963403046131134, 1173.4630126953125, 414.3267517089844, 0.9772413969039917, 983.2061767578125, 99.94866943359375, 0.9450823664665222, 1173.884033203125, 419.0376892089844, 0.9512661099433899, 981.576416015625, 67.78106689453125, 0.9352885484695435, 1054.9066162109375, 173.04754638671875, 0.9531710147857666, 1157.1796875, 417.3009033203125, 0.8431422710418701, 980.118896484375, 47.362030029296875, 0.8426744937896729, 1095.522705078125, 806.2400512695312, 0.8995495438575745, 999.7286376953125, 818.21435546875, 0.9324141144752502], "score": 3.1868245601654053, "box": [882.4425048828125, 52.39167404174805, 356.9307861328125, 790.8382453918457], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05985729396343231, 0.0935724526643753, 0.00876680202782154], [-0.0705484002828598, 0.08313463628292084, 0.005877133458852768], [0.004808818455785513, -0.1027507334947586, 0.02133743092417717], [0.12010149657726288, 0.4650469422340393, 0.06912462413311005], [-0.16237878799438477, 0.4596130847930908, 0.019530300050973892], [0.014756865799427032, -0.23223306238651276, -0.0034853145480155945], [0.1671266406774521, 0.8396813273429871, 0.20324110984802246], [-0.17751316726207733, 0.834695041179657, 0.15845562517642975], [0.017169732600450516, -0.277799129486084, -0.03527534008026123], [0.18955762684345245, 0.9074475765228271, 0.09218500554561615], [-0.1118040382862091, 0.9178258776664734, 0.08008323609828949], [0.051213961094617844, -0.4851505756378174, -0.02212272211909294], [0.11070065200328827, -0.3826795816421509, -0.018570704385638237], [-0.036575231701135635, -0.4068076014518738, -0.011472716927528381], [0.06538142263889313, -0.5291891694068909, -0.091978058218956], [0.2015460580587387, -0.3861328363418579, -0.014940672554075718], [-0.11318479478359222, -0.46404320001602173, -0.01028471626341343], [0.3973759710788727, -0.21815310418605804, 0.02844143658876419], [-0.1735127866268158, -0.7086308598518372, -0.04323646426200867], [0.335613876581192, -0.07177664339542389, -0.16089120507240295], [-0.17719070613384247, -0.9560475945472717, -0.10241401195526123], [0.33258360624313354, -0.05311961472034454, -0.24162526428699493], [-0.18146057426929474, -1.0379234552383423, -0.11274030804634094]]}, {"image_id": "224.jpg", "category_id": 1, "keypoints": [1080.0968017578125, 450.7777099609375, 0.9838109612464905, 1094.5645751953125, 489.32537841796875, 0.9910764694213867, 1050.965087890625, 482.2961730957031, 0.9890783429145813, 1083.6177978515625, 408.3019714355469, 0.9930617809295654, 1101.4921875, 645.6990966796875, 0.9801260828971863, 1011.1393432617188, 642.71826171875, 0.9702636003494263, 1093.3521728515625, 363.70306396484375, 0.9859155416488647, 1099.4791259765625, 731.6173095703125, 0.8979781866073608, 1005.2469482421875, 731.510498046875, 0.8233405351638794, 1096.82470703125, 348.10174560546875, 0.9814773201942444, 1090.1806640625, 731.7147216796875, 0.8804550170898438, 1004.749267578125, 731.7008666992188, 0.7992186546325684, 1115.059326171875, 273.0020751953125, 0.9905189275741577, 1134.2197265625, 313.49542236328125, 0.9910559058189392, 1079.950439453125, 293.3333435058594, 0.9913516640663147, 1110.9349365234375, 251.3186798095703, 0.9612393379211426, 1168.0615234375, 314.5260314941406, 0.9702162146568298, 1056.6522216796875, 273.33929443359375, 0.9851894378662109, 1243.0421142578125, 369.0823974609375, 0.9355109333992004, 1035.0594482421875, 242.47080993652344, 0.970946729183197, 1196.084228515625, 413.408935546875, 0.9709570407867432, 1071.3597412109375, 289.8077392578125, 0.9099143743515015, 1179.425048828125, 421.3671569824219, 0.9548749327659607, 1107.5986328125, 341.1418151855469, 0.934033215045929, 1119.314208984375, 183.6810760498047, 0.905188798904419, 1162.50830078125, 429.4332275390625, 0.8136597871780396, 1171.3656005859375, 401.8969421386719, 0.8975260853767395, 1081.1103515625, 731.6113891601562, 0.9039779901504517, 1013.5183715820312, 731.55126953125, 0.8381441831588745], "score": 2.402405261993408, "box": [1027.077392578125, 149.35935974121094, 244.666748046875, 536.2902374267578], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04856600984930992, 0.09807662665843964, 0.023934517055749893], [-0.07913142442703247, 0.0761750191450119, 0.0008463151752948761], [0.012201674282550812, -0.10403160750865936, 0.014999404549598694], [0.06767436116933823, 0.4757393002510071, 0.06944292783737183], [-0.17256717383861542, 0.45259594917297363, 0.0012899115681648254], [0.03246164321899414, -0.22367487847805023, -0.03832180052995682], [0.07331386208534241, 0.7977667450904846, 0.3092568516731262], [-0.18809874355793, 0.7688596844673157, 0.24781329929828644], [0.03989988565444946, -0.2634929418563843, -0.07706542313098907], [0.01375486608594656, 0.7897062301635742, 0.19147388637065887], [-0.19241000711917877, 0.7600098252296448, 0.1161511242389679], [0.09021694213151932, -0.4651408791542053, -0.12125857174396515], [0.14228270947933197, -0.3622172474861145, -0.08988302946090698], [-0.0036994866095483303, -0.3991512656211853, -0.08973605930805206], [0.06863360852003098, -0.5003612041473389, -0.19412817060947418], [0.23149330914020538, -0.35779738426208496, -0.10912367701530457], [-0.07517372816801071, -0.46115535497665405, -0.10547268390655518], [0.439744770526886, -0.20179565250873566, -0.1402353048324585], [-0.17713810503482819, -0.6315165162086487, 0.0536193810403347], [0.29015782475471497, -0.06582270562648773, -0.2825210690498352], [-0.06209214776754379, -0.45920491218566895, -0.0939817875623703], [0.2323683798313141, -0.03793875873088837, -0.3351297378540039], [-0.019933847710490227, -0.39477992057800293, -0.12419034540653229]]}, {"image_id": "225.jpg", "category_id": 1, "keypoints": [1022.1553344726562, 452.62078857421875, 0.9831560254096985, 1051.419189453125, 493.3220520019531, 0.9894864559173584, 989.8513793945312, 487.7169494628906, 0.9872996807098389, 1017.670166015625, 406.3392333984375, 0.9926920533180237, 1092.0869140625, 640.6425170898438, 0.9844171404838562, 966.2982177734375, 650.4728393554688, 0.9793890118598938, 1022.6386108398438, 352.99481201171875, 0.9789562821388245, 1121.0538330078125, 782.3223876953125, 0.9277439117431641, 951.4877319335938, 802.986328125, 0.9224827885627747, 1027.7557373046875, 335.401611328125, 0.9871374368667603, 1142.433349609375, 802.9193115234375, 0.8025031685829163, 964.9869384765625, 840.5110473632812, 0.9122252464294434, 1042.380126953125, 252.08441162109375, 0.987869381904602, 1060.8626708984375, 294.33148193359375, 0.994038999080658, 1004.9985961914062, 277.0036926269531, 0.9940543174743652, 1052.65087890625, 235.9246063232422, 0.9592337608337402, 1093.2022705078125, 294.1623229980469, 0.97664475440979, 975.5242309570312, 253.16445922851562, 0.9901044964790344, 1174.776611328125, 366.548095703125, 0.9611330032348633, 964.3154907226562, 134.81900024414062, 0.9423674941062927, 1182.5723876953125, 407.97613525390625, 0.9761274456977844, 973.4820556640625, 96.74740600585938, 0.9606613516807556, 1191.54296875, 409.02734375, 0.9459502100944519, 979.456298828125, 88.85702514648438, 0.9024173617362976, 1047.88427734375, 169.29684448242188, 0.9454206228256226, 1182.01416015625, 401.4675598144531, 0.9076182842254639, 1020.53076171875, 154.19158935546875, 0.9209367036819458, 1141.6295166015625, 805.9005126953125, 0.8508543968200684, 977.5384521484375, 848.9144287109375, 0.9119278192520142], "score": 3.190683603286743, "box": [881.6569213867188, 55.635772705078125, 361.90679931640625, 789.0568542480469], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.060826681554317474, 0.09225650876760483, 0.01980547420680523], [-0.06664474308490753, 0.08632376790046692, -0.01482718251645565], [-0.00523095577955246, -0.10235008597373962, 0.02588680572807789], [0.16341032087802887, 0.4600602090358734, 0.05865266174077988], [-0.12242341786623001, 0.4724073112010956, 0.001300698146224022], [0.006630321033298969, -0.23202797770500183, 0.007413610816001892], [0.24475249648094177, 0.8442012071609497, 0.15551304817199707], [-0.15860019624233246, 0.8511379957199097, 0.1373954564332962], [0.019352316856384277, -0.2760026156902313, -0.024400494992733], [0.3145689070224762, 0.9093730449676514, 0.06318709999322891], [-0.11880052089691162, 0.956555962562561, 0.06728627532720566], [0.049589868634939194, -0.4849168360233307, -0.012887479737401009], [0.10330048948526382, -0.3833005726337433, 0.017240794375538826], [-0.038012195378541946, -0.4065958559513092, -0.02845555916428566], [0.07093814760446548, -0.5154397487640381, -0.08751953393220901], [0.19269314408302307, -0.38494011759757996, 0.03565661609172821], [-0.1093953549861908, -0.46177777647972107, -0.06131187826395035], [0.3895794749259949, -0.21412110328674316, 0.07681956142187119], [-0.13374079763889313, -0.7159861326217651, -0.08557970076799393], [0.4002271592617035, -0.08489558100700378, -0.13603214919567108], [-0.09281178563833237, -0.9031544923782349, 0.08535546809434891], [0.42728206515312195, -0.0784916877746582, -0.21482831239700317], [-0.06629406660795212, -0.9455474615097046, 0.1520978957414627]]}, {"image_id": "225.jpg", "category_id": 1, "keypoints": [1077.56982421875, 446.49298095703125, 0.9859250783920288, 1091.5810546875, 485.126220703125, 0.989142119884491, 1050.3760986328125, 476.4143981933594, 0.9900045394897461, 1082.164794921875, 403.8226623535156, 0.9934057593345642, 1098.37841796875, 641.8126220703125, 0.9844047427177429, 1005.5663452148438, 635.2838134765625, 0.9662981033325195, 1092.6630859375, 359.3406982421875, 0.9873172044754028, 1101.3138427734375, 717.0037841796875, 0.8865571022033691, 1001.8660888671875, 716.9525146484375, 0.7950044870376587, 1095.9132080078125, 343.1489562988281, 0.984005868434906, 1091.966552734375, 717.0715942382812, 0.8776049017906189, 1006.2289428710938, 717.0486450195312, 0.803207278251648, 1113.0908203125, 266.57232666015625, 0.9886597394943237, 1133.145263671875, 306.7825622558594, 0.9909859299659729, 1078.6927490234375, 289.49176025390625, 0.9885237812995911, 1107.823486328125, 244.44430541992188, 0.9652708768844604, 1164.864501953125, 307.3334045410156, 0.970713198184967, 1054.05419921875, 273.3591613769531, 0.9814682602882385, 1244.07763671875, 353.7724304199219, 0.9028692245483398, 1032.993896484375, 273.09405517578125, 0.962553858757019, 1207.965576171875, 399.7780456542969, 0.9435563087463379, 1105.95458984375, 354.0168151855469, 0.9688639640808105, 1191.57958984375, 410.1917419433594, 0.9679413437843323, 1140.5703125, 382.35186767578125, 0.9244534373283386, 1108.5841064453125, 176.39735412597656, 0.9421175122261047, 1164.8536376953125, 418.6253662109375, 0.8806670904159546, 1185.060791015625, 397.5598449707031, 0.8384355902671814, 1078.4166259765625, 716.88623046875, 0.9200966954231262, 1003.1226196289062, 716.853759765625, 0.8702025413513184], "score": 2.5766730308532715, "box": [1028.9400634765625, 159.49444580078125, 236.3671875, 513.4818725585938], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.049262065440416336, 0.09890949726104736, 0.02075355499982834], [-0.08005344867706299, 0.07542140781879425, 0.007575951516628265], [0.014703281223773956, -0.10454030334949493, 0.013550501316785812], [0.06782668828964233, 0.47733020782470703, 0.06095324829220772], [-0.18484163284301758, 0.44873255491256714, 0.025077763944864273], [0.037104956805706024, -0.22386087477207184, -0.0410824678838253], [0.09392370283603668, 0.7726628184318542, 0.33270543813705444], [-0.19417664408683777, 0.7641229629516602, 0.2741173505783081], [0.04359762743115425, -0.2637442350387573, -0.0804445892572403], [0.03995008021593094, 0.7644760608673096, 0.21189439296722412], [-0.17730268836021423, 0.7552932500839233, 0.14305661618709564], [0.08959512412548065, -0.46660661697387695, -0.12803974747657776], [0.14460991322994232, -0.3640274405479431, -0.09859563410282135], [-0.002453345339745283, -0.39941638708114624, -0.09175273776054382], [0.06507395207881927, -0.5078731179237366, -0.19690939784049988], [0.23409539461135864, -0.36057186126708984, -0.11878007650375366], [-0.08310554921627045, -0.45045745372772217, -0.10525082051753998], [0.45802631974220276, -0.22572211921215057, -0.144154354929924], [-0.2759995460510254, -0.4705764651298523, 0.06036427989602089], [0.34023916721343994, -0.08748416602611542, -0.31281161308288574], [-0.13847500085830688, -0.29996490478515625, -0.06994248926639557], [0.28940653800964355, -0.055578991770744324, -0.3705874979496002], [-0.08157302439212799, -0.24935410916805267, -0.1030479222536087]]}, {"image_id": "226.jpg", "category_id": 1, "keypoints": [1014.135498046875, 461.2123107910156, 0.9819937348365784, 1045.430908203125, 496.82452392578125, 0.9905062913894653, 984.1273193359375, 497.59228515625, 0.9892517924308777, 1007.0061645507812, 414.8744201660156, 0.994101345539093, 1095.1358642578125, 646.00927734375, 0.9821504354476929, 966.5184326171875, 659.0072021484375, 0.9796547293663025, 1009.602783203125, 359.458984375, 0.9685295224189758, 1125.0257568359375, 785.2891235351562, 0.9166970252990723, 952.8768310546875, 808.7281494140625, 0.9122958779335022, 1013.0748291015625, 341.15869140625, 0.983096182346344, 1135.8167724609375, 807.6852416992188, 0.8513811826705933, 966.89453125, 843.0501708984375, 0.916206419467926, 1012.3031616210938, 248.9477081298828, 0.9793321490287781, 1034.257080078125, 291.2572021484375, 0.9936619400978088, 982.2459106445312, 281.31280517578125, 0.9943970441818237, 1023.30322265625, 228.4987335205078, 0.9457042813301086, 1057.3824462890625, 284.8135681152344, 0.9579350352287292, 952.846435546875, 260.0384826660156, 0.9862505793571472, 1116.056396484375, 364.52783203125, 0.960344135761261, 912.8848876953125, 174.46939086914062, 0.9796260595321655, 1162.78271484375, 398.8851623535156, 0.9419049024581909, 931.4699096679688, 88.52407836914062, 0.9549821615219116, 1192.12060546875, 395.3331298828125, 0.9512761235237122, 940.02978515625, 54.518768310546875, 0.8859154582023621, 1045.8509521484375, 152.97174072265625, 0.9408690929412842, 1198.3653564453125, 390.420654296875, 0.9541659355163574, 945.03662109375, 39.255767822265625, 0.8954846858978271, 1120.720458984375, 815.653564453125, 0.9140498042106628, 980.5313110351562, 850.3946533203125, 0.8981364369392395], "score": 3.191328525543213, "box": [871.2966918945312, 44.06288146972656, 384.03094482421875, 802.5988006591797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06677521765232086, 0.08614575862884521, 0.02339497208595276], [-0.0603439100086689, 0.09071939438581467, -0.007852933369576931], [-0.011520733125507832, -0.10231427848339081, 0.019665002822875977], [0.1875670701265335, 0.4443420171737671, 0.08028655499219894], [-0.10228531062602997, 0.4763405919075012, 0.01752905175089836], [-0.009518243372440338, -0.2323969453573227, -4.0022656321525574e-05], [0.2697574496269226, 0.8069946765899658, 0.23246365785598755], [-0.1352510005235672, 0.8456210494041443, 0.1711849719285965], [-0.0011295108124613762, -0.27726155519485474, -0.03147021681070328], [0.30316483974456787, 0.8789511322975159, 0.12677842378616333], [-0.09248840808868408, 0.9447906017303467, 0.09539831429719925], [-0.005762404762208462, -0.485012948513031, -0.0003892555832862854], [0.05862240493297577, -0.39029133319854736, 0.028716012835502625], [-0.07681252062320709, -0.39688336849212646, -0.03312394767999649], [0.02040845900774002, -0.5304446816444397, -0.06548521667718887], [0.13571807742118835, -0.4141857624053955, 0.07017277181148529], [-0.15165245532989502, -0.44907820224761963, -0.06109035015106201], [0.28662997484207153, -0.21767719089984894, 0.15633152425289154], [-0.2587963938713074, -0.6796615719795227, -0.04394346475601196], [0.3901382386684418, -0.12633825838565826, -0.049330055713653564], [-0.20995169878005981, -0.9173182845115662, 0.035192400217056274], [0.4559272527694702, -0.132810577750206, -0.09952473640441895], [-0.18992610275745392, -0.9975265860557556, 0.03973368555307388]]}, {"image_id": "226.jpg", "category_id": 1, "keypoints": [1078.6497802734375, 440.1898193359375, 0.98927241563797, 1093.33349609375, 478.1929016113281, 0.9900546073913574, 1050.3006591796875, 467.7704772949219, 0.9915367960929871, 1085.3817138671875, 399.4036865234375, 0.9891629815101624, 1102.356689453125, 636.1473999023438, 0.9820582270622253, 999.232421875, 630.781494140625, 0.9807294011116028, 1094.1339111328125, 353.3326416015625, 0.9879310131072998, 1108.697509765625, 706.3885498046875, 0.8702623844146729, 999.4752807617188, 706.33984375, 0.864343523979187, 1095.9425048828125, 336.894775390625, 0.9902183413505554, 1099.347900390625, 706.3990478515625, 0.8323821425437927, 1004.7200927734375, 706.4075927734375, 0.762833833694458, 1110.1605224609375, 262.50482177734375, 0.9873552322387695, 1131.24169921875, 301.6215515136719, 0.99012690782547, 1077.5382080078125, 284.864990234375, 0.983497679233551, 1103.64697265625, 240.3245391845703, 0.9614604115486145, 1162.889404296875, 301.73187255859375, 0.9672788977622986, 1050.5452880859375, 272.13641357421875, 0.9855573177337646, 1244.6439208984375, 336.7784729003906, 0.9183595776557922, 1024.3297119140625, 314.5791931152344, 0.9885401725769043, 1216.6591796875, 386.3958740234375, 0.9413715600967407, 1118.2794189453125, 388.5364990234375, 0.9428624510765076, 1203.250244140625, 399.3234558105469, 0.9682741761207581, 1140.2979736328125, 391.5909118652344, 0.8878604769706726, 1094.9716796875, 170.10025024414062, 0.941365659236908, 1173.3907470703125, 409.78509521484375, 0.9275977611541748, 1182.2010498046875, 387.4380187988281, 0.6788148880004883, 1080.9951171875, 705.5848388671875, 0.8799089789390564, 1009.5224609375, 706.21728515625, 0.8453695178031921], "score": 2.5734100341796875, "box": [1032.156982421875, 170.18264770507812, 228.60888671875, 493.8269958496094], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04771895706653595, 0.10144327580928802, -0.0010067615658044815], [-0.07847217470407486, 0.07312895357608795, 0.024011453613638878], [0.023226413875818253, -0.10234950482845306, 0.01647651381790638], [0.0701352134346962, 0.4804997444152832, 0.01242750696837902], [-0.19422699511051178, 0.4424135684967041, 0.021697895601391792], [0.03895219415426254, -0.22584597766399384, -0.031033018603920937], [0.11111140251159668, 0.7599168419837952, 0.29657065868377686], [-0.18931947648525238, 0.7627659440040588, 0.2618175148963928], [0.04169318825006485, -0.26720911264419556, -0.06918707489967346], [0.0658043920993805, 0.7514015436172485, 0.17255476117134094], [-0.15982812643051147, 0.7543066740036011, 0.13327011466026306], [0.08127771317958832, -0.4709692597389221, -0.11687760055065155], [0.13958454132080078, -0.3686561584472656, -0.09414217621088028], [-0.0065221842378377914, -0.4021945595741272, -0.07399573177099228], [0.060374319553375244, -0.521195113658905, -0.18093493580818176], [0.22826774418354034, -0.3660128712654114, -0.11769186705350876], [-0.09380762279033661, -0.4431336522102356, -0.07571031153202057], [0.46319636702537537, -0.2594047784805298, -0.1614195704460144], [-0.22434930503368378, -0.23505721986293793, -0.010703707113862038], [0.36520862579345703, -0.10663275420665741, -0.3291003406047821], [-0.0633021742105484, -0.09275387227535248, -0.14632239937782288], [0.3163755238056183, -0.06149528920650482, -0.37902456521987915], [0.0029047634452581406, -0.08010433614253998, -0.19449973106384277]]}, {"image_id": "227.jpg", "category_id": 1, "keypoints": [1008.4146728515625, 457.859130859375, 0.9809207320213318, 1037.83203125, 491.3618469238281, 0.9897577166557312, 983.2823486328125, 495.2635498046875, 0.9900898337364197, 1000.1952514648438, 412.3407287597656, 0.9928936958312988, 1097.724609375, 641.1256103515625, 0.9844890832901001, 967.90234375, 656.2139282226562, 0.9760762453079224, 1002.3226318359375, 358.84881591796875, 0.9829365611076355, 1135.8046875, 779.204345703125, 0.9319084882736206, 951.1484375, 809.26171875, 0.9410491585731506, 1006.4291381835938, 337.84808349609375, 0.989753246307373, 1149.3134765625, 804.107177734375, 0.8921641707420349, 964.9819946289062, 844.250244140625, 0.8824862241744995, 1004.5900268554688, 248.22378540039062, 0.9825457334518433, 1026.89697265625, 289.92724609375, 0.991688072681427, 975.0245361328125, 279.8534851074219, 0.9937149286270142, 1018.027099609375, 227.72943115234375, 0.937538206577301, 1049.43603515625, 284.75, 0.9687768816947937, 942.2103881835938, 261.7236633300781, 0.9863761067390442, 1100.74609375, 349.7789611816406, 0.9705213904380798, 894.3553466796875, 166.22109985351562, 0.9687249064445496, 1181.33544921875, 358.169921875, 0.9755469560623169, 903.3781127929688, 91.33734130859375, 0.9713209867477417, 1214.2156982421875, 363.33001708984375, 0.949797511100769, 905.724609375, 60.20758056640625, 0.9304763078689575, 1026.782470703125, 159.1363525390625, 0.9395135045051575, 1224.6041259765625, 364.7930603027344, 0.9139841794967651, 909.2534790039062, 33.9635009765625, 0.924252450466156, 1140.535888671875, 809.7097778320312, 0.9090047478675842, 983.5682373046875, 850.080810546875, 0.8680873513221741], "score": 3.193897008895874, "box": [860.1317749023438, 70.95991516113281, 403.54766845703125, 766.3026580810547], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06775376200675964, 0.08274877816438675, 0.02763199433684349], [-0.05532384663820267, 0.0922401174902916, -0.011465429328382015], [-0.016669126227498055, -0.10044403374195099, 0.018178794533014297], [0.2097049057483673, 0.4359777569770813, 0.05417155846953392], [-0.09209845960140228, 0.4779086112976074, 0.004065588116645813], [-0.013060647062957287, -0.2309911698102951, 0.006760140880942345], [0.31474652886390686, 0.8049057126045227, 0.1664803922176361], [-0.1326972097158432, 0.8550276756286621, 0.12816081941127777], [-0.0035819897893816233, -0.27968519926071167, -0.016452491283416748], [0.3579423725605011, 0.8866537809371948, 0.07308141887187958], [-0.09312605857849121, 0.9486619830131531, 0.04539785161614418], [-0.010103300213813782, -0.4826917052268982, 0.02878151461482048], [0.04991394653916359, -0.386042058467865, 0.05643877014517784], [-0.07736284285783768, -0.3985099792480469, -0.016037117689847946], [0.02520713396370411, -0.5331571102142334, -0.02790972590446472], [0.11874265223741531, -0.40527087450027466, 0.1109423041343689], [-0.1577695608139038, -0.4411025047302246, -0.04157611355185509], [0.27820223569869995, -0.2097957581281662, 0.1781243532896042], [-0.27149727940559387, -0.6669426560401917, -0.05884607508778572], [0.4691559970378876, -0.181529238820076, 0.025006931275129318], [-0.24725495278835297, -0.8949602842330933, 0.050392378121614456], [0.5370647311210632, -0.1682843416929245, -0.019695840775966644], [-0.2415887862443924, -0.9752950668334961, 0.06649547815322876]]}, {"image_id": "227.jpg", "category_id": 1, "keypoints": [1067.6878662109375, 439.3352355957031, 0.9884870052337646, 1084.6737060546875, 478.8042907714844, 0.9875396490097046, 1034.690185546875, 468.8141174316406, 0.9893385171890259, 1075.3736572265625, 397.0399169921875, 0.991521954536438, 1104.8560791015625, 640.7975463867188, 0.9818210005760193, 996.5337524414062, 645.5593872070312, 0.979349672794342, 1083.708740234375, 348.5012512207031, 0.9864434599876404, 1115.4998779296875, 708.741455078125, 0.8878693580627441, 991.7117309570312, 708.67333984375, 0.8624508380889893, 1083.91455078125, 330.0765075683594, 0.989509105682373, 1116.9476318359375, 708.7625122070312, 0.8968598246574402, 996.2024536132812, 708.732666015625, 0.777195394039154, 1094.1944580078125, 251.8675079345703, 0.9894936084747314, 1118.7086181640625, 290.0365905761719, 0.9916402697563171, 1063.60400390625, 276.55206298828125, 0.9852941632270813, 1088.4007568359375, 230.00819396972656, 0.9720008969306946, 1156.392578125, 290.70306396484375, 0.9658634066581726, 1039.330322265625, 267.72064208984375, 0.9799831509590149, 1244.8011474609375, 319.3602294921875, 0.9061638116836548, 1013.1603393554688, 338.2896423339844, 0.9799181222915649, 1227.6365966796875, 366.9425964355469, 0.9458732008934021, 1120.2862548828125, 377.8017578125, 0.9696704745292664, 1216.423095703125, 384.9266052246094, 0.9378086924552917, 1153.1201171875, 387.330322265625, 0.9178434610366821, 1047.333984375, 169.52493286132812, 0.9177366495132446, 1192.36328125, 402.60748291015625, 0.9539453983306885, 1185.887939453125, 386.2730712890625, 0.6773097515106201, 1098.262939453125, 708.7105712890625, 0.8867837190628052, 1002.8756103515625, 708.5372314453125, 0.8579263687133789], "score": 2.4193177223205566, "box": [1031.9136962890625, 160.454345703125, 226.1265869140625, 504.9219970703125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.046507447957992554, 0.10142743587493896, -0.006234034895896912], [-0.07989762723445892, 0.0732412040233612, 0.01594160683453083], [0.023553799837827682, -0.10013845562934875, 0.02409764565527439], [0.0907820537686348, 0.47722020745277405, 0.03480437397956848], [-0.16166390478610992, 0.4518982470035553, 0.015091387555003166], [0.03854883089661598, -0.2240031361579895, -0.02053951285779476], [0.14754728972911835, 0.7404212951660156, 0.33152899146080017], [-0.17810599505901337, 0.734218180179596, 0.2985510230064392], [0.03639821708202362, -0.2646021246910095, -0.058966733515262604], [0.14461253583431244, 0.7314764857292175, 0.19969406723976135], [-0.1568227857351303, 0.7256301045417786, 0.16858622431755066], [0.06575756520032883, -0.46986252069473267, -0.10351914167404175], [0.12865938246250153, -0.37013357877731323, -0.0847218856215477], [-0.01724821701645851, -0.39694899320602417, -0.059349559247493744], [0.04734412208199501, -0.5179945826530457, -0.16974763572216034], [0.21777914464473724, -0.3665041923522949, -0.1047486811876297], [-0.10298962891101837, -0.4313635230064392, -0.03299511596560478], [0.46037569642066956, -0.2817571759223938, -0.15288427472114563], [-0.19114747643470764, -0.19412684440612793, -0.012451834976673126], [0.39363452792167664, -0.140913188457489, -0.3443284332752228], [-0.013828803785145283, -0.11405795812606812, -0.17582863569259644], [0.358146607875824, -0.08969080448150635, -0.39911729097366333], [0.05887956544756889, -0.09029638767242432, -0.20726141333580017]]}, {"image_id": "228.jpg", "category_id": 1, "keypoints": [1001.539306640625, 462.6138000488281, 0.9816539883613586, 1033.1492919921875, 495.62750244140625, 0.987073540687561, 977.2321166992188, 503.4090576171875, 0.9882979989051819, 991.4440307617188, 418.270263671875, 0.9907893538475037, 1107.0308837890625, 639.5589599609375, 0.9835043549537659, 968.5042114257812, 666.4153442382812, 0.9749677181243896, 992.91015625, 363.698486328125, 0.9856606125831604, 1151.3441162109375, 781.2505493164062, 0.9401223659515381, 949.0592041015625, 817.8857421875, 0.9368958473205566, 998.2025146484375, 342.3584289550781, 0.9918407201766968, 1187.0308837890625, 801.59912109375, 0.8431029915809631, 967.0343017578125, 850.2237548828125, 0.8800262808799744, 999.5350341796875, 253.53858947753906, 0.9850859045982361, 1023.5032348632812, 295.40289306640625, 0.99112468957901, 964.17919921875, 284.26104736328125, 0.9933586716651917, 1013.4481201171875, 230.71426391601562, 0.9288913011550903, 1049.870849609375, 291.5284729003906, 0.9756953120231628, 928.8601684570312, 263.71881103515625, 0.9830632209777832, 1108.558349609375, 372.08929443359375, 0.9738998413085938, 869.54541015625, 152.04171752929688, 0.9516903758049011, 1206.5423583984375, 348.4275207519531, 0.9795787334442139, 895.117919921875, 93.63385009765625, 0.9667744636535645, 1233.0283203125, 349.3620910644531, 0.9257460236549377, 896.4576416015625, 69.11343383789062, 0.9389766454696655, 1033.1602783203125, 161.92251586914062, 0.9440426826477051, 1252.229248046875, 357.5242614746094, 0.8486221432685852, 896.233642578125, 47.142669677734375, 0.9038845896720886, 1185.7945556640625, 805.34423828125, 0.8600140810012817, 990.9312744140625, 851.2789306640625, 0.8839529752731323], "score": 3.1883420944213867, "box": [849.57666015625, 82.44713592529297, 419.28466796875, 763.5559768676758], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0715581625699997, 0.0808689296245575, 0.02702089212834835], [-0.050980594009160995, 0.09497400373220444, -0.0165247805416584], [-0.022226063534617424, -0.09963992238044739, 0.021461686119437218], [0.24691198766231537, 0.4221467971801758, 0.03371565788984299], [-0.07189081609249115, 0.48374706506729126, -0.0394931435585022], [-0.018758373335003853, -0.23042264580726624, 0.015404781326651573], [0.3669435977935791, 0.7976080179214478, 0.11762396991252899], [-0.118683360517025, 0.8558006286621094, 0.10669898986816406], [-0.007099962793290615, -0.2771194577217102, -0.011372128501534462], [0.45441535115242004, 0.8443844318389893, 0.030172361060976982], [-0.06823389232158661, 0.9394786357879639, 0.01795620284974575], [-0.006559687666594982, -0.4831283390522003, 0.02554941363632679], [0.053309306502342224, -0.3859786093235016, 0.0542207732796669], [-0.07865922898054123, -0.3985705077648163, -0.012139448896050453], [0.024991890415549278, -0.5312926769256592, -0.034946538507938385], [0.1299104243516922, -0.4001294672489166, 0.10010072588920593], [-0.1574757844209671, -0.4423156678676605, -0.04240439832210541], [0.28043532371520996, -0.20201376080513, 0.18542295694351196], [-0.2828128933906555, -0.6612672805786133, -0.08310768008232117], [0.48824289441108704, -0.2476605772972107, 0.057348668575286865], [-0.21075542271137238, -0.8507709503173828, 0.07319548726081848], [0.5489352941513062, -0.24248895049095154, 0.0009385216981172562], [-0.20823507010936737, -0.9180426597595215, 0.12145872414112091]]}, {"image_id": "229.jpg", "category_id": 1, "keypoints": [1006.3426513671875, 467.9422912597656, 0.9818888902664185, 1036.878662109375, 503.4561462402344, 0.9887062907218933, 981.533447265625, 509.2610168457031, 0.9910414814949036, 996.69482421875, 422.1334228515625, 0.9929059147834778, 1106.8233642578125, 644.2280883789062, 0.9817787408828735, 966.6712646484375, 667.610595703125, 0.9767752289772034, 998.1986083984375, 365.3598937988281, 0.9862712621688843, 1166.299560546875, 784.89453125, 0.8702991604804993, 950.1492919921875, 820.1799926757812, 0.9416177272796631, 1004.070068359375, 343.4548034667969, 0.9914530515670776, 1167.2396240234375, 808.3060302734375, 0.8884124159812927, 972.1139526367188, 850.3474731445312, 0.917855978012085, 1004.1593627929688, 251.39076232910156, 0.9844571352005005, 1029.57470703125, 295.21673583984375, 0.9919527173042297, 969.1360473632812, 285.1968688964844, 0.9936111569404602, 1016.045166015625, 228.33888244628906, 0.9453949928283691, 1058.228271484375, 290.2041015625, 0.9679675102233887, 933.79150390625, 268.357666015625, 0.9869231581687927, 1137.35986328125, 318.35308837890625, 0.9686737656593323, 866.729248046875, 170.71218872070312, 0.9488469958305359, 1228.09619140625, 320.74053955078125, 0.9744994640350342, 886.9390869140625, 114.45620727539062, 0.9748021960258484, 1245.80908203125, 330.92950439453125, 0.939694344997406, 876.4757080078125, 82.54086303710938, 0.9573004245758057, 1019.1592407226562, 156.89266967773438, 0.932887077331543, 1260.9730224609375, 344.81524658203125, 0.9573021531105042, 852.9619140625, 47.66949462890625, 0.7816771268844604, 1139.708740234375, 817.7208251953125, 0.9217604398727417, 998.425537109375, 849.3701171875, 0.9382300972938538], "score": 3.1923046112060547, "box": [829.0872192382812, 93.25570678710938, 445.11956787109375, 750.0226135253906], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0691666230559349, 0.08336445689201355, 0.025922352448105812], [-0.05286915600299835, 0.09329306334257126, -0.020135605707764626], [-0.020248349756002426, -0.09944725036621094, 0.023876870051026344], [0.24010905623435974, 0.42778414487838745, 0.018688267096877098], [-0.08935831487178802, 0.479503870010376, -0.06738009303808212], [-0.01652545854449272, -0.23013806343078613, 0.01761518605053425], [0.3974616229534149, 0.7968518733978271, 0.06517117470502853], [-0.12772221863269806, 0.8426222205162048, 0.10395071655511856], [-0.003923559095710516, -0.276924192905426, -0.008509999141097069], [0.39452382922172546, 0.8705623149871826, -0.04476163536310196], [-0.059531670063734055, 0.93056321144104, 0.03267986327409744], [-0.006236226763576269, -0.48542672395706177, 0.010016607120633125], [0.05981094762682915, -0.3927294611930847, 0.03967992216348648], [-0.07920478284358978, -0.3960389494895935, -0.011149497702717781], [0.022531261667609215, -0.5379891991615295, -0.04828040301799774], [0.1404276192188263, -0.4091948866844177, 0.07687147706747055], [-0.1637296825647354, -0.43495988845825195, -0.030211806297302246], [0.36446791887283325, -0.33881300687789917, 0.1966649889945984], [-0.3052721917629242, -0.6438558101654053, 0.013763876631855965], [0.5615299940109253, -0.3242875337600708, 0.04552162438631058], [-0.25593969225883484, -0.813172459602356, 0.20008888840675354], [0.6034669876098633, -0.29355400800704956, -0.019297173246741295], [-0.2780754864215851, -0.8828580379486084, 0.239230215549469]]}, {"image_id": "229.jpg", "category_id": 1, "keypoints": [1074.559326171875, 423.951904296875, 0.9880378842353821, 1092.0810546875, 458.731689453125, 0.9932986497879028, 1046.327880859375, 453.95257568359375, 0.9925610423088074, 1076.4580078125, 386.3403015136719, 0.9897439479827881, 1099.7493896484375, 609.6256103515625, 0.9788519740104675, 1024.9937744140625, 614.684326171875, 0.987995445728302, 1083.247314453125, 340.3181457519531, 0.9863479137420654, 1109.89599609375, 702.211669921875, 0.9195572137832642, 1037.386474609375, 701.8251953125, 0.8938241004943848, 1085.145263671875, 321.86785888671875, 0.9886482357978821, 1111.169921875, 702.48388671875, 0.8961732983589172, 1036.6307373046875, 702.3896484375, 0.8698357939720154, 1086.389404296875, 246.54885864257812, 0.9854804277420044, 1108.9237060546875, 279.4339904785156, 0.9941861629486084, 1060.494140625, 274.2978515625, 0.9921891093254089, 1082.004638671875, 229.29586791992188, 0.9658586382865906, 1143.910400390625, 274.998046875, 0.951055109500885, 1038.6646728515625, 270.5162353515625, 0.9837906360626221, 1238.601318359375, 284.9175109863281, 0.927051305770874, 1081.3360595703125, 349.7222900390625, 0.9596607685089111, 1244.572021484375, 327.8536376953125, 0.9539708495140076, 1175.657470703125, 369.3887939453125, 0.9626777172088623, 1239.7120361328125, 342.962890625, 0.9454053640365601, 1194.921142578125, 374.07818603515625, 0.8981438875198364, 1045.5390625, 178.54571533203125, 0.8614460825920105, 1237.9686279296875, 368.95953369140625, 0.9483810067176819, 1223.0712890625, 374.095947265625, 0.7776086330413818, 1097.1424560546875, 702.3734741210938, 0.9067370891571045, 1048.0892333984375, 702.1283569335938, 0.9154354929924011], "score": 2.3033695220947266, "box": [1036.5684814453125, 159.47921752929688, 217.7720947265625, 500.0736999511719], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05472118780016899, 0.09908707439899445, 0.005744839087128639], [-0.07707033306360245, 0.07980771362781525, -0.007277987897396088], [0.009042898193001747, -0.10212765634059906, 0.031178511679172516], [0.07588789612054825, 0.4824785590171814, 0.035912420600652695], [-0.12255173176527023, 0.4691239595413208, 0.0044196732342243195], [0.02615843154489994, -0.22776661813259125, -0.005758669227361679], [0.12430184334516525, 0.8013690710067749, 0.284798264503479], [-0.07402559369802475, 0.7676349878311157, 0.2771725356578827], [0.02884555049240589, -0.269417405128479, -0.04374457150697708], [0.12132874131202698, 0.7936169505119324, 0.1513083577156067], [-0.08110963553190231, 0.7609308362007141, 0.14381007850170135], [0.026690253987908363, -0.47681427001953125, -0.09791761636734009], [0.09918344765901566, -0.39568060636520386, -0.0462481752038002], [-0.049576058983802795, -0.38595420122146606, -0.07888513058423996], [0.011259114369750023, -0.5137594938278198, -0.1713269054889679], [0.18811187148094177, -0.40900498628616333, -0.02554701268672943], [-0.1416013538837433, -0.3986520767211914, -0.10686415433883667], [0.4482417106628418, -0.37684041261672974, -0.06775607913732529], [-0.042010482400655746, -0.19325952231884003, -0.22752666473388672], [0.4405595064163208, -0.23871318995952606, -0.2768160104751587], [0.19250895082950592, -0.13628755509853363, -0.31896737217903137], [0.4194965660572052, -0.19153206050395966, -0.34326696395874023], [0.2642350494861603, -0.11531640589237213, -0.35738593339920044]]}, {"image_id": "230.jpg", "category_id": 1, "keypoints": [1003.72021484375, 476.5811767578125, 0.9819326400756836, 1034.967041015625, 514.02392578125, 0.9890013933181763, 981.74755859375, 517.4492797851562, 0.9912093877792358, 992.6689453125, 431.76068115234375, 0.9903327226638794, 1116.269775390625, 655.1754150390625, 0.9849283695220947, 968.5609130859375, 679.702392578125, 0.970427393913269, 993.0346069335938, 375.4796142578125, 0.9888554811477661, 1136.3626708984375, 791.3787841796875, 0.9201173186302185, 953.049072265625, 829.4295654296875, 0.9340783357620239, 997.968505859375, 352.33123779296875, 0.9905344247817993, 1158.462646484375, 809.9397583007812, 0.7947508096694946, 963.3518676757812, 863.7181396484375, 0.9138100147247314, 997.3154296875, 262.120849609375, 0.9814715385437012, 1023.741455078125, 304.8542175292969, 0.9905782341957092, 962.8911743164062, 298.29876708984375, 0.9931634068489075, 1010.3353271484375, 236.25173950195312, 0.9525612592697144, 1052.7159423828125, 293.3104553222656, 0.9528266787528992, 932.1029663085938, 277.58380126953125, 0.9814028143882751, 1135.481201171875, 330.36883544921875, 0.9535048604011536, 842.5272216796875, 180.78549194335938, 0.9367275238037109, 1233.279541015625, 319.83709716796875, 0.9808194637298584, 866.40185546875, 127.35772705078125, 0.9643412828445435, 1254.83984375, 321.9838562011719, 0.9663618206977844, 862.5972900390625, 108.06781005859375, 0.8986818790435791, 1006.9564819335938, 160.72698974609375, 0.9455462694168091, 1281.2108154296875, 323.28009033203125, 0.9392850995063782, 856.8360595703125, 101.68438720703125, 0.6802808046340942, 1169.64306640625, 809.0003662109375, 0.702323317527771, 983.9528198242188, 858.7003173828125, 0.9140923619270325], "score": 3.172126293182373, "box": [805.3822021484375, 148.5326385498047, 477.9053955078125, 698.5943145751953], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0671030580997467, 0.08265390247106552, 0.02950325235724449], [-0.048081934452056885, 0.09240617603063583, -0.02912399172782898], [-0.02413940243422985, -0.09664225578308105, 0.024810299277305603], [0.2580701410770416, 0.4157763421535492, -0.0050168707966804504], [-0.07964354753494263, 0.47551870346069336, -0.10196122527122498], [-0.021925507113337517, -0.22579914331436157, 0.016560517251491547], [0.31909844279289246, 0.7964135408401489, 0.1143990308046341], [-0.11329181492328644, 0.8143432140350342, 0.11335617303848267], [-0.009124006144702435, -0.26939111948013306, -0.012874722480773926], [0.3731485903263092, 0.838397741317749, 0.0017234496772289276], [-0.08086968213319778, 0.9151056408882141, 0.03541915491223335], [-0.016640551388263702, -0.4747616648674011, 0.0126488097012043], [0.048242900520563126, -0.38308942317962646, 0.04262155294418335], [-0.0854354277253151, -0.38577789068222046, -0.015330534428358078], [0.01200338639318943, -0.5282590985298157, -0.04452386125922203], [0.12651164829730988, -0.41594797372817993, 0.06987287104129791], [-0.16176587343215942, -0.4355507493019104, -0.03749818354845047], [0.35738807916641235, -0.31945592164993286, 0.15133973956108093], [-0.33896851539611816, -0.6189107894897461, -0.01981494575738907], [0.5489788055419922, -0.331307590007782, -0.0056815557181835175], [-0.28833889961242676, -0.7689300179481506, 0.18152697384357452], [0.6121342778205872, -0.3212418556213379, -0.05776786431670189], [-0.3007098436355591, -0.8306899666786194, 0.23459488153457642]]}, {"image_id": "231.jpg", "category_id": 1, "keypoints": [1007.2733154296875, 475.8836364746094, 0.9813517928123474, 1038.186767578125, 512.3429565429688, 0.9886776208877563, 986.2775268554688, 517.0225219726562, 0.9912571907043457, 996.8507080078125, 431.37548828125, 0.9911158084869385, 1116.92578125, 645.407470703125, 0.9887349009513855, 966.6549682617188, 678.9805908203125, 0.9730004668235779, 997.0589599609375, 375.2106018066406, 0.985335648059845, 1163.272705078125, 789.2718505859375, 0.866447925567627, 956.226318359375, 826.397705078125, 0.8898175358772278, 1001.8997802734375, 351.9012451171875, 0.9892967939376831, 1189.28857421875, 807.6307373046875, 0.7105933427810669, 969.236572265625, 860.8733520507812, 0.932050347328186, 1000.9261474609375, 259.812744140625, 0.9839991331100464, 1029.286376953125, 303.1820373535156, 0.9888631105422974, 965.8204345703125, 298.543701171875, 0.9928707480430603, 1013.7117309570312, 232.4140625, 0.9566524624824524, 1061.67578125, 290.8392639160156, 0.9475439190864563, 934.9775390625, 279.2236328125, 0.9721512198448181, 1143.7318115234375, 332.6950988769531, 0.9393036961555481, 827.59130859375, 198.34011840820312, 0.9515267014503479, 1231.6177978515625, 305.351318359375, 0.9774840474128723, 848.1070556640625, 136.18304443359375, 0.9637417197227478, 1254.581298828125, 293.90985107421875, 0.9713637232780457, 840.14404296875, 111.78787231445312, 0.9130922555923462, 1015.5732421875, 159.9306640625, 0.9536841511726379, 1283.246337890625, 272.5106506347656, 0.9168812036514282, 840.7830200195312, 100.07666015625, 0.6505042314529419, 1194.286376953125, 808.144775390625, 0.6622132062911987, 989.1815795898438, 856.5633544921875, 0.9201316833496094], "score": 3.167437791824341, "box": [794.5320434570312, 148.75318908691406, 495.77850341796875, 703.6140594482422], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06818606704473495, 0.08323457092046738, 0.028626907616853714], [-0.04789832979440689, 0.0929117500782013, -0.03114362061023712], [-0.025232046842575073, -0.09715540707111359, 0.026913531124591827], [0.26082295179367065, 0.41168278455734253, -0.03378833457827568], [-0.09503959864377975, 0.4795781373977661, -0.07403255999088287], [-0.020785827189683914, -0.22665734589099884, 0.016475141048431396], [0.3856557607650757, 0.7928651571273804, 0.022993404418230057], [-0.1189158484339714, 0.8306268453598022, 0.12555944919586182], [-0.008394308388233185, -0.2707986831665039, -0.013426663354039192], [0.4378858208656311, 0.8261158466339111, -0.09410321712493896], [-0.07643623650074005, 0.9375823140144348, 0.060520559549331665], [-0.01691705733537674, -0.4769996404647827, 0.018640436232089996], [0.04955346882343292, -0.3842688202857971, 0.04562191665172577], [-0.08622964471578598, -0.3879879117012024, -0.012188350781798363], [0.011901376768946648, -0.5358753204345703, -0.03276851028203964], [0.12992145121097565, -0.41640567779541016, 0.07029563933610916], [-0.16516682505607605, -0.43594199419021606, -0.0330984890460968], [0.3616322875022888, -0.3032083511352539, 0.1273018717765808], [-0.3773857355117798, -0.579718828201294, -0.04628007113933563], [0.5527716875076294, -0.3560887575149536, -0.02343931794166565], [-0.33752134442329407, -0.7426248788833618, 0.1485760509967804], [0.6254740357398987, -0.39177894592285156, -0.041866980493068695], [-0.3597579002380371, -0.8114680051803589, 0.18916699290275574]]}, {"image_id": "232.jpg", "category_id": 1, "keypoints": [1013.6212158203125, 474.8376770019531, 0.9823185205459595, 1044.6826171875, 512.202880859375, 0.9895686507225037, 993.2278442382812, 515.2321166992188, 0.9918216466903687, 1002.1576538085938, 429.8732604980469, 0.9912437200546265, 1121.3843994140625, 652.9103393554688, 0.9891400337219238, 973.8787841796875, 682.9550170898438, 0.979709804058075, 1003.8273315429688, 372.8814392089844, 0.9818955063819885, 1158.1064453125, 788.0159912109375, 0.8874320387840271, 956.3014526367188, 826.560302734375, 0.8913818597793579, 1008.9533081054688, 350.5794677734375, 0.9892283082008362, 1194.33740234375, 811.5362548828125, 0.7114695906639099, 976.9796752929688, 865.333984375, 0.9022753238677979, 1011.6231689453125, 257.757080078125, 0.9875378608703613, 1036.8306884765625, 301.1944274902344, 0.9904242753982544, 975.4757080078125, 298.280029296875, 0.9938388466835022, 1022.5573120117188, 228.17254638671875, 0.9569442868232727, 1069.486328125, 287.075927734375, 0.9698811769485474, 945.248291015625, 282.32354736328125, 0.9842148423194885, 1157.652099609375, 320.04681396484375, 0.9417420029640198, 838.5153198242188, 243.49911499023438, 0.9657319784164429, 1232.6514892578125, 278.09967041015625, 0.9686992764472961, 818.77294921875, 169.57513427734375, 0.9727752804756165, 1259.33154296875, 263.64727783203125, 0.9709446430206299, 804.4934692382812, 135.7564697265625, 0.9588719606399536, 1033.82421875, 154.6162109375, 0.9567215442657471, 1292.4581298828125, 241.50244140625, 0.9248133897781372, 790.6257934570312, 107.39044189453125, 0.8840833306312561, 1205.921630859375, 810.9990844726562, 0.6646429300308228, 996.2609252929688, 858.0994262695312, 0.9156277775764465], "score": 3.1797897815704346, "box": [781.3480834960938, 151.87152099609375, 513.0557250976562, 703.527587890625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06532454490661621, 0.08227231353521347, 0.03626209869980812], [-0.04590834677219391, 0.09360619634389877, -0.03139753267168999], [-0.026719670742750168, -0.09820201992988586, 0.02184411510825157], [0.2478567361831665, 0.4184904396533966, 0.010613687336444855], [-0.09065882116556168, 0.4802241027355194, -0.048246968537569046], [-0.023115938529372215, -0.22763115167617798, 0.005241133272647858], [0.35427841544151306, 0.8003696799278259, 0.07963274419307709], [-0.13173958659172058, 0.8302607536315918, 0.14485155045986176], [-0.012251707725226879, -0.27507269382476807, -0.02018529176712036], [0.43169358372688293, 0.8472838997840881, -0.016497168689966202], [-0.07376465201377869, 0.9341247081756592, 0.08814771473407745], [-0.007218970917165279, -0.4825618863105774, 0.004246693104505539], [0.05199452117085457, -0.38641679286956787, 0.036578379571437836], [-0.08180450648069382, -0.3973715305328369, -0.02582261711359024], [0.01800197921693325, -0.5489946007728577, -0.03930831328034401], [0.13001641631126404, -0.4218408465385437, 0.06484489142894745], [-0.16293013095855713, -0.4381831884384155, -0.05349471792578697], [0.37487122416496277, -0.33303868770599365, 0.09716303646564484], [-0.40201660990715027, -0.5233117938041687, -0.07854019105434418], [0.5676220059394836, -0.4371603727340698, -0.01848948374390602], [-0.46037957072257996, -0.7358971834182739, 0.050576869398355484], [0.640209972858429, -0.47620677947998047, -0.02672920562326908], [-0.49028927087783813, -0.8070443272590637, 0.08020855486392975]]}, {"image_id": "233.jpg", "category_id": 1, "keypoints": [1021.2328491210938, 481.94268798828125, 0.9813264012336731, 1055.2196044921875, 520.7159423828125, 0.9856517314910889, 998.3787231445312, 523.1390380859375, 0.9912233352661133, 1009.6869506835938, 433.94781494140625, 0.991293728351593, 1136.9483642578125, 669.6043090820312, 0.9778606295585632, 970.5967407226562, 696.8916015625, 0.9790897369384766, 1011.531494140625, 375.00286865234375, 0.9859825372695923, 1193.7242431640625, 796.4255981445312, 0.8001807928085327, 950.9833984375, 850.0402221679688, 0.9167367219924927, 1016.6890258789062, 352.79058837890625, 0.9902409911155701, 1199.2464599609375, 819.3289184570312, 0.8350031971931458, 951.6366577148438, 894.080322265625, 0.7572934627532959, 1017.5380249023438, 258.28057861328125, 0.9868190288543701, 1043.8876953125, 300.0959167480469, 0.9893636703491211, 983.5328979492188, 301.0391845703125, 0.9914514422416687, 1022.7243041992188, 231.65811157226562, 0.9534398317337036, 1073.2393798828125, 283.5277099609375, 0.9690819978713989, 953.45849609375, 284.3231201171875, 0.9849749803543091, 1154.078125, 304.114501953125, 0.9515125155448914, 848.487548828125, 278.8230285644531, 0.9787189364433289, 1249.1109619140625, 256.1965637207031, 0.9571255445480347, 798.8848876953125, 205.69512939453125, 0.9597811102867126, 1275.0684814453125, 237.699951171875, 0.981721043586731, 780.2328491210938, 181.0726318359375, 0.9351410269737244, 1036.096923828125, 155.01852416992188, 0.9566549062728882, 1281.4769287109375, 208.53079223632812, 0.8697874546051025, 759.2095947265625, 138.43612670898438, 0.9256736636161804, 1197.06884765625, 825.123779296875, 0.8650885224342346, 962.8677978515625, 888.5868530273438, 0.7945635318756104], "score": 3.176772117614746, "box": [771.47119140625, 160.20411682128906, 522.071044921875, 687.1873016357422], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06668895483016968, 0.07952535152435303, 0.03779737651348114], [-0.048672035336494446, 0.09466612339019775, -0.019119180738925934], [-0.02351258508861065, -0.09890897572040558, 0.014628510922193527], [0.25170519948005676, 0.4168560206890106, 0.03291945531964302], [-0.11022856086492538, 0.4756542444229126, -0.07916060835123062], [-0.02034384198486805, -0.2241179496049881, -0.0187489353120327], [0.4144795835018158, 0.7729431986808777, 0.12771040201187134], [-0.15392082929611206, 0.8300315141677856, 0.1058412566781044], [-0.009965110570192337, -0.2666524052619934, -0.05070487782359123], [0.42152243852615356, 0.8275671005249023, 0.008104242384433746], [-0.15208491683006287, 0.9307714104652405, 0.021669916808605194], [-0.010612696409225464, -0.4736490249633789, -0.057932186871767044], [0.04930109903216362, -0.38583463430404663, -0.010823387652635574], [-0.08148062974214554, -0.38356661796569824, -0.07520236819982529], [0.0005635695997625589, -0.5312594175338745, -0.11708828061819077], [0.12303740531206131, -0.4289262890815735, 0.014783289283514023], [-0.1589132398366928, -0.424050509929657, -0.1092132106423378], [0.345163494348526, -0.3836514949798584, 0.14758700132369995], [-0.4106127619743347, -0.4341546893119812, -0.14973393082618713], [0.5654485821723938, -0.4936610460281372, 0.12173616141080856], [-0.5494550466537476, -0.6405493021011353, -0.0907120332121849], [0.6325401663780212, -0.5414274334907532, 0.11996153742074966], [-0.5988660454750061, -0.706002414226532, -0.08448240160942078]]}, {"image_id": "234.jpg", "category_id": 1, "keypoints": [1029.61962890625, 480.80303955078125, 0.9835367202758789, 1063.58349609375, 520.9155883789062, 0.9871464967727661, 1004.0340576171875, 522.0172119140625, 0.9874638319015503, 1019.4138793945312, 430.40899658203125, 0.9916024804115295, 1151.478759765625, 683.5340576171875, 0.9760871529579163, 972.1517333984375, 684.1967163085938, 0.9757058024406433, 1020.8248901367188, 371.66387939453125, 0.9847010970115662, 1192.940673828125, 802.9434204101562, 0.8390331268310547, 953.7877807617188, 847.7600708007812, 0.8887885808944702, 1026.2100830078125, 349.6331481933594, 0.9881271123886108, 1149.93798828125, 854.423828125, 0.9576459527015686, 952.9747924804688, 887.5592041015625, 0.7900034785270691, 1024.489501953125, 254.69390869140625, 0.9885455369949341, 1053.52392578125, 295.2435607910156, 0.988673985004425, 990.112548828125, 299.64129638671875, 0.9877740144729614, 1028.785888671875, 227.03128051757812, 0.955203115940094, 1085.525390625, 278.1280822753906, 0.964809000492096, 959.4865112304688, 287.09808349609375, 0.9830343127250671, 1170.3958740234375, 276.15118408203125, 0.9660747051239014, 856.60888671875, 297.3525390625, 0.9659247398376465, 1254.311279296875, 221.55325317382812, 0.9702267050743103, 788.35595703125, 227.22842407226562, 0.9681838154792786, 1273.96630859375, 201.47994995117188, 0.9701557159423828, 770.2440185546875, 204.63134765625, 0.9314761757850647, 1031.81884765625, 141.91885375976562, 0.9450998902320862, 1274.41455078125, 178.9886474609375, 0.9331437349319458, 751.56982421875, 174.98831176757812, 0.9190576672554016, 1144.5537109375, 870.0015869140625, 0.9532473087310791, 963.316162109375, 884.3531494140625, 0.8438904285430908], "score": 3.18953275680542, "box": [754.9368286132812, 161.8660430908203, 540.7899780273438, 686.1298065185547], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06573480367660522, 0.0807863101363182, 0.03588591143488884], [-0.052860669791698456, 0.09305591136217117, -0.013170450925827026], [-0.01894480362534523, -0.09978753328323364, 0.012982290238142014], [0.2519448697566986, 0.4165601432323456, 0.04724855348467827], [-0.12718087434768677, 0.46575474739074707, -0.10024799406528473], [-0.01843542419373989, -0.22481578588485718, -0.02226126194000244], [0.3840014636516571, 0.7867625951766968, 0.1303432732820511], [-0.1677340716123581, 0.8378013372421265, 0.04374290630221367], [-0.008050044998526573, -0.26621198654174805, -0.055581189692020416], [0.30164027214050293, 0.8879374861717224, 0.14627297222614288], [-0.16963231563568115, 0.9306256771087646, -0.04869497939944267], [-0.014817520044744015, -0.4724656343460083, -0.06772849708795547], [0.049966663122177124, -0.3875104784965515, -0.02234897017478943], [-0.08385235071182251, -0.38022053241729736, -0.07826108485460281], [-0.00610071886330843, -0.5308806300163269, -0.12682299315929413], [0.1263514906167984, -0.42940330505371094, -0.004467001184821129], [-0.16193464398384094, -0.40897923707962036, -0.12096168100833893], [0.36063000559806824, -0.44389307498931885, 0.11239089071750641], [-0.413441926240921, -0.3817753195762634, -0.1492253988981247], [0.556432843208313, -0.5680591464042664, 0.027170803397893906], [-0.5893038511276245, -0.5637644529342651, -0.11716483533382416], [0.6088886857032776, -0.6214500069618225, -0.006765618920326233], [-0.6404029130935669, -0.6276848316192627, -0.1114766001701355]]}, {"image_id": "235.jpg", "category_id": 1, "keypoints": [1033.0413818359375, 484.3583068847656, 0.9807000160217285, 1066.374755859375, 523.9141845703125, 0.985752284526825, 1006.0322265625, 525.4571533203125, 0.9865172505378723, 1024.2908935546875, 433.323486328125, 0.9919885396957397, 1160.85595703125, 683.0513305664062, 0.9850679636001587, 975.4920654296875, 670.0069580078125, 0.9804855585098267, 1025.3331298828125, 374.32098388671875, 0.9822915196418762, 1204.606201171875, 799.4622802734375, 0.754471480846405, 959.603759765625, 839.3731689453125, 0.9211069345474243, 1030.2938232421875, 352.6058349609375, 0.9836639165878296, 1140.693359375, 841.805908203125, 0.9240236282348633, 959.6220703125, 887.1105346679688, 0.7407436370849609, 1026.81884765625, 258.6767883300781, 0.9886942505836487, 1056.2789306640625, 297.57696533203125, 0.9873564839363098, 993.0587158203125, 302.02764892578125, 0.9906499981880188, 1031.0245361328125, 232.45419311523438, 0.950643002986908, 1089.8095703125, 280.2010498046875, 0.9684097766876221, 961.5552978515625, 290.4176025390625, 0.9840859770774841, 1183.0577392578125, 270.08099365234375, 0.9663671255111694, 861.0034790039062, 305.3846740722656, 0.9776238203048706, 1253.0142822265625, 198.1844482421875, 0.965916633605957, 778.9928588867188, 255.06520080566406, 0.9733378887176514, 1268.7607421875, 161.94158935546875, 0.9825945496559143, 758.9227294921875, 245.60537719726562, 0.9537448883056641, 1031.620849609375, 137.01678466796875, 0.950086236000061, 1288.692626953125, 121.5721435546875, 0.8966842889785767, 731.8997192382812, 229.134033203125, 0.8803038001060486, 1125.7733154296875, 846.6122436523438, 0.9295046329498291, 975.9475708007812, 883.3490600585938, 0.8581324219703674], "score": 3.183107852935791, "box": [751.4884643554688, 161.41502380371094, 536.3551635742188, 682.8518218994141], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06455003470182419, 0.08196921646595001, 0.035858698189258575], [-0.05493853986263275, 0.09220611304044724, -0.011957825161516666], [-0.01676942966878414, -0.10029993951320648, 0.012412991374731064], [0.26543480157852173, 0.40962445735931396, 0.05467711389064789], [-0.13130614161491394, 0.4444921016693115, -0.16232839226722717], [-0.016543468460440636, -0.22371773421764374, -0.027547143399715424], [0.4064541459083557, 0.7729817032814026, 0.15578149259090424], [-0.16488368809223175, 0.8157263398170471, -0.012023432180285454], [-0.007919569499790668, -0.2653273344039917, -0.061093442142009735], [0.30784910917282104, 0.8445789217948914, 0.20537039637565613], [-0.16482950747013092, 0.9377899169921875, -0.060005612671375275], [-0.01628958247601986, -0.4700338840484619, -0.08884459733963013], [0.04867299273610115, -0.3894142508506775, -0.03649783879518509], [-0.08440501242876053, -0.37668395042419434, -0.09312354028224945], [-0.006012887693941593, -0.5142236948013306, -0.15885628759860992], [0.12688462436199188, -0.42645585536956787, -0.01627935655415058], [-0.16317369043827057, -0.40247398614883423, -0.1362919956445694], [0.3672995865345001, -0.45996540784835815, 0.08438777923583984], [-0.4155345559120178, -0.36512160301208496, -0.1334676444530487], [0.5287228226661682, -0.624771773815155, -0.005192814394831657], [-0.6316225528717041, -0.49559974670410156, -0.17386677861213684], [0.5601387023925781, -0.6988056898117065, -0.022499972954392433], [-0.7022627592086792, -0.5272485613822937, -0.20136572420597076]]}, {"image_id": "236.jpg", "category_id": 1, "keypoints": [1046.2772216796875, 478.47747802734375, 0.9815927743911743, 1076.27783203125, 517.2324829101562, 0.9857237935066223, 1017.4935913085938, 517.57470703125, 0.9880684018135071, 1041.7769775390625, 430.17919921875, 0.9923574328422546, 1160.154052734375, 665.8923950195312, 0.9870724081993103, 977.7899780273438, 658.294921875, 0.984005331993103, 1044.326416015625, 372.03240966796875, 0.9857460856437683, 1111.2867431640625, 799.6220092773438, 0.9485495090484619, 959.5003051757812, 815.3040771484375, 0.8484976887702942, 1048.20361328125, 349.73944091796875, 0.9888280034065247, 1092.5128173828125, 833.3641357421875, 0.9080407619476318, 966.0269165039062, 859.0316162109375, 0.8950024843215942, 1040.639892578125, 258.8829345703125, 0.9873533248901367, 1072.266845703125, 295.6020202636719, 0.9881552457809448, 1008.9672241210938, 300.92523193359375, 0.9920545220375061, 1042.9466552734375, 232.56097412109375, 0.9475716352462769, 1103.0509033203125, 275.7721252441406, 0.9764836430549622, 975.3698120117188, 291.71392822265625, 0.98531174659729, 1185.9385986328125, 242.62518310546875, 0.966343104839325, 876.5523071289062, 320.79058837890625, 0.9704617261886597, 1247.5528564453125, 166.46749877929688, 0.9708477854728699, 792.5464477539062, 288.1032409667969, 0.9720838665962219, 1258.83935546875, 127.4439697265625, 0.973916232585907, 763.2979736328125, 279.0221862792969, 0.9490619897842407, 1029.5418701171875, 140.77438354492188, 0.9458760619163513, 1277.9329833984375, 96.11691284179688, 0.8957259654998779, 725.0726318359375, 278.271728515625, 0.8782119750976562, 1089.05859375, 832.2498779296875, 0.9079335331916809, 975.8364868164062, 862.0569458007812, 0.9091290235519409], "score": 3.1901190280914307, "box": [756.0352172851562, 151.05221557617188, 529.0918579101562, 702.5449523925781], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06070595979690552, 0.08674132823944092, 0.030710607767105103], [-0.060141220688819885, 0.08840281516313553, -0.014522263780236244], [-0.010898085311055183, -0.10015325248241425, 0.016961820423603058], [0.2500235140323639, 0.42296460270881653, 0.02048896998167038], [-0.16087307035923004, 0.4377205967903137, -0.16022557020187378], [-0.0044618756510317326, -0.22597216069698334, -0.012029258534312248], [0.14766788482666016, 0.7461426854133606, 0.2398362010717392], [-0.20733296871185303, 0.837740957736969, -0.14527001976966858], [0.002506453078240156, -0.26907795667648315, -0.043639302253723145], [0.09062802046537399, 0.8557162284851074, 0.285375714302063], [-0.18895159661769867, 0.9635351896286011, -0.11275681108236313], [-0.015160799026489258, -0.47373658418655396, -0.06288294494152069], [0.054353661835193634, -0.39415615797042847, -0.015633421018719673], [-0.07924031466245651, -0.3780074715614319, -0.06893687695264816], [-0.009391465224325657, -0.518189013004303, -0.13316795229911804], [0.12936870753765106, -0.4367281198501587, 0.0049286819994449615], [-0.1638748049736023, -0.39277851581573486, -0.10513250529766083], [0.3579699397087097, -0.5334450602531433, 0.09273001551628113], [-0.4090479910373688, -0.3215058445930481, -0.09290811419487], [0.5055587887763977, -0.7154432535171509, 0.011729978024959564], [-0.6363765597343445, -0.40543919801712036, -0.17597556114196777], [0.527353823184967, -0.793425977230072, -0.0027780961245298386], [-0.7148357629776001, -0.4296715259552002, -0.178166463971138]]}, {"image_id": "237.jpg", "category_id": 1, "keypoints": [1057.08251953125, 481.8711853027344, 0.9805110692977905, 1089.3155517578125, 520.7794189453125, 0.9879721403121948, 1025.9146728515625, 520.8591918945312, 0.9863428473472595, 1056.0533447265625, 433.6275634765625, 0.9854393005371094, 1186.3414306640625, 664.2683715820312, 0.9738705158233643, 970.3124389648438, 655.17333984375, 0.9783256649971008, 1058.559814453125, 375.2598876953125, 0.986762523651123, 1230.972900390625, 798.64306640625, 0.8136051893234253, 945.9498901367188, 814.0755615234375, 0.8800733089447021, 1060.596923828125, 353.59552001953125, 0.9921959042549133, 1219.8973388671875, 831.4122314453125, 0.8867188692092896, 950.7550659179688, 845.708984375, 0.9013339281082153, 1051.94677734375, 263.05584716796875, 0.9864921569824219, 1085.982666015625, 298.27178955078125, 0.9894971251487732, 1022.7684936523438, 305.3558654785156, 0.9883462190628052, 1051.3416748046875, 236.0255889892578, 0.9575972557067871, 1119.10400390625, 277.36865234375, 0.9751363396644592, 990.8491821289062, 298.25048828125, 0.9851887822151184, 1194.675048828125, 227.7913818359375, 0.9679138660430908, 893.094482421875, 345.5777587890625, 0.9781190156936646, 1227.6710205078125, 139.507568359375, 0.9762948751449585, 809.6097412109375, 333.77764892578125, 0.9724428057670593, 1233.124267578125, 102.26553344726562, 0.9805049300193787, 780.6567993164062, 333.04986572265625, 0.9315817952156067, 1017.38330078125, 148.310546875, 0.9042741656303406, 1245.3035888671875, 64.08001708984375, 0.9358822703361511, 738.710205078125, 324.26800537109375, 0.856307327747345, 1195.544921875, 827.94970703125, 0.8895846605300903, 976.9728393554688, 850.1583862304688, 0.9007467031478882], "score": 3.1852481365203857, "box": [761.0022583007812, 110.49002075195312, 518.1570434570312, 737.9870910644531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06355836987495422, 0.08942433446645737, 0.011262599378824234], [-0.06359914690256119, 0.08653866499662399, -0.011049543507397175], [-0.005570867098867893, -0.09818750619888306, 0.027412600815296173], [0.27713483572006226, 0.40795618295669556, -0.03459757938981056], [-0.20467519760131836, 0.42163947224617004, -0.15733438730239868], [0.003712444333359599, -0.2267933487892151, 0.025926273316144943], [0.40536490082740784, 0.7794365882873535, 0.05976315960288048], [-0.26416799426078796, 0.8134739398956299, -0.08230870962142944], [0.007309671491384506, -0.2724471390247345, -0.002347763627767563], [0.3629264235496521, 0.8860036730766296, -0.004793550819158554], [-0.2445223182439804, 0.9398276805877686, -0.11158354580402374], [-0.012148533947765827, -0.47751033306121826, -0.00800183042883873], [0.06221844255924225, -0.39598119258880615, 0.026269230991601944], [-0.0765683576464653, -0.38216137886047363, -0.01188955083489418], [-0.015026799403131008, -0.5411288738250732, -0.06138713285326958], [0.13798600435256958, -0.44153833389282227, 0.03118356689810753], [-0.15907125174999237, -0.39775747060775757, -0.052033085376024246], [0.34290069341659546, -0.5799615979194641, 0.12208153307437897], [-0.3893207311630249, -0.286382257938385, -0.05047210678458214], [0.4272768497467041, -0.8093935251235962, 0.08013488352298737], [-0.6328197121620178, -0.31700366735458374, -0.12442703545093536], [0.43849435448646545, -0.8901669979095459, 0.06962326169013977], [-0.6989637017250061, -0.31593233346939087, -0.17309406399726868]]}, {"image_id": "238.jpg", "category_id": 1, "keypoints": [1073.046142578125, 487.4367980957031, 0.9826045036315918, 1106.0018310546875, 528.7833251953125, 0.9934657216072083, 1043.7861328125, 529.8024291992188, 0.9892703890800476, 1072.5345458984375, 438.09014892578125, 0.9896290302276611, 1199.344970703125, 683.7501220703125, 0.9834851026535034, 970.3787231445312, 659.263427734375, 0.979745090007782, 1077.189453125, 379.45318603515625, 0.98563152551651, 1234.1712646484375, 802.2623291015625, 0.8365176916122437, 929.2645874023438, 808.5064697265625, 0.9150656461715698, 1077.3236083984375, 357.9668273925781, 0.9909207224845886, 1227.383056640625, 855.03125, 0.9133448004722595, 913.2371215820312, 833.5867919921875, 0.9172559380531311, 1058.9072265625, 265.816162109375, 0.9872900247573853, 1097.552001953125, 299.2515869140625, 0.9903241395950317, 1034.945556640625, 312.3597412109375, 0.9911154508590698, 1054.2943115234375, 237.5208282470703, 0.9508119225502014, 1129.2734375, 276.4215393066406, 0.981670081615448, 1000.238525390625, 311.5337829589844, 0.9827289581298828, 1198.2047119140625, 211.12594604492188, 0.9582959413528442, 908.4769287109375, 376.02032470703125, 0.9735016822814941, 1208.5428466796875, 120.93301391601562, 0.9763462543487549, 809.6982421875, 357.0572509765625, 0.9510113000869751, 1213.12158203125, 77.75613403320312, 0.9822772741317749, 784.6109619140625, 356.42388916015625, 0.9384316802024841, 1019.094970703125, 156.53854370117188, 0.8885647058486938, 1221.410888671875, 37.32110595703125, 0.9254913330078125, 743.683837890625, 354.59307861328125, 0.9099720120429993, 1196.1290283203125, 872.9774169921875, 0.9074336886405945, 937.4114990234375, 845.7385864257812, 0.9124066233634949], "score": 3.180563449859619, "box": [783.6497802734375, 91.10122680664062, 500.5721435546875, 755.1614685058594], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06684673577547073, 0.0888335108757019, 0.01181912049651146], [-0.0636371448636055, 0.0891319066286087, -0.0026864390820264816], [-0.005774516146630049, -0.10159923136234283, 0.023869939148426056], [0.2653558850288391, 0.415059894323349, -0.042536552995443344], [-0.2491464614868164, 0.41168588399887085, -0.12624956667423248], [0.009309346787631512, -0.2308908849954605, 0.013052545487880707], [0.3690137565135956, 0.7237681746482849, 0.1995415985584259], [-0.3480665981769562, 0.776932418346405, 0.01871950924396515], [0.008497389033436775, -0.2757211923599243, -0.018985047936439514], [0.34919390082359314, 0.8443023562431335, 0.1478729248046875], [-0.4031478762626648, 0.8577931523323059, -0.0704917311668396], [-0.032415203750133514, -0.4810355305671692, -0.010358639061450958], [0.05457984656095505, -0.40525108575820923, 0.012342013418674469], [-0.08855830132961273, -0.3782117962837219, -0.014906719326972961], [-0.044923219829797745, -0.5455636382102966, -0.06140981987118721], [0.1292387843132019, -0.4558408260345459, 0.014919791370630264], [-0.17987480759620667, -0.37878847122192383, -0.04056841880083084], [0.3092579245567322, -0.628826916217804, 0.1028357669711113], [-0.3870687186717987, -0.23114712536334991, -0.0780269205570221], [0.33886846899986267, -0.8754352927207947, 0.12756159901618958], [-0.6382590532302856, -0.27804940938949585, -0.1096242293715477], [0.3458459973335266, -0.9544277787208557, 0.10228591412305832], [-0.7025050520896912, -0.2771098017692566, -0.1623474359512329]]}, {"image_id": "239.jpg", "category_id": 1, "keypoints": [1080.4473876953125, 475.7192077636719, 0.9803938865661621, 1112.7000732421875, 512.8513793945312, 0.9903921484947205, 1050.7823486328125, 512.8102416992188, 0.98792564868927, 1080.583984375, 428.0895690917969, 0.9929051399230957, 1202.228759765625, 677.6455078125, 0.9779512286186218, 976.931396484375, 651.989501953125, 0.9839410185813904, 1081.349609375, 370.325439453125, 0.982530951499939, 1216.975830078125, 799.0130615234375, 0.7905269861221313, 919.1661376953125, 783.6854248046875, 0.906300961971283, 1079.358154296875, 349.4547119140625, 0.9909138083457947, 1186.7286376953125, 831.8452758789062, 0.8759198188781738, 912.91357421875, 810.4691772460938, 0.9088647365570068, 1056.2412109375, 258.67449951171875, 0.9883139133453369, 1096.6778564453125, 289.7487487792969, 0.9896975159645081, 1035.6575927734375, 304.696044921875, 0.9930291771888733, 1046.74365234375, 235.42428588867188, 0.9535514712333679, 1129.6878662109375, 265.9906311035156, 0.9788969159126282, 1003.3963623046875, 300.976806640625, 0.9857471585273743, 1190.741943359375, 193.56451416015625, 0.9609144926071167, 935.4695434570312, 379.60986328125, 0.9794225692749023, 1183.1556396484375, 98.00076293945312, 0.976224958896637, 835.6023559570312, 375.8470458984375, 0.9409459829330444, 1184.4560546875, 61.60113525390625, 0.9535620212554932, 803.2059936523438, 383.5226745605469, 0.9204302430152893, 1022.895751953125, 154.9349365234375, 0.900010347366333, 1197.159912109375, 21.104339599609375, 0.9248542189598083, 769.2177734375, 387.31243896484375, 0.8751499056816101, 1150.5260009765625, 833.9119262695312, 0.9143467545509338, 946.1190185546875, 834.5401000976562, 0.9093201160430908], "score": 3.1743175983428955, "box": [799.2974853515625, 79.63655853271484, 482.1640625, 766.6074600219727], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06587309390306473, 0.08943933248519897, 0.01490478590130806], [-0.06502687186002731, 0.08851110935211182, 0.0009347237646579742], [-0.004338105209171772, -0.10307653248310089, 0.02036251872777939], [0.2475319802761078, 0.42690879106521606, -0.022655978798866272], [-0.24846366047859192, 0.432917982339859, -0.03282129019498825], [0.0022957369219511747, -0.2335527092218399, 0.006020493805408478], [0.30192768573760986, 0.7976392507553101, 0.13253355026245117], [-0.3996593952178955, 0.7831084132194519, 0.10358371585607529], [-0.0036251016426831484, -0.28042787313461304, -0.023109380155801773], [0.21226933598518372, 0.8955541253089905, 0.1366649866104126], [-0.4195612072944641, 0.86650151014328, 0.0023712143301963806], [-0.05456400662660599, -0.48433685302734375, -0.00900844857096672], [0.0378868393599987, -0.4124055504798889, 0.007732922211289406], [-0.10594705492258072, -0.3782007694244385, -0.012216068804264069], [-0.08055335283279419, -0.5401673316955566, -0.0654321163892746], [0.11215698719024658, -0.4633684754371643, 0.018926553428173065], [-0.20016729831695557, -0.3883436322212219, -0.023252518847584724], [0.2792561948299408, -0.6625534892082214, 0.06841061264276505], [-0.3676437437534332, -0.19616590440273285, 0.01036052405834198], [0.26354601979255676, -0.9061816334724426, 0.12103448063135147], [-0.6024882793426514, -0.2005317062139511, -0.09485817700624466], [0.2658408582210541, -0.9887431263923645, 0.10921861976385117], [-0.6789979338645935, -0.18103645741939545, -0.12130461633205414]]}, {"image_id": "240.jpg", "category_id": 1, "keypoints": [1092.1343994140625, 468.12542724609375, 0.9827321171760559, 1121.4034423828125, 500.00640869140625, 0.9913092851638794, 1062.566650390625, 501.33453369140625, 0.9841936826705933, 1094.441650390625, 421.96820068359375, 0.9920749068260193, 1191.6466064453125, 660.85888671875, 0.9797394871711731, 981.74169921875, 639.96875, 0.9862658977508545, 1087.0950927734375, 363.0852966308594, 0.9805543422698975, 1210.6708984375, 808.7020263671875, 0.9033994674682617, 930.3636474609375, 779.695068359375, 0.9343417286872864, 1081.9315185546875, 342.25140380859375, 0.9891868829727173, 1199.8658447265625, 844.4891357421875, 0.923962414264679, 929.6138916015625, 801.0357055664062, 0.9160113334655762, 1049.1998291015625, 254.07925415039062, 0.985684871673584, 1091.3865966796875, 283.5113220214844, 0.9926331043243408, 1035.37646484375, 299.4532470703125, 0.9933993220329285, 1035.8634033203125, 230.36660766601562, 0.9615673422813416, 1124.7762451171875, 257.12811279296875, 0.9739243388175964, 1001.8424072265625, 293.10791015625, 0.9899415969848633, 1177.89990234375, 182.76101684570312, 0.9628271460533142, 921.8932495117188, 330.4339904785156, 0.9830465316772461, 1170.939697265625, 85.72296142578125, 0.975629985332489, 844.2402954101562, 382.82244873046875, 0.9352292418479919, 1170.2431640625, 51.656463623046875, 0.961216926574707, 827.4341430664062, 407.7859802246094, 0.9288754463195801, 1008.1041259765625, 149.53640747070312, 0.8997696042060852, 1172.87109375, 3.590301513671875, 0.9141507148742676, 810.4202880859375, 442.5805358886719, 0.8820149898529053, 1169.4932861328125, 843.5213623046875, 0.9028536081314087, 971.917724609375, 819.970458984375, 0.9499911665916443], "score": 3.1811647415161133, "box": [812.439453125, 58.08485794067383, 469.404296875, 782.2699394226074], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06348688155412674, 0.08818832039833069, 0.02136389911174774], [-0.0656372457742691, 0.08477810770273209, 0.016156382858753204], [-0.0005649495869874954, -0.10335762798786163, 0.007221858948469162], [0.22522273659706116, 0.4348292648792267, 0.01890449970960617], [-0.2611164450645447, 0.42063915729522705, 0.03192499279975891], [-0.011587753891944885, -0.23331083357334137, -0.012340014800429344], [0.280650794506073, 0.8155292868614197, 0.1327362060546875], [-0.39131027460098267, 0.7797322273254395, 0.1524818241596222], [-0.024394605308771133, -0.2819356918334961, -0.034632109105587006], [0.24130339920520782, 0.9385684728622437, 0.10742359608411789], [-0.39380836486816406, 0.8664153218269348, 0.05390167981386185], [-0.09400513768196106, -0.4781680703163147, -0.024815864861011505], [0.004841658286750317, -0.41657161712646484, -0.011671017855405807], [-0.13340552151203156, -0.36839503049850464, -0.020373061299324036], [-0.13344624638557434, -0.5364772081375122, -0.07060249894857407], [0.07420238107442856, -0.4732275605201721, -0.006385384127497673], [-0.22598154842853546, -0.3859255313873291, -0.020171916112303734], [0.2261907309293747, -0.6856738924980164, -0.029793910682201385], [-0.4563051462173462, -0.2795065641403198, -0.0014707110822200775], [0.21224375069141388, -0.9268662333488464, 0.02279084175825119], [-0.6488673686981201, -0.14362312853336334, -0.0984174981713295], [0.21124790608882904, -1.0084850788116455, 0.034459199756383896], [-0.6897656321525574, -0.08008764684200287, -0.1307571828365326]]}, {"image_id": "241.jpg", "category_id": 1, "keypoints": [1106.7862548828125, 468.4034423828125, 0.9808611273765564, 1137.9117431640625, 501.21392822265625, 0.9896624684333801, 1078.5208740234375, 502.2256164550781, 0.9885101318359375, 1107.8779296875, 422.14703369140625, 0.9931081533432007, 1212.768310546875, 667.8086547851562, 0.9577435851097107, 1018.0017700195312, 649.2379150390625, 0.9833824634552002, 1101.862548828125, 364.29180908203125, 0.9821789264678955, 1224.2659912109375, 816.9310913085938, 0.9114745259284973, 965.3381958007812, 790.2430419921875, 0.9136298298835754, 1098.1796875, 343.69146728515625, 0.9895339608192444, 1213.6341552734375, 855.1491088867188, 0.9201562404632568, 979.9934692382812, 820.003173828125, 0.9194349050521851, 1069.7138671875, 259.8069152832031, 0.984964907169342, 1107.5166015625, 286.4046630859375, 0.9925229549407959, 1055.3978271484375, 302.40924072265625, 0.9931293725967407, 1054.7298583984375, 239.32093811035156, 0.9564571976661682, 1137.2108154296875, 261.0752868652344, 0.9734600782394409, 1027.07666015625, 298.36541748046875, 0.990980327129364, 1175.646728515625, 177.70169067382812, 0.9640318751335144, 962.1133422851562, 331.6633605957031, 0.97821044921875, 1146.7568359375, 83.68997192382812, 0.9744628667831421, 888.3348999023438, 415.8663024902344, 0.9632248878479004, 1149.486083984375, 52.8707275390625, 0.9711984395980835, 858.4192504882812, 442.8739929199219, 0.9507267475128174, 1029.2371826171875, 160.37136840820312, 0.9271087050437927, 1157.058349609375, 2.707305908203125, 0.9408591985702515, 831.6331176757812, 463.7617492675781, 0.8309807181358337, 1188.790771484375, 856.8585205078125, 0.8940758109092712, 1014.5560302734375, 828.7701416015625, 0.9575890302658081], "score": 3.176703453063965, "box": [837.9257202148438, 48.8651123046875, 450.00396728515625, 795.4620971679688], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0650268942117691, 0.08665908873081207, 0.02365875244140625], [-0.06398844718933105, 0.08702605962753296, 0.011016469448804855], [-0.004163767211139202, -0.10320548713207245, 0.008782826364040375], [0.2220040261745453, 0.4369114637374878, 0.015648119151592255], [-0.21073079109191895, 0.44618120789527893, 0.052792612463235855], [-0.011482632718980312, -0.2328772395849228, -0.012037444859743118], [0.2587506175041199, 0.8216581344604492, 0.1288805454969406], [-0.3407086431980133, 0.8031608462333679, 0.18446806073188782], [-0.02129146084189415, -0.2801187038421631, -0.038298141211271286], [0.22188054025173187, 0.9449003338813782, 0.09945666790008545], [-0.29024264216423035, 0.9012104272842407, 0.11258122324943542], [-0.0865444764494896, -0.47805047035217285, -0.03055078163743019], [0.007971568964421749, -0.4130381941795349, -0.006353866308927536], [-0.1290845274925232, -0.36940711736679077, -0.035669732838869095], [-0.1279754340648651, -0.5288874506950378, -0.08297941088676453], [0.0764821469783783, -0.46944814920425415, 0.007321840152144432], [-0.22178900241851807, -0.3818508982658386, -0.047923795878887177], [0.1860864758491516, -0.7077560424804688, -0.013291040435433388], [-0.4446968138217926, -0.2705785036087036, 0.007974060252308846], [0.12426476180553436, -0.9323365688323975, 0.07213905453681946], [-0.6008872389793396, -0.08770237863063812, -0.0791073888540268], [0.13218072056770325, -1.009109616279602, 0.10179343819618225], [-0.6565546989440918, -0.03589792549610138, -0.11094778776168823]]}, {"image_id": "242.jpg", "category_id": 1, "keypoints": [1135.4578857421875, 469.0256652832031, 0.9782748818397522, 1167.7237548828125, 505.6294860839844, 0.9906169772148132, 1107.2593994140625, 503.74029541015625, 0.9928708672523499, 1137.276123046875, 424.6258239746094, 0.9931122660636902, 1237.656005859375, 678.1751708984375, 0.9839386940002441, 1040.3748779296875, 649.5459594726562, 0.9848281145095825, 1130.6912841796875, 368.1674499511719, 0.9861029982566833, 1251.68115234375, 815.4671630859375, 0.9100823402404785, 984.8126220703125, 788.7046508789062, 0.8854778409004211, 1125.8472900390625, 348.93145751953125, 0.9900157451629639, 1241.745361328125, 848.7578125, 0.9204204082489014, 981.9166870117188, 812.997802734375, 0.894754946231842, 1094.9588623046875, 266.354736328125, 0.9873581528663635, 1134.4373779296875, 291.32196044921875, 0.9903310537338257, 1080.3255615234375, 307.666015625, 0.9914975762367249, 1077.7537841796875, 246.9492950439453, 0.9611765146255493, 1160.575927734375, 267.4681396484375, 0.9736724495887756, 1052.945556640625, 304.97760009765625, 0.9894258975982666, 1179.0975341796875, 178.03903198242188, 0.9741060733795166, 978.6760864257812, 343.015869140625, 0.9685651063919067, 1139.871826171875, 87.93258666992188, 0.9746232032775879, 891.4268188476562, 435.8193359375, 0.9514119029045105, 1132.1861572265625, 55.176605224609375, 0.9826815724372864, 866.9835205078125, 450.9901123046875, 0.9506542682647705, 1044.07568359375, 161.69833374023438, 0.9350032806396484, 1127.0592041015625, 2.145294189453125, 0.9538930654525757, 850.7484130859375, 468.23431396484375, 0.8916804790496826, 1219.47998046875, 844.514404296875, 0.9042981863021851, 1002.6991577148438, 822.7767333984375, 0.9051116704940796], "score": 3.135711193084717, "box": [866.7578125, 42.42341232299805, 419.2928466796875, 807.582935333252], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06433233618736267, 0.08756841719150543, 0.02003752812743187], [-0.06405024230480194, 0.08620928972959518, 0.012263216078281403], [-0.002603021450340748, -0.10226526856422424, 0.009947974234819412], [0.20322833955287933, 0.44052213430404663, -0.05387548729777336], [-0.22555042803287506, 0.44134521484375, 0.05478933826088905], [-0.01182276476174593, -0.23044154047966003, -0.017384832724928856], [0.25153848528862, 0.8091894388198853, 0.10545478761196136], [-0.3606650233268738, 0.7914706468582153, 0.20350192487239838], [-0.024782221764326096, -0.27614763379096985, -0.04410538077354431], [0.21224941313266754, 0.9248461723327637, 0.05514374002814293], [-0.37131205201148987, 0.8684635162353516, 0.09715643525123596], [-0.09791776537895203, -0.4698541462421417, -0.03302815929055214], [-0.001814965158700943, -0.4084063470363617, -0.00956716202199459], [-0.1351465880870819, -0.3601672947406769, -0.039697788655757904], [-0.14456139504909515, -0.5168007612228394, -0.08546055853366852], [0.06303428113460541, -0.4678885042667389, 0.0037056729197502136], [-0.22717629373073578, -0.36829379200935364, -0.054390642791986465], [0.11678479611873627, -0.7265818119049072, 0.008437687531113625], [-0.4538504481315613, -0.25387832522392273, -0.019048940390348434], [0.025888118892908096, -0.9493751525878906, 0.07220004498958588], [-0.6231976747512817, -0.0709516704082489, -0.08135154843330383], [0.01125525962561369, -1.022635579109192, 0.10745804011821747], [-0.6849938631057739, -0.03120933473110199, -0.11865347623825073]]}, {"image_id": "242.jpg", "category_id": 1, "keypoints": [965.7005615234375, 446.7348937988281, 0.9823688268661499, 987.3031616210938, 479.79766845703125, 0.9912271499633789, 941.4801025390625, 484.4217224121094, 0.9836012721061707, 959.7001342773438, 402.29852294921875, 0.9917168617248535, 1013.0117797851562, 637.2230224609375, 0.9854307174682617, 914.5106811523438, 635.3120727539062, 0.9860076904296875, 965.6376342773438, 350.64031982421875, 0.9850134253501892, 971.1608276367188, 779.5516357421875, 0.9702578783035278, 877.1325073242188, 768.1527099609375, 0.9119275808334351, 974.02001953125, 332.3146057128906, 0.990023136138916, 1009.5913696289062, 807.0189819335938, 0.9549508690834045, 859.623291015625, 812.486328125, 0.9464635848999023, 972.9774169921875, 244.1321258544922, 0.9848772287368774, 996.902099609375, 280.58984375, 0.9891328811645508, 944.7731323242188, 281.4496765136719, 0.9838892817497253, 984.4429321289062, 221.16790771484375, 0.9271252751350403, 1026.3349609375, 264.633056640625, 0.9731237292289734, 916.4465942382812, 274.46075439453125, 0.9748489856719971, 1077.76708984375, 188.0892791748047, 0.9517351388931274, 847.1406860351562, 345.6390380859375, 0.9560067057609558, 1115.6810302734375, 89.45211791992188, 0.9749631881713867, 860.0195922851562, 438.6031494140625, 0.9649622440338135, 1122.7080078125, 65.5142822265625, 0.9686039686203003, 869.050048828125, 464.2309265136719, 0.901020348072052, 966.4036254882812, 134.87509155273438, 0.9223474860191345, 1116.5791015625, 23.02239990234375, 0.8867696523666382, 882.5208740234375, 500.4128112792969, 0.8258746862411499, 1014.4984130859375, 807.7269287109375, 0.934167206287384, 864.5224609375, 814.827392578125, 0.9473717212677002], "score": 3.122097969055176, "box": [820.4722290039062, 65.68233489990234, 302.35760498046875, 753.6461563110352], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05344114080071449, 0.08649863302707672, 0.046666085720062256], [-0.05638871341943741, 0.09056027978658676, -0.02528969943523407], [-0.01573457196354866, -0.10431019961833954, 0.012651674449443817], [0.11495888978242874, 0.4612357020378113, 0.07844535261392593], [-0.1246575191617012, 0.47219908237457275, -0.01797255128622055], [0.000824150862172246, -0.23039387166500092, -0.028283342719078064], [0.008023680187761784, 0.8328319191932678, 0.18354997038841248], [-0.21895936131477356, 0.8036710023880005, 0.18576133251190186], [0.022360878065228462, -0.26924216747283936, -0.062762051820755], [0.11590078473091125, 0.9093300104141235, 0.17394214868545532], [-0.2659823000431061, 0.9225598573684692, 0.15084406733512878], [0.017195289954543114, -0.4788411259651184, -0.08975078910589218], [0.07405644655227661, -0.39642560482025146, -0.025158826261758804], [-0.049961432814598083, -0.38271158933639526, -0.1099354550242424], [0.04442747309803963, -0.5288318991661072, -0.15182283520698547], [0.14889216423034668, -0.43905752897262573, 0.006508760154247284], [-0.11898531764745712, -0.3899136185646057, -0.17730212211608887], [0.2916806638240814, -0.6537238359451294, 0.051536157727241516], [-0.2839986979961395, -0.21368609368801117, -0.2574338912963867], [0.3799310624599457, -0.8829004764556885, 0.0178789384663105], [-0.2501858174800873, 0.010807201266288757, -0.373618483543396], [0.4034518301486969, -0.9629116058349609, 0.023130275309085846], [-0.22701609134674072, 0.07414136826992035, -0.4224666953086853]]}, {"image_id": "243.jpg", "category_id": 1, "keypoints": [968.18408203125, 448.30780029296875, 0.9824114441871643, 993.1097412109375, 480.9594421386719, 0.9894952774047852, 941.98828125, 487.2058410644531, 0.9868513345718384, 962.279296875, 404.6682434082031, 0.992892324924469, 1024.3321533203125, 641.2657470703125, 0.9842095971107483, 903.2757568359375, 639.361572265625, 0.9838473200798035, 964.8430786132812, 355.55694580078125, 0.9820752739906311, 985.7405395507812, 783.3632202148438, 0.9606462717056274, 868.7872314453125, 760.9375610351562, 0.9232637882232666, 971.2081298828125, 337.41796875, 0.9889574646949768, 1011.1964721679688, 810.864501953125, 0.9498021006584167, 853.7428588867188, 796.998046875, 0.9174146056175232, 962.95703125, 250.22714233398438, 0.9860447645187378, 990.743408203125, 282.8330383300781, 0.9868099093437195, 937.4547119140625, 289.94952392578125, 0.9862384796142578, 973.4949340820312, 226.5305938720703, 0.9306678771972656, 1017.0792846679688, 261.41046142578125, 0.9798322916030884, 908.0396118164062, 282.6447448730469, 0.9740345478057861, 1071.39453125, 184.87353515625, 0.9499632120132446, 848.364990234375, 367.35516357421875, 0.9592857360839844, 1104.8603515625, 92.50613403320312, 0.9726162552833557, 878.474609375, 450.5608825683594, 0.968763530254364, 1110.33935546875, 63.091552734375, 0.9604966044425964, 889.4095458984375, 474.11053466796875, 0.9142129421234131, 970.5963745117188, 135.72494506835938, 0.9003258943557739, 1106.3509521484375, 17.56182861328125, 0.9419591426849365, 903.738037109375, 508.9192199707031, 0.8369224667549133, 1001.6249389648438, 816.445556640625, 0.9389617443084717, 862.4832763671875, 803.152099609375, 0.9225322604179382], "score": 3.184020519256592, "box": [828.68798828125, 48.620811462402344, 299.1229248046875, 787.2985610961914], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06051117554306984, 0.08410978317260742, 0.04482734203338623], [-0.059101652354002, 0.09281490743160248, -0.011717196553945541], [-0.014858579263091087, -0.10585859417915344, 0.008175164461135864], [0.13353708386421204, 0.4599076211452484, 0.07826641947031021], [-0.15515165030956268, 0.4687284529209137, 0.038107603788375854], [-0.008241673931479454, -0.2315177023410797, -0.0377444289624691], [0.034628257155418396, 0.8345527648925781, 0.19712646305561066], [-0.2529670298099518, 0.8083655834197998, 0.2357993870973587], [0.006968708708882332, -0.2733043134212494, -0.07288599014282227], [0.11754339188337326, 0.9207807779312134, 0.13739417493343353], [-0.2938072383403778, 0.9062082767486572, 0.15425071120262146], [-0.014392578974366188, -0.4823239743709564, -0.10816030204296112], [0.049163371324539185, -0.40660664439201355, -0.040261391550302505], [-0.0745459645986557, -0.37996843457221985, -0.12430578470230103], [0.00980602391064167, -0.5320374965667725, -0.1719980686903], [0.11440979689359665, -0.4617789685726166, -0.005511671304702759], [-0.1458461880683899, -0.39356014132499695, -0.18901367485523224], [0.25874486565589905, -0.6692341566085815, 0.07341562211513519], [-0.2874288856983185, -0.18732985854148865, -0.2499368041753769], [0.3420039713382721, -0.8983103036880493, 0.014990553259849548], [-0.21128325164318085, 0.018291622400283813, -0.38577789068222046], [0.3573504388332367, -0.9811362028121948, 0.009922467172145844], [-0.18287205696105957, 0.07831963896751404, -0.4374834895133972]]}, {"image_id": "243.jpg", "category_id": 1, "keypoints": [1169.4931640625, 477.3807373046875, 0.9771782159805298, 1196.6922607421875, 516.2299194335938, 0.9935644268989563, 1141.1173095703125, 517.3653564453125, 0.9887362718582153, 1168.5926513671875, 434.6936950683594, 0.9927142858505249, 1238.743896484375, 678.5956420898438, 0.9838438034057617, 1077.08740234375, 651.2069702148438, 0.967438817024231, 1163.774658203125, 383.03204345703125, 0.9873536825180054, 1270.3170166015625, 812.015625, 0.8412861227989197, 975.8477783203125, 807.7971801757812, 0.8717151880264282, 1158.8223876953125, 364.822021484375, 0.9890993237495422, 1263.297607421875, 851.4595947265625, 0.890408992767334, 952.21875, 837.8980102539062, 0.8716250658035278, 1126.72900390625, 287.82470703125, 0.9833687543869019, 1169.1829833984375, 308.795654296875, 0.9942070841789246, 1111.8067626953125, 332.58428955078125, 0.9949294328689575, 1119.8997802734375, 264.805908203125, 0.9412063956260681, 1182.3629150390625, 277.9013671875, 0.9775097966194153, 1078.3046875, 337.38037109375, 0.9899863004684448, 1175.776123046875, 176.42724609375, 0.970701277256012, 1043.576171875, 432.8322448730469, 0.9703748226165771, 1119.6544189453125, 93.56930541992188, 0.9682098031044006, 950.413330078125, 472.3551940917969, 0.9122304916381836, 1109.896484375, 68.88015747070312, 0.9591305255889893, 918.967041015625, 483.3717346191406, 0.9399922490119934, 1101.2314453125, 217.9370880126953, 0.9421939253807068, 1106.418212890625, 15.934326171875, 0.9502058029174805, 884.6009521484375, 504.17474365234375, 0.9184591770172119, 1242.071044921875, 849.6919555664062, 0.9090408682823181, 981.704345703125, 864.736328125, 0.8697640895843506], "score": 3.142936944961548, "box": [938.1475219726562, 45.67459487915039, 373.11590576171875, 810.2132835388184], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0666840448975563, 0.09050633758306503, -4.310905933380127e-05], [-0.0649232491850853, 0.08865653723478317, 0.007718689739704132], [3.296567592769861e-05, -0.10233812034130096, 0.025413725525140762], [0.15101827681064606, 0.44649749994277954, -0.12816989421844482], [-0.2341756671667099, 0.43504011631011963, -0.07457657158374786], [-0.012554827146232128, -0.23325632512569427, 0.018559135496616364], [0.24436675012111664, 0.78701251745224, 0.07719886302947998], [-0.4504026174545288, 0.7744296193122864, -0.007645204663276672], [-0.02690824680030346, -0.27995872497558594, -0.007969556376338005], [0.21823135018348694, 0.9040785431861877, 0.01871749758720398], [-0.5134022235870361, 0.848018229007721, -0.09921543300151825], [-0.11823320388793945, -0.4633380174636841, 0.041787609457969666], [-0.010921773500740528, -0.4137064218521118, 0.036564163863658905], [-0.14512938261032104, -0.3490501046180725, 0.0297214537858963], [-0.13894830644130707, -0.5215224027633667, -0.01476634293794632], [0.024728666990995407, -0.49712425470352173, 0.03881942853331566], [-0.23770582675933838, -0.3349323868751526, 0.011299073696136475], [0.004131450783461332, -0.7549106478691101, -0.025043051689863205], [-0.3259720206260681, -0.09194685518741608, 0.023667573928833008], [-0.1370239555835724, -0.951680600643158, -0.09249740093946457], [-0.5386390686035156, 0.00037360191345214844, -0.09214317053556442], [-0.16843833029270172, -1.0273357629776, -0.11030670255422592], [-0.6153851747512817, 0.027606308460235596, -0.11143112182617188]]}, {"image_id": "244.jpg", "category_id": 1, "keypoints": [965.7036743164062, 462.84320068359375, 0.9735259413719177, 993.368408203125, 496.20599365234375, 0.9830244183540344, 942.3759765625, 506.1029357910156, 0.9867922067642212, 956.2434692382812, 419.8059387207031, 0.9885293841362, 1043.4610595703125, 651.86669921875, 0.9820683598518372, 934.5233764648438, 665.6842041015625, 0.9800708889961243, 958.3395385742188, 367.3387451171875, 0.9794986248016357, 1007.1676025390625, 801.3558349609375, 0.954206645488739, 869.4930419921875, 778.4151611328125, 0.8962447643280029, 965.3994140625, 347.612060546875, 0.9873460531234741, 1026.6788330078125, 829.5580444335938, 0.9419084787368774, 868.5286865234375, 815.6654052734375, 0.950503945350647, 951.748291015625, 258.41876220703125, 0.9847427606582642, 977.8868408203125, 291.236572265625, 0.9859835505485535, 930.5067138671875, 300.41925048828125, 0.9881507158279419, 962.9779663085938, 234.02552795410156, 0.9281409978866577, 1001.376708984375, 268.51593017578125, 0.9762115478515625, 904.341064453125, 289.94854736328125, 0.9711608290672302, 1046.8953857421875, 187.94912719726562, 0.946830689907074, 859.5148315429688, 382.87945556640625, 0.96724933385849, 1083.9072265625, 101.53408813476562, 0.9724460244178772, 909.840087890625, 461.6759033203125, 0.9548897743225098, 1092.0758056640625, 72.34085083007812, 0.9528324604034424, 928.7564697265625, 483.5475158691406, 0.9291118383407593, 958.30322265625, 143.93228149414062, 0.9031314253807068, 1092.5648193359375, 30.5087890625, 0.9403707385063171, 958.4088134765625, 506.3038635253906, 0.8656613826751709, 1021.3438720703125, 829.1571044921875, 0.9387843608856201, 868.9111328125, 815.75244140625, 0.9527206420898438], "score": 3.180269479751587, "box": [817.682373046875, 60.521121978759766, 307.8209228515625, 769.617733001709], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06344516575336456, 0.07939819991588593, 0.045960910618305206], [-0.049747876822948456, 0.0957660973072052, -0.016905002295970917], [-0.02315649390220642, -0.10199229419231415, 0.008854983374476433], [0.1836017519235611, 0.44417476654052734, 0.0696486085653305], [-0.07385225594043732, 0.485795795917511, -0.0005734041333198547], [-0.017089124768972397, -0.22739188373088837, -0.033759571611881256], [0.09946756064891815, 0.8132646679878235, 0.21063563227653503], [-0.2363625019788742, 0.7725549340248108, 0.2320004105567932], [-0.0002387880813330412, -0.2689724564552307, -0.0665205866098404], [0.17294667661190033, 0.9175863862037659, 0.1739305853843689], [-0.2382131665945053, 0.8926911950111389, 0.17587077617645264], [-0.031564246863126755, -0.474425733089447, -0.09664443135261536], [0.029087239876389503, -0.40104860067367554, -0.026769397780299187], [-0.08225943893194199, -0.3706321716308594, -0.12019206583499908], [-0.006761890836060047, -0.5244329571723938, -0.15993854403495789], [0.08529611676931381, -0.45914995670318604, 0.0141314547508955], [-0.14582155644893646, -0.39605504274368286, -0.18673616647720337], [0.20750735700130463, -0.679567277431488, 0.09195658564567566], [-0.24557308852672577, -0.17104502022266388, -0.2581050395965576], [0.3018643856048584, -0.8967960476875305, 0.014487409964203835], [-0.11933596432209015, 0.026603534817695618, -0.36294710636138916], [0.32399213314056396, -0.9758947491645813, -9.374693036079407e-05], [-0.0761350691318512, 0.07682628929615021, -0.41331756114959717]]}, {"image_id": "244.jpg", "category_id": 1, "keypoints": [1192.1180419921875, 478.415771484375, 0.9767346978187561, 1218.053955078125, 514.4744873046875, 0.9935207366943359, 1165.8548583984375, 519.490478515625, 0.9880287051200867, 1192.8984375, 435.6434020996094, 0.9914387464523315, 1243.9471435546875, 673.167724609375, 0.978732705116272, 1080.8726806640625, 652.17431640625, 0.9558767676353455, 1181.6334228515625, 384.635009765625, 0.9873604774475098, 1277.0543212890625, 808.4317626953125, 0.8525822162628174, 1012.7933959960938, 805.8551635742188, 0.9081721901893616, 1172.68505859375, 367.1280822753906, 0.989271879196167, 1267.930419921875, 855.2947387695312, 0.8767030239105225, 969.62109375, 824.083984375, 0.8992578983306885, 1142.603759765625, 291.423095703125, 0.986509382724762, 1184.00537109375, 309.80731201171875, 0.9923372864723206, 1129.184814453125, 337.1265563964844, 0.9923620820045471, 1131.6348876953125, 268.6245422363281, 0.9582331776618958, 1196.8323974609375, 279.6414489746094, 0.9789879322052002, 1095.5684814453125, 343.6021728515625, 0.9918527603149414, 1171.43310546875, 176.6868896484375, 0.9475491046905518, 1059.056396484375, 441.8103942871094, 0.9794936776161194, 1107.1143798828125, 98.91506958007812, 0.9593243598937988, 968.7538452148438, 476.5345153808594, 0.9036896228790283, 1100.58251953125, 74.52078247070312, 0.958310067653656, 945.2698364257812, 482.83746337890625, 0.9256486892700195, 1118.47314453125, 215.16238403320312, 0.9475734233856201, 1098.23583984375, 20.061920166015625, 0.9614927768707275, 904.6376953125, 496.6493835449219, 0.9144493341445923, 1250.679443359375, 859.6746826171875, 0.9129589200019836, 975.6046752929688, 837.589599609375, 0.9314740896224976], "score": 3.164578676223755, "box": [949.4158325195312, 54.626670837402344, 362.62860107421875, 799.0918960571289], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06560005247592926, 0.08891715109348297, -0.019014768302440643], [-0.056249670684337616, 0.08935779333114624, 0.030286140739917755], [0.005041950382292271, -0.10244697332382202, 0.021075744181871414], [0.11788877844810486, 0.45627838373184204, -0.132877379655838], [-0.2690359652042389, 0.4216272830963135, 0.030852925032377243], [-0.02349988743662834, -0.23009365797042847, 0.015717554837465286], [0.21346589922904968, 0.7900219559669495, 0.08274324983358383], [-0.4315968155860901, 0.793114423751831, 0.07670938968658447], [-0.047912128269672394, -0.2745797336101532, -0.005983585491776466], [0.18528401851654053, 0.9072531461715698, 0.026138946413993835], [-0.5474643707275391, 0.8385797142982483, 0.029885485768318176], [-0.12719985842704773, -0.4596008062362671, 0.05343857407569885], [-0.024992818012833595, -0.41130322217941284, 0.02055918425321579], [-0.1515316367149353, -0.34495168924331665, 0.05941743403673172], [-0.16037046909332275, -0.5212036371231079, 0.007836677134037018], [0.009494367055594921, -0.49347174167633057, 0.006562575697898865], [-0.24438084661960602, -0.3274049162864685, 0.06718817353248596], [-0.056451212614774704, -0.7250953912734985, -0.10752826929092407], [-0.3345082402229309, -0.08478498458862305, 0.071818508207798], [-0.21634641289710999, -0.9085252285003662, -0.16999664902687073], [-0.5416406989097595, -0.0030926764011383057, -0.06080957502126694], [-0.238350048661232, -0.9887781143188477, -0.17757141590118408], [-0.6075101494789124, 0.015335127711296082, -0.10860390216112137]]}, {"image_id": "245.jpg", "category_id": 1, "keypoints": [963.6796264648438, 464.649658203125, 0.9778644442558289, 991.2935791015625, 496.43634033203125, 0.9833610653877258, 942.2711181640625, 505.889892578125, 0.9870643615722656, 956.624755859375, 422.1820068359375, 0.9906100630760193, 1056.5653076171875, 646.0453491210938, 0.9804991483688354, 910.1141967773438, 657.21875, 0.9777000546455383, 955.4164428710938, 371.147705078125, 0.9804258942604065, 1033.8114013671875, 776.2430419921875, 0.9022318720817566, 868.3509521484375, 759.1448364257812, 0.9137547612190247, 960.1691284179688, 351.7516174316406, 0.9882677793502808, 1039.01904296875, 797.877685546875, 0.89192795753479, 852.0252075195312, 801.89599609375, 0.9388923048973083, 940.340576171875, 265.346435546875, 0.9846282601356506, 969.1415405273438, 295.7384033203125, 0.9863495230674744, 924.0618896484375, 308.11920166015625, 0.9880690574645996, 949.4530639648438, 239.31918334960938, 0.9201385378837585, 988.7951049804688, 273.32403564453125, 0.9780597686767578, 898.2821044921875, 303.0856628417969, 0.9762645959854126, 1036.9486083984375, 201.96853637695312, 0.9576831459999084, 880.7623291015625, 404.2222900390625, 0.9630590081214905, 1066.003173828125, 111.7889404296875, 0.968093991279602, 935.1708984375, 472.4789733886719, 0.9679355621337891, 1064.0313720703125, 84.90936279296875, 0.957689106464386, 952.547119140625, 490.379638671875, 0.926078736782074, 931.7643432617188, 145.69088745117188, 0.9004484415054321, 1058.748291015625, 38.726776123046875, 0.8866176605224609, 984.7634887695312, 512.4151000976562, 0.8654705882072449, 1027.2376708984375, 795.3502197265625, 0.8325573205947876, 856.1572265625, 813.5491333007812, 0.9391536116600037], "score": 3.174804449081421, "box": [812.2291259765625, 82.14308166503906, 298.6663818359375, 740.1792449951172], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06523717194795609, 0.07852551341056824, 0.04468882456421852], [-0.05151083692908287, 0.09561335295438766, -0.011066908948123455], [-0.021857373416423798, -0.1028355062007904, 0.007177714258432388], [0.21971644461154938, 0.42738401889801025, 0.046800050884485245], [-0.13219133019447327, 0.4751875102519989, -0.007827742025256157], [-0.01944006234407425, -0.22675585746765137, -0.04166887328028679], [0.16179786622524261, 0.7885633111000061, 0.21016161143779755], [-0.2501550614833832, 0.7627706527709961, 0.24414685368537903], [-0.007043055258691311, -0.26861634850502014, -0.07650312781333923], [0.1867745816707611, 0.8938097357749939, 0.13400691747665405], [-0.29424843192100525, 0.8785016536712646, 0.1980469673871994], [-0.055096350610256195, -0.4721854329109192, -0.09822899103164673], [0.015270494855940342, -0.40163952112197876, -0.0342135988175869], [-0.09952986985445023, -0.3653911352157593, -0.12262062728404999], [-0.03170693665742874, -0.5258139967918396, -0.15886983275413513], [0.06834740191698074, -0.46467506885528564, 0.004472736269235611], [-0.16945849359035492, -0.3750048279762268, -0.1875554472208023], [0.20496506989002228, -0.6722240447998047, 0.08682644367218018], [-0.2093387097120285, -0.13348573446273804, -0.25640296936035156], [0.2780444324016571, -0.8970273733139038, 0.013193529099225998], [-0.06922268867492676, 0.04348480701446533, -0.37491294741630554], [0.2717517912387848, -0.9798051118850708, 0.00740930438041687], [-0.024397097527980804, 0.09026432037353516, -0.4267101585865021]]}, {"image_id": "245.jpg", "category_id": 1, "keypoints": [1211.28076171875, 481.11993408203125, 0.9790350794792175, 1238.294677734375, 515.3389892578125, 0.9915656447410583, 1184.2821044921875, 520.37060546875, 0.9874644875526428, 1210.7578125, 438.3833923339844, 0.9904336929321289, 1248.28125, 669.5751342773438, 0.9758384823799133, 1100.188720703125, 643.3096923828125, 0.9710379242897034, 1198.510986328125, 388.18011474609375, 0.9902946352958679, 1279.821044921875, 803.561279296875, 0.8738844394683838, 1048.12890625, 798.63427734375, 0.862705409526825, 1188.8018798828125, 370.88336181640625, 0.9900261759757996, 1266.1907958984375, 855.0040283203125, 0.8929309844970703, 1011.2026977539062, 825.6411743164062, 0.897519052028656, 1158.0465087890625, 296.3802490234375, 0.9877787232398987, 1199.4417724609375, 312.6593933105469, 0.9906892776489258, 1145.2855224609375, 342.2628479003906, 0.9933977127075195, 1145.00146484375, 275.84234619140625, 0.9649354815483093, 1210.52685546875, 284.86529541015625, 0.9786246418952942, 1110.9443359375, 350.62481689453125, 0.9923102259635925, 1170.3497314453125, 174.12014770507812, 0.9470966458320618, 1078.342041015625, 449.7184753417969, 0.9763173460960388, 1093.4267578125, 95.502197265625, 0.9726293087005615, 1007.0126342773438, 485.912841796875, 0.9139258861541748, 1079.017822265625, 65.28866577148438, 0.9802226424217224, 984.7177734375, 487.8220520019531, 0.8885858654975891, 1117.4652099609375, 213.49264526367188, 0.9484984874725342, 1070.0465087890625, 19.542327880859375, 0.9342026114463806, 948.6837158203125, 494.4116516113281, 0.9322249889373779, 1246.125, 859.5753784179688, 0.9290055632591248, 1018.3079833984375, 840.6144409179688, 0.8977766036987305], "score": 3.1819519996643066, "box": [967.5916748046875, 75.49317169189453, 351.2041015625, 777.8171920776367], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06671621650457382, 0.08787854760885239, -0.021574590355157852], [-0.05598055198788643, 0.09089523553848267, 0.027314068749547005], [0.004232194274663925, -0.10246182978153229, 0.02468174882233143], [0.07924601435661316, 0.4464590549468994, -0.16660255193710327], [-0.2784436345100403, 0.4125204086303711, -0.01705690659582615], [-0.0270535945892334, -0.22995389997959137, 0.02213289774954319], [0.1705859899520874, 0.7664799094200134, 0.06925249844789505], [-0.403083473443985, 0.7940214276313782, 0.05305641144514084], [-0.05342837795615196, -0.27359944581985474, 0.00012737885117530823], [0.1342020481824875, 0.8833777904510498, 0.016514668241143227], [-0.5060262084007263, 0.8654806017875671, 0.008029190823435783], [-0.13514158129692078, -0.4571142792701721, 0.06387510150671005], [-0.03406019136309624, -0.4126421809196472, 0.021366575732827187], [-0.15397951006889343, -0.34111273288726807, 0.07455794513225555], [-0.17723919451236725, -0.5177002549171448, 0.024951865896582603], [-0.002450141590088606, -0.4942811131477356, -0.0028868038207292557], [-0.24637675285339355, -0.31901538372039795, 0.0845370814204216], [-0.09392703324556351, -0.7196989059448242, -0.11024164408445358], [-0.3272244930267334, -0.07363463938236237, 0.07953715324401855], [-0.2666732370853424, -0.9000816345214844, -0.08519895374774933], [-0.5068721771240234, 0.01881028711795807, -0.08208639919757843], [-0.3032499849796295, -0.9737802743911743, -0.10091819614171982], [-0.5636160373687744, 0.024475961923599243, -0.14324800670146942]]}, {"image_id": "246.jpg", "category_id": 1, "keypoints": [965.2608642578125, 461.0882568359375, 0.980769693851471, 992.4976806640625, 492.77984619140625, 0.980282723903656, 946.9769287109375, 501.6195068359375, 0.9874016642570496, 956.7869262695312, 418.87841796875, 0.9928348064422607, 1060.541748046875, 643.0537109375, 0.9756556749343872, 909.5918579101562, 651.011474609375, 0.9779485464096069, 954.1331176757812, 368.5953369140625, 0.9789282083511353, 1062.0406494140625, 768.3939819335938, 0.9134889245033264, 870.64990234375, 756.36669921875, 0.9436044692993164, 958.03466796875, 349.337890625, 0.9878658056259155, 1077.162109375, 791.3485107421875, 0.91960608959198, 853.7169189453125, 796.1304931640625, 0.9088283777236938, 932.1339111328125, 267.61126708984375, 0.9843574166297913, 963.3092041015625, 295.2298278808594, 0.9876471161842346, 917.608154296875, 309.590576171875, 0.9900661706924438, 939.399169921875, 240.70741271972656, 0.9194272756576538, 981.5146484375, 271.06072998046875, 0.9730525016784668, 890.3828735351562, 307.7522277832031, 0.9835598468780518, 1034.1793212890625, 199.02259826660156, 0.9485273957252502, 896.3209228515625, 414.998046875, 0.9516845941543579, 1071.642333984375, 122.51983642578125, 0.9684988260269165, 961.2760620117188, 478.9913330078125, 0.9563530087471008, 1073.28271484375, 93.19873046875, 0.9617003202438354, 980.2891845703125, 495.1642761230469, 0.9050056338310242, 917.4688720703125, 151.81381225585938, 0.8826409578323364, 1069.4161376953125, 52.63604736328125, 0.9419058561325073, 1016.385986328125, 517.52197265625, 0.8090726137161255, 1053.697265625, 792.717529296875, 0.761630654335022, 858.98828125, 805.7142333984375, 0.9236435890197754], "score": 3.174294948577881, "box": [822.724609375, 85.150634765625, 284.45263671875, 739.5819702148438], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06535136699676514, 0.07793106138706207, 0.04474623501300812], [-0.04714018478989601, 0.09649348258972168, -0.017506185919046402], [-0.025756120681762695, -0.10116524994373322, 0.00998779945075512], [0.2237614244222641, 0.42537224292755127, 0.03477252647280693], [-0.14036084711551666, 0.4702479839324951, -0.06713014841079712], [-0.026469316333532333, -0.22625641524791718, -0.03565090894699097], [0.2326952964067459, 0.7896074652671814, 0.20125465095043182], [-0.24920521676540375, 0.7629639506340027, 0.182847261428833], [-0.015804821625351906, -0.26764118671417236, -0.07125077396631241], [0.29882943630218506, 0.8888399600982666, 0.1442815661430359], [-0.29610711336135864, 0.8730024099349976, 0.12708216905593872], [-0.08117852360010147, -0.4657164216041565, -0.09127236157655716], [-0.004340336192399263, -0.40133416652679443, -0.02899891883134842], [-0.11658152937889099, -0.3559030294418335, -0.1149136871099472], [-0.058881018310785294, -0.5160179734230042, -0.15530350804328918], [0.0444633774459362, -0.46854323148727417, 0.00734342634677887], [-0.18975460529327393, -0.3569760322570801, -0.17630061507225037], [0.18954907357692719, -0.67214435338974, 0.0849134624004364], [-0.17515254020690918, -0.11105652153491974, -0.23899680376052856], [0.2958911061286926, -0.8858701586723328, 0.019513562321662903], [-0.004872303921729326, 0.058180198073387146, -0.32479360699653625], [0.30036887526512146, -0.9685840010643005, 0.013391800224781036], [0.04492547735571861, 0.1013994812965393, -0.37484246492385864]]}, {"image_id": "246.jpg", "category_id": 1, "keypoints": [1228.483642578125, 482.1856994628906, 0.9804486036300659, 1254.79541015625, 517.459716796875, 0.9914107322692871, 1203.951171875, 522.5731201171875, 0.9844763875007629, 1228.634033203125, 438.2825927734375, 0.9873833656311035, 1249.956298828125, 668.2531127929688, 0.9684326648712158, 1113.671630859375, 644.9595336914062, 0.9726454019546509, 1214.576904296875, 387.8290100097656, 0.9885655641555786, 1281.7799072265625, 807.7819213867188, 0.9109554290771484, 1084.3077392578125, 796.4400634765625, 0.8470816612243652, 1202.7410888671875, 371.6880798339844, 0.9899085760116577, 1260.2652587890625, 854.378173828125, 0.8890272974967957, 1050.076171875, 815.5505981445312, 0.8014058470726013, 1171.986083984375, 297.85028076171875, 0.9891142249107361, 1211.339599609375, 313.1204833984375, 0.9893514513969421, 1161.84375, 343.283935546875, 0.9936601519584656, 1153.8189697265625, 277.62542724609375, 0.9655031561851501, 1220.52099609375, 285.6036682128906, 0.9773415923118591, 1130.708251953125, 351.92901611328125, 0.991449236869812, 1163.2144775390625, 185.06723022460938, 0.9489405155181885, 1088.118408203125, 450.6504821777344, 0.9733421206474304, 1075.6842041015625, 124.66757202148438, 0.9483410120010376, 1020.3334350585938, 490.79241943359375, 0.9358928799629211, 1061.012451171875, 102.8245849609375, 0.9486950635910034, 995.6224365234375, 490.83319091796875, 0.9165787100791931, 1109.3685302734375, 231.224365234375, 0.9603323936462402, 1042.6767578125, 56.51446533203125, 0.9485275745391846, 966.0748291015625, 494.8533020019531, 0.9200971126556396, 1235.27490234375, 852.4088134765625, 0.9209669232368469, 1058.234375, 826.6431884765625, 0.8217679262161255], "score": 3.174168825149536, "box": [983.7761840820312, 86.50176239013672, 348.67974853515625, 774.5859451293945], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06408791244029999, 0.08669241517782211, -0.031101617962121964], [-0.05076681077480316, 0.09158333390951157, 0.03356834501028061], [0.006250909995287657, -0.10173618793487549, 0.024607980623841286], [0.04089607298374176, 0.44286635518074036, -0.18237262964248657], [-0.2835776209831238, 0.40119248628616333, -0.03884740173816681], [-0.029384545981884003, -0.22689473628997803, 0.014871446415781975], [0.1304912120103836, 0.7647231221199036, 0.05244859308004379], [-0.3573266863822937, 0.7970278263092041, 0.025960909202694893], [-0.06055138260126114, -0.2664124369621277, -0.0077444203197956085], [0.07433462142944336, 0.8724295496940613, -0.0021147485822439194], [-0.46665430068969727, 0.8537482023239136, -0.024114465340971947], [-0.14456762373447418, -0.453538715839386, 0.037539638578891754], [-0.04621405154466629, -0.40712738037109375, -0.007879475131630898], [-0.15646572411060333, -0.3401406407356262, 0.06588863581418991], [-0.19560874998569489, -0.5052301287651062, -0.0030471067875623703], [-0.02341338060796261, -0.4818100333213806, -0.05349741876125336], [-0.24529202282428741, -0.3163713812828064, 0.08992870897054672], [-0.15207086503505707, -0.6866227388381958, -0.1646021604537964], [-0.3477785289287567, -0.0801318883895874, 0.0658583864569664], [-0.3589041233062744, -0.8250406384468079, -0.19749334454536438], [-0.5200910568237305, 0.022494792938232422, -0.09788244217634201], [-0.40588265657424927, -0.8935756087303162, -0.2065393179655075], [-0.5765379071235657, 0.023386478424072266, -0.15936358273029327]]}, {"image_id": "247.jpg", "category_id": 1, "keypoints": [961.0989379882812, 463.02294921875, 0.9738672971725464, 988.3734130859375, 493.8651428222656, 0.9825602769851685, 944.0247192382812, 502.53125, 0.9923811554908752, 951.8851318359375, 420.7564697265625, 0.9928026795387268, 1054.756103515625, 645.3346557617188, 0.9757859110832214, 905.1005249023438, 651.2179565429688, 0.9810708165168762, 948.8954467773438, 370.3143615722656, 0.9846858382225037, 1086.7406005859375, 775.7560424804688, 0.944916844367981, 866.5940551757812, 758.3011474609375, 0.9220284819602966, 952.6552734375, 351.0942077636719, 0.9897843599319458, 1119.70703125, 790.3636474609375, 0.8692653775215149, 852.5390625, 799.0159912109375, 0.9421222805976868, 923.3282470703125, 270.330810546875, 0.9860028624534607, 954.874755859375, 296.9434814453125, 0.9912610650062561, 911.9517822265625, 312.9535217285156, 0.990999162197113, 932.2732543945312, 245.6304473876953, 0.9407309293746948, 973.5128784179688, 273.2115783691406, 0.9602832794189453, 889.4967651367188, 315.90740966796875, 0.9788914322853088, 1031.2127685546875, 215.60321044921875, 0.9482892155647278, 918.384521484375, 416.38250732421875, 0.9658883213996887, 1069.0701904296875, 138.14553833007812, 0.9745051860809326, 985.941162109375, 479.8117980957031, 0.9442938566207886, 1069.223388671875, 113.98526000976562, 0.9515703320503235, 1013.3597412109375, 491.8509826660156, 0.9413021206855774, 915.57373046875, 161.7601318359375, 0.9161052703857422, 1061.5390625, 81.46096801757812, 0.9032226204872131, 1048.6201171875, 505.7515869140625, 0.838219165802002, 1122.276611328125, 794.435791015625, 0.8617158532142639, 859.9019775390625, 807.0243530273438, 0.9340890049934387], "score": 3.180316925048828, "box": [822.215087890625, 118.9630355834961, 296.548095703125, 706.5737075805664], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06755279004573822, 0.07700355350971222, 0.04258180409669876], [-0.04611055552959442, 0.09682454913854599, -0.017529860138893127], [-0.02696685865521431, -0.10035358369350433, 0.011403657495975494], [0.220304936170578, 0.4258812665939331, 0.032198466360569], [-0.13951373100280762, 0.47196704149246216, -0.040675703436136246], [-0.02968764677643776, -0.22476305067539215, -0.032974723726511], [0.3128119111061096, 0.7926260232925415, 0.16067084670066833], [-0.24371859431266785, 0.7586630582809448, 0.21641284227371216], [-0.020728297531604767, -0.2683437466621399, -0.06586887687444687], [0.4259837567806244, 0.8402836918830872, 0.1128532662987709], [-0.28446444869041443, 0.8772977590560913, 0.1767527163028717], [-0.08778943866491318, -0.46313154697418213, -0.1012512668967247], [-0.01504473015666008, -0.4040869474411011, -0.030007600784301758], [-0.11913231760263443, -0.35187268257141113, -0.12207566946744919], [-0.06721945106983185, -0.523605465888977, -0.1555241048336029], [0.034907933324575424, -0.4697193503379822, 0.007392819970846176], [-0.17619676887989044, -0.3462086319923401, -0.19828814268112183], [0.2010396420955658, -0.6430750489234924, 0.10940099507570267], [-0.1042352020740509, -0.11454765498638153, -0.27158015966415405], [0.3083574175834656, -0.860241174697876, 0.06289390474557877], [0.06314657628536224, 0.05250351130962372, -0.3645661771297455], [0.3086736798286438, -0.9427671432495117, 0.05617654323577881], [0.1253393143415451, 0.07775162160396576, -0.41260960698127747]]}, {"image_id": "247.jpg", "category_id": 1, "keypoints": [1247.9849853515625, 482.3681640625, 0.9827370047569275, 1272.6497802734375, 518.7159423828125, 0.9904730916023254, 1226.478515625, 523.0541381835938, 0.9847589135169983, 1249.0555419921875, 437.77545166015625, 0.9870200157165527, 1249.1251220703125, 668.8236694335938, 0.9653987288475037, 1132.0499267578125, 640.6456298828125, 0.9758159518241882, 1232.8243408203125, 385.8826599121094, 0.9891550540924072, 1286.3236083984375, 806.2630615234375, 0.925365149974823, 1121.4638671875, 802.63232421875, 0.8576385378837585, 1218.2532958984375, 370.4268493652344, 0.990689754486084, 1257.0714111328125, 861.5943603515625, 0.8853115439414978, 1082.217529296875, 824.7327880859375, 0.8385169506072998, 1180.177001953125, 296.9417724609375, 0.9901851415634155, 1221.340576171875, 311.44927978515625, 0.9910435676574707, 1176.37841796875, 341.32525634765625, 0.9948752522468567, 1161.0313720703125, 275.3157958984375, 0.9664157032966614, 1225.25927734375, 282.64837646484375, 0.9727891087532043, 1145.5916748046875, 351.06695556640625, 0.9900257587432861, 1158.496826171875, 194.25070190429688, 0.9615997076034546, 1106.216064453125, 448.8160400390625, 0.9713165760040283, 1075.393310546875, 145.13442993164062, 0.9302108287811279, 1037.885986328125, 489.9336853027344, 0.9501223564147949, 1063.5167236328125, 122.1300048828125, 0.9472805261611938, 1016.1942138671875, 493.21380615234375, 0.9326004981994629, 1097.3575439453125, 226.9877471923828, 0.9530323147773743, 1041.6136474609375, 87.898193359375, 0.9602236151695251, 991.8397216796875, 499.3686218261719, 0.9033734798431396, 1228.6180419921875, 861.2142944335938, 0.9344546794891357, 1085.4049072265625, 838.1416625976562, 0.8858838081359863], "score": 3.1818432807922363, "box": [998.73046875, 107.76560974121094, 345.3472900390625, 748.6351470947266], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05816177651286125, 0.08585254102945328, -0.042912259697914124], [-0.043278370052576065, 0.09225420653820038, 0.04133796691894531], [0.009679712355136871, -0.10126717388629913, 0.02379961684346199], [-0.009678777307271957, 0.44224631786346436, -0.1845720112323761], [-0.2882050573825836, 0.38942134380340576, -0.04966092109680176], [-0.035606589168310165, -0.22243569791316986, 0.014195945113897324], [0.09258297830820084, 0.758219838142395, 0.0561312735080719], [-0.31518664956092834, 0.7980748414993286, -0.05529550462961197], [-0.07444978505373001, -0.25416839122772217, -0.008110282942652702], [0.028878334909677505, 0.8711970448493958, 0.02501121163368225], [-0.4302426874637604, 0.8605016469955444, -0.07973557710647583], [-0.15695443749427795, -0.4391319751739502, 0.046294040977954865], [-0.06686651706695557, -0.3949810862541199, -0.01493307575583458], [-0.1580514907836914, -0.3268142342567444, 0.07973869144916534], [-0.20847618579864502, -0.49223268032073975, 0.008415315300226212], [-0.061102189123630524, -0.4640405774116516, -0.072598397731781], [-0.24108918011188507, -0.30190223455429077, 0.11800207197666168], [-0.21338818967342377, -0.6449432969093323, -0.1971362978219986], [-0.33769258856773376, -0.06569181382656097, 0.06949148327112198], [-0.42844823002815247, -0.7745633125305176, -0.1772914081811905], [-0.4960978329181671, 0.029788896441459656, -0.11325538903474808], [-0.45452746748924255, -0.8340096473693848, -0.12449057400226593], [-0.5491987466812134, 0.03848922252655029, -0.177272230386734]]}, {"image_id": "248.jpg", "category_id": 1, "keypoints": [962.2534790039062, 470.6805114746094, 0.9744542241096497, 988.9130249023438, 502.3095703125, 0.988733172416687, 945.907470703125, 509.76641845703125, 0.9899926781654358, 952.0366821289062, 428.04449462890625, 0.9925102591514587, 1058.0755615234375, 648.213134765625, 0.9821796417236328, 906.180419921875, 654.580078125, 0.9860127568244934, 949.0236206054688, 377.4007568359375, 0.9876224994659424, 1088.798828125, 769.79833984375, 0.9227993488311768, 868.2073364257812, 748.1236572265625, 0.9449635744094849, 952.426513671875, 358.2808837890625, 0.9887748956680298, 1126.6837158203125, 788.14990234375, 0.8928384184837341, 853.6953735351562, 793.1324462890625, 0.9394035935401917, 923.9649047851562, 279.22515869140625, 0.9861893057823181, 953.7179565429688, 304.1815185546875, 0.9906456470489502, 912.4216918945312, 322.2740783691406, 0.9903017282485962, 934.1451416015625, 253.9207305908203, 0.9450873732566833, 971.2122802734375, 277.755615234375, 0.963058590888977, 891.3568115234375, 325.96820068359375, 0.9781754612922668, 1027.3162841796875, 214.13311767578125, 0.9304313063621521, 934.442138671875, 421.760498046875, 0.9513875246047974, 1071.3663330078125, 144.10861206054688, 0.9732603430747986, 1010.3585815429688, 481.207763671875, 0.9661819934844971, 1070.538330078125, 115.0599365234375, 0.96770840883255, 1038.07470703125, 490.4403076171875, 0.9027085304260254, 916.9354858398438, 172.62899780273438, 0.9074444770812988, 1065.6854248046875, 86.38461303710938, 0.9127408266067505, 1067.29248046875, 500.0663146972656, 0.8827102184295654, 1123.8702392578125, 793.13134765625, 0.8925113677978516, 863.831298828125, 803.14599609375, 0.9341478943824768], "score": 3.190732955932617, "box": [813.51025390625, 134.9244842529297, 312.4278564453125, 688.9718170166016], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06950453668832779, 0.07857905328273773, 0.03945128619670868], [-0.04660533741116524, 0.09741095453500748, -0.02029399573802948], [-0.02777228131890297, -0.10123978555202484, 0.015613552182912827], [0.23111248016357422, 0.4209635853767395, -0.010324161499738693], [-0.14189057052135468, 0.4683148264884949, -0.08597643673419952], [-0.032915957272052765, -0.22707901895046234, -0.025795582681894302], [0.32211196422576904, 0.7656300067901611, 0.17547015845775604], [-0.24683277308940887, 0.7252786755561829, 0.2043296843767166], [-0.02568880096077919, -0.27204281091690063, -0.05843885615468025], [0.43390336632728577, 0.8173308372497559, 0.12621136009693146], [-0.2853868305683136, 0.8457571268081665, 0.16466110944747925], [-0.09081173688173294, -0.4684337377548218, -0.10158899426460266], [-0.019024446606636047, -0.4106941223144531, -0.02623259648680687], [-0.12330479174852371, -0.3557215929031372, -0.12045283615589142], [-0.06882216781377792, -0.5344712138175964, -0.14803546667099], [0.023367077112197876, -0.48660147190093994, 0.002857014536857605], [-0.17688722908496857, -0.3509892225265503, -0.20062583684921265], [0.17795543372631073, -0.6698157787322998, 0.109510138630867], [-0.07806943356990814, -0.12982772290706635, -0.2804871201515198], [0.3094715476036072, -0.8798819780349731, 0.12490716576576233], [0.10679532587528229, 0.025646626949310303, -0.36394721269607544], [0.3076503276824951, -0.9621820449829102, 0.13929352164268494], [0.17431171238422394, 0.05294163525104523, -0.40444159507751465]]}, {"image_id": "248.jpg", "category_id": 1, "keypoints": [1262.2449951171875, 481.8831787109375, 0.9800987243652344, 1281.4454345703125, 517.25634765625, 0.99033522605896, 1245.3157958984375, 521.2564086914062, 0.9872244596481323, 1263.7293701171875, 438.2724914550781, 0.9883468151092529, 1253.262939453125, 661.6295776367188, 0.9674726128578186, 1154.75927734375, 639.874755859375, 0.9713753461837769, 1247.0059814453125, 389.65728759765625, 0.988100528717041, 1292.23095703125, 804.3381958007812, 0.9173528552055359, 1147.9625244140625, 801.84033203125, 0.9179908037185669, 1232.327880859375, 375.3726806640625, 0.9903777837753296, 1271.3909912109375, 857.6937255859375, 0.868874192237854, 1123.177001953125, 824.898681640625, 0.8080659508705139, 1199.499755859375, 305.4686279296875, 0.990170419216156, 1234.62255859375, 320.27142333984375, 0.9925883412361145, 1197.92822265625, 346.11297607421875, 0.992956817150116, 1182.279541015625, 283.8428955078125, 0.9672009944915771, 1238.3505859375, 295.08782958984375, 0.9787461161613464, 1169.950927734375, 355.4700012207031, 0.9897193908691406, 1178.7666015625, 222.864501953125, 0.9641000628471375, 1129.2791748046875, 447.78094482421875, 0.975653886795044, 1084.56640625, 162.63235473632812, 0.9287230968475342, 1059.538330078125, 487.2142639160156, 0.9645763039588928, 1069.6505126953125, 141.07022094726562, 0.9235865473747253, 1037.7542724609375, 498.18603515625, 0.9570293426513672, 1143.969482421875, 233.5264892578125, 0.9394487738609314, 1037.527587890625, 108.3040771484375, 0.945509135723114, 1015.8733520507812, 508.2696533203125, 0.924082338809967, 1249.5316162109375, 861.3372192382812, 0.9049117565155029, 1125.9580078125, 835.41796875, 0.8817643523216248], "score": 3.187601089477539, "box": [1024.2734375, 134.71844482421875, 325.8565673828125, 729.187744140625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0474279522895813, 0.08444607257843018, -0.05538720265030861], [-0.03248303756117821, 0.09251714497804642, 0.04825366660952568], [0.013943921774625778, -0.10027451813220978, 0.02220984920859337], [-0.033952221274375916, 0.44045838713645935, -0.1888679713010788], [-0.2728038430213928, 0.40413761138916016, 0.016445264220237732], [-0.036348845809698105, -0.2188984900712967, 0.01065969280898571], [0.07610537111759186, 0.8020206689834595, -0.03375180438160896], [-0.2864738702774048, 0.8075858354568481, 0.07479327917098999], [-0.07564320415258408, -0.2517707943916321, -0.007906483486294746], [0.02576565183699131, 0.919642984867096, -0.06971076130867004], [-0.38052892684936523, 0.889580488204956, 0.029898736625909805], [-0.15250800549983978, -0.43857431411743164, 0.04370098188519478], [-0.07193212956190109, -0.39069831371307373, -0.02612779475748539], [-0.14621688425540924, -0.32979220151901245, 0.08503526449203491], [-0.19833780825138092, -0.4889495372772217, -0.004051525145769119], [-0.067096047103405, -0.4529266357421875, -0.0904870331287384], [-0.22374221682548523, -0.3053968548774719, 0.13277891278266907], [-0.21362797915935516, -0.6038631200790405, -0.2536138892173767], [-0.32826218008995056, -0.06896646320819855, 0.12308439612388611], [-0.42365169525146484, -0.7401460409164429, -0.2380899339914322], [-0.5180466771125793, 0.0382055789232254, -0.016926590353250504], [-0.46367397904396057, -0.8036460876464844, -0.20203852653503418], [-0.5786585211753845, 0.0687694102525711, -0.06504391133785248]]}, {"image_id": "249.jpg", "category_id": 1, "keypoints": [1273.9058837890625, 482.4815979003906, 0.9810453653335571, 1292.269775390625, 518.0009765625, 0.9896129369735718, 1261.1513671875, 519.76953125, 0.9847218990325928, 1275.195556640625, 439.2148132324219, 0.9895552396774292, 1249.0870361328125, 653.2424926757812, 0.9767765402793884, 1172.6070556640625, 637.7539672851562, 0.969024658203125, 1256.316650390625, 392.79754638671875, 0.9857009053230286, 1297.128662109375, 802.5419921875, 0.9046034812927246, 1199.2730712890625, 792.7408447265625, 0.919159471988678, 1240.3079833984375, 378.9745788574219, 0.9864873290061951, 1264.0714111328125, 856.4558715820312, 0.8865143060684204, 1155.3746337890625, 818.6812133789062, 0.9248911142349243, 1218.324951171875, 306.76654052734375, 0.9906063675880432, 1246.2880859375, 324.75848388671875, 0.990925133228302, 1215.5018310546875, 345.5347595214844, 0.9936689138412476, 1201.5616455078125, 282.45037841796875, 0.9713195562362671, 1246.3026123046875, 300.3240966796875, 0.9765774607658386, 1187.405029296875, 353.3068542480469, 0.9893550276756287, 1179.6441650390625, 235.88287353515625, 0.9424170255661011, 1143.7669677734375, 445.60137939453125, 0.9749783277511597, 1093.2696533203125, 175.04986572265625, 0.9469435214996338, 1075.554443359375, 487.9039001464844, 0.9639846086502075, 1073.6710205078125, 156.95761108398438, 0.9438298344612122, 1054.745361328125, 500.4937744140625, 0.9572755098342896, 1201.4090576171875, 221.3603515625, 0.9374758005142212, 1040.8055419921875, 131.06216430664062, 0.9470282196998596, 1031.6099853515625, 508.4476013183594, 0.939228355884552, 1231.62060546875, 852.6868896484375, 0.9061914682388306, 1144.4775390625, 824.8472900390625, 0.9328114986419678], "score": 3.1982052326202393, "box": [1029.60791015625, 149.30422973632812, 334.52978515625, 699.5672302246094], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0433584600687027, 0.08626604080200195, -0.05675482004880905], [-0.02115030214190483, 0.09076190739870071, 0.057910673320293427], [0.012231986038386822, -0.1023222804069519, 0.014161055907607079], [-0.0796261578798294, 0.4344438910484314, -0.18080006539821625], [-0.2566836476325989, 0.40758562088012695, 0.08460622280836105], [-0.0446680411696434, -0.21764731407165527, -0.00017387233674526215], [0.04789494350552559, 0.7993688583374023, -0.04430762678384781], [-0.1839970201253891, 0.8005213737487793, 0.17324888706207275], [-0.08735036104917526, -0.2476971447467804, -0.01642148196697235], [-0.02297326736152172, 0.9107153415679932, -0.062111206352710724], [-0.29597705602645874, 0.8690808415412903, 0.1939491182565689], [-0.1337583065032959, -0.444328248500824, 0.03726416081190109], [-0.07053010910749435, -0.3850717544555664, -0.041525959968566895], [-0.13393466174602509, -0.3366307020187378, 0.08235199749469757], [-0.1786034107208252, -0.5024778842926025, -0.0015092771500349045], [-0.07592885196208954, -0.44693440198898315, -0.10641011595726013], [-0.2090485394001007, -0.3178078532218933, 0.13629385828971863], [-0.24295108020305634, -0.5847383737564087, -0.26291781663894653], [-0.3197248876094818, -0.08307051658630371, 0.14390917122364044], [-0.44749149680137634, -0.7306950688362122, -0.24877068400382996], [-0.514738142490387, 0.03716591000556946, 0.021225368604063988], [-0.4993983209133148, -0.784020185470581, -0.2109159380197525], [-0.576924204826355, 0.07457493245601654, -0.019973238930106163]]}, {"image_id": "249.jpg", "category_id": 1, "keypoints": [961.2416381835938, 471.93896484375, 0.9735771417617798, 985.5946655273438, 500.26654052734375, 0.9864757657051086, 945.87841796875, 509.8786926269531, 0.9900082349777222, 951.1680908203125, 432.11724853515625, 0.9902738332748413, 1049.4412841796875, 637.6133422851562, 0.9807261824607849, 905.3048706054688, 653.925048828125, 0.9812496900558472, 947.476806640625, 381.6146240234375, 0.9880591630935669, 1096.4913330078125, 761.89013671875, 0.9173369407653809, 868.812744140625, 765.117431640625, 0.9298222661018372, 951.4510498046875, 363.00555419921875, 0.9898073673248291, 1139.548095703125, 776.9393920898438, 0.880111813545227, 861.6666870117188, 798.924072265625, 0.9307562708854675, 923.2824096679688, 286.74102783203125, 0.985417366027832, 951.9224243164062, 311.279052734375, 0.9909796714782715, 913.1053466796875, 329.620361328125, 0.9892420768737793, 933.31884765625, 260.6830749511719, 0.9389671683311462, 969.4161376953125, 284.5740966796875, 0.9741941690444946, 894.5518798828125, 334.76727294921875, 0.9745604991912842, 1022.4874267578125, 223.36068725585938, 0.9108077883720398, 946.4747924804688, 425.9572448730469, 0.9558900594711304, 1071.84814453125, 163.85903930664062, 0.9804152250289917, 1026.3978271484375, 477.9115295410156, 0.971989631652832, 1075.6334228515625, 135.14712524414062, 0.9741300940513611, 1052.091552734375, 486.80865478515625, 0.9371238946914673, 916.5222778320312, 176.90408325195312, 0.904413104057312, 1073.0399169921875, 104.32272338867188, 0.9398576021194458, 1086.425537109375, 485.2960510253906, 0.875135064125061, 1143.536376953125, 778.050048828125, 0.894425094127655, 868.8603515625, 801.1163940429688, 0.9186927080154419], "score": 3.1845712661743164, "box": [810.4489135742188, 139.94952392578125, 329.51043701171875, 686.2384643554688], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06347678601741791, 0.07458414137363434, 0.052574411034584045], [-0.04274242743849754, 0.09830117225646973, -0.019187917932868004], [-0.02947533130645752, -0.1005631685256958, 0.00493432953953743], [0.22455686330795288, 0.41918623447418213, 0.07809960097074509], [-0.14431388676166534, 0.4711611270904541, -0.04993924871087074], [-0.03505045920610428, -0.2272983193397522, -0.033377859741449356], [0.35992270708084106, 0.7690889835357666, 0.2169944792985916], [-0.247457355260849, 0.7818356156349182, 0.1791774332523346], [-0.02561767026782036, -0.27256283164024353, -0.06414247304201126], [0.4771636128425598, 0.807632327079773, 0.1701531857252121], [-0.2704916000366211, 0.894745409488678, 0.11518891155719757], [-0.09339849650859833, -0.4655701518058777, -0.10985025018453598], [-0.02454284392297268, -0.4097316861152649, -0.03186739236116409], [-0.12150353193283081, -0.3528834581375122, -0.12959009408950806], [-0.06909298896789551, -0.5326647162437439, -0.15409517288208008], [0.021681001409888268, -0.4814826250076294, -0.0007845759391784668], [-0.1701659858226776, -0.33821725845336914, -0.21061399579048157], [0.17728158831596375, -0.6679813861846924, 0.09550085663795471], [-0.04754435271024704, -0.1215362548828125, -0.2598263621330261], [0.33489304780960083, -0.8557168841362, 0.06418643891811371], [0.16066503524780273, 0.020402565598487854, -0.2951974868774414], [0.34577712416648865, -0.9353802800178528, 0.08471113443374634], [0.23613500595092773, 0.047278910875320435, -0.3157300353050232]]}, {"image_id": "250.jpg", "category_id": 1, "keypoints": [1284.3128662109375, 484.3370361328125, 0.980209469795227, 1300.85009765625, 519.98046875, 0.989398181438446, 1270.816162109375, 523.0175170898438, 0.9870969653129578, 1286.729736328125, 441.2494201660156, 0.9912431836128235, 1242.8626708984375, 644.7937622070312, 0.9494496583938599, 1188.9825439453125, 648.6644897460938, 0.9755741953849792, 1268.450927734375, 394.8521423339844, 0.9858918786048889, 1287.8974609375, 804.9818725585938, 0.8879826664924622, 1234.803466796875, 803.6434326171875, 0.9273295402526855, 1252.4227294921875, 381.48760986328125, 0.9868985414505005, 1256.892822265625, 853.0505981445312, 0.9140114188194275, 1185.9639892578125, 825.4749755859375, 0.9230174422264099, 1229.4163818359375, 305.45263671875, 0.9898129105567932, 1258.5787353515625, 324.98516845703125, 0.9903159141540527, 1226.9349365234375, 346.6737365722656, 0.9928406476974487, 1211.8851318359375, 282.649658203125, 0.9709643125534058, 1261.223876953125, 302.09246826171875, 0.9702219367027283, 1198.28759765625, 355.4793701171875, 0.9899758100509644, 1192.050048828125, 255.4293670654297, 0.9386430978775024, 1160.533935546875, 450.4509582519531, 0.9710822105407715, 1102.7767333984375, 195.64962768554688, 0.9353843331336975, 1096.264404296875, 492.92303466796875, 0.9445343613624573, 1080.1033935546875, 178.67437744140625, 0.957008957862854, 1074.205810546875, 508.5784606933594, 0.9429416656494141, 1214.9427490234375, 213.62899780273438, 0.9294805526733398, 1046.56396484375, 143.2242431640625, 0.9544048309326172, 1050.8055419921875, 519.8124389648438, 0.9045630097389221, 1231.4617919921875, 853.3646240234375, 0.8348305225372314, 1169.7850341796875, 828.6326904296875, 0.9318720698356628], "score": 3.1929140090942383, "box": [1040.542236328125, 159.02684020996094, 326.66650390625, 685.8706817626953], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03881276771426201, 0.08591442555189133, -0.061446160078048706], [-0.022033987566828728, 0.09240642189979553, 0.056048307567834854], [0.01642843708395958, -0.10253985226154327, 0.017368964850902557], [-0.12393595278263092, 0.4041755199432373, -0.21181540191173553], [-0.23648394644260406, 0.4230712056159973, 0.06622862815856934], [-0.041673444211483, -0.2181134670972824, -0.00024130195379257202], [-0.009687211364507675, 0.7856770157814026, -0.11937302350997925], [-0.11865279078483582, 0.8080582618713379, 0.1343846172094345], [-0.086459219455719, -0.24573136866092682, -0.01751128025352955], [-0.08304691314697266, 0.8909931182861328, -0.15583062171936035], [-0.23851914703845978, 0.863656759262085, 0.15186569094657898], [-0.12796081602573395, -0.4444667100906372, 0.03884401544928551], [-0.06660431623458862, -0.3841676115989685, -0.04220474511384964], [-0.13060279190540314, -0.33542507886886597, 0.08362069725990295], [-0.17567043006420135, -0.49949878454208374, -0.0013701878488063812], [-0.06573723256587982, -0.4414644241333008, -0.11259607970714569], [-0.20361171662807465, -0.31490999460220337, 0.14159084856510162], [-0.2425151914358139, -0.5376949906349182, -0.28737130761146545], [-0.29919305443763733, -0.07404477894306183, 0.14501075446605682], [-0.45202311873435974, -0.67596834897995, -0.30273765325546265], [-0.4921324551105499, 0.051929667592048645, 0.025890324264764786], [-0.5173635482788086, -0.7267306447029114, -0.28906187415122986], [-0.5575276613235474, 0.09797190129756927, 0.000911027193069458]]}, {"image_id": "250.jpg", "category_id": 1, "keypoints": [957.5110473632812, 475.3171691894531, 0.9766673445701599, 982.3629150390625, 504.0905456542969, 0.9883712530136108, 941.9627075195312, 514.1109619140625, 0.9895906448364258, 948.2952880859375, 436.89019775390625, 0.9910880327224731, 1046.0771484375, 635.0062255859375, 0.9765134453773499, 914.8410034179688, 662.0941162109375, 0.9819742441177368, 947.3062744140625, 386.08746337890625, 0.9858632683753967, 1100.2647705078125, 762.9784545898438, 0.9167614579200745, 866.4440307617188, 767.99853515625, 0.9389731884002686, 952.592041015625, 367.8907165527344, 0.9900124669075012, 1138.5631103515625, 793.7938232421875, 0.8576487302780151, 855.6953125, 806.7875366210938, 0.9379726052284241, 927.3508911132812, 291.192138671875, 0.9865294098854065, 953.2119750976562, 315.0201416015625, 0.9879618883132935, 915.0200805664062, 334.4089050292969, 0.9874770641326904, 940.2488403320312, 266.3948974609375, 0.9438807964324951, 970.0624389648438, 286.78619384765625, 0.9760259389877319, 898.1470947265625, 336.784912109375, 0.976411759853363, 1022.0772094726562, 238.97415161132812, 0.8982544541358948, 952.6884155273438, 424.2547912597656, 0.93320232629776, 1072.998779296875, 175.42544555664062, 0.9675338864326477, 1038.8262939453125, 476.9599609375, 0.9579086899757385, 1075.5001220703125, 149.76177978515625, 0.9628300070762634, 1063.99609375, 492.54833984375, 0.9356222748756409, 917.7628784179688, 190.04461669921875, 0.9278973340988159, 1079.69287109375, 125.32717895507812, 0.8617817759513855, 1099.3216552734375, 502.61572265625, 0.8700457215309143, 1139.046142578125, 807.7430419921875, 0.8979687690734863, 867.1926879882812, 815.7109375, 0.9355525970458984], "score": 3.1814260482788086, "box": [804.0706787109375, 174.58810424804688, 355.506591796875, 650.0074768066406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.06322222203016281, 0.0732036679983139, 0.05505466088652611], [-0.043441180139780045, 0.09869393706321716, -0.016383636742830276], [-0.028967132791876793, -0.1009545773267746, 0.001823142170906067], [0.2307872772216797, 0.4146583080291748, 0.07660754024982452], [-0.1096794381737709, 0.48031288385391235, -0.021867362782359123], [-0.02624145708978176, -0.22727225720882416, -0.036130405962467194], [0.3804517388343811, 0.7638279795646667, 0.20185121893882751], [-0.24922049045562744, 0.7872359156608582, 0.19257093966007233], [-0.013160612434148788, -0.27167755365371704, -0.06673510372638702], [0.4769587814807892, 0.8351242542266846, 0.14688192307949066], [-0.2787768542766571, 0.8962424993515015, 0.1246458888053894], [-0.07674426585435867, -0.46567875146865845, -0.11491034924983978], [-0.01021101325750351, -0.4093175530433655, -0.03521706908941269], [-0.10649225115776062, -0.3533706068992615, -0.1348634958267212], [-0.042036931961774826, -0.5291594862937927, -0.1567111313343048], [0.030201882123947144, -0.48301196098327637, -0.0003717467188835144], [-0.14998336136341095, -0.3436480760574341, -0.21966961026191711], [0.18291114270687103, -0.6347359418869019, 0.1473473459482193], [-0.019322628155350685, -0.13374732434749603, -0.2765336036682129], [0.3368060886859894, -0.827569305896759, 0.1583961546421051], [0.19252073764801025, -0.002361863851547241, -0.32688623666763306], [0.34506601095199585, -0.9092265963554382, 0.17073450982570648], [0.25733482837677, 0.045120492577552795, -0.34667670726776123]]}, {"image_id": "251.jpg", "category_id": 1, "keypoints": [1300.4969482421875, 483.97711181640625, 0.9815055131912231, 1316.264404296875, 521.2813110351562, 0.984609842300415, 1290.5628662109375, 524.4359741210938, 0.9871385097503662, 1304.763671875, 440.4137878417969, 0.9907457232475281, 1236.7276611328125, 637.4066162109375, 0.9632204174995422, 1218.1544189453125, 657.8765258789062, 0.9600629806518555, 1282.8297119140625, 393.97540283203125, 0.986647367477417, 1288.869384765625, 800.253662109375, 0.8600747585296631, 1268.7421875, 812.52490234375, 0.9492796659469604, 1265.1126708984375, 380.9606628417969, 0.983534574508667, 1250.637451171875, 836.83935546875, 0.7623525857925415, 1220.120361328125, 830.9169311523438, 0.9322059750556946, 1239.57275390625, 301.999755859375, 0.9900491833686829, 1267.72314453125, 321.43170166015625, 0.9891798496246338, 1239.20166015625, 345.05023193359375, 0.9929075241088867, 1219.7685546875, 278.9833984375, 0.9612494111061096, 1267.09814453125, 296.28033447265625, 0.977201521396637, 1209.771728515625, 355.08746337890625, 0.9871643781661987, 1182.04296875, 260.29974365234375, 0.9376350045204163, 1175.76904296875, 456.9888916015625, 0.9717376232147217, 1102.2491455078125, 205.62603759765625, 0.9424834847450256, 1103.7303466796875, 498.8314514160156, 0.9573630690574646, 1081.0703125, 187.07083129882812, 0.952552080154419, 1085.0335693359375, 512.0922241210938, 0.9430399537086487, 1218.9754638671875, 210.04415893554688, 0.9519619345664978, 1057.527099609375, 146.59823608398438, 0.9447134733200073, 1061.022705078125, 520.4912719726562, 0.9129015803337097, 1234.34521484375, 844.20654296875, 0.8154377341270447, 1202.4041748046875, 831.44873046875, 0.9327192902565002], "score": 3.185944080352783, "box": [1055.944580078125, 163.37684631347656, 332.135986328125, 697.1894989013672], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03436674922704697, 0.08645239472389221, -0.06520440429449081], [-0.015748580917716026, 0.09323190152645111, 0.05896126106381416], [0.017205622047185898, -0.1042604148387909, 0.01562291756272316], [-0.17890720069408417, 0.37640708684921265, -0.21069097518920898], [-0.20093272626399994, 0.4405418038368225, 0.09357789158821106], [-0.03966923803091049, -0.2220889925956726, 0.005007172003388405], [-0.05078564211726189, 0.7569717764854431, -0.12377068400382996], [-0.07111260294914246, 0.8241256475448608, 0.1609252393245697], [-0.08443966507911682, -0.2535857856273651, -0.007353801280260086], [-0.148331418633461, 0.8470079898834229, -0.14336463809013367], [-0.19161680340766907, 0.8734188079833984, 0.19336991012096405], [-0.14674051105976105, -0.44924497604370117, 0.048725683242082596], [-0.07956606894731522, -0.39490073919296265, -0.03372316062450409], [-0.1378636360168457, -0.3397458791732788, 0.09489116072654724], [-0.19763433933258057, -0.5018884539604187, 0.009388767182826996], [-0.08725046366453171, -0.45763152837753296, -0.10031704604625702], [-0.21488523483276367, -0.31502020359039307, 0.14755608141422272], [-0.2930552065372467, -0.5275011658668518, -0.25694936513900757], [-0.2982366681098938, -0.06942802667617798, 0.12218289077281952], [-0.5022329688072205, -0.6692394614219666, -0.26946377754211426], [-0.4949880540370941, 0.043253928422927856, -0.006380241364240646], [-0.564286470413208, -0.7253026962280273, -0.2568812668323517], [-0.5513564944267273, 0.0823533684015274, -0.05570201203227043]]}, {"image_id": "251.jpg", "category_id": 1, "keypoints": [957.6611328125, 483.78338623046875, 0.9731923937797546, 980.2728881835938, 511.001708984375, 0.9885071516036987, 943.8338012695312, 522.6963500976562, 0.9898863434791565, 947.5768432617188, 446.694091796875, 0.9912089705467224, 1047.119140625, 635.7684326171875, 0.9783406257629395, 919.9798583984375, 671.4193725585938, 0.9809638261795044, 946.817626953125, 395.4803771972656, 0.9888821244239807, 1103.30908203125, 759.1275634765625, 0.9295965433120728, 864.9388427734375, 769.2107543945312, 0.9417043328285217, 953.51806640625, 376.742431640625, 0.9890637993812561, 1143.03955078125, 782.306640625, 0.8716310858726501, 857.7942504882812, 812.2338256835938, 0.9455257654190063, 929.413818359375, 299.6829833984375, 0.986329197883606, 951.5321655273438, 325.6688232421875, 0.99065762758255, 919.108154296875, 342.1324462890625, 0.9860626459121704, 942.8133544921875, 273.7986145019531, 0.9502634406089783, 966.3839721679688, 300.568115234375, 0.9725663661956787, 904.9144287109375, 344.8316650390625, 0.9731550216674805, 1015.042724609375, 250.0823211669922, 0.8702873587608337, 966.106201171875, 430.8428955078125, 0.9445731043815613, 1074.9415283203125, 191.256591796875, 0.9571004509925842, 1051.968505859375, 480.95745849609375, 0.9535572528839111, 1079.740478515625, 168.2947998046875, 0.9417526721954346, 1083.9833984375, 491.5687561035156, 0.9426333904266357, 923.9833374023438, 197.27194213867188, 0.9398748874664307, 1080.093994140625, 138.52255249023438, 0.9135878682136536, 1125.27392578125, 500.9998779296875, 0.8682574033737183, 1148.3502197265625, 794.6582641601562, 0.8900789618492126, 869.701171875, 822.1527099609375, 0.930641233921051], "score": 3.184666156768799, "box": [802.3050537109375, 173.46481323242188, 360.314208984375, 655.3138122558594], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05819002538919449, 0.07069222629070282, 0.06323403120040894], [-0.038567353039979935, 0.10009723901748657, -0.019537808373570442], [-0.031533896923065186, -0.10000725090503693, -0.003333143889904022], [0.23771458864212036, 0.40499019622802734, 0.10057573020458221], [-0.09674462676048279, 0.48334985971450806, -0.013016712851822376], [-0.027377484366297722, -0.22696463763713837, -0.03920137882232666], [0.3967375159263611, 0.7503714561462402, 0.22581060230731964], [-0.25767791271209717, 0.7734874486923218, 0.21015481650829315], [-0.00978994183242321, -0.2711508870124817, -0.06774123758077621], [0.5019233226776123, 0.8094726204872131, 0.17233173549175262], [-0.2761819064617157, 0.8909964561462402, 0.1534557342529297], [-0.07349355518817902, -0.46554672718048096, -0.11333389580249786], [-0.014446530491113663, -0.40689295530319214, -0.02970166504383087], [-0.09749239683151245, -0.3538020849227905, -0.1415325552225113], [-0.03289559483528137, -0.5301344394683838, -0.14754806458950043], [0.025388717651367188, -0.4734311103820801, 0.017534561455249786], [-0.13343986868858337, -0.33967500925064087, -0.22897543013095856], [0.16320446133613586, -0.6280207633972168, 0.17695669829845428], [0.013909174129366875, -0.13579754531383514, -0.2635517418384552], [0.33940577507019043, -0.8012562990188599, 0.17955568432807922], [0.22784212231636047, -0.003973022103309631, -0.30396461486816406], [0.35640981793403625, -0.8822956085205078, 0.18466293811798096], [0.3054766356945038, 0.023042067885398865, -0.3132038712501526]]}, {"image_id": "252.jpg", "category_id": 1, "keypoints": [1308.078369140625, 483.38299560546875, 0.9822685718536377, 1321.2269287109375, 519.232177734375, 0.9869173169136047, 1301.6636962890625, 521.9891967773438, 0.9869436621665955, 1314.0401611328125, 439.6243591308594, 0.9920363426208496, 1231.4146728515625, 644.752685546875, 0.9768652319908142, 1250.903076171875, 668.7435913085938, 0.9686163663864136, 1292.653076171875, 392.36297607421875, 0.9856483936309814, 1298.706298828125, 803.5999755859375, 0.8609752655029297, 1314.2999267578125, 812.0396118164062, 0.9593612551689148, 1274.8499755859375, 379.2879333496094, 0.9845958352088928, 1263.1656494140625, 837.0796508789062, 0.8496749997138977, 1260.4674072265625, 834.9825439453125, 0.956780731678009, 1253.480224609375, 300.39141845703125, 0.9872779250144958, 1278.1593017578125, 320.6684875488281, 0.9910458922386169, 1252.505859375, 343.34466552734375, 0.9929322600364685, 1233.6541748046875, 278.0809631347656, 0.9567718505859375, 1277.64599609375, 296.7003173828125, 0.97010338306427, 1225.0787353515625, 352.22491455078125, 0.9857684373855591, 1182.5755615234375, 270.91015625, 0.9412434697151184, 1188.31494140625, 452.6414489746094, 0.9726747274398804, 1107.8681640625, 212.6134033203125, 0.9599058032035828, 1117.2093505859375, 493.68280029296875, 0.9535452723503113, 1091.5914306640625, 191.66506958007812, 0.9496815800666809, 1097.06982421875, 506.78033447265625, 0.9633500576019287, 1228.7979736328125, 208.82696533203125, 0.9445810914039612, 1076.397705078125, 145.704833984375, 0.9333406686782837, 1072.6090087890625, 517.8580932617188, 0.9331724643707275, 1243.5767822265625, 837.9093017578125, 0.887351393699646, 1233.666748046875, 834.4932861328125, 0.934217095375061], "score": 3.196648120880127, "box": [1060.1785888671875, 168.024169921875, 344.1612548828125, 681.5055541992188], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.027350064367055893, 0.08614115417003632, -0.06948266923427582], [-0.009255899116396904, 0.09389321506023407, 0.06006602570414543], [0.018712984398007393, -0.10447661578655243, 0.014365367591381073], [-0.1995478868484497, 0.3906678557395935, -0.15598390996456146], [-0.13329944014549255, 0.46704018115997314, 0.1099000871181488], [-0.03891967236995697, -0.2218347042798996, 0.014496833086013794], [-0.03800532966852188, 0.7544497847557068, -0.04700006917119026], [0.035231076180934906, 0.8404311537742615, 0.15734268724918365], [-0.0871436819434166, -0.2487918883562088, 0.004501689225435257], [-0.13403448462486267, 0.8475226163864136, -0.032079923897981644], [-0.08011942356824875, 0.8950262665748596, 0.20008502900600433], [-0.1250632405281067, -0.44965845346450806, 0.0658259391784668], [-0.07170886546373367, -0.38969510793685913, -0.02292785421013832], [-0.12205318361520767, -0.33938366174697876, 0.11156806349754333], [-0.17676027119159698, -0.5010843276977539, 0.0264132022857666], [-0.07970444858074188, -0.4499080777168274, -0.09204930067062378], [-0.19162873923778534, -0.31881725788116455, 0.17556318640708923], [-0.30449554324150085, -0.497040331363678, -0.23191601037979126], [-0.28215131163597107, -0.07359819114208221, 0.16293832659721375], [-0.5051655769348145, -0.6522802710533142, -0.24206146597862244], [-0.488503098487854, 0.044040873646736145, 0.053198862820863724], [-0.5562259554862976, -0.7194175124168396, -0.23291803896427155], [-0.5501501560211182, 0.08341118693351746, 0.010276306420564651]]}, {"image_id": "252.jpg", "category_id": 1, "keypoints": [958.301025390625, 489.0494384765625, 0.9752253890037537, 981.243408203125, 516.1234130859375, 0.9888821840286255, 945.17822265625, 528.372314453125, 0.991473376750946, 946.627685546875, 451.3245849609375, 0.9918800592422485, 1050.841064453125, 639.043212890625, 0.9796429872512817, 927.5667114257812, 677.2427978515625, 0.9775403738021851, 948.261962890625, 400.6082458496094, 0.989506185054779, 1108.5345458984375, 759.7916870117188, 0.9269511699676514, 861.0833129882812, 767.851318359375, 0.9414719939231873, 956.0831298828125, 382.5848388671875, 0.9897657632827759, 1148.2366943359375, 788.6499633789062, 0.8507079482078552, 855.258056640625, 812.7943115234375, 0.9522945284843445, 935.467041015625, 305.37738037109375, 0.9880295991897583, 955.8517456054688, 331.10894775390625, 0.9898224472999573, 923.9617309570312, 349.0616760253906, 0.9850476384162903, 951.7327270507812, 279.0926818847656, 0.9519332647323608, 970.399169921875, 306.2808837890625, 0.9745985865592957, 911.89599609375, 351.734375, 0.9710751175880432, 1018.0953979492188, 253.63067626953125, 0.871432363986969, 980.5218505859375, 438.1298828125, 0.9508236050605774, 1084.8260498046875, 196.91607666015625, 0.9576300382614136, 1063.8216552734375, 483.1684265136719, 0.9597021341323853, 1095.4361572265625, 175.25076293945312, 0.9442412853240967, 1099.6558837890625, 495.99822998046875, 0.935610830783844, 934.4769287109375, 199.83187866210938, 0.9167779684066772, 1105.2454833984375, 148.15017700195312, 0.9256353974342346, 1135.6129150390625, 507.87762451171875, 0.8604104518890381, 1150.577392578125, 808.0352783203125, 0.8921058773994446, 873.1165771484375, 822.041015625, 0.9389757513999939], "score": 3.18782377243042, "box": [805.68701171875, 175.66192626953125, 350.5377197265625, 653.8445434570312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05840010195970535, 0.0681481808423996, 0.06577380746603012], [-0.03616877645254135, 0.1012769564986229, -0.017936810851097107], [-0.033472608774900436, -0.09928303956985474, -0.006099063903093338], [0.24559840559959412, 0.398051381111145, 0.10306230187416077], [-0.07880068570375443, 0.4864732325077057, -0.009883439168334007], [-0.024966932833194733, -0.22438451647758484, -0.0481303371489048], [0.40766671299934387, 0.733046293258667, 0.25038942694664], [-0.269170343875885, 0.7526158690452576, 0.2197696566581726], [-0.004661910235881805, -0.26685285568237305, -0.0775708332657814], [0.5050913095474243, 0.8018858432769775, 0.19399665296077728], [-0.2835436463356018, 0.87239009141922, 0.1668085753917694], [-0.060025181621313095, -0.4610225558280945, -0.13398300111293793], [-0.005872225388884544, -0.40425658226013184, -0.04578205943107605], [-0.08688328415155411, -0.3489273190498352, -0.15797388553619385], [-0.012554241344332695, -0.521297037601471, -0.16740423440933228], [0.03537597134709358, -0.4689045548439026, 0.002855757251381874], [-0.11669810861349106, -0.3308607339859009, -0.24695244431495667], [0.16723717749118805, -0.6257523894309998, 0.16504913568496704], [0.03943527862429619, -0.13307690620422363, -0.27750784158706665], [0.3548119068145752, -0.7861014008522034, 0.17756500840187073], [0.2567512094974518, -0.008671104907989502, -0.32255247235298157], [0.3902040421962738, -0.8588724732398987, 0.19572016596794128], [0.33135986328125, 0.018574684858322144, -0.34545841813087463]]}, {"image_id": "253.jpg", "category_id": 1, "keypoints": [1323.4595947265625, 483.8955078125, 0.9821574091911316, 1336.314453125, 519.3258056640625, 0.9856242537498474, 1322.7003173828125, 522.3265991210938, 0.9870972037315369, 1328.499267578125, 439.98724365234375, 0.9911824464797974, 1248.0684814453125, 649.1825561523438, 0.9771809577941895, 1279.62939453125, 672.4215698242188, 0.9723406434059143, 1304.12744140625, 393.5897521972656, 0.9850177764892578, 1301.5440673828125, 808.4193115234375, 0.8856116533279419, 1366.178955078125, 792.4827880859375, 0.943493664264679, 1284.7215576171875, 380.92242431640625, 0.9796149730682373, 1257.9832763671875, 838.4284057617188, 0.9038158655166626, 1332.9075927734375, 827.8312377929688, 0.9381240606307983, 1260.4000244140625, 300.47955322265625, 0.9873675107955933, 1284.734375, 323.7227783203125, 0.9907914400100708, 1261.579833984375, 342.70245361328125, 0.9928494095802307, 1240.2425537109375, 278.3251953125, 0.9542056322097778, 1284.356689453125, 301.8363342285156, 0.9673417210578918, 1236.6192626953125, 350.60089111328125, 0.9868120551109314, 1202.598876953125, 280.9185791015625, 0.9450539350509644, 1200.1099853515625, 452.53143310546875, 0.9735687375068665, 1118.344970703125, 221.53713989257812, 0.9502545595169067, 1131.509033203125, 495.4468688964844, 0.953131377696991, 1104.329345703125, 200.76821899414062, 0.9224612712860107, 1108.8668212890625, 508.1518249511719, 0.9696528911590576, 1231.5963134765625, 208.01089477539062, 0.9487659335136414, 1088.12548828125, 147.85516357421875, 0.9444283843040466, 1083.4925537109375, 517.7786865234375, 0.947870135307312, 1244.20654296875, 837.3035888671875, 0.9161200523376465, 1307.5489501953125, 831.485107421875, 0.9472642540931702], "score": 3.198331356048584, "box": [1083.4156494140625, 167.29916381835938, 330.3955078125, 684.4715270996094], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.024663180112838745, 0.08612415194511414, -0.0717213898897171], [0.0038117701187729836, 0.09376856684684753, 0.062269557267427444], [0.013743244111537933, -0.10642173886299133, 0.010906998068094254], [-0.1970386654138565, 0.4038323163986206, -0.12522630393505096], [-0.09835455566644669, 0.4734090566635132, 0.12557342648506165], [-0.04937838762998581, -0.22109130024909973, 0.00972907617688179], [-0.06404068320989609, 0.7972491979598999, -0.11353357136249542], [0.14513659477233887, 0.8084864616394043, 0.15453003346920013], [-0.09933476150035858, -0.2452213168144226, -0.0008982382714748383], [-0.1701030284166336, 0.8750298023223877, -0.08225676417350769], [0.06261435896158218, 0.9054977893829346, 0.2001495659351349], [-0.14913982152938843, -0.4492523968219757, 0.042920950800180435], [-0.09313049167394638, -0.38460978865623474, -0.041532907634973526], [-0.13873159885406494, -0.34357932209968567, 0.09871579706668854], [-0.20074689388275146, -0.4988878667354584, 0.001358821988105774], [-0.10126989334821701, -0.4406850039958954, -0.1145114153623581], [-0.20297908782958984, -0.3253973424434662, 0.16920353472232819], [-0.3067317008972168, -0.4766711890697479, -0.2870747745037079], [-0.29061993956565857, -0.0775541365146637, 0.187309131026268], [-0.5159115791320801, -0.6233507394790649, -0.2928977906703949], [-0.5016756057739258, 0.052822500467300415, 0.09907948970794678], [-0.5640854835510254, -0.6929042339324951, -0.30397120118141174], [-0.5713443160057068, 0.09144198894500732, 0.06848075985908508]]}, {"image_id": "253.jpg", "category_id": 1, "keypoints": [960.7332153320312, 493.19012451171875, 0.9770745038986206, 982.7825927734375, 520.27978515625, 0.9880217909812927, 948.1041870117188, 532.6510620117188, 0.9896983504295349, 949.3345336914062, 454.7129821777344, 0.9905033707618713, 1053.818115234375, 643.042724609375, 0.9778546690940857, 922.6337280273438, 677.6964111328125, 0.978100597858429, 953.7032470703125, 404.4498596191406, 0.9886186718940735, 1112.578857421875, 763.238525390625, 0.9237843751907349, 863.1404418945312, 765.470703125, 0.9456052184104919, 962.8478393554688, 387.4739074707031, 0.9902559518814087, 1151.1143798828125, 788.5413818359375, 0.8519225716590881, 862.2523193359375, 807.1815185546875, 0.9488986134529114, 946.653076171875, 310.1004638671875, 0.9893020391464233, 964.4358520507812, 335.2285461425781, 0.9891667366027832, 934.0653076171875, 354.3338623046875, 0.9851514101028442, 963.08935546875, 284.36773681640625, 0.9473017454147339, 979.3058471679688, 310.94854736328125, 0.9739855527877808, 925.363037109375, 356.5643310546875, 0.9737001061439514, 1024.1990966796875, 258.2361755371094, 0.8824688196182251, 991.4326171875, 439.4591064453125, 0.9335342049598694, 1088.84130859375, 200.06204223632812, 0.961371898651123, 1076.3907470703125, 484.4686279296875, 0.96739661693573, 1100.5589599609375, 177.58596801757812, 0.9586635231971741, 1114.5755615234375, 497.0328674316406, 0.9189397096633911, 948.6253662109375, 208.8941650390625, 0.9157617688179016, 1110.539306640625, 148.95065307617188, 0.8997732996940613, 1149.8822021484375, 510.391357421875, 0.8557372093200684, 1154.6343994140625, 805.9593505859375, 0.8882059454917908, 883.99853515625, 813.03076171875, 0.9596228003501892], "score": 3.1845474243164062, "box": [802.1983032226562, 180.94061279296875, 367.26190185546875, 645.7863159179688], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.056645479053258896, 0.06673568487167358, 0.06869927048683167], [-0.03656192496418953, 0.10148432850837708, -0.01590961590409279], [-0.032705843448638916, -0.09942883253097534, -0.009384903125464916], [0.24717962741851807, 0.39567631483078003, 0.08676885068416595], [-0.10352471470832825, 0.4826992154121399, -0.011082183569669724], [-0.017785178497433662, -0.2221352756023407, -0.05693792924284935], [0.4136105477809906, 0.732257604598999, 0.2235749065876007], [-0.27764755487442017, 0.7459920644760132, 0.23325273394584656], [0.005007555242627859, -0.26349306106567383, -0.08631476759910583], [0.5116251111030579, 0.7941595315933228, 0.16064994037151337], [-0.2786644995212555, 0.8665343523025513, 0.180176243185997], [-0.03622709587216377, -0.45660778880119324, -0.15723033249378204], [0.009676136076450348, -0.40259602665901184, -0.06267637014389038], [-0.0678875669836998, -0.34466806054115295, -0.17630912363529205], [0.008278613910079002, -0.5176682472229004, -0.19330036640167236], [0.051587898284196854, -0.46800604462623596, -0.0154213085770607], [-0.08940250426530838, -0.32989737391471863, -0.26839399337768555], [0.1758364588022232, -0.6248594522476196, 0.15210460126399994], [0.06275016814470291, -0.13632109761238098, -0.3286949098110199], [0.35822269320487976, -0.790229082107544, 0.1694725900888443], [0.27935975790023804, -0.01531490683555603, -0.383491575717926], [0.39529573917388916, -0.861903190612793, 0.18860076367855072], [0.3518044054508209, 0.00944933295249939, -0.41464492678642273]]}, {"image_id": "254.jpg", "category_id": 1, "keypoints": [1329.992431640625, 485.15216064453125, 0.9813894629478455, 1340.177490234375, 520.7916870117188, 0.9827023148536682, 1333.9847412109375, 520.2913818359375, 0.9807637929916382, 1334.34130859375, 442.4271240234375, 0.9915263652801514, 1253.71826171875, 655.868408203125, 0.976915717124939, 1297.1322021484375, 667.9088134765625, 0.9700459837913513, 1310.9046630859375, 396.62115478515625, 0.9823386669158936, 1304.5035400390625, 816.436279296875, 0.9069205522537231, 1391.783203125, 792.5990600585938, 0.9442176818847656, 1292.6236572265625, 383.70037841796875, 0.9813050031661987, 1257.916748046875, 840.6123657226562, 0.8957475423812866, 1371.647705078125, 823.956787109375, 0.9294131994247437, 1273.1087646484375, 301.5594482421875, 0.9887580275535583, 1290.8095703125, 329.61114501953125, 0.9869204759597778, 1275.6571044921875, 341.4913330078125, 0.9924700856208801, 1251.8353271484375, 280.92034912109375, 0.9619426131248474, 1286.9295654296875, 308.39508056640625, 0.9698512554168701, 1255.5928955078125, 343.8140869140625, 0.9823917746543884, 1195.4139404296875, 282.0408935546875, 0.9281806349754333, 1219.87548828125, 445.4267578125, 0.9622380137443542, 1123.7396240234375, 222.0423583984375, 0.89668208360672, 1148.322509765625, 494.91851806640625, 0.950981855392456, 1111.4285888671875, 203.80825805664062, 0.8835449814796448, 1125.1658935546875, 509.2319641113281, 0.9704354405403137, 1246.5394287109375, 210.91836547851562, 0.9527807235717773, 1091.9635009765625, 154.9461669921875, 0.9266544580459595, 1099.3868408203125, 522.2708129882812, 0.9340810775756836, 1244.3369140625, 838.247314453125, 0.9328627586364746, 1344.5797119140625, 826.8887939453125, 0.945977509021759], "score": 3.193739891052246, "box": [1095.4422607421875, 172.1841278076172, 332.542236328125, 681.9102935791016], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01810380071401596, 0.08982160687446594, -0.06794372200965881], [0.01630282774567604, 0.08822259306907654, 0.06688138842582703], [0.010177526623010635, -0.1062270998954773, 0.001568324863910675], [-0.19319181144237518, 0.4190079867839813, -0.07329809665679932], [-0.06882006675004959, 0.46740248799324036, 0.15293706953525543], [-0.051169365644454956, -0.22093677520751953, -0.002322625368833542], [-0.06612683087587357, 0.8121055364608765, -0.03788887709379196], [0.18166522681713104, 0.7973904013633728, 0.15287166833877563], [-0.10020946711301804, -0.24634835124015808, -0.011001165956258774], [-0.18087132275104523, 0.8758063316345215, -0.007501840591430664], [0.1251053661108017, 0.9027151465415955, 0.21493539214134216], [-0.13935621082782745, -0.4541866183280945, 0.01457800343632698], [-0.09730429202318192, -0.3787490725517273, -0.067728191614151], [-0.12281958758831024, -0.3560381531715393, 0.07982425391674042], [-0.1972368210554123, -0.5055854916572571, -0.014627346768975258], [-0.11511684954166412, -0.43243080377578735, -0.1398225575685501], [-0.174372598528862, -0.3540232181549072, 0.16109894216060638], [-0.3405829668045044, -0.48369163274765015, -0.27952447533607483], [-0.2578180730342865, -0.10840880870819092, 0.20354865491390228], [-0.5344785451889038, -0.648196280002594, -0.2634660303592682], [-0.47183841466903687, 0.03859996795654297, 0.16348248720169067], [-0.5823622941970825, -0.7164958119392395, -0.27904021739959717], [-0.5418379306793213, 0.08229254186153412, 0.1833089292049408]]}, {"image_id": "254.jpg", "category_id": 1, "keypoints": [965.9960327148438, 497.3590393066406, 0.9772906303405762, 986.3809814453125, 524.1817626953125, 0.9880341291427612, 953.3504028320312, 536.7725219726562, 0.988322377204895, 955.1876831054688, 458.6789855957031, 0.9892721772193909, 1058.3714599609375, 643.265625, 0.9777916073799133, 926.7437133789062, 679.7297973632812, 0.9784079790115356, 961.6677856445312, 408.13165283203125, 0.9883096814155579, 1113.63427734375, 763.14599609375, 0.9216819405555725, 857.747314453125, 768.226318359375, 0.9320473670959473, 971.6302490234375, 390.69830322265625, 0.9875170588493347, 1150.388427734375, 789.6309204101562, 0.857454776763916, 861.6434936523438, 810.9417724609375, 0.9534814953804016, 956.1878662109375, 312.7682800292969, 0.9890696406364441, 973.1704711914062, 339.4943542480469, 0.9872434735298157, 944.4219970703125, 356.20770263671875, 0.9849709272384644, 972.4346923828125, 285.38604736328125, 0.9388264417648315, 988.847412109375, 317.71282958984375, 0.9720029830932617, 937.0269165039062, 357.59539794921875, 0.9729873538017273, 1030.661865234375, 260.5923156738281, 0.8998388648033142, 1004.485595703125, 440.02606201171875, 0.9285512566566467, 1097.39794921875, 199.76052856445312, 0.9393988251686096, 1092.3759765625, 488.76446533203125, 0.9716853499412537, 1107.218994140625, 178.49386596679688, 0.9418601393699646, 1127.6953125, 502.91064453125, 0.9352559447288513, 958.255615234375, 207.59426879882812, 0.9337797164916992, 1115.0745849609375, 151.85910034179688, 0.8716645240783691, 1167.58251953125, 518.7017211914062, 0.9035263061523438, 1154.0855712890625, 806.41943359375, 0.8918800354003906, 887.056640625, 815.2293701171875, 0.9546387195587158], "score": 3.183917284011841, "box": [805.6700439453125, 190.3834686279297, 369.681640625, 631.6823272705078], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.05274515971541405, 0.06811787188053131, 0.07024669647216797], [-0.036161210387945175, 0.10090934485197067, -0.01930081658065319], [-0.03176763653755188, -0.09978438913822174, -0.009355749934911728], [0.24912185966968536, 0.3926578164100647, 0.08573286235332489], [-0.10673815757036209, 0.4798060655593872, 0.005316542461514473], [-0.011096548289060593, -0.2237464040517807, -0.05244695022702217], [0.40857264399528503, 0.7339025139808655, 0.21590465307235718], [-0.30316251516342163, 0.738970935344696, 0.23491747677326202], [0.013563103973865509, -0.2661409378051758, -0.07888828963041306], [0.5000118613243103, 0.7972172498703003, 0.14524613320827484], [-0.29016220569610596, 0.8624730706214905, 0.19142720103263855], [-0.024599317461252213, -0.46118485927581787, -0.14659249782562256], [0.01732707768678665, -0.4046001434326172, -0.05151187255978584], [-0.05547570437192917, -0.3496550917625427, -0.16981084644794464], [0.018216341733932495, -0.5277888178825378, -0.17440912127494812], [0.06363634020090103, -0.4627413749694824, 0.0010315179824829102], [-0.07349693030118942, -0.3386274576187134, -0.2632718086242676], [0.181418314576149, -0.632999062538147, 0.15894369781017303], [0.08158286660909653, -0.1464107781648636, -0.31760767102241516], [0.362877756357193, -0.7991769313812256, 0.17003782093524933], [0.29818326234817505, -0.020158469676971436, -0.35510826110839844], [0.3967174291610718, -0.872699499130249, 0.18778324127197266], [0.3713289797306061, 0.009937405586242676, -0.3787551522254944]]}, {"image_id": "255.jpg", "category_id": 1, "keypoints": [1336.9085693359375, 489.082275390625, 0.9822977185249329, 1343.3392333984375, 522.3963623046875, 0.9829665422439575, 1345.6854248046875, 523.8465576171875, 0.9795910120010376, 1340.71240234375, 445.535888671875, 0.9898133873939514, 1260.3883056640625, 658.2306518554688, 0.978061318397522, 1322.4285888671875, 671.1760864257812, 0.9816489815711975, 1318.0623779296875, 398.9219970703125, 0.9825954437255859, 1303.6055908203125, 813.4782104492188, 0.8811336755752563, 1417.5985107421875, 791.2252197265625, 0.9257487058639526, 1299.3790283203125, 386.23406982421875, 0.9764448404312134, 1257.3763427734375, 837.9752197265625, 0.8978695273399353, 1391.5565185546875, 824.5225830078125, 0.9368285536766052, 1282.8056640625, 304.2959289550781, 0.9874386787414551, 1295.7200927734375, 330.8087463378906, 0.9872049689292908, 1287.97216796875, 344.6617736816406, 0.9934421181678772, 1260.42333984375, 282.5218505859375, 0.9644720554351807, 1290.634521484375, 310.63525390625, 0.9711564183235168, 1271.0994873046875, 347.306640625, 0.9897637367248535, 1197.4637451171875, 285.4852294921875, 0.9348632097244263, 1230.5478515625, 450.10333251953125, 0.963111162185669, 1128.496337890625, 223.04190063476562, 0.904234766960144, 1161.1204833984375, 496.9349060058594, 0.944101095199585, 1114.0120849609375, 200.37063598632812, 0.9379460215568542, 1136.3695068359375, 510.0038146972656, 0.9599468111991882, 1252.9744873046875, 211.67437744140625, 0.9621145129203796, 1097.8603515625, 155.29428100585938, 0.9236427545547485, 1107.4781494140625, 523.5406494140625, 0.9379792809486389, 1242.927734375, 838.506591796875, 0.9360573291778564, 1363.3529052734375, 828.33154296875, 0.9310387372970581], "score": 3.196028232574463, "box": [1099.7724609375, 178.10093688964844, 352.3809814453125, 677.8748321533203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.00851433351635933, 0.08863004297018051, -0.07104794681072235], [0.028525328263640404, 0.08841802179813385, 0.06207720935344696], [0.008320741355419159, -0.10629183053970337, 0.0013205073773860931], [-0.19309008121490479, 0.42265525460243225, -0.04992668330669403], [-0.023381168022751808, 0.4746860861778259, 0.14041851460933685], [-0.04877861961722374, -0.22330698370933533, 0.005755946040153503], [-0.08212144672870636, 0.8214337229728699, -0.05044814571738243], [0.23430484533309937, 0.7964580655097961, 0.17369887232780457], [-0.09853558242321014, -0.24862992763519287, 0.003170568495988846], [-0.1994570791721344, 0.8856576085090637, -0.035572778433561325], [0.16884353756904602, 0.895972728729248, 0.23629482090473175], [-0.1286618411540985, -0.4561042785644531, 0.040548428893089294], [-0.10052630305290222, -0.38269275426864624, -0.04919446259737015], [-0.1053675040602684, -0.35544878244400024, 0.0996103286743164], [-0.1876392960548401, -0.5097277164459229, 0.017962660640478134], [-0.12237917631864548, -0.43633151054382324, -0.12018562853336334], [-0.1455894112586975, -0.35294437408447266, 0.18702246248722076], [-0.3510253429412842, -0.4851072430610657, -0.2546539008617401], [-0.23878172039985657, -0.1102747917175293, 0.22274534404277802], [-0.5381355881690979, -0.656748354434967, -0.23892846703529358], [-0.45564523339271545, 0.035348549485206604, 0.19915318489074707], [-0.5842539668083191, -0.7265760898590088, -0.25237202644348145], [-0.5231810808181763, 0.07169623672962189, 0.2351980060338974]]}, {"image_id": "255.jpg", "category_id": 1, "keypoints": [971.51220703125, 503.0296325683594, 0.980016827583313, 991.18994140625, 530.472412109375, 0.9865279197692871, 958.2084350585938, 543.052734375, 0.9891524314880371, 960.8878173828125, 464.7743225097656, 0.9906771183013916, 1066.7652587890625, 648.2838745117188, 0.9811380505561829, 934.4957275390625, 685.4654541015625, 0.9797273278236389, 969.2427368164062, 413.64044189453125, 0.9888190627098083, 1116.605712890625, 766.5027465820312, 0.9118797183036804, 857.9769897460938, 767.2850341796875, 0.9330486059188843, 980.031982421875, 396.38006591796875, 0.9871209859848022, 1152.186767578125, 792.2080078125, 0.8480721712112427, 864.66748046875, 810.6791381835938, 0.9521544575691223, 969.5098876953125, 315.7581787109375, 0.9887993335723877, 983.4583740234375, 345.1262512207031, 0.9885514974594116, 956.3681640625, 359.100341796875, 0.9846706986427307, 985.9719848632812, 288.314697265625, 0.9391453266143799, 999.609619140625, 323.8716125488281, 0.9747884273529053, 951.3860473632812, 360.1641845703125, 0.9652178883552551, 1035.482177734375, 264.549560546875, 0.9018753170967102, 1018.262939453125, 439.7467956542969, 0.926908552646637, 1104.88671875, 199.05239868164062, 0.926105260848999, 1109.209228515625, 491.7164611816406, 0.9608840942382812, 1112.804931640625, 177.98678588867188, 0.9270508289337158, 1145.0616455078125, 507.3404235839844, 0.9075198173522949, 975.6597290039062, 204.81353759765625, 0.9464811086654663, 1121.8509521484375, 151.99609375, 0.8650450706481934, 1193.4927978515625, 515.806884765625, 0.7877904176712036, 1154.0762939453125, 809.209716796875, 0.9104776382446289, 892.0797729492188, 814.1551513671875, 0.9583774209022522], "score": 3.1800785064697266, "box": [804.5531005859375, 190.3115692138672, 377.7132568359375, 633.3913726806641], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.051984451711177826, 0.06885640323162079, 0.07030756771564484], [-0.03731285035610199, 0.10060656815767288, -0.019452974200248718], [-0.03070150874555111, -0.10028208792209625, -0.00927476305514574], [0.25711649656295776, 0.38840198516845703, 0.08237099647521973], [-0.10067855566740036, 0.48110347986221313, 0.005414055660367012], [-0.005813438445329666, -0.2238900512456894, -0.05156513676047325], [0.40530234575271606, 0.7335828542709351, 0.21694864332675934], [-0.3191336393356323, 0.7234423160552979, 0.23437562584877014], [0.020897898823022842, -0.2654494047164917, -0.07751838862895966], [0.49714237451553345, 0.7973676919937134, 0.14699536561965942], [-0.2982707619667053, 0.8487769365310669, 0.19964942336082458], [-0.004608483985066414, -0.46332621574401855, -0.1438901126384735], [0.029537096619606018, -0.40335988998413086, -0.047561150044202805], [-0.03928816318511963, -0.3535577058792114, -0.1706628054380417], [0.036534834653139114, -0.5304136276245117, -0.17321094870567322], [0.07586999237537384, -0.458251416683197, 0.008523482829332352], [-0.05144347622990608, -0.34485310316085815, -0.265398770570755], [0.17653965950012207, -0.6327869892120361, 0.17401476204395294], [0.10932167619466782, -0.15331654250621796, -0.3052791357040405], [0.35549941658973694, -0.802263617515564, 0.1829880028963089], [0.32225894927978516, -0.027461007237434387, -0.3621266782283783], [0.38371434807777405, -0.8770040273666382, 0.20533576607704163], [0.3965103030204773, 0.005456492304801941, -0.3774006962776184]]}, {"image_id": "256.jpg", "category_id": 1, "keypoints": [1347.429931640625, 491.06866455078125, 0.9840240478515625, 1350.7830810546875, 524.9767456054688, 0.9828340411186218, 1359.4417724609375, 524.6409301757812, 0.9823169112205505, 1350.8487548828125, 447.0966796875, 0.990156352519989, 1269.108642578125, 660.5316162109375, 0.9765961170196533, 1350.6641845703125, 670.2322387695312, 0.9825477600097656, 1328.45361328125, 401.1596374511719, 0.9818161725997925, 1305.8548583984375, 816.4969482421875, 0.8816269040107727, 1447.62158203125, 793.5098876953125, 0.9402666091918945, 1309.4857177734375, 388.1642150878906, 0.979221522808075, 1265.1102294921875, 844.7427978515625, 0.8900034427642822, 1422.198486328125, 825.482177734375, 0.9337862133979797, 1292.4012451171875, 305.28973388671875, 0.9897586107254028, 1302.7901611328125, 333.47564697265625, 0.9837214350700378, 1303.171630859375, 344.04278564453125, 0.99321448802948, 1267.340087890625, 282.890380859375, 0.9695271849632263, 1293.1427001953125, 313.3150634765625, 0.9729501008987427, 1289.803466796875, 342.411865234375, 0.9871936440467834, 1192.6634521484375, 285.64990234375, 0.9325826168060303, 1245.96435546875, 449.247314453125, 0.9575601816177368, 1129.925537109375, 222.80706787109375, 0.9140794277191162, 1176.61376953125, 496.6266784667969, 0.9427282810211182, 1115.0595703125, 195.55987548828125, 0.9437254071235657, 1153.3336181640625, 509.01226806640625, 0.9623587131500244, 1262.109619140625, 211.39404296875, 0.952568769454956, 1094.783447265625, 155.705078125, 0.9352743029594421, 1126.0072021484375, 524.5828857421875, 0.9239873886108398, 1254.008544921875, 849.799560546875, 0.9266573786735535, 1394.115478515625, 829.5814208984375, 0.9268617033958435], "score": 3.1957194805145264, "box": [1105.0177001953125, 184.7804412841797, 369.82421875, 669.4492950439453], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0014624018222093582, 0.09161003679037094, -0.06619908660650253], [0.036479853093624115, 0.08412609994411469, 0.06227640435099602], [0.006838340312242508, -0.1055077314376831, -0.0051380544900894165], [-0.19514188170433044, 0.42443379759788513, -0.032559026032686234], [0.026160402223467827, 0.46483224630355835, 0.16589762270450592], [-0.05100665241479874, -0.22236141562461853, -0.00196097232401371], [-0.10314030945301056, 0.8232994079589844, -0.055535636842250824], [0.27948272228240967, 0.7866716384887695, 0.16812478005886078], [-0.09684291481971741, -0.25383713841438293, -0.0013593696057796478], [-0.21101389825344086, 0.9006215929985046, -0.03945540264248848], [0.22172926366329193, 0.8796176910400391, 0.24474017322063446], [-0.13004225492477417, -0.4609881639480591, 0.027024101465940475], [-0.11159460246562958, -0.38301342725753784, -0.06061694025993347], [-0.09471522271633148, -0.36570072174072266, 0.08778776228427887], [-0.19188688695430756, -0.5134336948394775, 0.009626369923353195], [-0.14497333765029907, -0.4335041046142578, -0.12884759902954102], [-0.12415574491024017, -0.3758850693702698, 0.17840304970741272], [-0.37961921095848083, -0.4867839813232422, -0.24511180818080902], [-0.2185988873243332, -0.13770827651023865, 0.22165751457214355], [-0.5565932989120483, -0.6659261584281921, -0.23255853354930878], [-0.43183913826942444, 0.006881609559059143, 0.1874920129776001], [-0.5973573327064514, -0.7389463782310486, -0.24137087166309357], [-0.5005121231079102, 0.04409760236740112, 0.21842588484287262]]}, {"image_id": "256.jpg", "category_id": 1, "keypoints": [978.63818359375, 501.5101623535156, 0.9769512414932251, 996.4986572265625, 529.4068603515625, 0.9856259226799011, 964.0667114257812, 540.7626953125, 0.9890354871749878, 969.6289672851562, 463.6931457519531, 0.9896765947341919, 1068.18212890625, 648.66552734375, 0.9801373481750488, 936.77587890625, 680.01904296875, 0.9770779013633728, 980.1507568359375, 415.03448486328125, 0.9894350171089172, 1122.0950927734375, 769.9400634765625, 0.8967452645301819, 861.55810546875, 763.5735473632812, 0.9357982277870178, 991.9752197265625, 399.3459167480469, 0.9878962635993958, 1155.249755859375, 795.927734375, 0.8578712344169617, 860.8484497070312, 805.0419921875, 0.9347581267356873, 984.5238037109375, 318.5809326171875, 0.9874024987220764, 995.8341674804688, 349.79949951171875, 0.9862328767776489, 971.4096069335938, 361.14471435546875, 0.9850215315818787, 1001.501953125, 291.6197204589844, 0.9398704767227173, 1009.7706909179688, 333.33447265625, 0.9727506637573242, 967.1371459960938, 363.02349853515625, 0.9645031094551086, 1005.6100463867188, 332.4163818359375, 0.9401414394378662, 1032.41357421875, 438.96759033203125, 0.9264180064201355, 1078.69482421875, 240.07431030273438, 0.9447444081306458, 1126.94970703125, 490.95098876953125, 0.9627155661582947, 1091.7830810546875, 206.523681640625, 0.9337717294692993, 1161.2327880859375, 504.0370178222656, 0.857082724571228, 994.3279418945312, 206.14651489257812, 0.942478597164154, 1119.126220703125, 174.6715087890625, 0.9242315292358398, 1214.5487060546875, 508.5483093261719, 0.7992446422576904, 1154.31787109375, 809.8252563476562, 0.9113974571228027, 884.5836181640625, 810.817626953125, 0.9669116139411926], "score": 3.181762933731079, "box": [808.2313842773438, 196.25213623046875, 383.49322509765625, 624.6861572265625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04724908620119095, 0.06977453827857971, 0.07267923653125763], [-0.040400370955467224, 0.09940285980701447, -0.019358163699507713], [-0.026651646941900253, -0.10115480422973633, -0.011425877921283245], [0.2425258308649063, 0.39378419518470764, 0.1098461002111435], [-0.11477311700582504, 0.4789080023765564, -0.018693048506975174], [0.0044449809938669205, -0.2217811942100525, -0.05786919221282005], [0.40032055974006653, 0.7439265251159668, 0.2187555879354477], [-0.32657569646835327, 0.7229353189468384, 0.21496513485908508], [0.035989727824926376, -0.2600584626197815, -0.08337368071079254], [0.4872356653213501, 0.8095420002937317, 0.1443004161119461], [-0.32765886187553406, 0.8499040603637695, 0.17983940243721008], [0.013276506215333939, -0.4597053527832031, -0.1450919806957245], [0.0438322015106678, -0.39700841903686523, -0.0493549183011055], [-0.02068396285176277, -0.35085761547088623, -0.1760415881872177], [0.0588967464864254, -0.5252683162689209, -0.1711198389530182], [0.08402486890554428, -0.44760608673095703, 0.014848306775093079], [-0.03137236461043358, -0.3359173536300659, -0.27013570070266724], [0.07358188927173615, -0.4684494137763977, 0.27465859055519104], [0.1291012465953827, -0.148659348487854, -0.3281385898590088], [0.2247694730758667, -0.660987377166748, 0.30543985962867737], [0.34730222821235657, -0.02655443549156189, -0.3723546266555786], [0.2543826103210449, -0.7368761301040649, 0.32116663455963135], [0.4226880967617035, 0.0028455257415771484, -0.3892454504966736]]}, {"image_id": "257.jpg", "category_id": 1, "keypoints": [985.1350708007812, 500.9677734375, 0.9789416193962097, 1001.345458984375, 529.6510620117188, 0.9890807271003723, 970.7020874023438, 540.37841796875, 0.9827038049697876, 975.4520263671875, 463.232177734375, 0.9878897666931152, 1074.384033203125, 650.3890991210938, 0.9751891493797302, 940.09033203125, 677.9318237304688, 0.9732008576393127, 987.85888671875, 414.7713623046875, 0.9902651309967041, 1129.1529541015625, 773.4652099609375, 0.906751275062561, 864.95751953125, 760.5520629882812, 0.924102783203125, 1000.4133911132812, 398.8705749511719, 0.9893423914909363, 1166.132568359375, 801.2449951171875, 0.9146232604980469, 853.0498657226562, 804.5718994140625, 0.9025052189826965, 996.0114135742188, 317.4669494628906, 0.9892575144767761, 1003.8355102539062, 347.31414794921875, 0.9879939556121826, 983.3240966796875, 360.125732421875, 0.9858224987983704, 1014.4815063476562, 293.16510009765625, 0.9396898746490479, 1017.40673828125, 326.87017822265625, 0.9807088375091553, 982.5889892578125, 361.28961181640625, 0.9667502045631409, 1047.336181640625, 271.1322021484375, 0.8979430794715881, 1048.83837890625, 440.6990661621094, 0.9266746044158936, 1113.5509033203125, 194.66494750976562, 0.9295695424079895, 1145.3931884765625, 492.3647155761719, 0.96703040599823, 1120.2352294921875, 174.66317749023438, 0.9241663217544556, 1179.9271240234375, 504.9184875488281, 0.8916378617286682, 1014.9993286132812, 211.29232788085938, 0.946220338344574, 1128.3546142578125, 149.60714721679688, 0.7779679298400879, 1240.628662109375, 506.4765319824219, 0.8449768424034119, 1170.92041015625, 813.4041137695312, 0.9274274110794067, 867.9862060546875, 815.946533203125, 0.9114689230918884], "score": 3.1769068241119385, "box": [815.76416015625, 191.22738647460938, 409.35888671875, 627.7257995605469], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.04342559725046158, 0.07112632691860199, 0.07357053458690643], [-0.038497697561979294, 0.09906963258981705, -0.023793943226337433], [-0.026741497218608856, -0.10134515166282654, -0.010620512068271637], [0.2390824556350708, 0.39352554082870483, 0.1139247715473175], [-0.12182562798261642, 0.4727366268634796, -0.07226260006427765], [0.008272587321698666, -0.22109687328338623, -0.05771501734852791], [0.39601656794548035, 0.7406561970710754, 0.22951509058475494], [-0.3217161297798157, 0.7022377252578735, 0.18368928134441376], [0.0425088033080101, -0.25882768630981445, -0.08062131702899933], [0.4852606952190399, 0.8051859736442566, 0.15714453160762787], [-0.3542371392250061, 0.8240693211555481, 0.1459968388080597], [0.023698192089796066, -0.45928341150283813, -0.14037369191646576], [0.04723552241921425, -0.39507168531417847, -0.04369189590215683], [-0.007369984406977892, -0.3509257435798645, -0.17574624717235565], [0.07885115593671799, -0.5180674195289612, -0.1642187386751175], [0.08649192005395889, -0.4452384114265442, 0.021517425775527954], [-0.010161061771214008, -0.34205150604248047, -0.2712751626968384], [0.17659756541252136, -0.6189830899238586, 0.1928664594888687], [0.1448800265789032, -0.15212562680244446, -0.33213382959365845], [0.33425602316856384, -0.8033642172813416, 0.23501147329807281], [0.36174094676971436, -0.033436745405197144, -0.38739585876464844], [0.35935601592063904, -0.8774494528770447, 0.26247984170913696], [0.43708813190460205, -0.005343332886695862, -0.4061208963394165]]}, {"image_id": "257.jpg", "category_id": 1, "keypoints": [1355.5489501953125, 487.7757568359375, 0.983289897441864, 1355.489501953125, 522.6260986328125, 0.9835980534553528, 1371.4788818359375, 521.2789916992188, 0.9845268130302429, 1358.1441650390625, 444.2399597167969, 0.989906370639801, 1274.8447265625, 659.1962280273438, 0.9753084778785706, 1378.3883056640625, 665.3348388671875, 0.9820707440376282, 1337.4736328125, 397.73583984375, 0.983677327632904, 1299.7252197265625, 816.7838134765625, 0.903063178062439, 1476.2620849609375, 796.8179931640625, 0.9384611248970032, 1319.06640625, 384.48895263671875, 0.9762739539146423, 1262.655029296875, 845.42138671875, 0.8966246247291565, 1443.401123046875, 831.3419799804688, 0.9521796703338623, 1304.1510009765625, 299.4360656738281, 0.9916661381721497, 1309.34228515625, 330.6733703613281, 0.9831122756004333, 1319.398193359375, 337.9158935546875, 0.9927420616149902, 1277.6448974609375, 278.1900329589844, 0.9721028804779053, 1294.6988525390625, 311.772216796875, 0.975703775882721, 1311.4781494140625, 331.8707275390625, 0.9844835996627808, 1190.9329833984375, 283.96234130859375, 0.9442176818847656, 1265.1199951171875, 443.7203063964844, 0.9530279636383057, 1135.9637451171875, 217.73651123046875, 0.9502567052841187, 1197.197509765625, 490.9103088378906, 0.9130991697311401, 1122.8897705078125, 185.084716796875, 0.9188570976257324, 1175.684814453125, 501.4513854980469, 0.9484341144561768, 1286.12548828125, 204.68798828125, 0.9540743231773376, 1111.388916015625, 146.64724731445312, 0.8761662244796753, 1145.8397216796875, 519.0933227539062, 0.8774340152740479, 1251.25537109375, 854.13623046875, 0.907905101776123, 1413.44873046875, 833.7681884765625, 0.9450094103813171], "score": 3.190751075744629, "box": [1111.70556640625, 188.34207153320312, 382.8758544921875, 661.6764221191406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.006586093455553055, 0.09257211536169052, -0.06263694167137146], [0.04465608671307564, 0.08157907426357269, 0.05818919092416763], [0.004818660207092762, -0.10359199345111847, -0.008384490385651588], [-0.2001972645521164, 0.42769044637680054, -0.026771213859319687], [0.07761874049901962, 0.45726627111434937, 0.17526596784591675], [-0.047686316072940826, -0.2214042991399765, 0.0015567205846309662], [-0.13809558749198914, 0.8316856026649475, -0.045135222375392914], [0.3200988471508026, 0.7855453491210938, 0.15653002262115479], [-0.09153825044631958, -0.25365686416625977, 0.006975792348384857], [-0.24186164140701294, 0.9139543175697327, -0.0325106680393219], [0.24843528866767883, 0.8767929673194885, 0.22103935480117798], [-0.11848218739032745, -0.4602312445640564, 0.026986267417669296], [-0.11476155370473862, -0.37744390964508057, -0.05600084364414215], [-0.07413262128829956, -0.3693796396255493, 0.08564092963933945], [-0.18348664045333862, -0.5116001963615417, 0.022384878247976303], [-0.15932227671146393, -0.4218338131904602, -0.12024042755365372], [-0.08694919943809509, -0.39252835512161255, 0.17628687620162964], [-0.3992690145969391, -0.4760056734085083, -0.2232348620891571], [-0.18082685768604279, -0.15617533028125763, 0.22603052854537964], [-0.5507221817970276, -0.667974054813385, -0.16578352451324463], [-0.3938172459602356, -0.00830911099910736, 0.2228972315788269], [-0.582211434841156, -0.7447924017906189, -0.17352533340454102], [-0.46632134914398193, 0.027630701661109924, 0.24276909232139587]]}, {"image_id": "258.jpg", "category_id": 1, "keypoints": [1366.3177490234375, 482.85760498046875, 0.9786580204963684, 1362.99169921875, 518.3970336914062, 0.9884023070335388, 1384.937255859375, 517.85595703125, 0.9810961484909058, 1368.4144287109375, 440.34588623046875, 0.988185703754425, 1280.8759765625, 660.2696533203125, 0.9694385528564453, 1415.3355712890625, 661.1465454101562, 0.975255012512207, 1348.8695068359375, 394.3548889160156, 0.9866715669631958, 1306.310546875, 813.440673828125, 0.8750537633895874, 1499.5592041015625, 798.0537109375, 0.9384601712226868, 1331.28759765625, 380.43792724609375, 0.9806348085403442, 1265.7376708984375, 833.9656372070312, 0.8612946271896362, 1472.9080810546875, 829.4616088867188, 0.9302237629890442, 1315.9056396484375, 296.4053039550781, 0.9909281134605408, 1319.2579345703125, 328.74395751953125, 0.9829003810882568, 1333.4407958984375, 333.52142333984375, 0.993170976638794, 1288.5762939453125, 277.7481994628906, 0.9763302803039551, 1304.696533203125, 310.45428466796875, 0.9685665369033813, 1329.759521484375, 324.2083740234375, 0.9852189421653748, 1199.8438720703125, 286.22027587890625, 0.9480076432228088, 1288.847900390625, 445.5867004394531, 0.9666505455970764, 1131.989990234375, 218.38198852539062, 0.9352052211761475, 1228.2705078125, 486.9329833984375, 0.8825095295906067, 1119.8955078125, 185.02169799804688, 0.9117053747177124, 1212.475341796875, 492.91534423828125, 0.9108462929725647, 1290.9163818359375, 205.91702270507812, 0.9593167901039124, 1100.9561767578125, 145.7679443359375, 0.9278205037117004, 1179.051025390625, 503.020263671875, 0.9392745494842529, 1258.4012451171875, 834.28564453125, 0.9358837604522705, 1448.601806640625, 835.33203125, 0.9279464483261108], "score": 3.1918296813964844, "box": [1101.4830322265625, 186.11537170410156, 457.627685546875, 674.8634490966797], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.014550713822245598, 0.09218760579824448, -0.06331874430179596], [0.05050741508603096, 0.08331020921468735, 0.052254945039749146], [0.00509111862629652, -0.10481429100036621, -0.00770572479814291], [-0.20540519058704376, 0.42944425344467163, -0.026616264134645462], [0.14161045849323273, 0.4578940272331238, 0.14151127636432648], [-0.043001629412174225, -0.22404277324676514, 0.011125735938549042], [-0.13677814602851868, 0.8341565132141113, -0.011034367606043816], [0.3489167392253876, 0.8065073490142822, 0.07958463579416275], [-0.08510888367891312, -0.2586405873298645, 0.02033841237425804], [-0.24851267039775848, 0.8960515260696411, 0.0284140482544899], [0.2916112244129181, 0.8959822654724121, 0.16046704351902008], [-0.11822248995304108, -0.4665341377258301, 0.03324132412672043], [-0.11749662458896637, -0.37966418266296387, -0.04691360518336296], [-0.06639588624238968, -0.3793989419937134, 0.09337787330150604], [-0.186931774020195, -0.5130214691162109, 0.030405163764953613], [-0.16346636414527893, -0.4245268702507019, -0.11096599698066711], [-0.06687381863594055, -0.41191262006759644, 0.18298450112342834], [-0.40261223912239075, -0.4693053364753723, -0.22279076278209686], [-0.1455363780260086, -0.16730254888534546, 0.22498169541358948], [-0.5773338079452515, -0.6487276554107666, -0.19114020466804504], [-0.35873475670814514, -0.020626917481422424, 0.2543599605560303], [-0.6066455245018005, -0.7240596413612366, -0.21398669481277466], [-0.43713685870170593, 0.00912928581237793, 0.25852638483047485]]}, {"image_id": "258.jpg", "category_id": 1, "keypoints": [990.5725708007812, 498.1672668457031, 0.9763779640197754, 1005.8831176757812, 526.7078247070312, 0.9894269704818726, 975.7958374023438, 536.2645263671875, 0.9813089966773987, 981.3605346679688, 460.57659912109375, 0.9883733987808228, 1074.849853515625, 644.1585083007812, 0.9791439771652222, 944.8222045898438, 674.1840209960938, 0.972575843334198, 995.2333374023438, 412.7081298828125, 0.9904765486717224, 1127.6636962890625, 767.7313232421875, 0.9122405052185059, 864.996337890625, 760.7720947265625, 0.9235491752624512, 1009.0117797851562, 397.3819274902344, 0.9893425107002258, 1165.852294921875, 796.8072509765625, 0.9171491265296936, 864.808349609375, 804.28515625, 0.9255824685096741, 1008.659423828125, 317.51318359375, 0.988504946231842, 1013.8640747070312, 347.4004821777344, 0.9878716468811035, 995.7804565429688, 358.5340576171875, 0.985660195350647, 1029.8564453125, 295.015625, 0.9421470165252686, 1026.7125244140625, 328.9554138183594, 0.9817105531692505, 996.22314453125, 360.2571716308594, 0.9685084223747253, 1058.7293701171875, 271.97369384765625, 0.9097834825515747, 1062.5172119140625, 437.4207763671875, 0.9374951124191284, 1125.0802001953125, 192.77981567382812, 0.8926525115966797, 1162.765625, 492.0312194824219, 0.9609616994857788, 1129.751220703125, 178.07366943359375, 0.9057092666625977, 1192.308837890625, 501.9342041015625, 0.8865341544151306, 1041.238525390625, 213.56765747070312, 0.9266440868377686, 1136.7747802734375, 153.67868041992188, 0.7730786204338074, 1247.5433349609375, 505.9599609375, 0.8787819147109985, 1169.0341796875, 810.9006958007812, 0.9152402877807617, 880.5643310546875, 812.92138671875, 0.9290449023246765], "score": 3.17840576171875, "box": [811.1030883789062, 193.3179168701172, 426.82940673828125, 621.4953765869141], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.041092514991760254, 0.07296811044216156, 0.07341207563877106], [-0.039082180708646774, 0.09841208904981613, -0.02631012164056301], [-0.025363745167851448, -0.10181520879268646, -0.009520276449620724], [0.23222899436950684, 0.39667463302612305, 0.13314791023731232], [-0.1238035261631012, 0.47496330738067627, -0.05803481489419937], [0.014040102250874043, -0.22106458246707916, -0.0539805144071579], [0.3861869275569916, 0.7514025568962097, 0.23456043004989624], [-0.34224221110343933, 0.7206966876983643, 0.16856980323791504], [0.05231628939509392, -0.255975604057312, -0.07484449446201324], [0.47459596395492554, 0.8162881731987, 0.16096961498260498], [-0.3420580327510834, 0.8503956198692322, 0.14454542100429535], [0.04108143225312233, -0.4585382342338562, -0.12986382842063904], [0.058256808668375015, -0.39114314317703247, -0.033992476761341095], [0.009251858107745647, -0.3519151210784912, -0.1696045696735382], [0.09773479402065277, -0.5175691246986389, -0.14937618374824524], [0.09387686848640442, -0.44472813606262207, 0.03047141432762146], [0.009376692585647106, -0.34135663509368896, -0.2649066150188446], [0.19596485793590546, -0.6310439705848694, 0.18246464431285858], [0.16610285639762878, -0.15393732488155365, -0.33322829008102417], [0.3484402596950531, -0.816005527973175, 0.24251067638397217], [0.3840799033641815, -0.03261168301105499, -0.3826836943626404], [0.37037432193756104, -0.8825238347053528, 0.2871759235858917], [0.46198198199272156, -0.006154283881187439, -0.39168891310691833]]}, {"image_id": "259.jpg", "category_id": 1, "keypoints": [998.3751831054688, 496.0621643066406, 0.9733614325523376, 1012.764892578125, 524.2283325195312, 0.988862156867981, 984.3907470703125, 533.2360229492188, 0.9793001413345337, 988.9696655273438, 457.83721923828125, 0.9904578328132629, 1080.81005859375, 645.93798828125, 0.9822596907615662, 952.4459838867188, 671.4111328125, 0.9731737375259399, 1005.0094604492188, 411.5645751953125, 0.9921839833259583, 1127.5347900390625, 771.250732421875, 0.9285997748374939, 868.302490234375, 761.1046142578125, 0.9283655881881714, 1019.8115844726562, 396.698974609375, 0.9905062913894653, 1166.577392578125, 798.70263671875, 0.9099416136741638, 867.5556030273438, 807.1138916015625, 0.9280790090560913, 1024.965576171875, 315.82904052734375, 0.9868791103363037, 1025.134521484375, 345.0751953125, 0.9897183775901794, 1011.8341674804688, 358.133056640625, 0.9867308735847473, 1045.4556884765625, 295.61553955078125, 0.9453314542770386, 1034.907470703125, 324.6988220214844, 0.9864882230758667, 1015.6535034179688, 360.6728210449219, 0.9788424372673035, 1061.8741455078125, 265.10260009765625, 0.8779280781745911, 1083.258056640625, 441.2239074707031, 0.9552258253097534, 1120.1947021484375, 192.34310913085938, 0.8976828455924988, 1182.687255859375, 493.427001953125, 0.9563155174255371, 1129.0660400390625, 171.49505615234375, 0.9423485398292542, 1214.0460205078125, 499.6168518066406, 0.9043919444084167, 1059.49267578125, 214.80621337890625, 0.9127520322799683, 1141.0662841796875, 150.78372192382812, 0.7570935487747192, 1259.8541259765625, 504.85321044921875, 0.8779570460319519, 1170.714599609375, 811.3849487304688, 0.9055943489074707, 881.23828125, 818.3104858398438, 0.9122791886329651], "score": 3.1812047958374023, "box": [806.6979370117188, 197.2486572265625, 449.01239013671875, 621.471923828125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.0390583798289299, 0.07183067500591278, 0.07569653540849686], [-0.03809639438986778, 0.09891916811466217, -0.02606900781393051], [-0.025220192968845367, -0.10153071582317352, -0.011755288578569889], [0.22371411323547363, 0.3999088406562805, 0.13651776313781738], [-0.12549707293510437, 0.47626298666000366, -0.047658368945121765], [0.019434310495853424, -0.21881510317325592, -0.055800631642341614], [0.3620268404483795, 0.7641797661781311, 0.2294069528579712], [-0.3524019718170166, 0.7268336415290833, 0.16634970903396606], [0.06013568863272667, -0.2518119215965271, -0.07494240254163742], [0.4540397524833679, 0.8261903524398804, 0.15756277740001678], [-0.3536633849143982, 0.8557145595550537, 0.13774354755878448], [0.06205027550458908, -0.4537554979324341, -0.13322946429252625], [0.06775307655334473, -0.3872765898704529, -0.03543908894062042], [0.029631715267896652, -0.34787416458129883, -0.17430992424488068], [0.1211947351694107, -0.5112317800521851, -0.1497116982936859], [0.0950123593211174, -0.44536930322647095, 0.029088126495480537], [0.03949800878763199, -0.3345857262611389, -0.2686750292778015], [0.18517643213272095, -0.6469377279281616, 0.16959349811077118], [0.19865746796131134, -0.1413680762052536, -0.3128761351108551], [0.3302091360092163, -0.8316807150840759, 0.24765744805335999], [0.41824209690093994, -0.023251011967658997, -0.3653758764266968], [0.3605315685272217, -0.9026466012001038, 0.2785688638687134], [0.49884432554244995, -0.0070357173681259155, -0.3756016790866852]]}, {"image_id": "259.jpg", "category_id": 1, "keypoints": [1377.698974609375, 481.81439208984375, 0.9797475337982178, 1370.00634765625, 518.0781860351562, 0.9865498542785645, 1399.2601318359375, 515.9714965820312, 0.9807559847831726, 1380.28564453125, 439.9836120605469, 0.9874431490898132, 1284.730712890625, 658.528076171875, 0.9733582735061646, 1438.539794921875, 662.9068603515625, 0.9632100462913513, 1359.458740234375, 394.39227294921875, 0.9847667217254639, 1309.220703125, 816.157470703125, 0.8652130365371704, 1517.314453125, 792.12890625, 0.8975200653076172, 1342.1046142578125, 381.41595458984375, 0.9816152453422546, 1263.3348388671875, 838.3079223632812, 0.8784751892089844, 1499.4051513671875, 827.374267578125, 0.9107403755187988, 1326.1217041015625, 298.172607421875, 0.9912626147270203, 1326.0946044921875, 330.07025146484375, 0.9808372855186462, 1347.8924560546875, 334.24676513671875, 0.9909740090370178, 1299.53662109375, 280.64532470703125, 0.9750286936759949, 1309.364501953125, 314.50177001953125, 0.9641919136047363, 1351.1260986328125, 324.8564453125, 0.9833031296730042, 1205.665283203125, 285.79010009765625, 0.9397987127304077, 1306.8526611328125, 443.62310791015625, 0.970359742641449, 1143.6932373046875, 216.19973754882812, 0.9560114741325378, 1240.344482421875, 482.81756591796875, 0.9004459977149963, 1134.302001953125, 179.8399658203125, 0.9360571503639221, 1222.3507080078125, 491.1648864746094, 0.9066632986068726, 1302.876708984375, 209.33367919921875, 0.9487946033477783, 1119.0914306640625, 143.4410400390625, 0.9145408868789673, 1192.13720703125, 501.38531494140625, 0.9052044153213501, 1250.11083984375, 835.95068359375, 0.9064607620239258, 1473.0859375, 840.1143798828125, 0.8748542070388794], "score": 3.183321237564087, "box": [1103.0731201171875, 192.11158752441406, 477.2425537109375, 662.0980682373047], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.02457263134419918, 0.09313850849866867, -0.058758363127708435], [0.056432850658893585, 0.08310426771640778, 0.046276696026325226], [0.005241251550614834, -0.10459856688976288, -0.010491992346942425], [-0.22225773334503174, 0.42244958877563477, 0.008127553388476372], [0.16448712348937988, 0.46090537309646606, 0.09747520834207535], [-0.04379544034600258, -0.22121088206768036, 0.018882280215620995], [-0.15970586240291595, 0.8290281891822815, 0.0016287602484226227], [0.35520100593566895, 0.8005531430244446, -0.03338488191366196], [-0.08529338240623474, -0.25434064865112305, 0.034162990748882294], [-0.2701951265335083, 0.8887296915054321, 0.047897905111312866], [0.32050326466560364, 0.9021086692810059, 0.04635249823331833], [-0.11852064728736877, -0.46217453479766846, 0.04871850460767746], [-0.1270415186882019, -0.37428051233291626, -0.029891574755311012], [-0.05861296504735947, -0.376213014125824, 0.10284227877855301], [-0.1874811202287674, -0.5082798004150391, 0.053002119064331055], [-0.1791353076696396, -0.41184115409851074, -0.09398877620697021], [-0.03892165422439575, -0.40845346450805664, 0.19042468070983887], [-0.4158551096916199, -0.46605998277664185, -0.20758740603923798], [-0.12551939487457275, -0.16581185162067413, 0.23048830032348633], [-0.573584794998169, -0.6534299254417419, -0.14507587254047394], [-0.34117817878723145, -0.03640870749950409, 0.2996326684951782], [-0.5955021977424622, -0.7327829003334045, -0.16227367520332336], [-0.4148014783859253, -0.0017767399549484253, 0.32081958651542664]]}, {"image_id": "260.jpg", "category_id": 1, "keypoints": [1386.6026611328125, 487.0579833984375, 0.981849193572998, 1377.83935546875, 523.0597534179688, 0.9828376173973083, 1408.9947509765625, 521.1109619140625, 0.9858697056770325, 1387.3529052734375, 443.931640625, 0.9887272119522095, 1289.271728515625, 662.53369140625, 0.9804887771606445, 1461.468017578125, 660.4896850585938, 0.9731318354606628, 1371.2432861328125, 395.71337890625, 0.9838818311691284, 1313.9632568359375, 818.933349609375, 0.9016844630241394, 1544.5927734375, 805.0068359375, 0.9348649978637695, 1354.81884765625, 382.2562255859375, 0.9735775589942932, 1274.0223388671875, 843.5013427734375, 0.8814363479614258, 1528.59765625, 836.23046875, 0.9496092796325684, 1340.61181640625, 298.7342834472656, 0.9904847145080566, 1339.459228515625, 331.38916015625, 0.9786701202392578, 1363.1385498046875, 334.1332092285156, 0.9902951121330261, 1314.459228515625, 279.8763427734375, 0.9732397794723511, 1321.152587890625, 315.818115234375, 0.9636984467506409, 1366.7554931640625, 323.90869140625, 0.9764121770858765, 1218.1383056640625, 284.7008361816406, 0.9330286979675293, 1322.08056640625, 435.65484619140625, 0.9554510116577148, 1152.7916259765625, 216.63958740234375, 0.9131910800933838, 1253.057373046875, 482.35491943359375, 0.8932424187660217, 1142.5399169921875, 182.44647216796875, 0.9214102625846863, 1233.929931640625, 491.287841796875, 0.8668869733810425, 1316.9971923828125, 205.5152587890625, 0.9374482035636902, 1122.4901123046875, 138.65432739257812, 0.926806628704071, 1207.081298828125, 509.9114990234375, 0.8823315501213074, 1261.7366943359375, 840.7002563476562, 0.9229317903518677, 1497.081298828125, 844.031982421875, 0.9295337796211243], "score": 3.184227466583252, "box": [1097.9010009765625, 184.7011260986328, 491.4625244140625, 664.2413177490234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.026348691433668137, 0.09490043669939041, -0.052811428904533386], [0.05944043770432472, 0.07990220189094543, 0.04549621418118477], [0.0031134365126490593, -0.1030285656452179, -0.014603715389966965], [-0.22808228433132172, 0.41590192914009094, 0.02576608955860138], [0.2052564173936844, 0.4347493052482605, 0.1324148029088974], [-0.03758729249238968, -0.2231355607509613, 0.01360839232802391], [-0.1644354909658432, 0.8180636167526245, 0.027395684272050858], [0.4021270275115967, 0.7875640392303467, 0.0868978351354599], [-0.08119398355484009, -0.2527347803115845, 0.028734609484672546], [-0.26971662044525146, 0.8888306617736816, 0.0666293054819107], [0.37933871150016785, 0.8743398189544678, 0.18444423377513885], [-0.10188271850347519, -0.46086427569389343, 0.03504738211631775], [-0.11824323236942291, -0.3707831799983978, -0.03834379464387894], [-0.04515215754508972, -0.374491423368454, 0.08991682529449463], [-0.16891661286354065, -0.5099364519119263, 0.039674751460552216], [-0.17456157505512238, -0.40904852747917175, -0.09716945886611938], [-0.02431158535182476, -0.4087388217449188, 0.17559482157230377], [-0.4130803048610687, -0.4572983682155609, -0.20348641276359558], [-0.11282427608966827, -0.17319443821907043, 0.23284755647182465], [-0.5862005949020386, -0.6379929780960083, -0.20112381875514984], [-0.32683002948760986, -0.02857828140258789, 0.228748619556427], [-0.6110540628433228, -0.7134464979171753, -0.22610031068325043], [-0.40149301290512085, 0.0065520405769348145, 0.23943044245243073]]}, {"image_id": "260.jpg", "category_id": 1, "keypoints": [1006.9893798828125, 493.80731201171875, 0.9775643944740295, 1020.0142211914062, 522.0903930664062, 0.9883007407188416, 991.3618774414062, 530.4532470703125, 0.9756738543510437, 999.2421875, 455.4674987792969, 0.9898843169212341, 1082.3564453125, 643.651123046875, 0.9841020703315735, 953.449462890625, 668.6005249023438, 0.9726559519767761, 1016.29833984375, 410.3158264160156, 0.9918994903564453, 1121.449951171875, 770.8605346679688, 0.9016387462615967, 869.837646484375, 761.2353515625, 0.9248145222663879, 1032.0804443359375, 395.7830810546875, 0.990989089012146, 1162.2666015625, 800.2197265625, 0.9178164601325989, 870.3519287109375, 807.3656005859375, 0.926192045211792, 1039.017578125, 313.6968688964844, 0.9857574105262756, 1038.19482421875, 343.10418701171875, 0.9877877235412598, 1024.7025146484375, 356.3657531738281, 0.9841048717498779, 1061.8533935546875, 294.2425537109375, 0.9420160055160522, 1047.603515625, 324.461669921875, 0.9869224429130554, 1030.0841064453125, 358.926513671875, 0.9786770343780518, 1033.5894775390625, 320.78851318359375, 0.9205231070518494, 1099.5694580078125, 436.82464599609375, 0.9476775527000427, 1099.29833984375, 234.19381713867188, 0.9050589203834534, 1198.0709228515625, 487.64794921875, 0.9550429582595825, 1112.46142578125, 205.81243896484375, 0.942791759967804, 1226.98974609375, 493.797607421875, 0.8944743275642395, 1079.333740234375, 215.03656005859375, 0.9080715179443359, 1135.229736328125, 180.04998779296875, 0.8974190950393677, 1269.84619140625, 497.9340515136719, 0.8569145202636719, 1167.6978759765625, 812.1373291015625, 0.8938209414482117, 886.2841796875, 818.0234985351562, 0.9172282218933105], "score": 3.183783769607544, "box": [806.4700317382812, 198.1186065673828, 465.44793701171875, 617.2413177490234], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.03577568754553795, 0.07121527194976807, 0.07803500443696976], [-0.042590878903865814, 0.09794596582651138, -0.023094413802027702], [-0.02063063532114029, -0.1022971123456955, -0.014935577288269997], [0.20928718149662018, 0.4071607291698456, 0.13129109144210815], [-0.14533330500125885, 0.4724942445755005, -0.01821340247988701], [0.026688456535339355, -0.2167283147573471, -0.06367287039756775], [0.3261061906814575, 0.7774282693862915, 0.23218774795532227], [-0.37607643008232117, 0.7359749674797058, 0.17642560601234436], [0.06970521807670593, -0.24703244864940643, -0.0823708176612854], [0.41784900426864624, 0.8406999111175537, 0.16077876091003418], [-0.373678058385849, 0.8643710017204285, 0.14496350288391113], [0.07387573271989822, -0.4491557478904724, -0.14070475101470947], [0.0790615901350975, -0.38254714012145996, -0.04283696785569191], [0.0399923212826252, -0.34356385469436646, -0.1817496418952942], [0.1372351497411728, -0.5023056864738464, -0.1563919186592102], [0.10616590082645416, -0.43719446659088135, 0.024811770766973495], [0.05405816808342934, -0.3301870822906494, -0.2756893038749695], [0.04994073137640953, -0.4720006585121155, 0.27841055393218994], [0.21977151930332184, -0.14100567996501923, -0.31520161032676697], [0.19408085942268372, -0.6644051671028137, 0.33875203132629395], [0.4398847222328186, -0.024231210350990295, -0.3703015148639679], [0.2282157838344574, -0.7380392551422119, 0.3573397397994995], [0.5193457007408142, -0.006773456931114197, -0.38668444752693176]]}, {"image_id": "261.jpg", "category_id": 1, "keypoints": [1399.402099609375, 487.1627197265625, 0.9819164872169495, 1388.4736328125, 522.7277221679688, 0.9840882420539856, 1422.5338134765625, 521.318359375, 0.9869102835655212, 1401.0020751953125, 444.45916748046875, 0.9884241223335266, 1295.305419921875, 662.0923461914062, 0.9807851314544678, 1479.23291015625, 660.562744140625, 0.9710647463798523, 1385.260009765625, 396.44036865234375, 0.9833459854125977, 1312.2906494140625, 825.9888916015625, 0.9139518141746521, 1559.5489501953125, 808.099609375, 0.937618613243103, 1368.95263671875, 383.46856689453125, 0.9724792838096619, 1265.0325927734375, 848.467529296875, 0.8984534740447998, 1557.4091796875, 834.4537353515625, 0.9581735134124756, 1356.1201171875, 300.1048583984375, 0.9903510212898254, 1352.532958984375, 332.71209716796875, 0.9785085916519165, 1379.8807373046875, 335.74462890625, 0.9878063797950745, 1329.0238037109375, 282.593994140625, 0.9714741706848145, 1334.3153076171875, 318.0087890625, 0.9657368063926697, 1387.510986328125, 326.22650146484375, 0.972937285900116, 1229.81591796875, 285.002197265625, 0.9396270513534546, 1347.85009765625, 437.15899658203125, 0.9691587090492249, 1164.7081298828125, 218.13131713867188, 0.9151039123535156, 1269.9942626953125, 479.8197937011719, 0.9083858132362366, 1154.8399658203125, 183.64205932617188, 0.9278480410575867, 1251.3450927734375, 485.7455749511719, 0.8572012782096863, 1328.2919921875, 209.43380737304688, 0.9325228929519653, 1133.4268798828125, 139.50958251953125, 0.9297425746917725, 1222.01123046875, 500.4121398925781, 0.8645850419998169, 1249.94775390625, 846.30908203125, 0.912316083908081, 1534.00830078125, 835.6815185546875, 0.9385269284248352], "score": 3.1854000091552734, "box": [1110.099609375, 187.556884765625, 491.1591796875, 665.99072265625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.031251683831214905, 0.09450522810220718, -0.05224279314279556], [0.06031269207596779, 0.08184896409511566, 0.04240700602531433], [0.004684285260736942, -0.10368415713310242, -0.014433041214942932], [-0.24646131694316864, 0.41411662101745605, 0.0025497376918792725], [0.21678994596004486, 0.4324272871017456, 0.13734139502048492], [-0.034044049680233, -0.22303205728530884, 0.01939752697944641], [-0.20689387619495392, 0.821416974067688, -0.024084527045488358], [0.4067504405975342, 0.792597770690918, 0.0935465544462204], [-0.07769358158111572, -0.25173768401145935, 0.036875419318675995], [-0.32199403643608093, 0.8807042837142944, 0.008460566401481628], [0.42143377661705017, 0.8680609464645386, 0.20246616005897522], [-0.09437590837478638, -0.4613529145717621, 0.04077168181538582], [-0.11688710749149323, -0.3700729310512543, -0.030322767794132233], [-0.035656701773405075, -0.37452104687690735, 0.09401547908782959], [-0.16403912007808685, -0.5067921876907349, 0.043524809181690216], [-0.17393217980861664, -0.40645310282707214, -0.09026613086462021], [-0.003790824208408594, -0.40603646636009216, 0.1778286248445511], [-0.41315576434135437, -0.45862969756126404, -0.19753821194171906], [-0.08443090319633484, -0.16462531685829163, 0.2303425818681717], [-0.58944171667099, -0.6384879350662231, -0.20488642156124115], [-0.31168121099472046, -0.04100058972835541, 0.20375940203666687], [-0.6133524775505066, -0.7110961675643921, -0.23924677073955536], [-0.3889591097831726, -0.016696900129318237, 0.18241503834724426]]}, {"image_id": "261.jpg", "category_id": 1, "keypoints": [1011.2294921875, 489.4164733886719, 0.9793217778205872, 1021.7335815429688, 518.454833984375, 0.987468957901001, 997.1011352539062, 525.4727172851562, 0.9722703099250793, 1004.4439086914062, 451.1619873046875, 0.990675687789917, 1083.699462890625, 639.1633911132812, 0.9829867482185364, 952.83642578125, 663.7785034179688, 0.9738091230392456, 1022.9078979492188, 405.93682861328125, 0.9923102855682373, 1119.3011474609375, 771.6273193359375, 0.8851945400238037, 873.894775390625, 761.9363403320312, 0.9243305921554565, 1038.7777099609375, 391.9391784667969, 0.9916731715202332, 1164.431884765625, 797.4832153320312, 0.9283678531646729, 873.906494140625, 803.920654296875, 0.9389916062355042, 1051.984375, 310.31048583984375, 0.985812246799469, 1046.56591796875, 338.08990478515625, 0.9904746413230896, 1037.709716796875, 352.56036376953125, 0.9868519902229309, 1074.380859375, 291.4102478027344, 0.9380605816841125, 1054.1669921875, 317.902587890625, 0.9908114671707153, 1046.17822265625, 353.4261779785156, 0.9801380634307861, 1034.4505615234375, 322.891845703125, 0.9389635920524597, 1119.195556640625, 436.1322021484375, 0.9558515548706055, 1108.0592041015625, 237.88150024414062, 0.9397252798080444, 1216.934814453125, 482.1655578613281, 0.9660940766334534, 1126.404052734375, 202.30035400390625, 0.9562115669250488, 1248.51220703125, 487.0876770019531, 0.9030717015266418, 1092.456298828125, 217.18743896484375, 0.920164167881012, 1145.853271484375, 168.42608642578125, 0.8581937551498413, 1289.826171875, 490.9090576171875, 0.8652526140213013, 1173.053466796875, 809.6193237304688, 0.9114232063293457, 886.86083984375, 815.5108642578125, 0.9248603582382202], "score": 3.1872341632843018, "box": [815.7552490234375, 187.47357177734375, 469.872314453125, 630.1614990234375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.028760097920894623, 0.07069475948810577, 0.08123455196619034], [-0.040516432374715805, 0.09801152348518372, -0.026014462113380432], [-0.019177787005901337, -0.10225874185562134, -0.01732592284679413], [0.1992616504430771, 0.3985899090766907, 0.1732267141342163], [-0.15838509798049927, 0.4667825698852539, -0.011197628453373909], [0.032564595341682434, -0.21503710746765137, -0.06600239127874374], [0.3031977117061615, 0.7753064632415771, 0.2584487497806549], [-0.3763938248157501, 0.7448222637176514, 0.17529481649398804], [0.0767144113779068, -0.24520447850227356, -0.08234985917806625], [0.4049451947212219, 0.8306944966316223, 0.19478470087051392], [-0.37568947672843933, 0.8747039437294006, 0.15144047141075134], [0.09612385183572769, -0.44600462913513184, -0.14187738299369812], [0.08872046321630478, -0.38064008951187134, -0.043341003358364105], [0.06136726960539818, -0.34155452251434326, -0.1850845217704773], [0.15995405614376068, -0.4992075562477112, -0.1552930325269699], [0.11088528484106064, -0.43890321254730225, 0.02311866544187069], [0.08518960326910019, -0.33323752880096436, -0.2777017056941986], [0.025998348370194435, -0.43335193395614624, 0.2703191936016083], [0.2522278130054474, -0.14258703589439392, -0.2933711111545563], [0.18124429881572723, -0.6153227686882019, 0.3331325650215149], [0.47653087973594666, -0.03392121195793152, -0.3453660309314728], [0.21860623359680176, -0.6878683567047119, 0.3493141233921051], [0.5583261251449585, -0.021033674478530884, -0.3496840298175812]]}, {"image_id": "262.jpg", "category_id": 1, "keypoints": [1412.4263916015625, 488.14703369140625, 0.9807971715927124, 1398.4952392578125, 524.53515625, 0.9859145283699036, 1435.0706787109375, 522.4146118164062, 0.9861267805099487, 1416.1668701171875, 445.7294006347656, 0.9881587624549866, 1302.8212890625, 657.9425048828125, 0.9726572632789612, 1495.13330078125, 663.0144653320312, 0.9709839224815369, 1401.9173583984375, 396.7734680175781, 0.9810658097267151, 1314.1163330078125, 814.1306762695312, 0.939704418182373, 1568.4130859375, 807.4060668945312, 0.9273678064346313, 1385.812255859375, 383.2474670410156, 0.9722394943237305, 1263.72607421875, 832.4419555664062, 0.8862536549568176, 1567.77490234375, 837.7569580078125, 0.9439423084259033, 1374.326416015625, 298.9969177246094, 0.9893788695335388, 1369.0577392578125, 332.3216857910156, 0.9778428673744202, 1398.82275390625, 334.29364013671875, 0.9863134026527405, 1346.1900634765625, 283.13037109375, 0.9708780646324158, 1350.5487060546875, 317.2974853515625, 0.968744695186615, 1408.341796875, 323.9903564453125, 0.9718120694160461, 1251.835693359375, 286.83135986328125, 0.9515977501869202, 1379.608642578125, 432.16448974609375, 0.9670164585113525, 1177.0162353515625, 218.27883911132812, 0.9006977081298828, 1289.064208984375, 473.0619812011719, 0.9425570368766785, 1167.8853759765625, 184.910400390625, 0.9127762317657471, 1267.910888671875, 479.2639465332031, 0.8532434105873108, 1346.9627685546875, 210.2601318359375, 0.9362844824790955, 1149.6015625, 140.5677490234375, 0.9276756048202515, 1238.0372314453125, 486.8450012207031, 0.8781059384346008, 1249.38671875, 827.8712768554688, 0.8514620065689087, 1542.987060546875, 842.8929443359375, 0.9314241409301758], "score": 3.1810147762298584, "box": [1129.110107421875, 185.5068359375, 477.33447265625, 676.0557861328125], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0379052571952343, 0.09514137357473373, -0.04602133855223656], [0.05865843594074249, 0.08248595893383026, 0.043110594153404236], [0.008486825041472912, -0.10252784192562103, -0.019519593566656113], [-0.2588255703449249, 0.40599197149276733, 0.029602598398923874], [0.22056566178798676, 0.4333634376525879, 0.1253095418214798], [-0.02586849220097065, -0.2241077572107315, 0.011941105127334595], [-0.2245185375213623, 0.811001181602478, 0.07915414124727249], [0.39834752678871155, 0.7980561256408691, 0.07431598007678986], [-0.0678129568696022, -0.2544437646865845, 0.03079964593052864], [-0.34287840127944946, 0.8587439656257629, 0.1179334968328476], [0.4155048131942749, 0.882273256778717, 0.1760740727186203], [-0.08314689993858337, -0.4639519453048706, 0.03570166602730751], [-0.10961002111434937, -0.3728938698768616, -0.034197863191366196], [-0.02234763838350773, -0.3767690658569336, 0.08578373491764069], [-0.1552131474018097, -0.5054035782814026, 0.04134948551654816], [-0.167308509349823, -0.4101315140724182, -0.09290017932653427], [0.014161414466798306, -0.40965402126312256, 0.1670830100774765], [-0.39532041549682617, -0.45604705810546875, -0.2239639312028885], [-0.04292619228363037, -0.16527478396892548, 0.23314286768436432], [-0.5813915729522705, -0.625331461429596, -0.2315852791070938], [-0.27919986844062805, -0.05822323262691498, 0.24647639691829681], [-0.6042448282241821, -0.6954669952392578, -0.2712092399597168], [-0.35842931270599365, -0.03511723875999451, 0.2326841503381729]]}, {"image_id": "262.jpg", "category_id": 1, "keypoints": [1020.8373413085938, 486.93304443359375, 0.9766910076141357, 1030.052734375, 517.721923828125, 0.9849420785903931, 1005.0731811523438, 521.8869018554688, 0.9769170880317688, 1016.5184936523438, 448.5516662597656, 0.9916403889656067, 1086.59326171875, 639.9595947265625, 0.9808979034423828, 956.6966552734375, 660.4647827148438, 0.9795399308204651, 1035.7601318359375, 404.1625061035156, 0.9917353987693787, 1123.19873046875, 773.9612426757812, 0.8891881704330444, 870.1671142578125, 756.7449340820312, 0.9531112909317017, 1051.5989990234375, 390.9087219238281, 0.9913371205329895, 1167.39111328125, 797.791259765625, 0.9230448007583618, 869.880126953125, 797.4862060546875, 0.9308660626411438, 1064.5819091796875, 310.34503173828125, 0.985683023929596, 1060.5501708984375, 339.0071716308594, 0.9892387390136719, 1049.12841796875, 350.21484375, 0.9850090146064758, 1086.8280029296875, 292.69378662109375, 0.9409358501434326, 1068.5714111328125, 321.60577392578125, 0.9907369613647461, 1055.8045654296875, 348.10906982421875, 0.9843695163726807, 1018.0127563476562, 364.720703125, 0.9639042019844055, 1129.0787353515625, 425.829345703125, 0.9542912840843201, 1031.03955078125, 401.185791015625, 0.935888946056366, 1230.376953125, 471.7566833496094, 0.9644864201545715, 1031.577880859375, 412.53997802734375, 0.9497622847557068, 1260.4442138671875, 479.6334228515625, 0.8761671781539917, 1096.3206787109375, 219.52117919921875, 0.9035771489143372, 1055.29345703125, 397.1018981933594, 0.9489516019821167, 1300.56494140625, 481.254638671875, 0.8467333316802979, 1176.04443359375, 809.212646484375, 0.9306727647781372, 880.4195556640625, 810.6217041015625, 0.9342299699783325], "score": 3.190825939178467, "box": [823.4176025390625, 191.03907775878906, 469.5120849609375, 629.9211883544922], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.024879135191440582, 0.07589325308799744, 0.0778171718120575], [-0.0453648641705513, 0.09454688429832458, -0.030581532046198845], [-0.013918355107307434, -0.10383966565132141, -0.01249057985842228], [0.18276488780975342, 0.41255849599838257, 0.16059093177318573], [-0.1729099452495575, 0.4603411555290222, -0.018596841022372246], [0.036595460027456284, -0.2208751142024994, -0.0522468164563179], [0.2884763479232788, 0.7900524139404297, 0.2408459335565567], [-0.40972813963890076, 0.7304956912994385, 0.15654511749744415], [0.07725414633750916, -0.25445473194122314, -0.07106250524520874], [0.39281797409057617, 0.8434092998504639, 0.17957384884357452], [-0.40972936153411865, 0.8588165044784546, 0.12509894371032715], [0.10890325903892517, -0.45380899310112, -0.1308029741048813], [0.10034802556037903, -0.38853469491004944, -0.03219360113143921], [0.06512907147407532, -0.35224804282188416, -0.1729031652212143], [0.17429913580417633, -0.5050021409988403, -0.14538457989692688], [0.12526842951774597, -0.44221171736717224, 0.037098854780197144], [0.0828937292098999, -0.3528929650783539, -0.26722925901412964], [-0.031551651656627655, -0.31529638171195984, 0.20373839139938354], [0.25229400396347046, -0.16889682412147522, -0.31245845556259155], [0.0326739177107811, -0.15497219562530518, 0.3809800148010254], [0.481414794921875, -0.06288912892341614, -0.3467310667037964], [0.03695930913090706, -0.095522940158844, 0.4390724301338196], [0.5612125992774963, -0.04162907600402832, -0.35458481311798096]]}, {"image_id": "263.jpg", "category_id": 1, "keypoints": [1026.9560546875, 483.3572998046875, 0.9750781059265137, 1035.43115234375, 513.7642822265625, 0.986343264579773, 1010.9031372070312, 518.4609375, 0.9740913510322571, 1023.0476684570312, 444.96112060546875, 0.9892996549606323, 1088.6787109375, 639.07666015625, 0.9789819121360779, 959.8983764648438, 659.1905517578125, 0.9769081473350525, 1044.238525390625, 401.63818359375, 0.9928852319717407, 1124.8712158203125, 771.8553466796875, 0.9051014184951782, 870.3746337890625, 759.5797119140625, 0.9567400217056274, 1060.52197265625, 388.4637756347656, 0.9925466775894165, 1165.39697265625, 795.2816162109375, 0.8953038454055786, 868.944091796875, 799.3135986328125, 0.9322373270988464, 1078.3211669921875, 309.4189453125, 0.9864069819450378, 1070.2335205078125, 337.837646484375, 0.9910144209861755, 1062.2122802734375, 347.8081970214844, 0.9880126118659973, 1101.089111328125, 292.8780822753906, 0.9369694590568542, 1076.7261962890625, 322.23919677734375, 0.9909837245941162, 1070.9840087890625, 346.54425048828125, 0.9845275282859802, 1022.1740112304688, 366.8875732421875, 0.9611429572105408, 1151.997314453125, 424.846435546875, 0.9612010717391968, 1029.57958984375, 417.18414306640625, 0.9413502812385559, 1254.2864990234375, 463.48406982421875, 0.9789893627166748, 1024.337646484375, 443.6655578613281, 0.937341570854187, 1284.2706298828125, 469.7748718261719, 0.9055312275886536, 1117.62744140625, 225.583251953125, 0.9256722927093506, 1025.823974609375, 478.443115234375, 0.9000577926635742, 1323.76171875, 469.5101318359375, 0.8258283138275146, 1172.948486328125, 804.6265869140625, 0.9207796454429626, 877.0228271484375, 812.9848022460938, 0.8970292210578918], "score": 3.189969539642334, "box": [833.3988037109375, 189.7967071533203, 476.579345703125, 630.9048919677734], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.023571401834487915, 0.07529754936695099, 0.07919922471046448], [-0.046186383813619614, 0.0947296991944313, -0.02981608919799328], [-0.012807512655854225, -0.1040358692407608, -0.013952265493571758], [0.1714683473110199, 0.4181358814239502, 0.1581442505121231], [-0.17846807837486267, 0.45980775356292725, -0.02739795669913292], [0.04264909401535988, -0.21787656843662262, -0.05615745857357979], [0.27712610363960266, 0.7951557040214539, 0.24573035538196564], [-0.4175510108470917, 0.7343831062316895, 0.1401062309741974], [0.0840156152844429, -0.25092339515686035, -0.07465262711048126], [0.3785053491592407, 0.8508979082107544, 0.18118919432163239], [-0.4209878444671631, 0.8601627945899963, 0.09896023571491241], [0.12864351272583008, -0.44988322257995605, -0.1282166689634323], [0.10995615273714066, -0.3835242986679077, -0.03161920607089996], [0.08377071470022202, -0.35094302892684937, -0.17544899880886078], [0.19638100266456604, -0.4985371232032776, -0.14008118212223053], [0.13152772188186646, -0.4338657855987549, 0.04131080210208893], [0.10768399387598038, -0.3490293025970459, -0.26848238706588745], [-0.030008263885974884, -0.30817025899887085, 0.20549079775810242], [0.28803902864456177, -0.17164482176303864, -0.2998727262020111], [0.0022235410287976265, -0.11986185610294342, 0.36378589272499084], [0.5257107615470886, -0.08054037392139435, -0.3216729760169983], [-0.012564784847199917, -0.043008968234062195, 0.39265915751457214], [0.6068424582481384, -0.06324635446071625, -0.32773131132125854]]}, {"image_id": "263.jpg", "category_id": 1, "keypoints": [1423.88916015625, 488.2671813964844, 0.9802005290985107, 1408.6527099609375, 526.089111328125, 0.98811936378479, 1445.9173583984375, 523.0015258789062, 0.985749363899231, 1428.69921875, 445.274169921875, 0.9893558621406555, 1311.5552978515625, 662.351806640625, 0.9748335480690002, 1507.6552734375, 664.7178344726562, 0.9784530997276306, 1416.9373779296875, 394.747802734375, 0.9796798229217529, 1314.3101806640625, 821.9854736328125, 0.9101033210754395, 1578.6527099609375, 818.4285888671875, 0.9398951530456543, 1401.9630126953125, 380.66876220703125, 0.9744484424591064, 1266.0230712890625, 836.11083984375, 0.8755090832710266, 1582.21923828125, 849.8477783203125, 0.9674845337867737, 1394.8155517578125, 293.26885986328125, 0.9893333315849304, 1385.6617431640625, 328.2188720703125, 0.9770511388778687, 1420.272705078125, 330.0928039550781, 0.981550931930542, 1366.705322265625, 277.021240234375, 0.9700965285301208, 1364.7548828125, 311.65765380859375, 0.9700554013252258, 1432.1337890625, 320.4598693847656, 0.9704351425170898, 1257.16943359375, 283.9580078125, 0.9293487071990967, 1416.6854248046875, 422.7314147949219, 0.9720116853713989, 1183.9136962890625, 212.02914428710938, 0.9351835250854492, 1317.119384765625, 463.4927978515625, 0.9544037580490112, 1168.0386962890625, 179.64120483398438, 0.9462302923202515, 1292.4610595703125, 466.6149597167969, 0.9090903401374817, 1373.2955322265625, 205.58346557617188, 0.9267416000366211, 1133.2608642578125, 146.31195068359375, 0.901790976524353, 1259.1519775390625, 464.1811218261719, 0.9195762872695923, 1258.621826171875, 835.6765747070312, 0.9098736643791199, 1558.5419921875, 845.2890014648438, 0.9400517344474792], "score": 3.187161445617676, "box": [1141.43896484375, 194.7586669921875, 470.8917236328125, 662.5917358398438], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.03901296854019165, 0.09342337399721146, -0.04489061236381531], [0.055861882865428925, 0.08249017596244812, 0.04275039955973625], [0.010230282321572304, -0.10035422444343567, -0.0192152988165617], [-0.26299959421157837, 0.4063771963119507, -0.002802059054374695], [0.22003202140331268, 0.4285641014575958, 0.1306641399860382], [-0.017311718314886093, -0.22453078627586365, 0.005957458168268204], [-0.2534481883049011, 0.8112596273422241, 0.02093924582004547], [0.3861902058124542, 0.7968897819519043, 0.10447061061859131], [-0.05624694004654884, -0.2565557062625885, 0.025848008692264557], [-0.3764945864677429, 0.8505775928497314, 0.0488203689455986], [0.4132598638534546, 0.8853174448013306, 0.19833579659461975], [-0.06030384451150894, -0.4637117087841034, 0.025928854942321777], [-0.09540855884552002, -0.37341055274009705, -0.03823106735944748], [-0.001518927630968392, -0.37557217478752136, 0.07268795371055603], [-0.13175787031650543, -0.5062116384506226, 0.03372129052877426], [-0.1549593210220337, -0.4054584205150604, -0.09605827182531357], [0.04327122122049332, -0.39892980456352234, 0.15139412879943848], [-0.39393770694732666, -0.4537402093410492, -0.19906577467918396], [0.014993136748671532, -0.15549543499946594, 0.2287190854549408], [-0.5763769149780273, -0.6197535991668701, -0.23458820581436157], [-0.22384807467460632, -0.06125152111053467, 0.24728721380233765], [-0.609117329120636, -0.6831125020980835, -0.27636808156967163], [-0.3037397265434265, -0.051312148571014404, 0.2655276656150818]]}, {"image_id": "264.jpg", "category_id": 1, "keypoints": [1032.06298828125, 483.55352783203125, 0.9734441637992859, 1038.3973388671875, 512.4752197265625, 0.9869417548179626, 1017.3298950195312, 519.1336669921875, 0.9724562168121338, 1028.4971923828125, 444.3457336425781, 0.9879159927368164, 1087.1370849609375, 641.0248413085938, 0.9808091521263123, 963.46240234375, 658.7868041992188, 0.9720188975334167, 1050.7562255859375, 401.20330810546875, 0.9914036989212036, 1122.9910888671875, 774.5625610351562, 0.8989211916923523, 870.8181762695312, 759.4046020507812, 0.948337733745575, 1067.81640625, 388.04901123046875, 0.9945059418678284, 1157.995361328125, 796.0997314453125, 0.8789923191070557, 878.4811401367188, 794.4591064453125, 0.9171971082687378, 1088.9088134765625, 308.5402526855469, 0.9878734350204468, 1072.311767578125, 332.245849609375, 0.9925693273544312, 1077.3350830078125, 351.8851013183594, 0.9892815351486206, 1111.5543212890625, 292.68548583984375, 0.9505093097686768, 1072.7440185546875, 309.74285888671875, 0.9916670918464661, 1094.45458984375, 355.38385009765625, 0.9841215014457703, 1047.1011962890625, 325.3470764160156, 0.9436724781990051, 1180.9439697265625, 428.25390625, 0.9604731798171997, 1095.750244140625, 275.084716796875, 0.9431880116462708, 1275.91650390625, 456.36248779296875, 0.979759693145752, 1103.0587158203125, 255.83567810058594, 0.9454512000083923, 1304.610107421875, 460.7642822265625, 0.9421122074127197, 1143.821533203125, 219.03414916992188, 0.9245713353157043, 1129.8228759765625, 217.26043701171875, 0.9406903982162476, 1338.05908203125, 459.712646484375, 0.8768600225448608, 1164.279052734375, 807.1366577148438, 0.878521203994751, 888.9640502929688, 808.4031372070312, 0.9405785202980042], "score": 3.194221019744873, "box": [836.00390625, 191.1446075439453, 491.802490234375, 630.5555877685547], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.018675193190574646, 0.07255417108535767, 0.08305708318948746], [-0.043548762798309326, 0.09606310725212097, -0.029742838814854622], [-0.012484470382332802, -0.10351595282554626, -0.018168076872825623], [0.15235504508018494, 0.4183650314807892, 0.17197628319263458], [-0.1832699477672577, 0.4575009346008301, -0.04886453598737717], [0.044615745544433594, -0.2147544026374817, -0.06518501043319702], [0.25632327795028687, 0.7944425344467163, 0.2641414999961853], [-0.42897045612335205, 0.7306889295578003, 0.11045265942811966], [0.08723191916942596, -0.24723687767982483, -0.08203136920928955], [0.36227649450302124, 0.857521653175354, 0.21573790907859802], [-0.40027356147766113, 0.854230523109436, 0.07249972969293594], [0.13877347111701965, -0.43888160586357117, -0.15392595529556274], [0.09819821268320084, -0.3862612545490265, -0.055435024201869965], [0.1096976026892662, -0.33127954602241516, -0.19447669386863708], [0.20746217668056488, -0.4864695966243744, -0.16489200294017792], [0.10165199637413025, -0.453814834356308, 0.005865735933184624], [0.1602872759103775, -0.3154135048389435, -0.27470624446868896], [0.015286833047866821, -0.4140964448451996, 0.25036096572875977], [0.35526078939437866, -0.15404316782951355, -0.2447175234556198], [0.1759122908115387, -0.5834431648254395, 0.33419692516326904], [0.5994303822517395, -0.08088365197181702, -0.2602403461933136], [0.20543800294399261, -0.6609270572662354, 0.3435214161872864], [0.6813253164291382, -0.06801360845565796, -0.2673805356025696]]}, {"image_id": "264.jpg", "category_id": 1, "keypoints": [1436.32568359375, 487.57366943359375, 0.9797887802124023, 1418.9193115234375, 524.1370239257812, 0.9890420436859131, 1459.5791015625, 522.5570068359375, 0.9874249696731567, 1441.634033203125, 444.9120788574219, 0.9893653392791748, 1322.194580078125, 658.5439453125, 0.975486695766449, 1520.3734130859375, 665.1935424804688, 0.979812502861023, 1431.08154296875, 394.36798095703125, 0.980594277381897, 1309.0714111328125, 818.239990234375, 0.8982683420181274, 1580.72119140625, 823.2137451171875, 0.9319806098937988, 1417.7318115234375, 379.4975891113281, 0.9777471423149109, 1264.8970947265625, 831.70263671875, 0.880419135093689, 1584.8040771484375, 857.763671875, 0.9594775438308716, 1410.194091796875, 291.4562683105469, 0.9893117547035217, 1398.28369140625, 326.99371337890625, 0.9783252477645874, 1437.796875, 327.9271240234375, 0.9825578927993774, 1382.7049560546875, 274.96881103515625, 0.9689096808433533, 1376.331787109375, 310.5138854980469, 0.9729047417640686, 1452.9544677734375, 317.836181640625, 0.9757226705551147, 1276.1170654296875, 282.519287109375, 0.9424543380737305, 1450.9603271484375, 415.6213073730469, 0.9704327583312988, 1199.7628173828125, 215.57553100585938, 0.9183376431465149, 1343.4805908203125, 453.27215576171875, 0.9661721587181091, 1186.1724853515625, 186.48760986328125, 0.9249845743179321, 1317.1492919921875, 455.446533203125, 0.9307900667190552, 1388.7410888671875, 201.09384155273438, 0.924487292766571, 1151.519775390625, 148.86895751953125, 0.9407082796096802, 1291.140625, 455.27410888671875, 0.9312861561775208, 1261.0487060546875, 830.3994140625, 0.9155696630477905, 1562.958740234375, 851.2724609375, 0.948512613773346], "score": 3.188417911529541, "box": [1153.3394775390625, 192.1405029296875, 465.6273193359375, 662.7542114257812], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.04428448900580406, 0.09235763549804688, -0.042504943907260895], [0.0573015995323658, 0.08404757082462311, 0.03789430484175682], [0.010715994983911514, -0.10015898942947388, -0.0191463865339756], [-0.2701393961906433, 0.4050544798374176, 0.006424266844987869], [0.21927261352539062, 0.4352318048477173, 0.1163368821144104], [-0.01253165490925312, -0.2240634560585022, 0.008831026032567024], [-0.29819151759147644, 0.8092218041419983, 0.051327500492334366], [0.360775351524353, 0.8158640265464783, 0.0919627845287323], [-0.04611554369330406, -0.25932782888412476, 0.03224592283368111], [-0.41949546337127686, 0.8501960635185242, 0.08502912521362305], [0.3879757821559906, 0.9096724987030029, 0.1807662695646286], [-0.05396471545100212, -0.46617448329925537, 0.02833748236298561], [-0.09315650165081024, -0.3740265965461731, -0.030214734375476837], [0.010507993400096893, -0.3802337050437927, 0.07098473608493805], [-0.12937164306640625, -0.5006478428840637, 0.036997001618146896], [-0.15457388758659363, -0.4079374074935913, -0.08462309837341309], [0.0625036358833313, -0.4046623110771179, 0.14449094235897064], [-0.3833416700363159, -0.45655977725982666, -0.21093903481960297], [0.07045303285121918, -0.16127657890319824, 0.23004655539989471], [-0.5750687718391418, -0.6128526329994202, -0.2480139434337616], [-0.16974440217018127, -0.0764850378036499, 0.27414751052856445], [-0.6042007207870483, -0.6746072769165039, -0.29479551315307617], [-0.246597021818161, -0.07064893841743469, 0.30414536595344543]]}, {"image_id": "265.jpg", "category_id": 1, "keypoints": [1447.66943359375, 488.7481689453125, 0.9800909161567688, 1428.236572265625, 524.5317993164062, 0.9901938438415527, 1471.0791015625, 523.989013671875, 0.9900639057159424, 1455.263427734375, 446.0835876464844, 0.9879898428916931, 1333.0546875, 657.008544921875, 0.9812679290771484, 1530.7703857421875, 667.0615844726562, 0.9823793172836304, 1448.466796875, 394.46368408203125, 0.9818769097328186, 1310.00244140625, 813.1572265625, 0.8915821313858032, 1583.3824462890625, 824.865966796875, 0.9430617094039917, 1435.9739990234375, 378.63897705078125, 0.9812692999839783, 1260.5284423828125, 825.9752197265625, 0.8809512257575989, 1586.8670654296875, 854.625732421875, 0.964127779006958, 1431.537109375, 289.61614990234375, 0.9893155097961426, 1416.2342529296875, 325.3187561035156, 0.983148992061615, 1459.7642822265625, 327.5169982910156, 0.988922119140625, 1405.1888427734375, 270.9705810546875, 0.9620999097824097, 1393.2071533203125, 308.0119323730469, 0.9784070253372192, 1477.245849609375, 317.9464111328125, 0.9830420613288879, 1292.166748046875, 281.7510986328125, 0.9563677310943604, 1476.083740234375, 411.19647216796875, 0.975500762462616, 1214.390869140625, 209.87619018554688, 0.948900580406189, 1367.57861328125, 444.9927978515625, 0.961502730846405, 1200.63720703125, 184.33572387695312, 0.9127568006515503, 1342.991943359375, 443.5637512207031, 0.9359896779060364, 1405.828857421875, 198.10098266601562, 0.9252645969390869, 1182.00439453125, 147.42608642578125, 0.8840683102607727, 1312.345703125, 450.3439636230469, 0.8760548830032349, 1258.3868408203125, 823.2555541992188, 0.9127846360206604, 1565.6480712890625, 847.17626953125, 0.9394574761390686], "score": 3.1879348754882812, "box": [1148.2989501953125, 190.5707550048828, 475.3306884765625, 662.6354827880859], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0490017831325531, 0.09091943502426147, -0.04017316550016403], [0.05555814877152443, 0.08580722659826279, 0.03632970154285431], [0.013778714463114738, -0.09998558461666107, -0.020474012941122055], [-0.26569831371307373, 0.40495261549949646, 0.023033613339066505], [0.2148333489894867, 0.43353044986724854, 0.12507891654968262], [0.0015456653200089931, -0.22687272727489471, 0.005418814718723297], [-0.31698521971702576, 0.8022778034210205, 0.08412808924913406], [0.3430997133255005, 0.8171492218971252, 0.1273287981748581], [-0.030924856662750244, -0.2640165090560913, 0.02826630510389805], [-0.44142088294029236, 0.8375880122184753, 0.11143499612808228], [0.37066420912742615, 0.9036710262298584, 0.22292941808700562], [-0.031020663678646088, -0.47090816497802734, 0.014120778068900108], [-0.07851050794124603, -0.3775412440299988, -0.03649301826953888], [0.03346513211727142, -0.3842853903770447, 0.0564546138048172], [-0.0986282154917717, -0.5197501182556152, 0.019654540345072746], [-0.13986214995384216, -0.4125610589981079, -0.09085734188556671], [0.09236733615398407, -0.40473079681396484, 0.12647788226604462], [-0.3702649176120758, -0.45874255895614624, -0.21208253502845764], [0.10488957166671753, -0.16746918857097626, 0.2238253951072693], [-0.5576974153518677, -0.6222875118255615, -0.22536472976207733], [-0.13492712378501892, -0.0922299474477768, 0.2788279354572296], [-0.5978385806083679, -0.6922735571861267, -0.24373361468315125], [-0.2105271816253662, -0.09783042967319489, 0.3117193877696991]]}, {"image_id": "265.jpg", "category_id": 1, "keypoints": [1040.6397705078125, 477.6629638671875, 0.9732263684272766, 1045.9822998046875, 506.3238830566406, 0.9872354865074158, 1024.73095703125, 512.991455078125, 0.9764070510864258, 1038.0927734375, 438.7370300292969, 0.9881681799888611, 1089.61474609375, 638.349853515625, 0.9832815527915955, 967.7529296875, 653.5324096679688, 0.9725581407546997, 1061.33642578125, 395.84210205078125, 0.990851104259491, 1123.55419921875, 772.2982788085938, 0.8836779594421387, 871.88720703125, 754.6047973632812, 0.9464099407196045, 1078.4295654296875, 382.9766845703125, 0.9938085079193115, 1158.09521484375, 795.968017578125, 0.8819656372070312, 875.018310546875, 790.40283203125, 0.9172540903091431, 1099.3656005859375, 306.19940185546875, 0.9884559512138367, 1083.0816650390625, 327.81298828125, 0.9918232560157776, 1088.185546875, 348.5755310058594, 0.9896180629730225, 1121.3643798828125, 291.4802551269531, 0.9526591300964355, 1082.1920166015625, 303.42584228515625, 0.9894617795944214, 1105.0562744140625, 353.09075927734375, 0.982914924621582, 1063.98193359375, 306.2076721191406, 0.9519182443618774, 1193.4788818359375, 421.69097900390625, 0.9649104475975037, 1125.0416259765625, 222.1375732421875, 0.9577720165252686, 1287.582275390625, 450.2575988769531, 0.9694991707801819, 1133.3397216796875, 202.19635009765625, 0.9595589637756348, 1316.4498291015625, 452.8456726074219, 0.9518952369689941, 1181.951416015625, 219.45071411132812, 0.9234600067138672, 1146.846923828125, 189.39215087890625, 0.8856492638587952, 1341.732177734375, 450.21636962890625, 0.8792617917060852, 1162.6427001953125, 808.996826171875, 0.8698829412460327, 880.7434692382812, 806.8985595703125, 0.9278929829597473], "score": 3.190687894821167, "box": [832.5960083007812, 195.8640899658203, 507.09783935546875, 622.2822723388672], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.01710747927427292, 0.07372227311134338, 0.08244843780994415], [-0.046452298760414124, 0.09461149573326111, -0.03023107722401619], [-0.009661583229899406, -0.10401664674282074, -0.017316818237304688], [0.13615399599075317, 0.4255666136741638, 0.16904664039611816], [-0.19239570200443268, 0.45382341742515564, -0.04784676432609558], [0.05004769563674927, -0.21483726799488068, -0.0620303750038147], [0.2349385768175125, 0.8024444580078125, 0.2645926773548126], [-0.44600844383239746, 0.7270937561988831, 0.09903846681118011], [0.0928673967719078, -0.24667225778102875, -0.07966679334640503], [0.3369118869304657, 0.8703219890594482, 0.21401900053024292], [-0.43359655141830444, 0.8464436531066895, 0.04295539855957031], [0.14513997733592987, -0.43863731622695923, -0.15052706003189087], [0.10406879335641861, -0.3856337070465088, -0.052373867481946945], [0.11595208197832108, -0.33123552799224854, -0.19170406460762024], [0.21419879794120789, -0.48408377170562744, -0.16695433855056763], [0.103958360850811, -0.45656317472457886, 0.005159437656402588], [0.16504764556884766, -0.31211549043655396, -0.27220067381858826], [0.0480586513876915, -0.4664039611816406, 0.26144763827323914], [0.36684349179267883, -0.1577477604150772, -0.24997472763061523], [0.19285061955451965, -0.6664836406707764, 0.285687655210495], [0.6080077886581421, -0.08218948543071747, -0.287691593170166], [0.22479195892810822, -0.7429863214492798, 0.2955706715583801], [0.6900755167007446, -0.07437451183795929, -0.2993493676185608]]}, {"image_id": "266.jpg", "category_id": 1, "keypoints": [1046.67529296875, 477.49688720703125, 0.9719184637069702, 1050.467041015625, 505.8154602050781, 0.987173318862915, 1031.4091796875, 512.4594116210938, 0.9761571884155273, 1045.0438232421875, 438.6916198730469, 0.9876139760017395, 1091.9244384765625, 639.2691040039062, 0.9865991473197937, 970.68310546875, 652.3626708984375, 0.9728395938873291, 1068.8345947265625, 394.8489990234375, 0.9900631308555603, 1124.7340087890625, 772.86767578125, 0.8651756048202515, 867.0409545898438, 755.3619995117188, 0.9412267804145813, 1086.3699951171875, 381.8465270996094, 0.9937167167663574, 1157.076904296875, 796.6085205078125, 0.8800743222236633, 867.051513671875, 789.7064208984375, 0.879906177520752, 1108.90087890625, 304.1223449707031, 0.9893836975097656, 1090.1455078125, 325.5985107421875, 0.9925540089607239, 1098.8199462890625, 347.76116943359375, 0.9887484312057495, 1131.9058837890625, 289.1004333496094, 0.9543721675872803, 1087.90478515625, 300.4538269042969, 0.9882652163505554, 1118.371337890625, 352.500732421875, 0.9814267158508301, 1070.0377197265625, 313.5202941894531, 0.9581381678581238, 1206.487060546875, 417.89776611328125, 0.9663553833961487, 1130.6981201171875, 231.91098022460938, 0.9670767188072205, 1304.082763671875, 446.06005859375, 0.9665241837501526, 1139.2896728515625, 210.61538696289062, 0.9543700814247131, 1333.7862548828125, 446.8618469238281, 0.9394128918647766, 1225.5457763671875, 216.1378173828125, 0.9350723028182983, 1146.4532470703125, 200.3961181640625, 0.8735568523406982, 1356.491943359375, 444.6154479980469, 0.8537958264350891, 1161.278564453125, 805.9241943359375, 0.885191023349762, 874.1378173828125, 805.7266845703125, 0.8960111737251282], "score": 3.187692642211914, "box": [831.6466674804688, 191.72080993652344, 529.7024536132812, 630.2176055908203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.012108144350349903, 0.07360856235027313, 0.0829717218875885], [-0.045023731887340546, 0.0940956398844719, -0.032635610550642014], [-0.008077935315668583, -0.10362003743648529, -0.017770500853657722], [0.12510116398334503, 0.4292280077934265, 0.15967711806297302], [-0.1994449645280838, 0.4494554400444031, -0.04166341945528984], [0.05189673602581024, -0.2149091213941574, -0.060277875512838364], [0.22070127725601196, 0.8037090301513672, 0.2636546790599823], [-0.4636118412017822, 0.7173804640769958, 0.09337975084781647], [0.09522191435098648, -0.24670620262622833, -0.07596340030431747], [0.32019275426864624, 0.8749144673347473, 0.21349437534809113], [-0.46167415380477905, 0.833532452583313, 0.030466098338365555], [0.15336452424526215, -0.4367302656173706, -0.14553935825824738], [0.10495338588953018, -0.385536253452301, -0.05023904889822006], [0.12681756913661957, -0.3291141390800476, -0.18686769902706146], [0.223622128367424, -0.4821559190750122, -0.15555362403392792], [0.10138262808322906, -0.4565526843070984, 0.00662178173661232], [0.18409332633018494, -0.3097649812698364, -0.26130756735801697], [0.04824264347553253, -0.42979198694229126, 0.2616669833660126], [0.3885543644428253, -0.16053389012813568, -0.23593991994857788], [0.19431735575199127, -0.6271194219589233, 0.29329386353492737], [0.6321805119514465, -0.08883707225322723, -0.2581578195095062], [0.22527216374874115, -0.7033833265304565, 0.3056952655315399], [0.7144195437431335, -0.08625216782093048, -0.26902955770492554]]}, {"image_id": "266.jpg", "category_id": 1, "keypoints": [1461.557373046875, 487.05401611328125, 0.9823498725891113, 1439.62255859375, 521.5026245117188, 0.9899670481681824, 1484.1197509765625, 523.7486572265625, 0.9908709526062012, 1470.683837890625, 444.7452392578125, 0.9851099848747253, 1349.1500244140625, 652.8656005859375, 0.9799843430519104, 1540.146484375, 667.1737060546875, 0.9822322130203247, 1465.32958984375, 393.59637451171875, 0.9833566546440125, 1308.632080078125, 803.7825927734375, 0.8790392875671387, 1585.0068359375, 824.9717407226562, 0.938585102558136, 1453.4912109375, 377.49212646484375, 0.9825857877731323, 1259.6949462890625, 813.817138671875, 0.8720797300338745, 1592.7235107421875, 854.1087646484375, 0.9657244086265564, 1450.3641357421875, 287.3538818359375, 0.9895877242088318, 1431.915771484375, 321.7679443359375, 0.9859290719032288, 1480.1396484375, 327.989501953125, 0.988299548625946, 1425.60986328125, 266.614501953125, 0.9652670621871948, 1406.689208984375, 302.47216796875, 0.9755804538726807, 1499.3057861328125, 319.54962158203125, 0.9832594394683838, 1301.04296875, 273.21563720703125, 0.960471510887146, 1496.8345947265625, 407.0885009765625, 0.9799644947052002, 1222.260986328125, 203.74578857421875, 0.9574915766716003, 1393.1871337890625, 426.465087890625, 0.9582181572914124, 1208.8233642578125, 177.87481689453125, 0.9349637627601624, 1374.1339111328125, 417.4705505371094, 0.9301859140396118, 1421.8330078125, 192.51333618164062, 0.9400148987770081, 1193.8795166015625, 145.09393310546875, 0.8399405479431152, 1345.397705078125, 426.5705261230469, 0.8796144127845764, 1262.842529296875, 813.3572998046875, 0.9109028577804565, 1574.475830078125, 843.8723754882812, 0.9326246976852417], "score": 3.18723726272583, "box": [1158.620849609375, 192.1171875, 471.2890625, 660.2763061523438], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.05486364662647247, 0.08751615881919861, -0.0411810576915741], [0.05297481268644333, 0.08962845057249069, 0.03189203515648842], [0.017963306978344917, -0.10050380229949951, -0.018325354903936386], [-0.26204365491867065, 0.40450456738471985, 0.03572266548871994], [0.2043239325284958, 0.4420014023780823, 0.11515685170888901], [0.01002693921327591, -0.2264224886894226, 0.015224259346723557], [-0.3632311224937439, 0.7958863377571106, 0.06562148779630661], [0.3131393790245056, 0.831610381603241, 0.10362120717763901], [-0.02060842514038086, -0.26353052258491516, 0.04129660502076149], [-0.48658984899520874, 0.8251740336418152, 0.10402026027441025], [0.35149461030960083, 0.9154630899429321, 0.19835680723190308], [-0.01583961956202984, -0.47147947549819946, 0.03091060370206833], [-0.06975018233060837, -0.3801623582839966, -0.018271002918481827], [0.04937358200550079, -0.38202065229415894, 0.06754949688911438], [-0.0845147892832756, -0.5174457430839539, 0.0436348095536232], [-0.1342301070690155, -0.4199265241622925, -0.06626348197460175], [0.11213807761669159, -0.39632362127304077, 0.13657927513122559], [-0.3745620846748352, -0.47658097743988037, -0.16092556715011597], [0.12355442345142365, -0.1638520359992981, 0.2453131377696991], [-0.5659267902374268, -0.6363465785980225, -0.1678079068660736], [-0.12469949573278427, -0.11795049905776978, 0.2957138121128082], [-0.6050113439559937, -0.7088796496391296, -0.17821326851844788], [-0.18931695818901062, -0.15230301022529602, 0.33472931385040283]]}, {"image_id": "267.jpg", "category_id": 1, "keypoints": [1054.1143798828125, 477.049560546875, 0.9728745818138123, 1057.16015625, 505.7502136230469, 0.9868893027305603, 1036.9659423828125, 511.4148254394531, 0.9763152003288269, 1053.6982421875, 438.1064453125, 0.9872641563415527, 1097.2149658203125, 637.2047119140625, 0.9838467240333557, 971.1692504882812, 646.8724365234375, 0.9740764498710632, 1078.49365234375, 394.8121337890625, 0.990032970905304, 1128.443603515625, 773.2894287109375, 0.8608077764511108, 866.281005859375, 749.2413330078125, 0.9393770098686218, 1096.334228515625, 381.71173095703125, 0.9934147596359253, 1162.7772216796875, 797.1103515625, 0.8822795152664185, 859.3243408203125, 785.923583984375, 0.8788872957229614, 1119.18798828125, 306.34619140625, 0.9885304570198059, 1101.1165771484375, 327.33795166015625, 0.9925801157951355, 1107.6416015625, 347.1595153808594, 0.9878431558609009, 1141.4625244140625, 291.55877685546875, 0.9520636200904846, 1100.506591796875, 300.8570556640625, 0.9881004691123962, 1126.9334716796875, 351.10748291015625, 0.9799773097038269, 1114.7056884765625, 241.33367919921875, 0.894432544708252, 1225.04248046875, 415.2753601074219, 0.9677252173423767, 1167.59375, 174.80648803710938, 0.939578115940094, 1319.591064453125, 440.554931640625, 0.960867702960968, 1175.8023681640625, 150.41409301757812, 0.9048638343811035, 1348.8048095703125, 442.907958984375, 0.9295189380645752, 1204.228271484375, 225.504150390625, 0.9560220241546631, 1197.6307373046875, 140.21405029296875, 0.8300620317459106, 1377.34716796875, 441.9181213378906, 0.9253064393997192, 1170.1978759765625, 806.530517578125, 0.8879944682121277, 863.7467041015625, 798.6688232421875, 0.9033299684524536], "score": 3.1832737922668457, "box": [826.6968383789062, 190.3408660888672, 553.7774047851562, 627.1891632080078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.00991748459637165, 0.07581552863121033, 0.08076052367687225], [-0.048586368560791016, 0.09124341607093811, -0.03432615473866463], [-0.004236780107021332, -0.10377530753612518, -0.015181460417807102], [0.12142674624919891, 0.43512019515037537, 0.13847455382347107], [-0.21768909692764282, 0.43948471546173096, -0.03187365457415581], [0.05863339453935623, -0.2143484503030777, -0.05476665869355202], [0.21186350286006927, 0.8174506425857544, 0.21044017374515533], [-0.47937947511672974, 0.7006494402885437, 0.11788442730903625], [0.10188469290733337, -0.24580831825733185, -0.07054755836725235], [0.3149738609790802, 0.8873355388641357, 0.16693516075611115], [-0.4986969530582428, 0.8092207908630371, 0.04575399309396744], [0.16146963834762573, -0.43787896633148193, -0.13055557012557983], [0.11579559743404388, -0.38199520111083984, -0.03701825439929962], [0.13076215982437134, -0.33394360542297363, -0.17696185410022736], [0.2313503623008728, -0.4838376045227051, -0.1409212052822113], [0.11665167659521103, -0.45533663034439087, 0.016373377293348312], [0.1860245168209076, -0.3170919418334961, -0.25305604934692383], [0.16459281742572784, -0.6353713274002075, 0.19964784383773804], [0.39852404594421387, -0.1804579347372055, -0.22889584302902222], [0.3168497085571289, -0.827832818031311, 0.22729285061359406], [0.6439829468727112, -0.11427493393421173, -0.23756445944309235], [0.34324440360069275, -0.9050239324569702, 0.24242515861988068], [0.7255186438560486, -0.10720448195934296, -0.24955496191978455]]}, {"image_id": "267.jpg", "category_id": 1, "keypoints": [1472.3109130859375, 486.7524719238281, 0.9817732572555542, 1446.410400390625, 520.7047119140625, 0.990818440914154, 1496.70556640625, 523.4674682617188, 0.9897889494895935, 1481.82763671875, 444.8233337402344, 0.9875331521034241, 1357.1182861328125, 655.3949584960938, 0.9816917181015015, 1549.203857421875, 666.9544677734375, 0.9691136479377747, 1478.2200927734375, 394.0520324707031, 0.9856398701667786, 1314.0010986328125, 802.2447509765625, 0.8537805080413818, 1585.8140869140625, 830.6067504882812, 0.9518854022026062, 1467.99560546875, 378.4666748046875, 0.9839470386505127, 1265.004638671875, 810.3648681640625, 0.8526179790496826, 1592.5789794921875, 853.6844482421875, 0.961969256401062, 1466.3892822265625, 289.65216064453125, 0.9901842474937439, 1445.54833984375, 322.10223388671875, 0.9851557016372681, 1496.76123046875, 330.99737548828125, 0.9880252480506897, 1441.278076171875, 269.009033203125, 0.9677024483680725, 1419.85009765625, 303.2025146484375, 0.9739171266555786, 1519.623779296875, 323.51348876953125, 0.9839550256729126, 1312.1099853515625, 269.66046142578125, 0.9584137201309204, 1500.11572265625, 404.466064453125, 0.9742951989173889, 1230.831787109375, 199.37008666992188, 0.964072048664093, 1397.7120361328125, 428.6483154296875, 0.9284924268722534, 1216.009765625, 171.18975830078125, 0.9566182494163513, 1381.8497314453125, 416.7231750488281, 0.9182531237602234, 1439.402099609375, 196.87966918945312, 0.9454154968261719, 1207.932861328125, 140.81350708007812, 0.8062428832054138, 1357.002197265625, 414.1570739746094, 0.9048044681549072, 1263.40234375, 812.5584106445312, 0.9162853360176086, 1571.0223388671875, 845.0899658203125, 0.9529081583023071], "score": 3.1849584579467773, "box": [1168.4090576171875, 192.31744384765625, 456.00927734375, 648.9156494140625], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06100434437394142, 0.08640085905790329, -0.03682759404182434], [0.054304420948028564, 0.09168612211942673, 0.02606886252760887], [0.018482647836208344, -0.1010812520980835, -0.019300812855362892], [-0.2615808844566345, 0.40799498558044434, 0.047617483884096146], [0.19943572580814362, 0.44842728972435, 0.11135204136371613], [0.015879780054092407, -0.22610574960708618, 0.01831672713160515], [-0.3774835765361786, 0.7994561195373535, 0.04052923992276192], [0.2879753112792969, 0.8464112281799316, 0.10856908559799194], [-0.006075252778828144, -0.26793450117111206, 0.04662859067320824], [-0.5025370717048645, 0.8241153955459595, 0.07937437295913696], [0.3272549510002136, 0.9201091527938843, 0.2121676504611969], [-0.0021433501970022917, -0.4772760272026062, 0.035734258592128754], [-0.05960800498723984, -0.3854633569717407, -0.009998023509979248], [0.06595958024263382, -0.3874363899230957, 0.06832222640514374], [-0.06209468096494675, -0.5312058329582214, 0.05781525745987892], [-0.12862712144851685, -0.4195297360420227, -0.0569862499833107], [0.13206923007965088, -0.4097535014152527, 0.13271109759807587], [-0.37701916694641113, -0.4891921281814575, -0.12312911450862885], [0.10056842863559723, -0.19024890661239624, 0.26630812883377075], [-0.569366991519928, -0.6505433320999146, -0.12923802435398102], [-0.148469015955925, -0.13154521584510803, 0.30825915932655334], [-0.6086415648460388, -0.7243170142173767, -0.13276349008083344], [-0.20154590904712677, -0.17772388458251953, 0.353412389755249]]}, {"image_id": "268.jpg", "category_id": 1, "keypoints": [1483.22119140625, 484.0580749511719, 0.9806281328201294, 1455.1142578125, 518.204833984375, 0.991194486618042, 1508.67919921875, 521.3135375976562, 0.9866076111793518, 1493.2269287109375, 441.9958801269531, 0.9795758128166199, 1363.4788818359375, 652.209716796875, 0.9821969866752625, 1557.2174072265625, 670.054931640625, 0.9694519639015198, 1488.823974609375, 390.9837951660156, 0.9863930344581604, 1315.4259033203125, 802.1983642578125, 0.8589404821395874, 1582.8524169921875, 836.556640625, 0.9274246096611023, 1478.7452392578125, 374.677001953125, 0.9830233454704285, 1267.78466796875, 810.4568481445312, 0.8736730217933655, 1596.5810546875, 862.3369140625, 0.9316751956939697, 1481.1876220703125, 287.17901611328125, 0.9879987835884094, 1458.4827880859375, 319.9450988769531, 0.9798465371131897, 1510.52978515625, 327.57476806640625, 0.9877814650535583, 1455.27978515625, 265.897705078125, 0.966124415397644, 1432.1295166015625, 301.75836181640625, 0.9726997017860413, 1534.63720703125, 319.872314453125, 0.9832845330238342, 1329.739990234375, 268.6758117675781, 0.960155725479126, 1509.31982421875, 404.169921875, 0.9715155363082886, 1243.546875, 200.29226684570312, 0.943943977355957, 1407.106689453125, 422.9049072265625, 0.9063284397125244, 1220.44873046875, 171.94537353515625, 0.9471918344497681, 1386.15673828125, 407.98187255859375, 0.9503284096717834, 1455.04541015625, 191.43997192382812, 0.9399958252906799, 1204.0784912109375, 140.77886962890625, 0.8281711339950562, 1358.7889404296875, 406.14349365234375, 0.926360547542572, 1269.493408203125, 812.7925415039062, 0.9202886819839478, 1576.6470947265625, 854.539794921875, 0.9442560076713562], "score": 3.186373233795166, "box": [1169.758056640625, 189.6908416748047, 455.31591796875, 654.4967803955078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06362359970808029, 0.08595676720142365, -0.033212266862392426], [0.05428681522607803, 0.09207259863615036, 0.02462898939847946], [0.01878269575536251, -0.10048346221446991, -0.021060610190033913], [-0.2659364640712738, 0.40330970287323, 0.0646120011806488], [0.18471203744411469, 0.460090696811676, 0.08414359390735626], [0.014800493605434895, -0.22502048313617706, 0.01685298979282379], [-0.3894937038421631, 0.7929628491401672, 0.07391238957643509], [0.23964843153953552, 0.8627455830574036, 0.045069217681884766], [-0.0064512817189097404, -0.2678927779197693, 0.04385475069284439], [-0.5139464735984802, 0.8186099529266357, 0.1141166090965271], [0.29344987869262695, 0.937542200088501, 0.1410982459783554], [0.005916626192629337, -0.4760475158691406, 0.02449522539973259], [-0.055154431611299515, -0.3849868178367615, -0.017449796199798584], [0.07027926295995712, -0.38505440950393677, 0.06062592566013336], [-0.05469614639878273, -0.5300219058990479, 0.04413972049951553], [-0.12661640346050262, -0.4140550494194031, -0.06388892233371735], [0.13877563178539276, -0.40764254331588745, 0.12213614583015442], [-0.36802393198013306, -0.48091810941696167, -0.15530075132846832], [0.10014214366674423, -0.18456731736660004, 0.24839405715465546], [-0.5666642189025879, -0.6335059404373169, -0.17658373713493347], [-0.1525217890739441, -0.138673797249794, 0.28643983602523804], [-0.620099663734436, -0.6953357458114624, -0.194438174366951], [-0.21378521621227264, -0.18651185929775238, 0.3172500729560852]]}, {"image_id": "268.jpg", "category_id": 1, "keypoints": [1058.8187255859375, 475.02667236328125, 0.9743748903274536, 1059.3211669921875, 502.9367980957031, 0.9878727197647095, 1041.767822265625, 509.0169372558594, 0.9777505397796631, 1060.1649169921875, 436.4775390625, 0.9898003339767456, 1096.7967529296875, 634.0213012695312, 0.9862995147705078, 973.4996337890625, 641.9728393554688, 0.9780576229095459, 1084.48828125, 393.16424560546875, 0.990932047367096, 1127.3740234375, 769.656982421875, 0.8498905897140503, 866.565673828125, 745.5441284179688, 0.9398094415664673, 1101.986083984375, 379.9715270996094, 0.9928282499313354, 1161.1998291015625, 793.4490356445312, 0.8932639956474304, 855.5684814453125, 781.3479614257812, 0.8480305671691895, 1128.8126220703125, 307.82623291015625, 0.9894744753837585, 1105.7142333984375, 323.852294921875, 0.9927011132240295, 1119.360107421875, 350.0802917480469, 0.9863192439079285, 1151.5479736328125, 294.31854248046875, 0.9558862447738647, 1102.8721923828125, 294.8631896972656, 0.9785864949226379, 1142.64990234375, 355.093505859375, 0.9769246578216553, 1113.0399169921875, 230.39535522460938, 0.9129968285560608, 1239.2471923828125, 412.9193115234375, 0.9750432968139648, 1172.0830078125, 173.09872436523438, 0.9316616654396057, 1330.947265625, 434.7303466796875, 0.9621264934539795, 1188.8756103515625, 149.80490112304688, 0.9130388498306274, 1357.511474609375, 436.54620361328125, 0.9079728126525879, 1168.5804443359375, 234.094970703125, 0.9415310025215149, 1224.0380859375, 139.11752319335938, 0.8286547660827637, 1400.65185546875, 422.030029296875, 0.8845155835151672, 1165.5902099609375, 806.1273193359375, 0.9020613431930542, 857.85107421875, 795.2246704101562, 0.8916637897491455], "score": 3.180495023727417, "box": [827.2591552734375, 190.58160400390625, 551.44384765625, 628.3529052734375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [0.003285062499344349, 0.07401734590530396, 0.0829351469874382], [-0.04934049770236015, 0.09064313769340515, -0.03482171520590782], [-0.00024919770658016205, -0.10324880480766296, -0.017794612795114517], [0.10843031108379364, 0.43217557668685913, 0.15974974632263184], [-0.22640115022659302, 0.4354023337364197, -0.036630623042583466], [0.061864279210567474, -0.21475327014923096, -0.05457494407892227], [0.19724588096141815, 0.8100429773330688, 0.2561086416244507], [-0.49631592631340027, 0.70154869556427, 0.08920826762914658], [0.10514713078737259, -0.24716141819953918, -0.0676451027393341], [0.30023860931396484, 0.8809488415718079, 0.21399974822998047], [-0.5277945399284363, 0.8063921928405762, 0.015884213149547577], [0.17769913375377655, -0.43219465017318726, -0.13433007895946503], [0.11662867665290833, -0.38561898469924927, -0.04479891061782837], [0.1524084359407425, -0.3248456120491028, -0.17542380094528198], [0.24989832937717438, -0.47477513551712036, -0.14165620505809784], [0.11127431690692902, -0.46461862325668335, -0.0008488837629556656], [0.21978498995304108, -0.3056163787841797, -0.24009260535240173], [0.14714021980762482, -0.6538920998573303, 0.1762271672487259], [0.43747496604919434, -0.17827370762825012, -0.20908762514591217], [0.3194488286972046, -0.823749840259552, 0.22662416100502014], [0.6851333379745483, -0.12006109952926636, -0.1980806291103363], [0.3675471842288971, -0.8906881213188171, 0.23584190011024475], [0.7669216394424438, -0.11401382088661194, -0.20879299938678741]]}, {"image_id": "269.jpg", "category_id": 1, "keypoints": [1064.30810546875, 472.76727294921875, 0.9753236174583435, 1061.6044921875, 499.8380432128906, 0.9881051182746887, 1049.3060302734375, 507.7703552246094, 0.9798026084899902, 1065.299072265625, 434.0108947753906, 0.9902090430259705, 1098.1732177734375, 633.020263671875, 0.9872198700904846, 977.0723876953125, 635.443603515625, 0.9731737375259399, 1089.6473388671875, 390.42803955078125, 0.9907333850860596, 1128.4075927734375, 772.2771606445312, 0.8611539602279663, 861.9450073242188, 747.7549438476562, 0.9278969764709473, 1107.371826171875, 377.833251953125, 0.9928873181343079, 1160.9571533203125, 794.6801147460938, 0.9069598317146301, 849.5596923828125, 779.4479370117188, 0.8230788111686707, 1135.2296142578125, 305.31805419921875, 0.9899335503578186, 1109.3631591796875, 321.73681640625, 0.9918851852416992, 1127.2158203125, 348.2294616699219, 0.9852380156517029, 1158.1719970703125, 292.13812255859375, 0.9617352485656738, 1105.2738037109375, 293.84210205078125, 0.9766557812690735, 1150.7569580078125, 353.2922668457031, 0.9715812802314758, 1112.2301025390625, 233.26339721679688, 0.9279338121414185, 1246.470458984375, 410.49749755859375, 0.973334550857544, 1173.46728515625, 180.16806030273438, 0.9344350099563599, 1340.727294921875, 429.43829345703125, 0.9562986493110657, 1193.2689208984375, 156.61141967773438, 0.9366248250007629, 1366.6923828125, 431.9648742675781, 0.8972694873809814, 1173.4345703125, 241.3621826171875, 0.9349695444107056, 1226.063232421875, 137.1658935546875, 0.8515957593917847, 1411.9161376953125, 420.3900451660156, 0.8386566042900085, 1165.6739501953125, 804.1148681640625, 0.9168087244033813, 856.9366455078125, 791.1760864257812, 0.8600761890411377], "score": 3.1801438331604004, "box": [822.8199462890625, 185.33663940429688, 564.7547607421875, 637.4018249511719], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.004797153174877167, 0.07229776680469513, 0.08467554301023483], [-0.043082788586616516, 0.09268666058778763, -0.03831116855144501], [-0.00038392283022403717, -0.10298460721969604, -0.020134033635258675], [0.09702535718679428, 0.43366122245788574, 0.15653513371944427], [-0.23453783988952637, 0.43092891573905945, -0.042161256074905396], [0.06133865565061569, -0.21444407105445862, -0.05701024830341339], [0.18318526446819305, 0.8137871026992798, 0.25229179859161377], [-0.5095388889312744, 0.7029849886894226, 0.06282859295606613], [0.1056242436170578, -0.24567919969558716, -0.0696663111448288], [0.29098063707351685, 0.8871536254882812, 0.23019103705883026], [-0.5502319931983948, 0.8080712556838989, -0.006091266870498657], [0.17666001617908478, -0.42936578392982483, -0.1423858255147934], [0.11278504133224487, -0.3855976164340973, -0.05326468497514725], [0.15572647750377655, -0.31941893696784973, -0.17925705015659332], [0.24947130680084229, -0.47088322043418884, -0.14961086213588715], [0.10390457510948181, -0.4639343321323395, -0.008581746369600296], [0.22253356873989105, -0.3002634346485138, -0.2446858137845993], [0.13141442835330963, -0.6405894756317139, 0.18359632790088654], [0.44164347648620605, -0.17089629173278809, -0.22823776304721832], [0.3089357018470764, -0.7984793186187744, 0.2543250322341919], [0.6920255422592163, -0.12125071883201599, -0.21710160374641418], [0.3624597489833832, -0.8620795011520386, 0.25215381383895874], [0.7734144330024719, -0.11268523335456848, -0.23071099817752838]]}, {"image_id": "269.jpg", "category_id": 1, "keypoints": [1494.150390625, 485.8636169433594, 0.9797731637954712, 1464.8260498046875, 520.4539794921875, 0.9918713569641113, 1520.361572265625, 523.0558471679688, 0.9865811467170715, 1503.839599609375, 442.97918701171875, 0.9808727502822876, 1367.055908203125, 651.0967407226562, 0.982342004776001, 1563.970458984375, 671.9061889648438, 0.9709230661392212, 1499.472412109375, 391.8631591796875, 0.9871564507484436, 1315.3599853515625, 800.2647094726562, 0.8340731263160706, 1580.975830078125, 837.2579345703125, 0.9227277040481567, 1489.7415771484375, 375.4364013671875, 0.9823018312454224, 1267.4901123046875, 811.1272583007812, 0.8608424663543701, 1597.3648681640625, 865.6488037109375, 0.9342317581176758, 1491.4871826171875, 287.78570556640625, 0.9891638159751892, 1467.224365234375, 320.31280517578125, 0.9822865128517151, 1521.8045654296875, 327.72918701171875, 0.9885920286178589, 1467.9056396484375, 267.63311767578125, 0.972083568572998, 1439.115966796875, 300.4427490234375, 0.9776932597160339, 1546.2672119140625, 317.712890625, 0.9819495677947998, 1334.92138671875, 261.27655029296875, 0.9629147052764893, 1515.8592529296875, 390.8499755859375, 0.9718372821807861, 1248.124755859375, 197.55120849609375, 0.958427906036377, 1412.999267578125, 409.0777587890625, 0.9072645306587219, 1223.1051025390625, 171.85968017578125, 0.9521504044532776, 1392.9952392578125, 399.03131103515625, 0.934796929359436, 1469.280517578125, 196.75711059570312, 0.9363922476768494, 1207.888427734375, 137.47671508789062, 0.8152080774307251, 1371.42138671875, 391.47894287109375, 0.9077637195587158, 1270.3211669921875, 814.963134765625, 0.9049690961837769, 1577.991943359375, 854.628173828125, 0.9511414170265198], "score": 3.1846635341644287, "box": [1187.6932373046875, 184.52659606933594, 429.225830078125, 663.6109161376953], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06455343961715698, 0.08596359938383102, -0.03199867159128189], [0.0552530400454998, 0.09225720167160034, 0.022533811628818512], [0.01795932650566101, -0.10063828527927399, -0.020883958786725998], [-0.2848755121231079, 0.39718323945999146, 0.05120760574936867], [0.17658022046089172, 0.4622209668159485, 0.09669432044029236], [0.014517809264361858, -0.22406379878520966, 0.019091147929430008], [-0.42120683193206787, 0.784180223941803, 0.035114508122205734], [0.20994140207767487, 0.8682466149330139, 0.050615135580301285], [-0.008703232742846012, -0.2628609538078308, 0.050121668726205826], [-0.5466865301132202, 0.8160894513130188, 0.06776995956897736], [0.26614490151405334, 0.9427270293235779, 0.14585620164871216], [0.005556990392506123, -0.47133028507232666, 0.036290962249040604], [-0.05836334824562073, -0.38235795497894287, -0.005653437227010727], [0.07016416639089584, -0.3786395192146301, 0.06694798171520233], [-0.05095025524497032, -0.5257552266120911, 0.06442828476428986], [-0.13159072399139404, -0.4187251925468445, -0.04320306330919266], [0.13800790905952454, -0.4060888886451721, 0.12702669203281403], [-0.37613123655319214, -0.5015182495117188, -0.1137373298406601], [0.08683968335390091, -0.219309464097023, 0.30082324147224426], [-0.5802320837974548, -0.6487728357315063, -0.13030584156513214], [-0.16937801241874695, -0.17412270605564117, 0.314759224653244], [-0.6376556754112244, -0.7076187133789062, -0.14641132950782776], [-0.2342665046453476, -0.21092833578586578, 0.3528849184513092]]}, {"image_id": "270.jpg", "category_id": 1, "keypoints": [1067.6375732421875, 473.85565185546875, 0.9730932116508484, 1064.21484375, 500.9859619140625, 0.9847990870475769, 1052.9554443359375, 510.25274658203125, 0.9808638691902161, 1069.357177734375, 433.012939453125, 0.9877824187278748, 1100.3751220703125, 635.5213623046875, 0.9837167263031006, 972.0443115234375, 632.0003662109375, 0.970719575881958, 1094.8258056640625, 388.9432067871094, 0.9883626103401184, 1130.482177734375, 777.803466796875, 0.9026875495910645, 858.9180908203125, 745.1090087890625, 0.9191754460334778, 1113.564453125, 376.3886413574219, 0.9925140142440796, 1171.392822265625, 799.6399536132812, 0.8969621062278748, 837.2481689453125, 776.696533203125, 0.8032752871513367, 1145.964111328125, 304.12994384765625, 0.9895442128181458, 1117.6611328125, 319.39410400390625, 0.992435872554779, 1136.941162109375, 346.8083801269531, 0.9871442914009094, 1169.5308837890625, 291.3380126953125, 0.9597452878952026, 1115.597900390625, 290.7742919921875, 0.9771138429641724, 1162.8856201171875, 352.11505126953125, 0.97480309009552, 1131.1004638671875, 220.77545166015625, 0.8996310830116272, 1254.248046875, 407.7938232421875, 0.9732604026794434, 1191.7672119140625, 173.66195678710938, 0.9378258585929871, 1349.379638671875, 429.53173828125, 0.9588967561721802, 1212.3084716796875, 154.4737548828125, 0.9455855488777161, 1378.392333984375, 428.68292236328125, 0.924252450466156, 1188.7557373046875, 241.35403442382812, 0.9307183623313904, 1240.991943359375, 140.52337646484375, 0.9061884880065918, 1407.054931640625, 417.281494140625, 0.8865002393722534, 1184.6099853515625, 811.8846435546875, 0.8953351378440857, 837.35693359375, 787.0203857421875, 0.8298895955085754], "score": 3.182006359100342, "box": [819.639404296875, 179.08798217773438, 602.711181640625, 652.7450866699219], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.007066132966428995, 0.07173599302768707, 0.08503531664609909], [-0.041961804032325745, 0.0930827334523201, -0.03863943740725517], [0.0001347232609987259, -0.10269664227962494, -0.020930785685777664], [0.09287240356206894, 0.43263816833496094, 0.1666092872619629], [-0.2565973103046417, 0.4170491695404053, -0.009617047384381294], [0.0692932978272438, -0.21101371943950653, -0.05373457074165344], [0.17743057012557983, 0.8189499378204346, 0.24125593900680542], [-0.5252169370651245, 0.6896300315856934, 0.11300484091043472], [0.11809292435646057, -0.23630006611347198, -0.06203119456768036], [0.2942247688770294, 0.8810579180717468, 0.23621734976768494], [-0.5868507623672485, 0.7780847549438477, 0.036480896174907684], [0.18703457713127136, -0.422448992729187, -0.1295895278453827], [0.12237183004617691, -0.375751793384552, -0.042816661298274994], [0.1686583161354065, -0.3131352663040161, -0.16892515122890472], [0.26101359724998474, -0.462466299533844, -0.1328517496585846], [0.11920908838510513, -0.4538871645927429, 0.0025488045066595078], [0.2403666079044342, -0.29417169094085693, -0.22861629724502563], [0.16706177592277527, -0.6451688408851624, 0.17684820294380188], [0.45889756083488464, -0.16250614821910858, -0.21312540769577026], [0.35628876090049744, -0.7954890727996826, 0.23443415760993958], [0.7085368037223816, -0.10527472198009491, -0.21611793339252472], [0.4167073369026184, -0.8522543907165527, 0.24137461185455322], [0.7897211313247681, -0.10711462795734406, -0.23332886397838593]]}, {"image_id": "270.jpg", "category_id": 1, "keypoints": [1503.8687744140625, 487.0148620605469, 0.9802801012992859, 1473.88525390625, 521.39794921875, 0.9904752373695374, 1530.2186279296875, 523.7164916992188, 0.9869372248649597, 1513.0455322265625, 444.1310119628906, 0.9779824018478394, 1374.1959228515625, 650.9954833984375, 0.9845988750457764, 1569.3447265625, 673.2245483398438, 0.9663424491882324, 1509.67724609375, 392.81585693359375, 0.9884169697761536, 1316.01953125, 797.390869140625, 0.8112567663192749, 1582.2164306640625, 835.5238647460938, 0.9319484233856201, 1499.4364013671875, 375.7972412109375, 0.9818393588066101, 1263.96484375, 808.7915649414062, 0.8704808950424194, 1598.4404296875, 863.4300537109375, 0.9497409462928772, 1503.379150390625, 288.1748046875, 0.989020824432373, 1478.6541748046875, 320.652099609375, 0.9845414161682129, 1531.7843017578125, 329.239990234375, 0.9906175136566162, 1478.237548828125, 267.44134521484375, 0.9717608690261841, 1449.41845703125, 301.075927734375, 0.9750551581382751, 1557.0987548828125, 319.91064453125, 0.9754308462142944, 1347.2099609375, 258.7811584472656, 0.9634220600128174, 1530.3538818359375, 387.72052001953125, 0.9667956829071045, 1258.16357421875, 198.94580078125, 0.9524219036102295, 1439.4119873046875, 374.31134033203125, 0.9559500813484192, 1231.28857421875, 171.90066528320312, 0.9561189413070679, 1416.0859375, 373.207763671875, 0.9280896186828613, 1475.6490478515625, 200.12078857421875, 0.9394075274467468, 1211.32763671875, 135.5322265625, 0.7980502247810364, 1391.8453369140625, 377.0667724609375, 0.8730224370956421, 1265.2755126953125, 815.0784912109375, 0.8920825719833374, 1576.59521484375, 847.46142578125, 0.958412766456604], "score": 3.1808676719665527, "box": [1193.74169921875, 183.88470458984375, 418.2672119140625, 666.8330688476562], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06465381383895874, 0.08536452800035477, -0.03388889133930206], [0.05552464351058006, 0.09275727719068527, 0.020542480051517487], [0.017878413200378418, -0.10126422345638275, -0.01877117156982422], [-0.2958284914493561, 0.3960123062133789, 0.016835447400808334], [0.16812407970428467, 0.4621938467025757, 0.11076465249061584], [0.0166101586073637, -0.2232091873884201, 0.025284454226493835], [-0.4512966275215149, 0.7750083804130554, -0.017679475247859955], [0.1936725527048111, 0.8702157139778137, 0.07372571527957916], [-0.008596301078796387, -0.2626100778579712, 0.054011452943086624], [-0.5786716341972351, 0.8056413531303406, 0.008884590119123459], [0.2494073212146759, 0.9429929256439209, 0.17076954245567322], [0.0111684650182724, -0.4706418514251709, 0.03595688194036484], [-0.05288201570510864, -0.38200587034225464, -0.007017951458692551], [0.0722154974937439, -0.37723660469055176, 0.07203850150108337], [-0.047488901764154434, -0.5243358016014099, 0.06071038171648979], [-0.1269691288471222, -0.413594126701355, -0.04752754420042038], [0.13996702432632446, -0.4022064208984375, 0.13359513878822327], [-0.3626672327518463, -0.49852240085601807, -0.14234064519405365], [0.10108302533626556, -0.22816435992717743, 0.3234829604625702], [-0.5738852024078369, -0.6358477473258972, -0.15914809703826904], [-0.1568836122751236, -0.2664107084274292, 0.32637566328048706], [-0.6321603655815125, -0.6929926872253418, -0.1786108911037445], [-0.2360263168811798, -0.27173757553100586, 0.3537365198135376]]}, {"image_id": "271.jpg", "category_id": 1, "keypoints": [1071.774658203125, 473.157470703125, 0.9749853610992432, 1066.1280517578125, 499.7090759277344, 0.9849894642829895, 1057.713134765625, 508.873291015625, 0.9820354580879211, 1073.7366943359375, 432.9171447753906, 0.9884519577026367, 1099.4810791015625, 633.65771484375, 0.9822807312011719, 976.0014038085938, 629.1141967773438, 0.9689410328865051, 1099.4398193359375, 389.492919921875, 0.9893360137939453, 1128.67529296875, 776.089599609375, 0.9090695977210999, 860.4568481445312, 740.865966796875, 0.9215503931045532, 1118.0516357421875, 377.5599670410156, 0.9926519393920898, 1164.9129638671875, 794.5511474609375, 0.912594735622406, 837.9677734375, 773.0362548828125, 0.8073863983154297, 1150.9027099609375, 306.19671630859375, 0.9898666739463806, 1121.8720703125, 320.87994384765625, 0.9913485050201416, 1141.74658203125, 348.34698486328125, 0.9855414032936096, 1174.537109375, 293.19146728515625, 0.9608998894691467, 1119.0054931640625, 292.6578369140625, 0.9764010310173035, 1167.33251953125, 353.8679504394531, 0.9745001792907715, 1133.151611328125, 224.51580810546875, 0.9170181155204773, 1260.573486328125, 406.081787109375, 0.9774462580680847, 1198.0867919921875, 175.43093872070312, 0.9437738060951233, 1351.98681640625, 426.7536315917969, 0.961677610874176, 1217.92724609375, 156.7265625, 0.9543266892433167, 1379.7965087890625, 426.3834228515625, 0.9255840182304382, 1194.87353515625, 245.52511596679688, 0.9320337772369385, 1245.424072265625, 140.41180419921875, 0.8865054845809937, 1412.887451171875, 415.02423095703125, 0.9124501943588257, 1180.1435546875, 805.34521484375, 0.8818670511245728, 836.628662109375, 784.1849975585938, 0.8245062828063965], "score": 3.184739351272583, "box": [819.3704833984375, 180.9767608642578, 604.9434814453125, 650.9320526123047], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.012776589021086693, 0.0707235038280487, 0.08534941077232361], [-0.040086306631565094, 0.09335798770189285, -0.04025814309716225], [0.002022620290517807, -0.10266672074794769, -0.02205231413245201], [0.08028407394886017, 0.4313957393169403, 0.1743754893541336], [-0.25844302773475647, 0.4153120517730713, -0.0222916416823864], [0.07179390639066696, -0.2107311636209488, -0.05446988716721535], [0.1623566895723343, 0.8175022602081299, 0.25185492634773254], [-0.5354874730110168, 0.6867091655731201, 0.08246244490146637], [0.11801720410585403, -0.24017874896526337, -0.06426505744457245], [0.27936387062072754, 0.877795934677124, 0.26632633805274963], [-0.5981448292732239, 0.7749402523040771, 0.006400343030691147], [0.19240398705005646, -0.4230288863182068, -0.1358858048915863], [0.12498489022254944, -0.3802880644798279, -0.048911262303590775], [0.1725238859653473, -0.3128184676170349, -0.1725405901670456], [0.2661173641681671, -0.4635074734687805, -0.13794243335723877], [0.11939888447523117, -0.4598223567008972, -0.005880717188119888], [0.24532288312911987, -0.2928677797317505, -0.23093630373477936], [0.165253147482872, -0.6524608135223389, 0.16722598671913147], [0.4684920012950897, -0.16907982528209686, -0.21847470104694366], [0.3572518825531006, -0.8006941676139832, 0.22061307728290558], [0.7182367444038391, -0.1129017323255539, -0.21376755833625793], [0.41751864552497864, -0.8577894568443298, 0.2269507646560669], [0.8001908659934998, -0.11352969706058502, -0.22737841308116913]]}, {"image_id": "271.jpg", "category_id": 1, "keypoints": [1510.8350830078125, 486.6561584472656, 0.9819982647895813, 1481.12646484375, 519.8215942382812, 0.9903525114059448, 1536.0877685546875, 525.1248779296875, 0.987298846244812, 1520.67333984375, 443.8293762207031, 0.9799636602401733, 1379.489501953125, 647.946533203125, 0.9843210577964783, 1573.0406494140625, 676.0618896484375, 0.9678410291671753, 1518.8631591796875, 392.6763916015625, 0.9895240068435669, 1314.7611083984375, 793.6968994140625, 0.8514155745506287, 1581.315673828125, 838.69189453125, 0.925711452960968, 1507.958251953125, 375.68304443359375, 0.9830990433692932, 1258.4334716796875, 805.8350830078125, 0.8396533131599426, 1593.5196533203125, 868.1663818359375, 0.9550192356109619, 1512.5126953125, 287.87164306640625, 0.9898772835731506, 1490.6590576171875, 320.0436706542969, 0.9826513528823853, 1537.9549560546875, 329.66693115234375, 0.9912974834442139, 1485.9404296875, 267.2628173828125, 0.9728698134422302, 1463.479736328125, 300.262939453125, 0.9646174907684326, 1562.8880615234375, 319.8880920410156, 0.9772613644599915, 1358.23779296875, 261.89459228515625, 0.9584737420082092, 1545.3702392578125, 354.54656982421875, 0.9730729460716248, 1266.329345703125, 203.2667236328125, 0.9460014700889587, 1492.7188720703125, 306.422607421875, 0.950438380241394, 1236.4571533203125, 174.4324951171875, 0.9619060158729553, 1485.4580078125, 292.52880859375, 0.9236951470375061, 1487.8978271484375, 199.4869384765625, 0.9461857080459595, 1210.630859375, 137.96658325195312, 0.8193379640579224, 1469.6365966796875, 291.49267578125, 0.9146450161933899, 1259.6982421875, 809.9761962890625, 0.8437614440917969, 1572.417724609375, 855.539794921875, 0.9533554911613464], "score": 3.181528091430664, "box": [1198.550537109375, 181.34239196777344, 412.2562255859375, 675.3048858642578], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06610003858804703, 0.08270754665136337, -0.039541155099868774], [0.053351737558841705, 0.0953989326953888, 0.017961576581001282], [0.020785348489880562, -0.10237276554107666, -0.014064897783100605], [-0.30649533867836, 0.3905051350593567, -0.014933561906218529], [0.15896447002887726, 0.47071573138237, 0.09603358805179596], [0.0234982967376709, -0.22299140691757202, 0.03415175527334213], [-0.48095703125, 0.7460944056510925, -0.13163107633590698], [0.1722242385149002, 0.8808223009109497, 0.0546468049287796], [-0.004712316207587719, -0.2633597254753113, 0.059293344616889954], [-0.60820472240448, 0.776515007019043, -0.101670041680336], [0.21920360624790192, 0.9582184553146362, 0.15359628200531006], [0.017628131434321404, -0.47271519899368286, 0.04427507519721985], [-0.042379312217235565, -0.38410860300064087, -0.005953885614871979], [0.07465767115354538, -0.378493070602417, 0.08665380626916885], [-0.04481873661279678, -0.5248009562492371, 0.06197468191385269], [-0.11146793514490128, -0.4146609306335449, -0.056201666593551636], [0.14061643183231354, -0.40404456853866577, 0.15077774226665497], [-0.34862416982650757, -0.4877881407737732, -0.16006672382354736], [0.12795864045619965, -0.3073551654815674, 0.39365696907043457], [-0.5647408962249756, -0.6192489266395569, -0.1789173185825348], [-0.04014251381158829, -0.48247867822647095, 0.4919508099555969], [-0.6263306140899658, -0.674003005027771, -0.1970141977071762], [-0.06073284149169922, -0.5428676605224609, 0.5471886992454529]]}, {"image_id": "272.jpg", "category_id": 1, "keypoints": [1074.5548095703125, 470.5877990722656, 0.9749289751052856, 1066.9989013671875, 497.47869873046875, 0.9844082593917847, 1060.3505859375, 505.7896423339844, 0.9862707853317261, 1077.7525634765625, 430.9631042480469, 0.9884670972824097, 1099.201171875, 630.1234130859375, 0.9782854914665222, 980.3085327148438, 627.4322509765625, 0.9730305075645447, 1104.3555908203125, 388.64801025390625, 0.9880402088165283, 1127.636474609375, 772.828125, 0.9433945417404175, 861.0670776367188, 741.295166015625, 0.8907758593559265, 1123.0797119140625, 377.47412109375, 0.9918149709701538, 1162.9061279296875, 789.0958251953125, 0.9324698448181152, 840.4571533203125, 775.6287231445312, 0.7974526882171631, 1156.5072021484375, 306.4134521484375, 0.9897500276565552, 1127.0672607421875, 321.6898193359375, 0.9917871952056885, 1147.256103515625, 347.9531555175781, 0.9872898459434509, 1180.4293212890625, 293.6922607421875, 0.9622255563735962, 1123.7852783203125, 294.3101806640625, 0.9750546216964722, 1172.14013671875, 353.0223388671875, 0.9780685305595398, 1136.9327392578125, 226.90499877929688, 0.9209479689598083, 1266.8154296875, 404.1280212402344, 0.9750430583953857, 1198.7847900390625, 176.73382568359375, 0.9279788136482239, 1359.1630859375, 424.5998840332031, 0.9635156393051147, 1217.1673583984375, 155.69970703125, 0.9454733729362488, 1387.9727783203125, 423.7592468261719, 0.9364027976989746, 1199.865478515625, 242.08404541015625, 0.9417324066162109, 1246.526123046875, 137.96786499023438, 0.860214352607727, 1429.636474609375, 415.6381530761719, 0.8887912631034851, 1178.2955322265625, 798.1688232421875, 0.8938615918159485, 838.674560546875, 785.3790283203125, 0.8050256967544556], "score": 3.182938575744629, "box": [822.0577392578125, 183.5928497314453, 608.9825439453125, 653.2110443115234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.018165379762649536, 0.07158534228801727, 0.08354376256465912], [-0.04031529650092125, 0.09172798693180084, -0.04348522052168846], [0.00535069964826107, -0.10280700027942657, -0.02029714360833168], [0.07270263880491257, 0.43238526582717896, 0.17261146008968353], [-0.2542283535003662, 0.41669201850891113, -0.04690566286444664], [0.07375472784042358, -0.21233780682086945, -0.049895964562892914], [0.15259979665279388, 0.8196607828140259, 0.2444007247686386], [-0.5376623868942261, 0.6899539232254028, 0.031092610210180283], [0.12105429917573929, -0.2403959184885025, -0.0581476129591465], [0.26661932468414307, 0.8741565346717834, 0.28348562121391296], [-0.5892783999443054, 0.7749449014663696, -0.055883850902318954], [0.20354273915290833, -0.4203139543533325, -0.12796013057231903], [0.13288098573684692, -0.38007479906082153, -0.04243345931172371], [0.1804656684398651, -0.3109899163246155, -0.16510942578315735], [0.27770477533340454, -0.45972740650177, -0.12855280935764313], [0.12637557089328766, -0.4577086567878723, 0.0037914924323558807], [0.2532367408275604, -0.29193514585494995, -0.22372327744960785], [0.16975228488445282, -0.6471702456474304, 0.18059156835079193], [0.47772642970085144, -0.1730853170156479, -0.19906985759735107], [0.35598817467689514, -0.8012163639068604, 0.23666070401668549], [0.7272930145263672, -0.11843584477901459, -0.18850074708461761], [0.41067731380462646, -0.8638337850570679, 0.23806826770305634], [0.8078280687332153, -0.12014155089855194, -0.2082967907190323]]}, {"image_id": "272.jpg", "category_id": 1, "keypoints": [1518.85498046875, 483.6359558105469, 0.982836902141571, 1488.0626220703125, 515.7417602539062, 0.9904507398605347, 1543.2255859375, 524.28564453125, 0.9873613119125366, 1530.031005859375, 440.6129455566406, 0.9807804822921753, 1385.414306640625, 642.3076171875, 0.9804188013076782, 1580.6463623046875, 673.6644287109375, 0.9766674637794495, 1527.9517822265625, 389.5863037109375, 0.9869932532310486, 1318.032958984375, 791.4221801757812, 0.9183132648468018, 1583.075927734375, 838.1666259765625, 0.9350767731666565, 1517.9156494140625, 373.0000915527344, 0.9824160933494568, 1268.010986328125, 803.91552734375, 0.8160526752471924, 1581.154541015625, 869.3609008789062, 0.9502403736114502, 1522.4169921875, 284.9831848144531, 0.9893783926963806, 1497.52685546875, 317.04290771484375, 0.9830224514007568, 1550.7684326171875, 326.58721923828125, 0.9891077876091003, 1498.9232177734375, 264.0871276855469, 0.972335934638977, 1467.601318359375, 296.5959777832031, 0.9799306392669678, 1575.60595703125, 317.9108581542969, 0.974609375, 1363.156982421875, 256.7174987792969, 0.9618401527404785, 1553.4820556640625, 377.83355712890625, 0.9680371284484863, 1273.9666748046875, 203.2620849609375, 0.9631996154785156, 1457.4307861328125, 376.299560546875, 0.9629420042037964, 1245.2982177734375, 175.77517700195312, 0.9696569442749023, 1437.87109375, 373.85198974609375, 0.9381319284439087, 1504.005859375, 197.63006591796875, 0.9479709267616272, 1224.87060546875, 140.51473999023438, 0.8742658495903015, 1413.685546875, 387.9457092285156, 0.9295271635055542, 1273.513427734375, 805.778564453125, 0.842719316482544, 1566.307861328125, 855.5355834960938, 0.8862308859825134], "score": 3.183475971221924, "box": [1211.2789306640625, 175.31610107421875, 428.560302734375, 698.0042114257812], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06873980909585953, 0.07977045327425003, -0.03757791221141815], [0.049820709973573685, 0.09602443128824234, 0.01708785817027092], [0.023441225290298462, -0.09998895227909088, -0.014232304878532887], [-0.3097860515117645, 0.3841603994369507, 0.0014539174735546112], [0.15695415437221527, 0.4689794182777405, 0.09663969278335571], [0.025528956204652786, -0.21980790793895721, 0.03301645815372467], [-0.4847703278064728, 0.7449825406074524, -0.08480682969093323], [0.16599273681640625, 0.8780775666236877, 0.11314740777015686], [0.0032019256614148617, -0.2582358121871948, 0.06441320478916168], [-0.6043491363525391, 0.7795893549919128, -0.0373973585665226], [0.17976874113082886, 0.9633059501647949, 0.2142380028963089], [0.022256802767515182, -0.4659196734428406, 0.05902344360947609], [-0.041111063212156296, -0.38026249408721924, 0.011076819151639938], [0.08316411823034286, -0.3711887001991272, 0.08906547725200653], [-0.03219802305102348, -0.5209887027740479, 0.08896513283252716], [-0.11570779234170914, -0.4162166118621826, -0.023218367248773575], [0.14857186377048492, -0.3941692113876343, 0.1529567390680313], [-0.3572150468826294, -0.4987384080886841, -0.10223633050918579], [0.12167881429195404, -0.23502562940120697, 0.3564762473106384], [-0.5716327428817749, -0.6296029686927795, -0.08694435656070709], [-0.13821248710155487, -0.23959706723690033, 0.36483559012413025], [-0.629011332988739, -0.6849346160888672, -0.11173352599143982], [-0.20242051780223846, -0.2510853409767151, 0.4169369637966156]]}, {"image_id": "273.jpg", "category_id": 1, "keypoints": [1077.7176513671875, 473.77392578125, 0.9746846556663513, 1071.992919921875, 501.6327209472656, 0.9853976368904114, 1062.469482421875, 509.51409912109375, 0.9834176898002625, 1080.8748779296875, 433.1356506347656, 0.9899948239326477, 1104.5538330078125, 637.9290161132812, 0.9819130301475525, 977.7081909179688, 627.7973022460938, 0.9727758169174194, 1107.5562744140625, 390.4313049316406, 0.9894969463348389, 1128.8416748046875, 777.5401611328125, 0.9249246120452881, 861.3502197265625, 738.561279296875, 0.9042258858680725, 1126.424072265625, 379.25323486328125, 0.9928410053253174, 1165.2554931640625, 799.777099609375, 0.9183162450790405, 836.9406127929688, 773.1038818359375, 0.7834506034851074, 1158.7047119140625, 306.4376220703125, 0.9896734952926636, 1130.244873046875, 322.06121826171875, 0.9922991394996643, 1148.892822265625, 348.89447021484375, 0.9877727031707764, 1182.1978759765625, 293.51922607421875, 0.9641088247299194, 1128.059326171875, 293.2357177734375, 0.9775804877281189, 1174.4849853515625, 353.35357666015625, 0.9779643416404724, 1139.87841796875, 230.15814208984375, 0.9179243445396423, 1271.4454345703125, 403.92962646484375, 0.9739149212837219, 1203.2418212890625, 177.16873168945312, 0.9273526668548584, 1368.351806640625, 420.4361267089844, 0.9694591164588928, 1220.6663818359375, 155.3433837890625, 0.9284883141517639, 1396.9073486328125, 420.3593444824219, 0.9303295612335205, 1205.03564453125, 233.54580688476562, 0.945178747177124, 1250.5281982421875, 139.34390258789062, 0.830600380897522, 1446.21142578125, 415.440673828125, 0.8776504397392273, 1179.439453125, 809.2592163085938, 0.8817137479782104, 831.0014038085938, 783.59326171875, 0.7844458222389221], "score": 3.180312156677246, "box": [824.3584594726562, 188.81472778320312, 607.2755737304688, 643.5982971191406], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.011878681369125843, 0.07020346820354462, 0.08580922335386276], [-0.043770626187324524, 0.09224117547273636, -0.03877288103103638], [0.004044320434331894, -0.10243649780750275, -0.02228584699332714], [0.07785682380199432, 0.43137413263320923, 0.1753721535205841], [-0.27002525329589844, 0.4085415005683899, -0.023003267124295235], [0.07630046457052231, -0.20757557451725006, -0.05804470181465149], [0.14846205711364746, 0.8117390871047974, 0.28464505076408386], [-0.5467879176139832, 0.6758158802986145, 0.09161141514778137], [0.12332499027252197, -0.2352215200662613, -0.06883807480335236], [0.26141637563705444, 0.8805292844772339, 0.2802477777004242], [-0.6030479073524475, 0.7537287473678589, 0.0008843615651130676], [0.19300737977027893, -0.4199413061141968, -0.14003348350524902], [0.12925300002098083, -0.3750562071800232, -0.05148123949766159], [0.17312049865722656, -0.31016337871551514, -0.17770740389823914], [0.26622575521469116, -0.45977383852005005, -0.15086844563484192], [0.12605145573616028, -0.4531354308128357, -0.005734525620937347], [0.24559757113456726, -0.2932836413383484, -0.2373446226119995], [0.16698214411735535, -0.6328105330467224, 0.18166697025299072], [0.47138065099716187, -0.17859210073947906, -0.2049066722393036], [0.348346471786499, -0.7879332900047302, 0.24970859289169312], [0.7235596179962158, -0.13558311760425568, -0.20579323172569275], [0.39947158098220825, -0.8522148132324219, 0.2628658711910248], [0.8004981875419617, -0.1346166580915451, -0.23691120743751526]]}, {"image_id": "273.jpg", "category_id": 1, "keypoints": [1524.028564453125, 483.6553039550781, 0.9831725358963013, 1492.5966796875, 515.9848022460938, 0.9902427196502686, 1548.361328125, 524.2271728515625, 0.987034022808075, 1535.1148681640625, 440.5257568359375, 0.9794536828994751, 1389.6917724609375, 647.2412719726562, 0.9790496826171875, 1584.9991455078125, 671.5061645507812, 0.9726355075836182, 1533.4063720703125, 388.7280578613281, 0.9867919087409973, 1316.0009765625, 793.9205322265625, 0.9094560146331787, 1582.5579833984375, 833.3045043945312, 0.9175286889076233, 1523.427001953125, 371.80377197265625, 0.9831709265708923, 1269.7388916015625, 806.0814208984375, 0.7875297665596008, 1584.729248046875, 866.9314575195312, 0.9502476453781128, 1527.5147705078125, 283.17864990234375, 0.9896030426025391, 1504.7269287109375, 315.62969970703125, 0.9835488200187683, 1554.0693359375, 325.5042724609375, 0.9898613691329956, 1504.061279296875, 261.4563293457031, 0.9743956923484802, 1476.1004638671875, 295.04443359375, 0.9786585569381714, 1577.8001708984375, 315.0344543457031, 0.9766840934753418, 1373.3697509765625, 258.5876770019531, 0.9679738879203796, 1577.3387451171875, 344.24462890625, 0.967128336429596, 1279.920166015625, 205.7427978515625, 0.9520277976989746, 1521.07421875, 285.76434326171875, 0.962556004524231, 1248.593505859375, 177.14004516601562, 0.9704362750053406, 1509.2540283203125, 280.97119140625, 0.940159261226654, 1509.50146484375, 195.43258666992188, 0.9508556723594666, 1226.1983642578125, 143.50253295898438, 0.8804948329925537, 1486.4542236328125, 300.87506103515625, 0.9184544682502747, 1276.3941650390625, 807.5215454101562, 0.8163567781448364, 1571.69482421875, 860.8475341796875, 0.9143908023834229], "score": 3.184163808822632, "box": [1216.6732177734375, 176.04876708984375, 421.32958984375, 698.6087646484375], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.06997386366128922, 0.0800459086894989, -0.03631049022078514], [0.050372831523418427, 0.09650808572769165, 0.016457635909318924], [0.023542745038866997, -0.10073819756507874, -0.015193242579698563], [-0.30611497163772583, 0.38811472058296204, -0.0005612336099147797], [0.15623590350151062, 0.47089847922325134, 0.0897628664970398], [0.025954261422157288, -0.22124016284942627, 0.03148791939020157], [-0.49592897295951843, 0.7426793575286865, -0.0829751044511795], [0.14986085891723633, 0.8808307647705078, 0.08872787654399872], [0.003130786120891571, -0.26128876209259033, 0.06122196093201637], [-0.6118089556694031, 0.778805673122406, -0.027365397661924362], [0.17254120111465454, 0.9714848399162292, 0.18381960690021515], [0.021631689742207527, -0.4702184200286865, 0.054600153118371964], [-0.039034850895404816, -0.383365273475647, 0.0036383531987667084], [0.08154407143592834, -0.375704288482666, 0.08980056643486023], [-0.032886065542697906, -0.526810348033905, 0.08118608593940735], [-0.11193428933620453, -0.4192911982536316, -0.0356309600174427], [0.145463764667511, -0.4030023217201233, 0.1544865518808365], [-0.35309892892837524, -0.49398308992385864, -0.12378542125225067], [0.1887691617012024, -0.3328113555908203, 0.40114089846611023], [-0.5710662007331848, -0.6196097731590271, -0.10810315608978271], [0.03198597580194473, -0.518610954284668, 0.4941859543323517], [-0.6304191946983337, -0.6759029626846313, -0.12633050978183746], [-0.02449679933488369, -0.5491238832473755, 0.5480645298957825]]}, {"image_id": "274.jpg", "category_id": 1, "keypoints": [1081.183349609375, 471.22955322265625, 0.9781261086463928, 1073.4052734375, 499.1434020996094, 0.9858248829841614, 1066.9683837890625, 506.518310546875, 0.9855232834815979, 1084.583984375, 430.5399475097656, 0.9908839464187622, 1104.514892578125, 635.4133911132812, 0.9755910038948059, 984.3878784179688, 625.0640869140625, 0.9760069847106934, 1110.66357421875, 387.9176025390625, 0.9905332922935486, 1127.2457275390625, 774.022216796875, 0.9235926270484924, 864.39892578125, 736.1881103515625, 0.8549553155899048, 1129.3009033203125, 377.05120849609375, 0.9927504062652588, 1163.440673828125, 795.5989990234375, 0.9282258152961731, 833.81494140625, 772.7581787109375, 0.8132087588310242, 1161.2626953125, 308.2512512207031, 0.9891595840454102, 1133.1800537109375, 321.15118408203125, 0.9915683269500732, 1152.7691650390625, 349.82757568359375, 0.9894497990608215, 1184.53857421875, 296.31707763671875, 0.964313268661499, 1132.246337890625, 292.3190002441406, 0.9781814813613892, 1179.2689208984375, 355.7232360839844, 0.9788091778755188, 1150.365234375, 230.97906494140625, 0.894146203994751, 1277.6990966796875, 406.0605773925781, 0.9722035527229309, 1221.2470703125, 184.20126342773438, 0.9523403644561768, 1375.129150390625, 422.9463195800781, 0.9387610554695129, 1238.242431640625, 163.17874145507812, 0.9452738165855408, 1401.0721435546875, 423.4995422363281, 0.9149858951568604, 1207.1121826171875, 242.1236572265625, 0.9508686661720276, 1262.48876953125, 146.57125854492188, 0.868790864944458, 1451.8704833984375, 418.5489807128906, 0.8567458987236023, 1179.6622314453125, 805.6627197265625, 0.8992725014686584, 824.2528686523438, 785.0711059570312, 0.8432934880256653], "score": 3.18249249458313, "box": [822.3837280273438, 196.45489501953125, 619.2109985351562, 632.26904296875], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.017517412081360817, 0.07082636654376984, 0.08364560455083847], [-0.04046700894832611, 0.0915323942899704, -0.04239887371659279], [0.005356764420866966, -0.1018909215927124, -0.020807141438126564], [0.06869339197874069, 0.433865487575531, 0.16742900013923645], [-0.26276785135269165, 0.41005414724349976, -0.057693738490343094], [0.07135538756847382, -0.21081405878067017, -0.055564358830451965], [0.1355992555618286, 0.8152055144309998, 0.27209287881851196], [-0.5521087646484375, 0.6801380515098572, 0.003106251358985901], [0.11851032078266144, -0.23812183737754822, -0.06449076533317566], [0.24807500839233398, 0.8828269243240356, 0.28523126244544983], [-0.6141437292098999, 0.7518938779830933, -0.08818376064300537], [0.1964123547077179, -0.4144967198371887, -0.14463678002357483], [0.1291986107826233, -0.37759608030319214, -0.055735550820827484], [0.17326083779335022, -0.303996205329895, -0.1756991446018219], [0.2705640196800232, -0.45201700925827026, -0.1566258668899536], [0.1290721297264099, -0.45726025104522705, -0.013713676482439041], [0.2468780279159546, -0.28338682651519775, -0.23174235224723816], [0.18780997395515442, -0.63630211353302, 0.16861990094184875], [0.4701642394065857, -0.17455774545669556, -0.17591139674186707], [0.3883262872695923, -0.7717127799987793, 0.2204992175102234], [0.7176942825317383, -0.1345447301864624, -0.12875020503997803], [0.44017475843429565, -0.8359168171882629, 0.2270897924900055], [0.7994089126586914, -0.13232320547103882, -0.1404893696308136]]}, {"image_id": "274.jpg", "category_id": 1, "keypoints": [1529.868408203125, 486.85125732421875, 0.9823155999183655, 1497.4046630859375, 519.123291015625, 0.9902625679969788, 1553.6614990234375, 527.179443359375, 0.9869450926780701, 1541.2139892578125, 444.09161376953125, 0.977908194065094, 1393.205322265625, 647.5438842773438, 0.9785460233688354, 1587.6689453125, 672.641357421875, 0.9731199145317078, 1540.5599365234375, 392.0734558105469, 0.9877499341964722, 1316.8433837890625, 787.5697021484375, 0.8845743536949158, 1583.66162109375, 832.6273803710938, 0.922593891620636, 1530.2425537109375, 374.6259765625, 0.9829474687576294, 1267.0037841796875, 804.421875, 0.7643011212348938, 1584.435791015625, 862.6171875, 0.9500980377197266, 1533.2559814453125, 285.1383972167969, 0.9890493750572205, 1511.00048828125, 318.647705078125, 0.9830262064933777, 1560.4730224609375, 327.3182373046875, 0.99098801612854, 1510.67822265625, 264.3492431640625, 0.9735682606697083, 1481.9390869140625, 298.322509765625, 0.9754171371459961, 1584.1380615234375, 314.9526062011719, 0.9800729751586914, 1376.646240234375, 259.6171875, 0.9677804112434387, 1588.9034423828125, 337.4058837890625, 0.9661664962768555, 1282.9605712890625, 203.3262939453125, 0.9549933075904846, 1554.6956787109375, 261.2890319824219, 0.9450786113739014, 1252.5379638671875, 176.72134399414062, 0.9643495678901672, 1555.958251953125, 248.43515014648438, 0.9045211672782898, 1522.03271484375, 198.39593505859375, 0.9418997764587402, 1230.0408935546875, 143.06707763671875, 0.8583551645278931, 1543.75732421875, 254.12762451171875, 0.9267827272415161, 1274.14990234375, 806.8485107421875, 0.7849423885345459, 1570.4124755859375, 851.050537109375, 0.892615020275116], "score": 3.1804847717285156, "box": [1223.0050048828125, 180.31776428222656, 414.5128173828125, 693.1937713623047], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07151494920253754, 0.080155149102211, -0.03340012580156326], [0.04976142942905426, 0.09677337110042572, 0.017779503017663956], [0.024467645213007927, -0.10052762925624847, -0.01802576147019863], [-0.3131020665168762, 0.3835969567298889, -0.00333370640873909], [0.15232162177562714, 0.46776270866394043, 0.10756191611289978], [0.028320306912064552, -0.22198908030986786, 0.027338627725839615], [-0.5145034193992615, 0.7259045839309692, -0.10467693209648132], [0.14324642717838287, 0.8770058155059814, 0.1138669103384018], [0.0035127787850797176, -0.2625654935836792, 0.055171702057123184], [-0.6291467547416687, 0.7703453898429871, -0.05249612405896187], [0.16407249867916107, 0.9595896601676941, 0.2165689319372177], [0.020186519250273705, -0.4718617796897888, 0.04193440452218056], [-0.04080246761441231, -0.38282841444015503, -0.00561775267124176], [0.08166958391666412, -0.3787155747413635, 0.07935602962970734], [-0.03306704759597778, -0.5279002785682678, 0.07222005724906921], [-0.11509176343679428, -0.41952264308929443, -0.04230554774403572], [0.14643420279026031, -0.4106972813606262, 0.14162153005599976], [-0.3563263416290283, -0.49715256690979004, -0.1264205276966095], [0.20551352202892303, -0.3650004267692566, 0.39038291573524475], [-0.5725462436676025, -0.6263450384140015, -0.12789124250411987], [0.12912501394748688, -0.5874335169792175, 0.5012167692184448], [-0.6349572539329529, -0.6805552840232849, -0.1423729807138443], [0.14451561868190765, -0.6472979784011841, 0.5579612851142883]]}, {"image_id": "275.jpg", "category_id": 1, "keypoints": [1083.811767578125, 470.30792236328125, 0.9783045649528503, 1076.4661865234375, 498.24627685546875, 0.9864387512207031, 1068.7579345703125, 505.4055480957031, 0.9852651953697205, 1087.331298828125, 429.6141357421875, 0.9912382364273071, 1106.610595703125, 636.9349975585938, 0.9763506650924683, 986.4561157226562, 624.66943359375, 0.9753998517990112, 1113.3570556640625, 387.13153076171875, 0.9901944994926453, 1127.098388671875, 775.8550415039062, 0.9130414724349976, 864.6229248046875, 736.088134765625, 0.855564534664154, 1132.0023193359375, 376.1651611328125, 0.9926169514656067, 1163.719970703125, 798.981201171875, 0.9274703860282898, 836.16064453125, 773.4751586914062, 0.7976025342941284, 1163.4456787109375, 306.2862548828125, 0.9887294769287109, 1136.194580078125, 320.2032470703125, 0.9911488890647888, 1153.8662109375, 347.7723388671875, 0.9896982312202454, 1186.9951171875, 294.4144287109375, 0.9632229208946228, 1135.77294921875, 291.28045654296875, 0.9783146381378174, 1179.648681640625, 353.1118469238281, 0.9782276749610901, 1153.393310546875, 231.80615234375, 0.8969153165817261, 1279.5782470703125, 404.9193420410156, 0.9686561226844788, 1223.3160400390625, 184.09640502929688, 0.9498087763786316, 1377.2769775390625, 421.7128601074219, 0.9557328224182129, 1240.6334228515625, 162.17965698242188, 0.9505742192268372, 1405.3380126953125, 421.0065612792969, 0.913374662399292, 1213.7056884765625, 238.15414428710938, 0.9542881846427917, 1265.23486328125, 145.735595703125, 0.8719473481178284, 1457.67529296875, 415.49688720703125, 0.8775567412376404, 1177.0499267578125, 807.9122314453125, 0.921930193901062, 828.7184448242188, 786.0579833984375, 0.8257866501808167], "score": 3.183074474334717, "box": [824.5022583007812, 195.9347381591797, 619.2991333007812, 631.1869049072266], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.015911800786852837, 0.070786252617836, 0.08438639342784882], [-0.042768996208906174, 0.09129896014928818, -0.04140414297580719], [0.00587446428835392, -0.10208804905414581, -0.02098947949707508], [0.06680520623922348, 0.43549174070358276, 0.16901284456253052], [-0.2642304599285126, 0.41191428899765015, -0.049054402858018875], [0.07145119458436966, -0.2103046327829361, -0.05810229107737541], [0.12784971296787262, 0.8122157454490662, 0.2967822849750519], [-0.5540263652801514, 0.6796375513076782, 0.027378853410482407], [0.1181887611746788, -0.23756270110607147, -0.06947053968906403], [0.23964527249336243, 0.8827946782112122, 0.29634132981300354], [-0.6110121011734009, 0.7523260712623596, -0.06691494584083557], [0.19291764497756958, -0.4151715636253357, -0.1510290652513504], [0.12989145517349243, -0.3772393465042114, -0.059287767857313156], [0.16783709824085236, -0.3050055503845215, -0.1825898289680481], [0.26653140783309937, -0.4515463709831238, -0.1683109551668167], [0.13127832114696503, -0.4562060832977295, -0.01568468287587166], [0.23819492757320404, -0.2858479619026184, -0.24341613054275513], [0.18969111144542694, -0.632552444934845, 0.17051193118095398], [0.462568461894989, -0.1743970662355423, -0.193471759557724], [0.39013272523880005, -0.7718870639801025, 0.21544034779071808], [0.7118405103683472, -0.13413231074810028, -0.1515710949897766], [0.44160160422325134, -0.8370242714881897, 0.21523526310920715], [0.7946129441261292, -0.13611893355846405, -0.15433213114738464]]}, {"image_id": "275.jpg", "category_id": 1, "keypoints": [1533.068115234375, 487.7143859863281, 0.9825865030288696, 1500.8304443359375, 519.4688110351562, 0.9919683337211609, 1556.5181884765625, 529.1195068359375, 0.9874716401100159, 1543.91650390625, 445.3419494628906, 0.9792215824127197, 1396.1209716796875, 646.2116088867188, 0.9793569445610046, 1590.625, 672.9642333984375, 0.9718815088272095, 1544.119873046875, 393.22235107421875, 0.9889439940452576, 1315.2613525390625, 788.638671875, 0.8729976415634155, 1585.0789794921875, 830.5792236328125, 0.9181850552558899, 1534.3372802734375, 375.7550048828125, 0.9838870167732239, 1267.6214599609375, 805.6767578125, 0.7294238805770874, 1583.4901123046875, 857.5408935546875, 0.9399971961975098, 1537.75537109375, 286.4122619628906, 0.9889994263648987, 1515.2227783203125, 320.57061767578125, 0.9831218719482422, 1564.39501953125, 328.101806640625, 0.9918507933616638, 1515.5692138671875, 264.8787536621094, 0.9707365036010742, 1485.293212890625, 300.222412109375, 0.9764113426208496, 1588.57373046875, 315.88824462890625, 0.9822211861610413, 1379.3917236328125, 260.94195556640625, 0.9655876755714417, 1599.3974609375, 341.34979248046875, 0.9592002630233765, 1287.0291748046875, 204.98297119140625, 0.9562227129936218, 1564.3870849609375, 273.44097900390625, 0.9568946361541748, 1255.5714111328125, 179.97109985351562, 0.9629968404769897, 1564.368408203125, 257.6280822753906, 0.901078462600708, 1528.7708740234375, 196.91690063476562, 0.9461069703102112, 1233.319580078125, 148.10418701171875, 0.8587153553962708, 1548.426025390625, 265.2330017089844, 0.9083999991416931, 1272.7489013671875, 807.755615234375, 0.7407113313674927, 1570.4228515625, 849.7860717773438, 0.8927893042564392], "score": 3.1775636672973633, "box": [1226.6546630859375, 183.54229736328125, 412.132568359375, 690.0310668945312], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07194666564464569, 0.07954062521457672, -0.033189672976732254], [0.04931952431797981, 0.09690156579017639, 0.016867123544216156], [0.024737535044550896, -0.10030928254127502, -0.017643356695771217], [-0.31667202711105347, 0.3800429105758667, -0.010444045066833496], [0.15205880999565125, 0.4687621295452118, 0.0987962856888771], [0.028974829241633415, -0.22262635827064514, 0.02553407847881317], [-0.5234503746032715, 0.7197062969207764, -0.10507363080978394], [0.14062699675559998, 0.8765556812286377, 0.1142689436674118], [0.004412183538079262, -0.2639276683330536, 0.05238467454910278], [-0.6382492184638977, 0.7662572860717773, -0.055803362280130386], [0.15670068562030792, 0.9528634548187256, 0.2221912145614624], [0.02201099880039692, -0.472525030374527, 0.03495590388774872], [-0.039597827941179276, -0.3829566538333893, -0.010379873216152191], [0.08314306288957596, -0.3799128234386444, 0.07375437021255493], [-0.03069767728447914, -0.5303957462310791, 0.06272828578948975], [-0.1159185916185379, -0.41873809695243835, -0.043319448828697205], [0.14895592629909515, -0.4114612638950348, 0.13493549823760986], [-0.35820290446281433, -0.49836859107017517, -0.12020425498485565], [0.22265228629112244, -0.360993891954422, 0.3781138062477112], [-0.5739501118659973, -0.626228928565979, -0.13567131757736206], [0.13236074149608612, -0.5806421041488647, 0.4823414981365204], [-0.6387549042701721, -0.6764583587646484, -0.1527269184589386], [0.14215993881225586, -0.642980694770813, 0.5373493432998657]]}, {"image_id": "276.jpg", "category_id": 1, "keypoints": [1085.240966796875, 469.76190185546875, 0.9793000817298889, 1077.42919921875, 497.8804626464844, 0.9867380857467651, 1070.598876953125, 505.0777893066406, 0.9858792424201965, 1088.740966796875, 428.660400390625, 0.9912819266319275, 1108.224853515625, 635.6192016601562, 0.975090742111206, 988.5203857421875, 624.10009765625, 0.9748843908309937, 1115.2655029296875, 386.53466796875, 0.9892200231552124, 1129.1253662109375, 775.3973388671875, 0.9167835116386414, 867.2014770507812, 732.953125, 0.8524837493896484, 1134.2373046875, 376.039306640625, 0.9926382303237915, 1164.48193359375, 796.2063598632812, 0.9309033751487732, 837.763671875, 772.783203125, 0.798688530921936, 1165.4674072265625, 305.5655517578125, 0.9890451431274414, 1138.7322998046875, 320.003662109375, 0.9916900992393494, 1155.7159423828125, 347.77740478515625, 0.9897347688674927, 1188.9532470703125, 293.2477111816406, 0.9638475179672241, 1139.8551025390625, 290.55010986328125, 0.9804110527038574, 1181.2906494140625, 352.71502685546875, 0.9796227812767029, 1161.2261962890625, 230.90032958984375, 0.8899312615394592, 1280.225341796875, 402.8863220214844, 0.9630065560340881, 1231.2767333984375, 185.86297607421875, 0.9634048342704773, 1380.8094482421875, 422.29522705078125, 0.9584289193153381, 1249.2279052734375, 164.55654907226562, 0.9616432785987854, 1411.4945068359375, 421.3498229980469, 0.9293853044509888, 1210.804443359375, 235.08084106445312, 0.9547138810157776, 1274.87744140625, 147.81524658203125, 0.8310696482658386, 1466.266357421875, 413.3248291015625, 0.9049519300460815, 1178.57666015625, 803.659423828125, 0.9066871404647827, 831.802734375, 785.3184814453125, 0.8067853450775146], "score": 3.1827142238616943, "box": [819.4553833007812, 198.28585815429688, 629.7505493164062, 628.2107238769531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.017301468178629875, 0.07159502804279327, 0.08406597375869751], [-0.04171978309750557, 0.0916372537612915, -0.04302173852920532], [0.00572403147816658, -0.10294237732887268, -0.02038237452507019], [0.06772811710834503, 0.4369644522666931, 0.16503924131393433], [-0.263366162776947, 0.41225066781044006, -0.06254252791404724], [0.07297085225582123, -0.2108422815799713, -0.056695595383644104], [0.12981350719928741, 0.8207213878631592, 0.2730271816253662], [-0.5571076273918152, 0.6783933043479919, 0.009905118495225906], [0.12060114741325378, -0.2369275689125061, -0.06871902942657471], [0.24292215704917908, 0.8880045413970947, 0.289178729057312], [-0.6150228381156921, 0.7547506093978882, -0.08150939643383026], [0.1939498484134674, -0.4149734675884247, -0.15295711159706116], [0.1322041004896164, -0.37748751044273376, -0.059484776109457016], [0.16875587403774261, -0.30399277806282043, -0.18367941677570343], [0.2664531171321869, -0.45217618346214294, -0.17295005917549133], [0.13762256503105164, -0.4571424424648285, -0.016478944569826126], [0.23924434185028076, -0.28576451539993286, -0.24542954564094543], [0.20771381258964539, -0.6381213665008545, 0.16197416186332703], [0.4668554365634918, -0.17381301522254944, -0.20976261794567108], [0.41550353169441223, -0.7731140851974487, 0.18591564893722534], [0.7169232368469238, -0.127792090177536, -0.17524302005767822], [0.46921876072883606, -0.8368569612503052, 0.18473786115646362], [0.798760712146759, -0.12980851531028748, -0.1900634467601776]]}, {"image_id": "276.jpg", "category_id": 1, "keypoints": [1535.4171142578125, 487.07843017578125, 0.9824910759925842, 1502.596923828125, 519.8524169921875, 0.9917672276496887, 1559.1640625, 527.9761352539062, 0.9877474904060364, 1546.4154052734375, 444.5404968261719, 0.9791231751441956, 1402.81298828125, 649.33056640625, 0.9801792502403259, 1593.4471435546875, 670.531494140625, 0.9720560312271118, 1547.9232177734375, 392.10833740234375, 0.9876582622528076, 1317.3218994140625, 788.4570922851562, 0.8762528896331787, 1587.243408203125, 828.4378662109375, 0.9183032512664795, 1539.045166015625, 374.4565124511719, 0.9824084043502808, 1267.86474609375, 806.0347290039062, 0.7384469509124756, 1588.15283203125, 855.9454345703125, 0.944159984588623, 1546.2900390625, 286.54913330078125, 0.9902676939964294, 1521.803955078125, 319.64398193359375, 0.9822132587432861, 1571.18115234375, 328.39715576171875, 0.9923563599586487, 1525.6685791015625, 264.3518981933594, 0.9688118100166321, 1491.6602783203125, 300.01251220703125, 0.9776919484138489, 1595.898193359375, 317.5423889160156, 0.9842836260795593, 1387.6202392578125, 261.952392578125, 0.9624302387237549, 1606.2071533203125, 341.6256408691406, 0.9549801349639893, 1291.9852294921875, 209.88052368164062, 0.9397938251495361, 1560.020751953125, 277.144775390625, 0.9545131325721741, 1259.7764892578125, 183.10528564453125, 0.9723111987113953, 1554.2200927734375, 260.4410400390625, 0.9304743409156799, 1538.7528076171875, 199.46783447265625, 0.9488599300384521, 1234.28369140625, 154.5906982421875, 0.9060661196708679, 1530.304443359375, 273.7066650390625, 0.9269023537635803, 1275.234130859375, 808.4552612304688, 0.7660197019577026, 1573.79736328125, 845.2996826171875, 0.8824924230575562], "score": 3.180469036102295, "box": [1227.453369140625, 178.4834442138672, 415.767333984375, 697.0713043212891], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07272670418024063, 0.08094139397144318, -0.028115933761000633], [0.05047516152262688, 0.09621874243021011, 0.018135735765099525], [0.02368258126080036, -0.10015667974948883, -0.021853096783161163], [-0.30600088834762573, 0.3891242742538452, -0.0007968060672283173], [0.1558406502008438, 0.46302908658981323, 0.11510129272937775], [0.03122774139046669, -0.22428549826145172, 0.017109276726841927], [-0.5240816473960876, 0.7214100956916809, -0.09354059398174286], [0.1386033147573471, 0.8702778220176697, 0.10850508511066437], [0.00917711853981018, -0.2664448618888855, 0.04528290033340454], [-0.6356706023216248, 0.7673336863517761, -0.036756932735443115], [0.16054169833660126, 0.9465879201889038, 0.21548901498317719], [0.035334307700395584, -0.4746130108833313, 0.02743215300142765], [-0.031601935625076294, -0.3876569867134094, -0.016331585124135017], [0.09367547929286957, -0.37913382053375244, 0.06468883156776428], [-0.013273388147354126, -0.5348557829856873, 0.05790972709655762], [-0.11094070971012115, -0.4212789535522461, -0.04499684274196625], [0.16135504841804504, -0.4078361988067627, 0.12578800320625305], [-0.35353323817253113, -0.4997445344924927, -0.1209312453866005], [0.23355220258235931, -0.3616895079612732, 0.36993923783302307], [-0.5735800862312317, -0.6207007169723511, -0.11965266615152359], [0.1075420081615448, -0.5678330659866333, 0.4634019434452057], [-0.6365153789520264, -0.6743702292442322, -0.13339070975780487], [0.09532994776964188, -0.6329777836799622, 0.5146580934524536]]}, {"image_id": "277.jpg", "category_id": 1, "keypoints": [1087.468505859375, 470.2261657714844, 0.9784204363822937, 1079.89208984375, 498.20849609375, 0.9855478405952454, 1072.3994140625, 504.9161071777344, 0.9842045307159424, 1091.05029296875, 429.3526916503906, 0.9899593591690063, 1108.8038330078125, 635.2532348632812, 0.9753222465515137, 989.9470825195312, 624.5248413085938, 0.9736394882202148, 1117.829345703125, 386.92083740234375, 0.9905603528022766, 1130.319580078125, 773.1710205078125, 0.9183385968208313, 867.1854248046875, 733.4695434570312, 0.8500354290008545, 1136.85498046875, 376.3040771484375, 0.9929815530776978, 1160.3734130859375, 795.52783203125, 0.9306482076644897, 838.853759765625, 771.9072265625, 0.8002930283546448, 1169.069091796875, 305.701416015625, 0.9887881875038147, 1141.8023681640625, 320.1987609863281, 0.9919338822364807, 1158.777099609375, 347.32025146484375, 0.9895678758621216, 1193.1888427734375, 293.6227722167969, 0.9646831750869751, 1142.9052734375, 290.848388671875, 0.9800698757171631, 1185.0015869140625, 351.7472839355469, 0.979771077632904, 1163.8790283203125, 232.69268798828125, 0.8931411504745483, 1283.884765625, 403.1358947753906, 0.9662513732910156, 1232.9302978515625, 186.93673706054688, 0.9568976163864136, 1383.875732421875, 420.63653564453125, 0.9598122835159302, 1250.6070556640625, 165.2769775390625, 0.9619877338409424, 1413.823486328125, 419.28643798828125, 0.9310008883476257, 1215.234130859375, 236.93365478515625, 0.9441341161727905, 1274.15625, 146.78927612304688, 0.857539713382721, 1468.21337890625, 411.6346130371094, 0.9034193754196167, 1172.1500244140625, 804.2347412109375, 0.9397808313369751, 829.857666015625, 783.4866943359375, 0.8227174282073975], "score": 3.185109853744507, "box": [826.99560546875, 195.41038513183594, 622.13232421875, 630.0253448486328], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.01639239303767681, 0.07120002806186676, 0.08445154875516891], [-0.043218567967414856, 0.09129124134778976, -0.04202928766608238], [0.006231199949979782, -0.10279001295566559, -0.02070779539644718], [0.06416729837656021, 0.43959492444992065, 0.1523464024066925], [-0.2644505202770233, 0.4120354652404785, -0.04643635079264641], [0.07352052628993988, -0.21056629717350006, -0.05735713988542557], [0.1285419464111328, 0.8196430206298828, 0.26913052797317505], [-0.5597978234291077, 0.6765864491462708, 0.021299298852682114], [0.12114644050598145, -0.23690180480480194, -0.06876495480537415], [0.23361963033676147, 0.8984037637710571, 0.286299467086792], [-0.6192196607589722, 0.7552682161331177, -0.06686970591545105], [0.1963612586259842, -0.41413068771362305, -0.15285533666610718], [0.13415053486824036, -0.3772677779197693, -0.059469468891620636], [0.1701636165380478, -0.30343323945999146, -0.18359678983688354], [0.2705019414424896, -0.4506601095199585, -0.1670592725276947], [0.1395571529865265, -0.45709115266799927, -0.016792863607406616], [0.24206900596618652, -0.286843478679657, -0.2441180944442749], [0.20820078253746033, -0.6319674253463745, 0.1675378382205963], [0.4683549106121063, -0.17253021895885468, -0.2109968364238739], [0.4117974042892456, -0.7690604329109192, 0.20652446150779724], [0.71940678358078, -0.13036532700061798, -0.182780921459198], [0.46437814831733704, -0.8334625959396362, 0.20221251249313354], [0.8008062839508057, -0.13350526988506317, -0.1990225613117218]]}, {"image_id": "277.jpg", "category_id": 1, "keypoints": [1539.159423828125, 489.66546630859375, 0.9835178256034851, 1505.231689453125, 521.624267578125, 0.9922874569892883, 1562.513916015625, 531.3175659179688, 0.9864259362220764, 1550.5916748046875, 446.908447265625, 0.9789496064186096, 1402.568603515625, 649.3328857421875, 0.9777994751930237, 1597.0965576171875, 675.62255859375, 0.9754499793052673, 1552.3533935546875, 394.218505859375, 0.9882916808128357, 1316.35791015625, 786.283203125, 0.8534029722213745, 1588.2000732421875, 830.8673095703125, 0.9103171229362488, 1543.352294921875, 376.7447814941406, 0.9850208759307861, 1269.542724609375, 803.5935668945312, 0.7051950693130493, 1590.460205078125, 858.855224609375, 0.9454935789108276, 1548.3331298828125, 287.3082580566406, 0.9897745847702026, 1524.6051025390625, 321.36077880859375, 0.9831241965293884, 1574.55419921875, 328.6184387207031, 0.991381824016571, 1525.8345947265625, 266.0296325683594, 0.9732863306999207, 1494.822509765625, 301.78619384765625, 0.9809811115264893, 1600.04443359375, 317.7943420410156, 0.9831862449645996, 1386.3712158203125, 262.3239440917969, 0.9595274329185486, 1609.3875732421875, 349.1786804199219, 0.9607343673706055, 1296.2518310546875, 206.4996337890625, 0.9616665244102478, 1566.486083984375, 282.58013916015625, 0.9488948583602905, 1263.07421875, 180.92745971679688, 0.9648995995521545, 1571.1748046875, 259.32275390625, 0.9196327924728394, 1538.5267333984375, 199.78494262695312, 0.947256326675415, 1243.6348876953125, 149.89080810546875, 0.8273854851722717, 1567.49560546875, 250.88687133789062, 0.9325726628303528, 1274.1612548828125, 809.9033203125, 0.6929829120635986, 1575.55810546875, 848.7161254882812, 0.8915581703186035], "score": 3.1739089488983154, "box": [1234.0880126953125, 188.6245880126953, 413.109375, 682.2509613037109], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07429565489292145, 0.07893103361129761, -0.029547549784183502], [0.04874907806515694, 0.09745718538761139, 0.01582500897347927], [0.025357745587825775, -0.09996092319488525, -0.019657956436276436], [-0.3159096837043762, 0.3824242353439331, -0.014730042777955532], [0.15313836932182312, 0.4679608643054962, 0.10177066922187805], [0.03341169282793999, -0.22294923663139343, 0.021577363833785057], [-0.5374671220779419, 0.7067115306854248, -0.12818939983844757], [0.13020458817481995, 0.8756219148635864, 0.10398056358098984], [0.012094395235180855, -0.2645812928676605, 0.05078848451375961], [-0.6466024518013, 0.753929615020752, -0.06770306825637817], [0.15550391376018524, 0.9548443555831909, 0.20811058580875397], [0.031213993206620216, -0.4732373058795929, 0.032526351511478424], [-0.033323969691991806, -0.38423261046409607, -0.01018630899488926], [0.09304764866828918, -0.3798343241214752, 0.06880322843790054], [-0.019520116969943047, -0.5295312404632568, 0.0667424201965332], [-0.1113775223493576, -0.4208836853504181, -0.03808443993330002], [0.16250590980052948, -0.40845349431037903, 0.12760798633098602], [-0.3581051826477051, -0.5019392967224121, -0.09757787734270096], [0.2328280359506607, -0.34376785159111023, 0.36850064992904663], [-0.5695065259933472, -0.6363086700439453, -0.07656774669885635], [0.11000729352235794, -0.5605047941207886, 0.4409500062465668], [-0.6334131956100464, -0.6904752254486084, -0.07325505465269089], [0.13104702532291412, -0.6290844678878784, 0.4842836260795593]]}, {"image_id": "278.jpg", "category_id": 1, "keypoints": [1087.9853515625, 470.8932189941406, 0.9799987077713013, 1080.9593505859375, 498.4921875, 0.9876911044120789, 1072.9644775390625, 505.8905334472656, 0.9857665300369263, 1091.3564453125, 429.86346435546875, 0.991598904132843, 1111.3572998046875, 634.6203002929688, 0.9745875000953674, 989.3599853515625, 623.34375, 0.9760087728500366, 1117.968017578125, 387.2146911621094, 0.9907341003417969, 1131.137451171875, 773.5933837890625, 0.9131643772125244, 868.3010864257812, 732.379638671875, 0.8636085391044617, 1136.5804443359375, 376.9128112792969, 0.9925328493118286, 1163.404052734375, 795.4912109375, 0.9255051016807556, 839.7625732421875, 771.6848754882812, 0.8171897530555725, 1169.647705078125, 306.70947265625, 0.9892162680625916, 1143.510009765625, 320.3266296386719, 0.9912369847297668, 1157.857666015625, 349.8863525390625, 0.9906426668167114, 1193.5208740234375, 295.4976501464844, 0.9642025828361511, 1146.8560791015625, 289.3624267578125, 0.981480062007904, 1183.6063232421875, 354.7092590332031, 0.9809097647666931, 1171.40087890625, 231.77047729492188, 0.8868657946586609, 1284.813232421875, 399.27154541015625, 0.9513750672340393, 1245.0810546875, 191.24349975585938, 0.9739238619804382, 1384.454345703125, 419.4951477050781, 0.9610005021095276, 1261.31103515625, 169.41275024414062, 0.9596009254455566, 1414.2696533203125, 418.09600830078125, 0.9540910720825195, 1211.713623046875, 238.20587158203125, 0.9482738375663757, 1282.2635498046875, 151.49090576171875, 0.8104312419891357, 1471.23828125, 409.6661071777344, 0.9044579863548279, 1174.0216064453125, 804.4473876953125, 0.9335970878601074, 832.340087890625, 784.3893432617188, 0.8233711123466492], "score": 3.1845815181732178, "box": [825.9422607421875, 204.68765258789062, 624.7513427734375, 617.5124816894531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.014787542633712292, 0.0699203759431839, 0.08597896993160248], [-0.04340589419007301, 0.09231972694396973, -0.03988092765212059], [0.005337228998541832, -0.10268647968769073, -0.022569820284843445], [0.07013688236474991, 0.4360273480415344, 0.16027064621448517], [-0.2694535255432129, 0.40966859459877014, -0.04522547125816345], [0.07153775542974472, -0.21011267602443695, -0.06300092488527298], [0.12963759899139404, 0.8156834244728088, 0.28115779161453247], [-0.5606866478919983, 0.6749273538589478, 0.036722756922245026], [0.11858273297548294, -0.23582427203655243, -0.07829946279525757], [0.23901428282260895, 0.890195369720459, 0.2885150909423828], [-0.6174519658088684, 0.7511107325553894, -0.05550561100244522], [0.1950763463973999, -0.40923094749450684, -0.1698654443025589], [0.13626298308372498, -0.3761477470397949, -0.07264232635498047], [0.16407473385334015, -0.2985595464706421, -0.19698446989059448], [0.2658764719963074, -0.4410662055015564, -0.20189106464385986], [0.14709307253360748, -0.4566189646720886, -0.03188926354050636], [0.23114311695098877, -0.2810896635055542, -0.2628803849220276], [0.22724682092666626, -0.633759617805481, 0.1457042694091797], [0.46538376808166504, -0.17831118404865265, -0.2590065598487854], [0.44390732049942017, -0.7541912198066711, 0.1657239943742752], [0.7164003849029541, -0.1281745284795761, -0.24703538417816162], [0.4932432174682617, -0.8204229474067688, 0.17708949744701385], [0.7976463437080383, -0.1314096301794052, -0.2645452320575714]]}, {"image_id": "278.jpg", "category_id": 1, "keypoints": [1541.052490234375, 489.0350341796875, 0.9838190078735352, 1506.63525390625, 522.20458984375, 0.9933539032936096, 1564.9619140625, 529.9608764648438, 0.9874523282051086, 1551.8875732421875, 446.9792175292969, 0.9804032444953918, 1405.9339599609375, 650.6624145507812, 0.9781959652900696, 1598.943359375, 673.0084838867188, 0.9714385271072388, 1554.6719970703125, 393.92596435546875, 0.987913966178894, 1316.2825927734375, 787.1657104492188, 0.8567942380905151, 1588.76416015625, 827.8214111328125, 0.9140864610671997, 1546.42529296875, 375.6737365722656, 0.9831250905990601, 1270.881103515625, 805.3717041015625, 0.694703996181488, 1589.6614990234375, 853.7698974609375, 0.9414316415786743, 1552.2896728515625, 285.98388671875, 0.9890117645263672, 1527.44921875, 320.4522705078125, 0.9843465685844421, 1579.103271484375, 327.6214294433594, 0.9916569590568542, 1531.042724609375, 264.97467041015625, 0.9704633951187134, 1497.4822998046875, 300.18695068359375, 0.9803114533424377, 1605.2646484375, 316.3076477050781, 0.9837973117828369, 1390.407470703125, 266.7550354003906, 0.9603310227394104, 1612.8514404296875, 347.8959655761719, 0.9720155000686646, 1296.5673828125, 209.41171264648438, 0.9504193067550659, 1566.808837890625, 278.5440673828125, 0.94195157289505, 1263.304443359375, 183.77572631835938, 0.9634472131729126, 1568.1627197265625, 251.63995361328125, 0.9250980615615845, 1539.5513916015625, 198.85385131835938, 0.9514718055725098, 1243.49755859375, 153.45840454101562, 0.8568552732467651, 1572.464111328125, 230.20208740234375, 0.9403694272041321, 1277.794921875, 811.2900390625, 0.6936525106430054, 1575.9949951171875, 846.5308837890625, 0.8973134160041809], "score": 3.175665855407715, "box": [1232.8416748046875, 187.66415405273438, 415.3251953125, 684.5520935058594], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07420831173658371, 0.08142580091953278, -0.021785277873277664], [0.05069734528660774, 0.09570267051458359, 0.019617747515439987], [0.02318158745765686, -0.09899793565273285, -0.026669692248106003], [-0.3123602271080017, 0.3867186903953552, -0.014412972144782543], [0.15393567085266113, 0.46600574254989624, 0.1036655604839325], [0.03142966330051422, -0.2257845550775528, 0.002265067771077156], [-0.5400785207748413, 0.7098023295402527, -0.1144820898771286], [0.12822186946868896, 0.8724218010902405, 0.10887154936790466], [0.015429988503456116, -0.27225202322006226, 0.02753620594739914], [-0.646138608455658, 0.7597360610961914, -0.05103449150919914], [0.1506762057542801, 0.9482750296592712, 0.21598966419696808], [0.031290989369153976, -0.48056721687316895, 0.002373630180954933], [-0.03520892933011055, -0.38984888792037964, -0.033500827848911285], [0.09639221429824829, -0.38861095905303955, 0.037030067294836044], [-0.016148492693901062, -0.537131130695343, 0.04080883786082268], [-0.1151580959558487, -0.4263002872467041, -0.056238625198602676], [0.1691582202911377, -0.4191872477531433, 0.09090295433998108], [-0.3648085296154022, -0.4954656958580017, -0.11592911183834076], [0.23522910475730896, -0.3543018698692322, 0.33233076333999634], [-0.5779029726982117, -0.6274731755256653, -0.1047627329826355], [0.11570138484239578, -0.5658095479011536, 0.42181429266929626], [-0.6406459212303162, -0.6826984286308289, -0.09864586591720581], [0.12654560804367065, -0.6383086442947388, 0.46233096718788147]]}, {"image_id": "279.jpg", "category_id": 1, "keypoints": [1090.9317626953125, 470.70819091796875, 0.980166494846344, 1084.233642578125, 498.72125244140625, 0.9886597990989685, 1075.2047119140625, 503.8815612792969, 0.9879951477050781, 1094.52783203125, 430.11224365234375, 0.9920592904090881, 1112.0667724609375, 633.9490966796875, 0.9749699234962463, 994.6895751953125, 622.2285766601562, 0.976456880569458, 1121.025390625, 386.9436950683594, 0.9891443848609924, 1130.140869140625, 770.6642456054688, 0.9264608025550842, 873.2346801757812, 729.1475830078125, 0.8562344312667847, 1139.2183837890625, 376.3983154296875, 0.9918389320373535, 1164.4324951171875, 790.205322265625, 0.9258605241775513, 842.0025634765625, 767.048583984375, 0.8492998480796814, 1170.42919921875, 307.818603515625, 0.9892697334289551, 1146.332763671875, 321.53369140625, 0.991539716720581, 1158.2252197265625, 348.72589111328125, 0.9904972910881042, 1194.29833984375, 296.7083740234375, 0.9644792675971985, 1149.2098388671875, 291.7553405761719, 0.9827820062637329, 1182.3695068359375, 353.2855224609375, 0.9799810647964478, 1174.7606201171875, 231.80300903320312, 0.8827061057090759, 1286.1011962890625, 397.8800354003906, 0.9524096846580505, 1249.748779296875, 193.85464477539062, 0.9714900851249695, 1385.799072265625, 418.3661804199219, 0.9621340036392212, 1269.131103515625, 173.63320922851562, 0.965446412563324, 1415.8189697265625, 416.37994384765625, 0.9548013806343079, 1214.714111328125, 246.16140747070312, 0.9499771595001221, 1290.6748046875, 152.4730224609375, 0.7431246042251587, 1471.258544921875, 408.3135070800781, 0.9034535884857178, 1176.613037109375, 798.689697265625, 0.9167078137397766, 836.99365234375, 780.3980102539062, 0.8268783092498779], "score": 3.1829426288604736, "box": [828.0740966796875, 200.7650604248047, 621.078857421875, 628.8088531494141], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.014206921681761742, 0.07415139675140381, 0.08213403820991516], [-0.046003296971321106, 0.08898251503705978, -0.04369356483221054], [0.006825633347034454, -0.10349522531032562, -0.01702139712870121], [0.06446550041437149, 0.4399263560771942, 0.1604827493429184], [-0.264760822057724, 0.40946149826049805, -0.06826906651258469], [0.07741450518369675, -0.21054260432720184, -0.051184624433517456], [0.12006298452615738, 0.8192332983016968, 0.2803519666194916], [-0.5595582127571106, 0.6716457605361938, 0.004398791119456291], [0.12383454293012619, -0.23714680969715118, -0.06675127893686295], [0.23494811356067657, 0.8848170638084412, 0.28303250670433044], [-0.6251132488250732, 0.7488808035850525, -0.08046510815620422], [0.19141675531864166, -0.41632217168807983, -0.15350399911403656], [0.1383202075958252, -0.3772268295288086, -0.05533209443092346], [0.16180096566677094, -0.3063141107559204, -0.18420495092868805], [0.2623002827167511, -0.4479011297225952, -0.18586371839046478], [0.14829464256763458, -0.4573291540145874, -0.013795362785458565], [0.2257704883813858, -0.2891029715538025, -0.2530781626701355], [0.23069974780082703, -0.6398555636405945, 0.156088188290596], [0.4594009220600128, -0.18750159442424774, -0.265725314617157], [0.449818879365921, -0.7525894641876221, 0.18451698124408722], [0.7097262144088745, -0.13654442131519318, -0.2586711645126343], [0.5063515901565552, -0.8117821216583252, 0.19941310584545135], [0.7918922901153564, -0.14166490733623505, -0.26904526352882385]]}, {"image_id": "279.jpg", "category_id": 1, "keypoints": [1543.2830810546875, 490.58563232421875, 0.9814192652702332, 1509.8084716796875, 524.3819580078125, 0.993171751499176, 1567.9658203125, 530.7559204101562, 0.9893926382064819, 1553.2906494140625, 448.4028015136719, 0.9813147783279419, 1409.028564453125, 653.0078735351562, 0.9770165085792542, 1599.3419189453125, 674.3330078125, 0.9745253920555115, 1556.077880859375, 395.8894958496094, 0.9876415729522705, 1318.9578857421875, 787.1011962890625, 0.8688730597496033, 1589.161865234375, 827.7901611328125, 0.915929913520813, 1548.313720703125, 378.388671875, 0.9825255870819092, 1273.22119140625, 803.951416015625, 0.7109668254852295, 1595.5609130859375, 854.96923828125, 0.9405720233917236, 1554.7137451171875, 289.26727294921875, 0.9897085428237915, 1528.9114990234375, 323.4103088378906, 0.9834692478179932, 1581.2386474609375, 330.77532958984375, 0.9916952848434448, 1534.36279296875, 267.6186828613281, 0.9712289571762085, 1498.0189208984375, 303.6253662109375, 0.9807153344154358, 1607.5311279296875, 320.3839416503906, 0.9855555891990662, 1394.340576171875, 269.2143249511719, 0.9553074836730957, 1616.9044189453125, 350.8072509765625, 0.9651710391044617, 1300.632568359375, 212.01150512695312, 0.9523681998252869, 1563.8797607421875, 286.2608947753906, 0.9404571056365967, 1267.6357421875, 186.93389892578125, 0.966621458530426, 1561.53759765625, 258.6225891113281, 0.9248313903808594, 1543.841552734375, 201.65829467773438, 0.9541129469871521, 1244.9246826171875, 157.1334228515625, 0.8685938119888306, 1567.8983154296875, 233.14749145507812, 0.9401958584785461, 1279.26611328125, 809.5257568359375, 0.7139496803283691, 1580.4921875, 849.0797119140625, 0.8993991017341614], "score": 3.1780595779418945, "box": [1232.2353515625, 187.9340362548828, 417.982666015625, 681.9949798583984], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0726490244269371, 0.08207373321056366, -0.024279991164803505], [0.05254201591014862, 0.09529861807823181, 0.0162571519613266], [0.021179024130105972, -0.10024203360080719, -0.023397628217935562], [-0.3121090233325958, 0.3860488533973694, -0.03228287398815155], [0.15063317120075226, 0.4639880061149597, 0.11190740764141083], [0.031356558203697205, -0.22516022622585297, 0.012479856610298157], [-0.5433520674705505, 0.7086343169212341, -0.12466037273406982], [0.1243203729391098, 0.870152473449707, 0.11514981091022491], [0.016539130359888077, -0.2708001732826233, 0.03987956419587135], [-0.6502468585968018, 0.7553430795669556, -0.060342732816934586], [0.16005939245224, 0.9503536224365234, 0.2151380032300949], [0.034007761627435684, -0.47886544466018677, 0.015070658177137375], [-0.03366127237677574, -0.3889195919036865, -0.020280111581087112], [0.0985715314745903, -0.38632500171661377, 0.04879879578948021], [-0.012907308526337147, -0.5380242466926575, 0.04995003715157509], [-0.10942349582910538, -0.4335651993751526, -0.04249536246061325], [0.17188997566699982, -0.41471147537231445, 0.10297301411628723], [-0.35514217615127563, -0.5063912272453308, -0.11253906786441803], [0.24232418835163116, -0.3541743755340576, 0.34408462047576904], [-0.569535493850708, -0.636345624923706, -0.11824622750282288], [0.09331594407558441, -0.5551376938819885, 0.4100154936313629], [-0.6365154981613159, -0.686346173286438, -0.12337510287761688], [0.0953662246465683, -0.6267536282539368, 0.45324987173080444]]}, {"image_id": "280.jpg", "category_id": 1, "keypoints": [1092.09912109375, 468.43304443359375, 0.9807805418968201, 1082.812255859375, 495.767822265625, 0.989147961139679, 1077.8060302734375, 502.47967529296875, 0.9889283776283264, 1096.311279296875, 427.6173095703125, 0.9916956424713135, 1112.5224609375, 630.9920654296875, 0.9721014499664307, 997.0582275390625, 620.5875244140625, 0.9781328439712524, 1122.1959228515625, 385.28912353515625, 0.9888198971748352, 1128.91357421875, 767.97119140625, 0.9299941062927246, 872.2198486328125, 729.628662109375, 0.8438535928726196, 1140.3406982421875, 375.21759033203125, 0.9928099513053894, 1158.272216796875, 788.4929809570312, 0.9225673675537109, 840.7476806640625, 767.9921875, 0.8625234365463257, 1173.1644287109375, 305.8247375488281, 0.9897686243057251, 1145.8853759765625, 319.3264465332031, 0.99135822057724, 1162.675048828125, 347.97772216796875, 0.990800678730011, 1197.5672607421875, 295.5718688964844, 0.9631927013397217, 1148.3638916015625, 289.31024169921875, 0.9791423678398132, 1188.1954345703125, 352.15509033203125, 0.981752336025238, 1174.763671875, 233.84091186523438, 0.8964575529098511, 1285.9703369140625, 397.5529479980469, 0.9593104720115662, 1249.571533203125, 194.06744384765625, 0.9682689905166626, 1386.119384765625, 414.0673828125, 0.971405565738678, 1268.643310546875, 174.39065551757812, 0.9635117650032043, 1416.20703125, 413.52520751953125, 0.9423125982284546, 1213.1900634765625, 239.56277465820312, 0.9483606219291687, 1292.13330078125, 155.19964599609375, 0.7927669286727905, 1469.58837890625, 408.9425048828125, 0.9133470058441162, 1169.7020263671875, 794.7158813476562, 0.9160466194152832, 833.3472900390625, 778.548095703125, 0.8391178846359253], "score": 3.186591148376465, "box": [829.8087768554688, 207.3694305419922, 628.3078002929688, 617.0827178955078], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022319631651043892, 0.07312868535518646, 0.08127177506685257], [-0.041033003479242325, 0.08972495049238205, -0.047067299485206604], [0.008227525278925896, -0.1033276915550232, -0.017594823613762856], [0.06125059351325035, 0.4384181499481201, 0.1579488068819046], [-0.2599700093269348, 0.40791675448417664, -0.09354893863201141], [0.07489366829395294, -0.2134804129600525, -0.049122340977191925], [0.1121671125292778, 0.8221437931060791, 0.266240656375885], [-0.5613487362861633, 0.6720404624938965, -0.06960102915763855], [0.12289785593748093, -0.23991751670837402, -0.05900721251964569], [0.2185112088918686, 0.8973259329795837, 0.2898861765861511], [-0.6308653354644775, 0.7547265291213989, -0.14581191539764404], [0.1971956193447113, -0.4152491092681885, -0.14804892241954803], [0.13601210713386536, -0.3805030584335327, -0.05298919975757599], [0.17062650620937347, -0.3037298321723938, -0.1759779155254364], [0.27361738681793213, -0.44664156436920166, -0.16324231028556824], [0.14489588141441345, -0.46142733097076416, -0.012699553743004799], [0.23969371616840363, -0.28771543502807617, -0.24012643098831177], [0.23169751465320587, -0.6354589462280273, 0.16388629376888275], [0.4702053964138031, -0.17927727103233337, -0.25483450293540955], [0.4475880265235901, -0.7524909973144531, 0.19981785118579865], [0.7224663496017456, -0.13800537586212158, -0.2497389316558838], [0.5054635405540466, -0.8122439384460449, 0.2024974822998047], [0.8045080304145813, -0.13899949193000793, -0.2622981667518616]]}, {"image_id": "280.jpg", "category_id": 1, "keypoints": [1546.5819091796875, 492.7586975097656, 0.9815751314163208, 1512.9788818359375, 526.735595703125, 0.9930993318557739, 1570.5269775390625, 533.0912475585938, 0.9896227121353149, 1556.7052001953125, 449.9931945800781, 0.9812991619110107, 1409.4375, 654.6234130859375, 0.9792304635047913, 1599.0611572265625, 678.9814453125, 0.9731939435005188, 1559.4539794921875, 397.9383544921875, 0.9878180027008057, 1317.7950439453125, 786.930908203125, 0.8699287176132202, 1585.470703125, 837.9447021484375, 0.9133294820785522, 1551.860107421875, 380.8518981933594, 0.9834389686584473, 1272.0233154296875, 805.5421752929688, 0.6805174350738525, 1592.50341796875, 877.2747802734375, 0.9132009744644165, 1557.94189453125, 292.14013671875, 0.9900273680686951, 1531.924560546875, 326.62945556640625, 0.9836899042129517, 1585.036865234375, 333.417724609375, 0.9903122186660767, 1538.0509033203125, 271.0215148925781, 0.973781406879425, 1501.4744873046875, 307.1012878417969, 0.9813295006752014, 1611.5255126953125, 323.22991943359375, 0.9858102798461914, 1396.5748291015625, 271.046142578125, 0.9501729607582092, 1621.063720703125, 353.3281555175781, 0.9497944712638855, 1304.208251953125, 214.8197021484375, 0.9616055488586426, 1555.8897705078125, 293.57861328125, 0.9536807537078857, 1272.3775634765625, 189.22409057617188, 0.973271369934082, 1552.9779052734375, 264.86077880859375, 0.9351660013198853, 1546.5966796875, 203.4765625, 0.9547059535980225, 1247.927001953125, 158.72030639648438, 0.8278495073318481, 1556.5870361328125, 237.96017456054688, 0.9548272490501404, 1277.797119140625, 813.939697265625, 0.6836180686950684, 1574.860107421875, 867.5860595703125, 0.9323887228965759], "score": 3.1755928993225098, "box": [1230.09765625, 195.88534545898438, 420.9630126953125, 670.4260559082031], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07313387840986252, 0.08132833242416382, -0.024917973205447197], [0.051928482949733734, 0.09572586417198181, 0.014864875003695488], [0.021556410938501358, -0.10000047087669373, -0.022060785442590714], [-0.3171359896659851, 0.38387632369995117, -0.01919015310704708], [0.14193619787693024, 0.46933653950691223, 0.10546495020389557], [0.0320502445101738, -0.22413766384124756, 0.014855174347758293], [-0.5533130168914795, 0.6992089748382568, -0.12914416193962097], [0.10234623402357101, 0.8751332759857178, 0.08084055781364441], [0.01781981810927391, -0.26906630396842957, 0.04320208728313446], [-0.6593057513237, 0.749873161315918, -0.06602353602647781], [0.13438202440738678, 0.9788650274276733, 0.15800164639949799], [0.03405652940273285, -0.47667405009269714, 0.018184812739491463], [-0.03310177102684975, -0.3865807354450226, -0.016423223540186882], [0.0990850105881691, -0.38462236523628235, 0.050976336002349854], [-0.010166936554014683, -0.5345062017440796, 0.058530017733573914], [-0.1146172359585762, -0.418990820646286, -0.03788872808218002], [0.17242516577243805, -0.4122738540172577, 0.1047964096069336], [-0.362766295671463, -0.49598875641822815, -0.09772759675979614], [0.24454191327095032, -0.352576345205307, 0.3465968668460846], [-0.5772339105606079, -0.627223014831543, -0.09355644881725311], [0.06419966369867325, -0.5311660766601562, 0.40134647488594055], [-0.6428532600402832, -0.6790124177932739, -0.09886369854211807], [0.06609632819890976, -0.6004273891448975, 0.44837531447410583]]}, {"image_id": "281.jpg", "category_id": 1, "keypoints": [1094.2193603515625, 467.73614501953125, 0.9803630709648132, 1085.034912109375, 494.55535888671875, 0.9905500411987305, 1079.19775390625, 501.1413269042969, 0.9891384840011597, 1099.107421875, 427.75213623046875, 0.9918002486228943, 1114.7730712890625, 629.8814697265625, 0.9739773869514465, 998.1876220703125, 619.4381713867188, 0.9768155217170715, 1125.0579833984375, 385.9866943359375, 0.9889154434204102, 1129.8114013671875, 767.633056640625, 0.9403395652770996, 876.1650390625, 725.9014892578125, 0.8631913065910339, 1143.096923828125, 375.71527099609375, 0.9925367832183838, 1158.6778564453125, 788.771484375, 0.9284636378288269, 845.5054931640625, 768.710205078125, 0.858641505241394, 1174.7591552734375, 306.7523193359375, 0.9894068241119385, 1148.459716796875, 320.5942077636719, 0.9913991689682007, 1164.40576171875, 348.2587890625, 0.9905133247375488, 1199.31640625, 296.10302734375, 0.9624485969543457, 1150.3375244140625, 291.49578857421875, 0.9790246486663818, 1189.020263671875, 351.65447998046875, 0.9812869429588318, 1174.3668212890625, 234.81890869140625, 0.9000164866447449, 1284.4398193359375, 397.3076171875, 0.9598842859268188, 1248.206298828125, 194.80401611328125, 0.9635428786277771, 1387.750732421875, 416.0491943359375, 0.9735360741615295, 1267.663818359375, 177.15838623046875, 0.9645273089408875, 1416.8720703125, 415.97857666015625, 0.9335949420928955, 1215.24951171875, 242.28271484375, 0.9499567151069641, 1292.9461669921875, 157.23382568359375, 0.7948037385940552, 1473.130859375, 409.0801696777344, 0.9089564085006714, 1168.799072265625, 795.63427734375, 0.9119874835014343, 838.381103515625, 781.3798217773438, 0.8217571377754211], "score": 3.1864013671875, "box": [829.1098022460938, 209.19224548339844, 632.1277465820312, 616.3402252197266], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022151079028844833, 0.07195790112018585, 0.08209685981273651], [-0.043516211211681366, 0.08911466598510742, -0.045509789139032364], [0.009898373857140541, -0.10269831120967865, -0.01851608231663704], [0.061486802995204926, 0.43795526027679443, 0.15546713769435883], [-0.26315903663635254, 0.4083960950374603, -0.07877849787473679], [0.07708032429218292, -0.2119893580675125, -0.05076341703534126], [0.108362577855587, 0.823969841003418, 0.2562851905822754], [-0.563228189945221, 0.6716632843017578, -0.038824617862701416], [0.12458363175392151, -0.238839253783226, -0.06098136305809021], [0.21255461871623993, 0.9011374115943909, 0.28227201104164124], [-0.626340389251709, 0.758058488368988, -0.11621443927288055], [0.19773901998996735, -0.4148176312446594, -0.14869317412376404], [0.1374729573726654, -0.3790513873100281, -0.05374472588300705], [0.17109914124011993, -0.30378812551498413, -0.1774231642484665], [0.2741036117076874, -0.4473588466644287, -0.16134677827358246], [0.14499248564243317, -0.45927107334136963, -0.0122614074498415], [0.2387734353542328, -0.2897661328315735, -0.243183895945549], [0.2248453050851822, -0.6361396312713623, 0.16450369358062744], [0.46624746918678284, -0.17817221581935883, -0.27176767587661743], [0.43783512711524963, -0.7543888092041016, 0.21065236628055573], [0.7175388336181641, -0.13226111233234406, -0.27673235535621643], [0.4987242519855499, -0.8099017143249512, 0.22146016359329224], [0.8000004291534424, -0.13212718069553375, -0.28511476516723633]]}, {"image_id": "281.jpg", "category_id": 1, "keypoints": [1547.8746337890625, 493.8014221191406, 0.9814552664756775, 1514.998779296875, 527.8380737304688, 0.9930840134620667, 1572.31787109375, 533.9142456054688, 0.989119291305542, 1557.1903076171875, 451.0248107910156, 0.9815523624420166, 1411.842529296875, 655.45068359375, 0.9790415167808533, 1599.4075927734375, 681.15966796875, 0.973267138004303, 1560.2008056640625, 399.14593505859375, 0.9875649213790894, 1320.84326171875, 786.3536376953125, 0.8656091094017029, 1584.9498291015625, 839.982666015625, 0.9081518054008484, 1552.8897705078125, 382.28125, 0.9832697510719299, 1273.97509765625, 803.1798095703125, 0.7149105072021484, 1592.7611083984375, 875.1669921875, 0.9111869931221008, 1558.1287841796875, 294.56976318359375, 0.9900709986686707, 1531.83935546875, 328.53662109375, 0.9857562184333801, 1585.703369140625, 335.50909423828125, 0.9903361797332764, 1538.6051025390625, 273.4818420410156, 0.9750531315803528, 1500.7655029296875, 308.6728515625, 0.9835987687110901, 1612.3946533203125, 325.5496826171875, 0.9858177304267883, 1396.544189453125, 271.46490478515625, 0.955756664276123, 1621.636474609375, 356.7236328125, 0.9519236087799072, 1304.5870361328125, 214.54489135742188, 0.9686092734336853, 1551.7957763671875, 300.19989013671875, 0.9558305144309998, 1271.595703125, 189.1529541015625, 0.9711697697639465, 1548.303466796875, 269.7374572753906, 0.9427660703659058, 1547.9383544921875, 204.4832763671875, 0.9572616219520569, 1248.5435791015625, 159.09542846679688, 0.8172720670700073, 1554.6746826171875, 241.31210327148438, 0.9564499258995056, 1280.356689453125, 811.0006103515625, 0.7128756046295166, 1575.6932373046875, 867.8790283203125, 0.9240029454231262], "score": 3.175095558166504, "box": [1232.0810546875, 197.97535705566406, 420.3643798828125, 671.9185638427734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07208365201950073, 0.081743985414505, -0.02490055188536644], [0.05307472124695778, 0.09487517923116684, 0.013345792889595032], [0.0199899822473526, -0.1000986397266388, -0.021142728626728058], [-0.315292090177536, 0.38356736302375793, -0.020252972841262817], [0.13727730512619019, 0.47098973393440247, 0.09360453486442566], [0.031265683472156525, -0.22381886839866638, 0.016505394130945206], [-0.5515260100364685, 0.699842095375061, -0.12119187414646149], [0.0943685993552208, 0.8743992447853088, 0.06248808652162552], [0.014219002798199654, -0.2653197944164276, 0.04800529032945633], [-0.6590684056282043, 0.7457051277160645, -0.05787836015224457], [0.13006553053855896, 0.9709077477455139, 0.1463438868522644], [0.03300901874899864, -0.4723469614982605, 0.025119692087173462], [-0.03555665537714958, -0.38374513387680054, -0.009592141956090927], [0.09687894582748413, -0.3792757987976074, 0.05609980970621109], [-0.010465150699019432, -0.5303823947906494, 0.0658886581659317], [-0.11590058356523514, -0.4196932911872864, -0.028821516782045364], [0.1708667278289795, -0.40641719102859497, 0.10884083807468414], [-0.3631081283092499, -0.5003634691238403, -0.08302184194326401], [0.24177286028862, -0.3442081809043884, 0.34925225377082825], [-0.574373185634613, -0.6339240670204163, -0.06602883338928223], [0.04671222344040871, -0.5100844502449036, 0.38580819964408875], [-0.6375062465667725, -0.6883866786956787, -0.0625612735748291], [0.0472271554172039, -0.5801277756690979, 0.43107929825782776]]}, {"image_id": "282.jpg", "category_id": 1, "keypoints": [1095.087646484375, 468.2145690917969, 0.9805335402488708, 1085.308837890625, 494.77777099609375, 0.9903976321220398, 1081.0662841796875, 501.9580078125, 0.9899808764457703, 1099.923828125, 427.9412841796875, 0.9918169379234314, 1114.7835693359375, 629.3011474609375, 0.9717523455619812, 998.796630859375, 620.158447265625, 0.9760984182357788, 1125.784423828125, 386.3027648925781, 0.9882742166519165, 1128.329345703125, 767.27978515625, 0.9198367595672607, 876.2769165039062, 725.54150390625, 0.8589159250259399, 1143.8189697265625, 376.2607421875, 0.9927963614463806, 1157.52001953125, 786.1722412109375, 0.919746994972229, 843.9879150390625, 767.27978515625, 0.869328498840332, 1176.5572509765625, 307.28070068359375, 0.9896174669265747, 1149.18896484375, 321.156982421875, 0.9911761283874512, 1166.19775390625, 349.17547607421875, 0.9907273650169373, 1201.3443603515625, 296.74658203125, 0.9646638631820679, 1151.100830078125, 292.0776062011719, 0.9780579209327698, 1191.42626953125, 352.688720703125, 0.9828138947486877, 1174.102294921875, 238.18270874023438, 0.9057027101516724, 1287.7313232421875, 397.1667175292969, 0.9594814777374268, 1245.881103515625, 196.2464599609375, 0.9563010931015015, 1388.6591796875, 414.6396789550781, 0.9737632274627686, 1264.7191162109375, 175.8017578125, 0.9616096019744873, 1419.2095947265625, 414.2408752441406, 0.9391540884971619, 1216.6822509765625, 238.323486328125, 0.9455140829086304, 1289.687255859375, 156.69580078125, 0.8072119355201721, 1473.5758056640625, 409.2543640136719, 0.8935773968696594, 1169.5751953125, 789.1944580078125, 0.8986397981643677, 839.0891723632812, 779.9979858398438, 0.8270323276519775], "score": 3.1855568885803223, "box": [832.9094848632812, 209.67251586914062, 627.5390014648438, 615.2541809082031], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.02433539554476738, 0.07170484960079193, 0.08253749459981918], [-0.04120296239852905, 0.0904942974448204, -0.04649147391319275], [0.009381895884871483, -0.10350541770458221, -0.01929694600403309], [0.059151116758584976, 0.4364875555038452, 0.16323068737983704], [-0.2636834979057312, 0.40888845920562744, -0.07474719732999802], [0.07689936459064484, -0.21335889399051666, -0.05022086203098297], [0.10190483182668686, 0.8253953456878662, 0.25920191407203674], [-0.5669850707054138, 0.6710591316223145, -0.03989206627011299], [0.1251465082168579, -0.24003683030605316, -0.05957207828760147], [0.20841145515441895, 0.8957271575927734, 0.2954532504081726], [-0.6329672932624817, 0.7543504238128662, -0.11917271465063095], [0.2014516144990921, -0.4165571928024292, -0.1464056670665741], [0.13861225545406342, -0.3812444806098938, -0.05210702866315842], [0.1751631796360016, -0.3048798441886902, -0.17589139938354492], [0.27828148007392883, -0.4487554430961609, -0.1562786102294922], [0.1463003158569336, -0.46204209327697754, -0.010454341769218445], [0.24495559930801392, -0.29054582118988037, -0.24029889702796936], [0.2246243953704834, -0.6335886716842651, 0.1731729805469513], [0.4751126170158386, -0.1818275898694992, -0.26551172137260437], [0.4358518123626709, -0.7592211961746216, 0.21174201369285583], [0.7275944352149963, -0.13825775682926178, -0.26334571838378906], [0.49204808473587036, -0.8203119039535522, 0.22099760174751282], [0.8106314539909363, -0.13907687366008759, -0.27011677622795105]]}, {"image_id": "282.jpg", "category_id": 1, "keypoints": [1549.2452392578125, 496.12841796875, 0.9809136986732483, 1515.927001953125, 529.52734375, 0.9927201867103577, 1574.637451171875, 536.518798828125, 0.9881781935691833, 1558.0948486328125, 453.291015625, 0.9835551381111145, 1413.4835205078125, 654.879638671875, 0.9787667989730835, 1600.5355224609375, 682.670166015625, 0.9755350351333618, 1561.3487548828125, 401.3927001953125, 0.9878454804420471, 1322.572265625, 785.232177734375, 0.8521944284439087, 1586.55615234375, 841.5689697265625, 0.9052968621253967, 1554.7669677734375, 384.88824462890625, 0.9845486879348755, 1278.3125, 799.3116455078125, 0.7435542345046997, 1597.1094970703125, 877.94775390625, 0.9002249836921692, 1559.696044921875, 297.02044677734375, 0.9906880855560303, 1532.2911376953125, 330.41351318359375, 0.9873260855674744, 1587.7470703125, 338.085693359375, 0.9896930456161499, 1540.8009033203125, 276.3389587402344, 0.976450502872467, 1500.9000244140625, 310.38958740234375, 0.984215497970581, 1614.2464599609375, 328.289794921875, 0.9846713542938232, 1396.6895751953125, 268.8251647949219, 0.960521399974823, 1623.4766845703125, 352.59332275390625, 0.9514871835708618, 1304.2327880859375, 213.39920043945312, 0.976341724395752, 1554.6622314453125, 300.31256103515625, 0.9525789618492126, 1273.5362548828125, 191.19015502929688, 0.9584650993347168, 1548.264404296875, 273.25689697265625, 0.9408345222473145, 1552.623046875, 207.03961181640625, 0.9566131234169006, 1253.6220703125, 161.49465942382812, 0.8100200295448303, 1545.0482177734375, 254.83251953125, 0.962680995464325, 1284.1546630859375, 807.34619140625, 0.7299633622169495, 1579.750732421875, 870.0352783203125, 0.9241084456443787], "score": 3.1731796264648438, "box": [1238.9796142578125, 200.74925231933594, 415.4383544921875, 667.8781280517578], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07267523556947708, 0.080905981361866, -0.023352157324552536], [0.053240012377500534, 0.09464936703443527, 0.008847028017044067], [0.018963269889354706, -0.10004600882530212, -0.019636543467640877], [-0.3155677318572998, 0.38062742352485657, -0.01112024299800396], [0.135090634226799, 0.4690282642841339, 0.09106098115444183], [0.03170674294233322, -0.22230088710784912, 0.022253334522247314], [-0.5508403182029724, 0.6938209533691406, -0.11405888199806213], [0.09505200386047363, 0.8707512617111206, 0.06760990619659424], [0.01800544187426567, -0.2625577747821808, 0.05652721971273422], [-0.6573197245597839, 0.7350925207138062, -0.04713602364063263], [0.13634969294071198, 0.967799186706543, 0.1471276730298996], [0.035242509096860886, -0.4695850908756256, 0.04221963882446289], [-0.03450213745236397, -0.382628470659256, 0.007153503596782684], [0.1003788560628891, -0.37575700879096985, 0.06557951122522354], [-0.005245734937489033, -0.5264015197753906, 0.08754530549049377], [-0.11490330100059509, -0.42086854577064514, -0.0042854174971580505], [0.1736537367105484, -0.40235087275505066, 0.11894333362579346], [-0.35906437039375305, -0.5118186473846436, -0.047465864568948746], [0.24485242366790771, -0.3588530123233795, 0.3616659343242645], [-0.5723775625228882, -0.6403636932373047, -0.04338046908378601], [0.04598976671695709, -0.5177133083343506, 0.3983413279056549], [-0.6394193172454834, -0.6892479658126831, -0.041231777518987656], [0.039280183613300323, -0.5857299566268921, 0.44527673721313477]]}, {"image_id": "283.jpg", "category_id": 1, "keypoints": [1096.1220703125, 468.8607482910156, 0.980638325214386, 1086.682373046875, 495.72857666015625, 0.990477442741394, 1081.699462890625, 502.74334716796875, 0.9902999401092529, 1100.8887939453125, 428.4313049316406, 0.9917390942573547, 1117.692626953125, 631.2684326171875, 0.9719648957252502, 1001.1124877929688, 620.719970703125, 0.9763714671134949, 1126.82275390625, 386.45697021484375, 0.9884751439094543, 1128.680419921875, 771.2021484375, 0.9184184670448303, 878.0643310546875, 727.8029174804688, 0.8499501943588257, 1144.836181640625, 376.0699768066406, 0.992598295211792, 1159.8214111328125, 789.9190673828125, 0.9162373542785645, 845.7841186523438, 770.6258544921875, 0.8576241731643677, 1176.837646484375, 306.22540283203125, 0.9896592497825623, 1150.2452392578125, 320.43389892578125, 0.9911640882492065, 1166.24267578125, 348.58953857421875, 0.9909395575523376, 1201.8338623046875, 295.50897216796875, 0.9629358053207397, 1152.357666015625, 291.1661376953125, 0.9786665439605713, 1191.029296875, 351.9686584472656, 0.9803360104560852, 1178.7095947265625, 236.08920288085938, 0.9028249979019165, 1287.3189697265625, 396.8778381347656, 0.9566283226013184, 1251.599853515625, 195.88925170898438, 0.962094783782959, 1392.044921875, 415.84234619140625, 0.9742334485054016, 1269.1273193359375, 176.27957153320312, 0.9651429057121277, 1421.7503662109375, 416.85321044921875, 0.9375444650650024, 1218.7877197265625, 236.79718017578125, 0.9444725513458252, 1293.02880859375, 156.68087768554688, 0.8107690811157227, 1477.432861328125, 410.3744201660156, 0.9054193496704102, 1171.5469970703125, 791.7584228515625, 0.8961161375045776, 839.9549560546875, 782.6361083984375, 0.8199416995048523], "score": 3.1844422817230225, "box": [832.9733276367188, 211.6630096435547, 630.9421997070312, 612.1168365478516], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022885680198669434, 0.071523517370224, 0.08292511105537415], [-0.042048096656799316, 0.0904032289981842, -0.04555356130003929], [0.00917460024356842, -0.10314363241195679, -0.01953626424074173], [0.06409905105829239, 0.4359380006790161, 0.16421817243099213], [-0.2618638575077057, 0.4106578826904297, -0.07940005511045456], [0.07607752829790115, -0.21264412999153137, -0.05173880234360695], [0.0996338427066803, 0.823983907699585, 0.26787734031677246], [-0.5638119578361511, 0.6747794151306152, -0.04368612915277481], [0.1236194297671318, -0.2398672103881836, -0.06199166178703308], [0.20916800200939178, 0.8912023901939392, 0.3007270097732544], [-0.6294201612472534, 0.7598227262496948, -0.12129528075456619], [0.19731417298316956, -0.41652846336364746, -0.14980629086494446], [0.13687936961650848, -0.38074547052383423, -0.05445963889360428], [0.1705169677734375, -0.3051736354827881, -0.17893050611019135], [0.2739032506942749, -0.4488545060157776, -0.1609511822462082], [0.14504790306091309, -0.4611177444458008, -0.012627029791474342], [0.23847410082817078, -0.29120391607284546, -0.2449575811624527], [0.2319527268409729, -0.6338587403297424, 0.1662515252828598], [0.4679684340953827, -0.18144333362579346, -0.27333638072013855], [0.4463396370410919, -0.7543609738349915, 0.20432408154010773], [0.7199921011924744, -0.13517865538597107, -0.2828638255596161], [0.5009944438934326, -0.8155960440635681, 0.2193506956100464], [0.8031712174415588, -0.13226065039634705, -0.2848008871078491]]}, {"image_id": "283.jpg", "category_id": 1, "keypoints": [1550.1661376953125, 497.2429504394531, 0.9812703728675842, 1517.1259765625, 531.0820922851562, 0.9930596947669983, 1574.9205322265625, 537.64013671875, 0.9890294671058655, 1558.931884765625, 454.75018310546875, 0.9830034971237183, 1414.521728515625, 655.4121704101562, 0.9789477586746216, 1599.9892578125, 685.4539794921875, 0.9721444249153137, 1562.1990966796875, 402.6317443847656, 0.9879420399665833, 1323.895263671875, 786.1778564453125, 0.867175817489624, 1584.821044921875, 845.6416625976562, 0.914175271987915, 1555.8172607421875, 385.7113952636719, 0.9844978451728821, 1278.7530517578125, 801.429443359375, 0.7329601049423218, 1593.61181640625, 882.3397216796875, 0.8884642124176025, 1561.337890625, 298.3521728515625, 0.9902485013008118, 1533.63623046875, 331.626708984375, 0.9868203401565552, 1589.2095947265625, 339.00347900390625, 0.990348756313324, 1542.58203125, 278.300048828125, 0.9769027829170227, 1502.6654052734375, 311.2247009277344, 0.9846475124359131, 1617.075439453125, 328.82305908203125, 0.9864559769630432, 1398.0703125, 270.4697265625, 0.9641678333282471, 1624.8004150390625, 350.42169189453125, 0.9575245976448059, 1305.0797119140625, 213.8702392578125, 0.9751039147377014, 1560.882568359375, 291.7222900390625, 0.9532362818717957, 1274.20361328125, 191.25131225585938, 0.9575138688087463, 1556.5081787109375, 264.1922912597656, 0.9481212496757507, 1553.1907958984375, 209.29788208007812, 0.9571506381034851, 1255.092041015625, 163.050048828125, 0.8228772878646851, 1559.0711669921875, 240.59310913085938, 0.9567650556564331, 1284.593505859375, 811.5074462890625, 0.7262382507324219, 1576.788330078125, 875.24853515625, 0.9043430685997009], "score": 3.173478841781616, "box": [1236.167236328125, 201.94039916992188, 421.6876220703125, 664.3531188964844], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07283036410808563, 0.08168874680995941, -0.02220134064555168], [0.05356213077902794, 0.09478785842657089, 0.010723311454057693], [0.01905275695025921, -0.10030882060527802, -0.021646136417984962], [-0.31743791699409485, 0.38052523136138916, -0.010344544425606728], [0.13178712129592896, 0.47194087505340576, 0.08590693771839142], [0.030946414917707443, -0.22394894063472748, 0.01786494255065918], [-0.552424430847168, 0.6952180862426758, -0.11285235732793808], [0.09117064625024796, 0.875051736831665, 0.07377251982688904], [0.017339888960123062, -0.2655140161514282, 0.051155053079128265], [-0.6595366597175598, 0.7388256788253784, -0.04765002429485321], [0.12852221727371216, 0.9768855571746826, 0.1499764770269394], [0.03570368513464928, -0.4729654788970947, 0.03179797902703285], [-0.03547113016247749, -0.3853771686553955, -0.00044606253504753113], [0.10100951790809631, -0.37889498472213745, 0.05657738447189331], [-0.0036640011239796877, -0.5282426476478577, 0.08016445487737656], [-0.11588329821825027, -0.4244357943534851, -0.01238938607275486], [0.17735974490642548, -0.4063490033149719, 0.10594139993190765], [-0.36202681064605713, -0.5145746469497681, -0.04941929131746292], [0.24617214500904083, -0.3687319755554199, 0.3510664105415344], [-0.5745930671691895, -0.6454583406448364, -0.040322594344615936], [0.06554533541202545, -0.5464004874229431, 0.3988601565361023], [-0.6377748250961304, -0.6984825730323792, -0.028241649270057678], [0.06367824971675873, -0.6156296730041504, 0.4451291561126709]]}, {"image_id": "284.jpg", "category_id": 1, "keypoints": [1095.839111328125, 470.2540588378906, 0.9813991785049438, 1085.630615234375, 497.3046569824219, 0.9890791177749634, 1081.0562744140625, 505.9294738769531, 0.9879975914955139, 1100.853515625, 428.5738830566406, 0.9918206334114075, 1117.44677734375, 631.7215576171875, 0.9715118408203125, 998.38720703125, 624.4970703125, 0.9762594103813171, 1127.8997802734375, 386.47161865234375, 0.9904661774635315, 1128.00439453125, 771.5960693359375, 0.9020590782165527, 874.0992431640625, 730.7228393554688, 0.8298628330230713, 1146.3873291015625, 376.17376708984375, 0.99359130859375, 1155.8135986328125, 791.2825927734375, 0.9234182834625244, 839.4365234375, 770.185302734375, 0.8823629021644592, 1180.4708251953125, 305.67401123046875, 0.9895899891853333, 1152.268310546875, 319.7157897949219, 0.9912553429603577, 1169.9215087890625, 348.7731628417969, 0.9903386831283569, 1205.6370849609375, 294.2452392578125, 0.9634764194488525, 1154.2091064453125, 289.38818359375, 0.9776070713996887, 1196.1943359375, 352.57000732421875, 0.9807166457176208, 1179.3236083984375, 234.72653198242188, 0.902482271194458, 1295.048828125, 398.9998779296875, 0.9632658958435059, 1254.09228515625, 195.50579833984375, 0.9597430229187012, 1395.375244140625, 414.17919921875, 0.9723300933837891, 1272.8189697265625, 177.86660766601562, 0.9696663618087769, 1426.162109375, 412.9985656738281, 0.9477123618125916, 1225.4334716796875, 235.37423706054688, 0.9465555548667908, 1295.047607421875, 158.42086791992188, 0.8403262495994568, 1478.916015625, 407.7061767578125, 0.9031335115432739, 1168.91796875, 791.306884765625, 0.8915686011314392, 834.223876953125, 781.3291015625, 0.8357565402984619], "score": 3.187283515930176, "box": [837.539794921875, 213.46755981445312, 630.39208984375, 605.5789489746094], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.024254057556390762, 0.06986016035079956, 0.08413318544626236], [-0.04123489558696747, 0.09156214445829391, -0.04428844526410103], [0.009396206587553024, -0.10283717513084412, -0.02163531817495823], [0.06542112678289413, 0.43177330493927, 0.17509782314300537], [-0.2645673453807831, 0.410702645778656, -0.07016163319349289], [0.08117672801017761, -0.20917639136314392, -0.05461243540048599], [0.09960279613733292, 0.8226026296615601, 0.2708466053009033], [-0.5709595680236816, 0.6729005575180054, -0.061439745128154755], [0.12935452163219452, -0.23583316802978516, -0.06378880143165588], [0.2026861608028412, 0.896981954574585, 0.30924302339553833], [-0.6451518535614014, 0.7551625967025757, -0.13444629311561584], [0.20152585208415985, -0.41295358538627625, -0.15240517258644104], [0.1398731768131256, -0.37714073061943054, -0.05775180086493492], [0.1772993952035904, -0.30070731043815613, -0.1806749701499939], [0.27764222025871277, -0.4471173584461212, -0.16165003180503845], [0.1473969966173172, -0.45851853489875793, -0.01773213967680931], [0.24831295013427734, -0.2859397828578949, -0.24325421452522278], [0.2300746589899063, -0.6281577348709106, 0.16669398546218872], [0.4803878366947174, -0.17693963646888733, -0.24323880672454834], [0.4460470974445343, -0.7442183494567871, 0.21151721477508545], [0.7339901328086853, -0.13953840732574463, -0.22767341136932373], [0.5061942338943481, -0.8011175394058228, 0.22267159819602966], [0.8165573477745056, -0.14230936765670776, -0.23881781101226807]]}, {"image_id": "284.jpg", "category_id": 1, "keypoints": [1551.3209228515625, 498.2536315917969, 0.9821501970291138, 1517.629150390625, 531.8388671875, 0.9933458566665649, 1575.9730224609375, 539.276123046875, 0.9894787073135376, 1560.8072509765625, 455.949462890625, 0.982667863368988, 1414.8883056640625, 658.1385498046875, 0.9795855283737183, 1600.881591796875, 687.307373046875, 0.973665714263916, 1564.4520263671875, 403.5399169921875, 0.9878692626953125, 1323.2188720703125, 785.967529296875, 0.8524320125579834, 1582.8397216796875, 845.1972045898438, 0.8957535028457642, 1558.067138671875, 386.43023681640625, 0.9843788743019104, 1278.25830078125, 799.8169555664062, 0.7308239340782166, 1595.3330078125, 881.800537109375, 0.8924274444580078, 1563.2603759765625, 298.54754638671875, 0.9901794195175171, 1535.806640625, 332.12335205078125, 0.9855003952980042, 1591.4371337890625, 339.1492919921875, 0.9909114241600037, 1544.4906005859375, 278.6064147949219, 0.9760157465934753, 1504.6649169921875, 312.3019714355469, 0.9840533137321472, 1619.4857177734375, 329.3404541015625, 0.9861582517623901, 1399.8028564453125, 273.40777587890625, 0.9625052213668823, 1629.9100341796875, 350.90374755859375, 0.9509594440460205, 1308.743408203125, 216.86831665039062, 0.97383713722229, 1572.5684814453125, 289.1291809082031, 0.9574018716812134, 1277.9227294921875, 192.52218627929688, 0.9621707201004028, 1570.6107177734375, 259.4768981933594, 0.9385455250740051, 1554.4132080078125, 209.52496337890625, 0.9583565592765808, 1256.1119384765625, 162.747314453125, 0.8195388317108154, 1573.5390625, 235.26419067382812, 0.9440149664878845, 1282.503173828125, 808.84912109375, 0.7003087997436523, 1575.1612548828125, 871.0576782226562, 0.9136202931404114], "score": 3.1682217121124268, "box": [1238.4757080078125, 201.97042846679688, 419.5325927734375, 666.8651428222656], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07380858808755875, 0.08080079406499863, -0.021060802042484283], [0.052335236221551895, 0.0951547622680664, 0.011222518980503082], [0.020096365362405777, -0.09957754611968994, -0.02246355451643467], [-0.31595394015312195, 0.38125064969062805, -0.007697374559938908], [0.1293412148952484, 0.4730595052242279, 0.08213595300912857], [0.032933685928583145, -0.22342607378959656, 0.015099361538887024], [-0.555616021156311, 0.6917961239814758, -0.11005007475614548], [0.07574396580457687, 0.8723628520965576, 0.042681872844696045], [0.019236210733652115, -0.2652549743652344, 0.04771062731742859], [-0.6643905639648438, 0.7323330640792847, -0.04607584327459335], [0.1209658607840538, 0.9674959182739258, 0.12273535132408142], [0.03620658442378044, -0.47194990515708923, 0.024591714143753052], [-0.034379009157419205, -0.38354161381721497, -0.0056702569127082825], [0.10199330002069473, -0.37895241379737854, 0.05068535357713699], [-0.003014008514583111, -0.5268280506134033, 0.07334001362323761], [-0.11445009708404541, -0.4227698743343353, -0.0177758801728487], [0.17906150221824646, -0.4056081473827362, 0.09887714684009552], [-0.3620772659778595, -0.5094823837280273, -0.05003317445516586], [0.25380396842956543, -0.3685345947742462, 0.3418996334075928], [-0.5722434520721436, -0.6427124738693237, -0.03352142870426178], [0.09483890980482101, -0.559005856513977, 0.4106002748012543], [-0.636856734752655, -0.6947770118713379, -0.027948547154664993], [0.09874430298805237, -0.6292390823364258, 0.4548138380050659]]}, {"image_id": "285.jpg", "category_id": 1, "keypoints": [1096.7044677734375, 469.21697998046875, 0.9811875820159912, 1086.203369140625, 496.31292724609375, 0.9883303642272949, 1082.7672119140625, 504.298828125, 0.9878810048103333, 1101.503173828125, 427.8477783203125, 0.9912219643592834, 1118.298828125, 630.6480712890625, 0.9711000323295593, 1001.157470703125, 623.62646484375, 0.9766300320625305, 1128.638916015625, 385.80511474609375, 0.9900749325752258, 1130.013427734375, 772.7451782226562, 0.8965135216712952, 876.9686279296875, 730.559326171875, 0.8276010155677795, 1146.9228515625, 375.83526611328125, 0.9933869242668152, 1157.702392578125, 793.5596923828125, 0.9274964928627014, 844.267822265625, 768.6055908203125, 0.8729296922683716, 1182.7352294921875, 306.6582946777344, 0.9898951053619385, 1153.06103515625, 320.0413513183594, 0.9917294383049011, 1172.619873046875, 349.02490234375, 0.9899470806121826, 1207.3677978515625, 296.14752197265625, 0.9664241671562195, 1155.130126953125, 290.2890625, 0.9786078333854675, 1199.233154296875, 353.5182800292969, 0.9836399555206299, 1182.7332763671875, 235.03683471679688, 0.8969155550003052, 1298.395263671875, 398.9543762207031, 0.9585824012756348, 1257.6561279296875, 195.606201171875, 0.9650547504425049, 1398.0794677734375, 415.3312683105469, 0.967092752456665, 1277.1268310546875, 177.93582153320312, 0.9698799252510071, 1431.44677734375, 415.02685546875, 0.9625508189201355, 1227.5125732421875, 237.7869873046875, 0.949748694896698, 1299.741943359375, 158.85409545898438, 0.8022521138191223, 1485.962158203125, 410.28387451171875, 0.863767147064209, 1169.098876953125, 795.0089721679688, 0.9105830192565918, 838.5403442382812, 780.2857666015625, 0.8491137027740479], "score": 3.185208797454834, "box": [841.2611694335938, 211.5548858642578, 624.3383178710938, 605.7396087646484], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.025802813470363617, 0.0712643712759018, 0.08285079151391983], [-0.03952785208821297, 0.09150346368551254, -0.04661751165986061], [0.009109588339924812, -0.10348458588123322, -0.02011852152645588], [0.06478553265333176, 0.43363797664642334, 0.17231154441833496], [-0.26024967432022095, 0.41314995288848877, -0.06967392563819885], [0.08195912092924118, -0.21010781824588776, -0.04984790086746216], [0.10155043751001358, 0.8268167972564697, 0.2602594196796417], [-0.566481351852417, 0.676848828792572, -0.06921648979187012], [0.13070447742938995, -0.23653389513492584, -0.05738915130496025], [0.20254503190517426, 0.9040767550468445, 0.2991810142993927], [-0.6391221284866333, 0.7590525150299072, -0.14422087371349335], [0.20830856263637543, -0.41346174478530884, -0.14286097884178162], [0.14197757840156555, -0.3781721591949463, -0.05090320110321045], [0.18470661342144012, -0.3011174201965332, -0.1722577065229416], [0.285326212644577, -0.4460299015045166, -0.14937256276607513], [0.15001098811626434, -0.45912307500839233, -0.00967443361878395], [0.2579260766506195, -0.2843080759048462, -0.23200839757919312], [0.23936410248279572, -0.6296058297157288, 0.17153231799602509], [0.4912528395652771, -0.17691819369792938, -0.23693524301052094], [0.4561971426010132, -0.7462811470031738, 0.2130993902683258], [0.7450264096260071, -0.13584460318088531, -0.2273404598236084], [0.5175061225891113, -0.8021917939186096, 0.2241871953010559], [0.8282402753829956, -0.13631348311901093, -0.2346663773059845]]}, {"image_id": "285.jpg", "category_id": 1, "keypoints": [1553.417724609375, 497.64825439453125, 0.9818323254585266, 1519.60400390625, 531.036865234375, 0.9930283427238464, 1577.69189453125, 538.76123046875, 0.9885008931159973, 1562.99072265625, 455.39410400390625, 0.9824461936950684, 1415.9517822265625, 657.502197265625, 0.9783212542533875, 1601.0450439453125, 687.6586303710938, 0.975060224533081, 1567.0570068359375, 403.72283935546875, 0.9882261753082275, 1322.656494140625, 789.54345703125, 0.8552544713020325, 1582.6190185546875, 840.15966796875, 0.8940690159797668, 1560.36669921875, 387.1583251953125, 0.984673261642456, 1280.0341796875, 801.891845703125, 0.7509288787841797, 1586.69287109375, 865.2318725585938, 0.9221334457397461, 1565.228271484375, 299.401123046875, 0.9905871152877808, 1538.272216796875, 333.10443115234375, 0.9853504300117493, 1593.343017578125, 339.99517822265625, 0.9904776811599731, 1545.7938232421875, 279.88037109375, 0.9756920337677002, 1506.8629150390625, 314.31573486328125, 0.9844081997871399, 1620.885498046875, 329.98187255859375, 0.9859937429428101, 1403.1585693359375, 275.6915588378906, 0.951451301574707, 1630.1728515625, 352.877685546875, 0.9499467015266418, 1312.798095703125, 220.49679565429688, 0.9689786434173584, 1573.2564697265625, 290.05511474609375, 0.9588219523429871, 1280.7265625, 193.12765502929688, 0.973315417766571, 1571.9541015625, 259.59954833984375, 0.930629312992096, 1554.3350830078125, 211.0260009765625, 0.9569442272186279, 1255.513916015625, 160.38824462890625, 0.8227376937866211, 1573.0867919921875, 234.73831176757812, 0.9445549845695496, 1286.4903564453125, 810.4261474609375, 0.7268946170806885, 1569.65966796875, 858.0103759765625, 0.9196282625198364], "score": 3.168454647064209, "box": [1240.90087890625, 199.7869873046875, 415.484130859375, 673.8980102539062], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0743650421500206, 0.0801306962966919, -0.024147192016243935], [0.05189182609319687, 0.0961359366774559, 0.009952561929821968], [0.02115141972899437, -0.10042306780815125, -0.020071841776371002], [-0.3172127604484558, 0.38107138872146606, -0.0014671720564365387], [0.12549355626106262, 0.4752792418003082, 0.08523713052272797], [0.03557213395833969, -0.22238361835479736, 0.022798825055360794], [-0.556158721446991, 0.6979471445083618, -0.0933719351887703], [0.0691613107919693, 0.876254677772522, 0.045862697064876556], [0.024108849465847015, -0.2662622928619385, 0.05390553921461105], [-0.6604088544845581, 0.7360551357269287, -0.02001839131116867], [0.09955058991909027, 0.9472451210021973, 0.15397706627845764], [0.03721841797232628, -0.4745630919933319, 0.035358816385269165], [-0.030489906668663025, -0.3849892318248749, 0.0006233900785446167], [0.10445323586463928, -0.38226011395454407, 0.062265150249004364], [-0.005113102961331606, -0.5290687084197998, 0.08184162527322769], [-0.11357827484607697, -0.41646137833595276, -0.015576757490634918], [0.17980441451072693, -0.40918269753456116, 0.11362334340810776], [-0.360370010137558, -0.50189208984375, -0.06381665915250778], [0.2519293427467346, -0.3680555522441864, 0.35815104842185974], [-0.5729945302009583, -0.6338362693786621, -0.051101960241794586], [0.09331443905830383, -0.5615679025650024, 0.4236110746860504], [-0.6320579051971436, -0.6925252676010132, -0.05810528248548508], [0.0992823913693428, -0.6303428411483765, 0.4705963730812073]]}, {"image_id": "286.jpg", "category_id": 1, "keypoints": [1099.2802734375, 469.3928527832031, 0.9817748665809631, 1089.8201904296875, 496.7765197753906, 0.9893493056297302, 1084.814697265625, 504.1548156738281, 0.9890932440757751, 1103.97021484375, 428.8480529785156, 0.9921226501464844, 1120.5780029296875, 633.052001953125, 0.9728002548217773, 1003.118896484375, 622.1776123046875, 0.9784300327301025, 1130.4583740234375, 386.7784729003906, 0.9895021915435791, 1130.1373291015625, 770.8817138671875, 0.9155215620994568, 878.6307983398438, 729.4266357421875, 0.8415816426277161, 1148.6495361328125, 376.530029296875, 0.9926194548606873, 1160.2720947265625, 792.5581665039062, 0.9311248064041138, 844.2860107421875, 769.4794921875, 0.8826793432235718, 1181.373291015625, 305.9161376953125, 0.9897646903991699, 1154.3677978515625, 320.0543212890625, 0.9913433194160461, 1170.62841796875, 348.9664306640625, 0.9901953935623169, 1206.4219970703125, 295.3701171875, 0.9631726145744324, 1156.299560546875, 289.753662109375, 0.978838324546814, 1195.8951416015625, 352.8040466308594, 0.9800845384597778, 1183.90185546875, 234.89337158203125, 0.8997507095336914, 1294.45458984375, 398.9073791503906, 0.9628114104270935, 1258.261962890625, 196.18252563476562, 0.9614894390106201, 1396.3876953125, 414.9556884765625, 0.972741425037384, 1275.829833984375, 178.04000854492188, 0.9679250121116638, 1428.56103515625, 414.8292541503906, 0.941064715385437, 1223.4014892578125, 235.30703735351562, 0.9444898366928101, 1297.6817626953125, 158.62722778320312, 0.8305615782737732, 1487.04345703125, 406.78472900390625, 0.8853728175163269, 1172.539306640625, 795.894775390625, 0.8915252685546875, 839.2138671875, 781.94140625, 0.8542852401733398], "score": 3.186558246612549, "box": [838.7496948242188, 213.8785858154297, 630.5006713867188, 606.6797637939453], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022510912269353867, 0.07137961685657501, 0.08326978981494904], [-0.041568540036678314, 0.09085215628147125, -0.04534990340471268], [0.008607497438788414, -0.10325302183628082, -0.019898124039173126], [0.06344269216060638, 0.437541663646698, 0.15626376867294312], [-0.2632083594799042, 0.4093475341796875, -0.08155317604541779], [0.08050169795751572, -0.20953641831874847, -0.05172700434923172], [0.09519187361001968, 0.8286995887756348, 0.24854594469070435], [-0.5669825077056885, 0.6721640825271606, -0.05293212831020355], [0.12839455902576447, -0.2363334447145462, -0.06166738271713257], [0.20116128027439117, 0.9056639075279236, 0.26951223611831665], [-0.6385645270347595, 0.7532939314842224, -0.12943971157073975], [0.19728626310825348, -0.4152234196662903, -0.14919336140155792], [0.13810506463050842, -0.3776533007621765, -0.05365262180566788], [0.17338043451309204, -0.303231418132782, -0.17867881059646606], [0.274112731218338, -0.4471355676651001, -0.15866516530513763], [0.14566530287265778, -0.4586852788925171, -0.012775547802448273], [0.2432764619588852, -0.28799188137054443, -0.24249370396137238], [0.23512326180934906, -0.6282839775085449, 0.16771891713142395], [0.4738522469997406, -0.17841579020023346, -0.26027271151542664], [0.45198163390159607, -0.7436096668243408, 0.2074367105960846], [0.7269364595413208, -0.13820822536945343, -0.26601356267929077], [0.5095964074134827, -0.8032203316688538, 0.2170332819223404], [0.8099352717399597, -0.13826562464237213, -0.27271386981010437]]}, {"image_id": "286.jpg", "category_id": 1, "keypoints": [1555.1705322265625, 499.7325134277344, 0.9823511242866516, 1522.072265625, 533.3448486328125, 0.9924365878105164, 1579.61279296875, 540.1085205078125, 0.9892973899841309, 1564.90087890625, 457.0852966308594, 0.9830679893493652, 1416.4002685546875, 658.25537109375, 0.9789990782737732, 1601.58203125, 688.5821533203125, 0.9726312160491943, 1568.605712890625, 404.78521728515625, 0.987898051738739, 1323.9376220703125, 786.410400390625, 0.8495025038719177, 1583.828125, 838.7633056640625, 0.9018176794052124, 1561.946533203125, 388.15093994140625, 0.9834297895431519, 1279.99609375, 799.774658203125, 0.7436864376068115, 1589.5107421875, 865.27294921875, 0.9280553460121155, 1567.9136962890625, 300.44451904296875, 0.989824652671814, 1540.7955322265625, 334.13214111328125, 0.9840596318244934, 1595.189208984375, 341.25750732421875, 0.9902105331420898, 1548.71875, 280.70013427734375, 0.9775753021240234, 1509.4088134765625, 315.30645751953125, 0.9828959703445435, 1622.806396484375, 332.0243835449219, 0.9855619668960571, 1406.3328857421875, 277.0654602050781, 0.9496109485626221, 1633.0885009765625, 352.21002197265625, 0.9396640062332153, 1315.2730712890625, 219.23583984375, 0.9691060185432434, 1575.3387451171875, 290.46270751953125, 0.9544016718864441, 1283.1796875, 192.324462890625, 0.9722017645835876, 1576.7203369140625, 260.631103515625, 0.9236325621604919, 1557.23291015625, 212.31277465820312, 0.9572586417198181, 1256.544677734375, 162.03839111328125, 0.821387529373169, 1579.8858642578125, 237.71102905273438, 0.9366852641105652, 1285.0126953125, 807.425048828125, 0.718687891960144, 1572.0426025390625, 856.431396484375, 0.9101718664169312], "score": 3.167889356613159, "box": [1239.3177490234375, 201.1038055419922, 418.9329833984375, 670.0681915283203], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07276325672864914, 0.08073538541793823, -0.024475939571857452], [0.05220743268728256, 0.09510877728462219, 0.011749841272830963], [0.02045341581106186, -0.09976759552955627, -0.020467069000005722], [-0.31950363516807556, 0.3773803114891052, 0.00031461939215660095], [0.1234048455953598, 0.47265323996543884, 0.09271713346242905], [0.03455616906285286, -0.22222495079040527, 0.02058553323149681], [-0.5608720779418945, 0.6920762658119202, -0.08616228401660919], [0.07209493219852448, 0.8742424249649048, 0.07367867231369019], [0.02054840512573719, -0.26377156376838684, 0.05327366292476654], [-0.6691434979438782, 0.7321211099624634, -0.020966961979866028], [0.10590553283691406, 0.949270486831665, 0.17729364335536957], [0.039221134036779404, -0.47062942385673523, 0.03491433709859848], [-0.029387956485152245, -0.3829977810382843, -0.0011420771479606628], [0.10302065312862396, -0.37706711888313293, 0.06321679055690765], [-0.002570230048149824, -0.5258324146270752, 0.0811251550912857], [-0.11055596172809601, -0.4173344075679779, -0.01864289864897728], [0.17790456116199493, -0.4018857181072235, 0.11536429822444916], [-0.3560097813606262, -0.5011569261550903, -0.07126455008983612], [0.2526789903640747, -0.36749914288520813, 0.35906338691711426], [-0.5662416219711304, -0.6356034278869629, -0.06567185372114182], [0.08922696113586426, -0.558229923248291, 0.4166204035282135], [-0.6270300149917603, -0.6919000148773193, -0.07271553575992584], [0.10069778561592102, -0.6272069215774536, 0.46146875619888306]]}, {"image_id": "287.jpg", "category_id": 1, "keypoints": [1099.9427490234375, 469.44879150390625, 0.9817465543746948, 1089.8553466796875, 496.3089294433594, 0.9891130328178406, 1086.5224609375, 503.5211181640625, 0.9904013276100159, 1104.5054931640625, 428.5645751953125, 0.9919871091842651, 1122.3570556640625, 632.4838256835938, 0.9714531898498535, 1006.2273559570312, 621.3136596679688, 0.9780144691467285, 1131.2933349609375, 386.37908935546875, 0.9890060424804688, 1131.1922607421875, 773.3915405273438, 0.9166791439056396, 881.484375, 727.1781005859375, 0.8336366415023804, 1149.7120361328125, 376.3934326171875, 0.9928528666496277, 1160.9652099609375, 791.8653564453125, 0.928736686706543, 847.28515625, 770.1139526367188, 0.8770403861999512, 1184.4583740234375, 306.8326416015625, 0.9892289638519287, 1155.0699462890625, 320.9056396484375, 0.9916979074478149, 1174.1363525390625, 348.31707763671875, 0.9899414777755737, 1209.19384765625, 296.17742919921875, 0.9643755555152893, 1156.0848388671875, 292.3770751953125, 0.9790098071098328, 1199.8775634765625, 352.41717529296875, 0.9823449850082397, 1179.304443359375, 238.73538208007812, 0.8994942903518677, 1298.103271484375, 400.08319091796875, 0.9634418487548828, 1255.7205810546875, 196.20468139648438, 0.9560168385505676, 1399.2215576171875, 413.88323974609375, 0.9736407399177551, 1276.30224609375, 180.065185546875, 0.9692547917366028, 1430.7138671875, 412.83642578125, 0.9483912587165833, 1229.5831298828125, 239.11785888671875, 0.9504827260971069, 1300.3690185546875, 161.23922729492188, 0.8398547768592834, 1484.973388671875, 406.57940673828125, 0.892867922782898, 1173.6439208984375, 791.6317749023438, 0.8920686841011047, 841.0567016601562, 782.493408203125, 0.8470575213432312], "score": 3.1872639656066895, "box": [838.056396484375, 215.54725646972656, 634.2052001953125, 602.2481536865234], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.025371547788381577, 0.07269419729709625, 0.08148558437824249], [-0.03918861597776413, 0.0906369611620903, -0.04815838113427162], [0.008655672892928123, -0.10381783545017242, -0.01827077753841877], [0.0650961846113205, 0.43752777576446533, 0.15632452070713043], [-0.2583619952201843, 0.4100245237350464, -0.09256661683320999], [0.08134034276008606, -0.2113218754529953, -0.04517582058906555], [0.09335345029830933, 0.8343846797943115, 0.22305087745189667], [-0.5655935406684875, 0.6707969307899475, -0.0916067510843277], [0.1301579475402832, -0.23764772713184357, -0.05233357101678848], [0.19590064883232117, 0.9001824855804443, 0.2758539617061615], [-0.6373388171195984, 0.7589094638824463, -0.16014261543750763], [0.20571155846118927, -0.41718995571136475, -0.13345250487327576], [0.14051282405853271, -0.3789863586425781, -0.041953254491090775], [0.18268585205078125, -0.305594801902771, -0.16579388082027435], [0.28267577290534973, -0.45015662908554077, -0.13769443333148956], [0.14601129293441772, -0.4586961269378662, 0.0020843185484409332], [0.25459975004196167, -0.28964459896087646, -0.22744807600975037], [0.2241331934928894, -0.6267452239990234, 0.189489483833313], [0.4845533072948456, -0.17716707289218903, -0.23648551106452942], [0.43688809871673584, -0.7478268146514893, 0.23561231791973114], [0.7387927174568176, -0.14258746802806854, -0.23452167212963104], [0.5022222399711609, -0.799353837966919, 0.2437560111284256], [0.8216390609741211, -0.14500223100185394, -0.24393199384212494]]}, {"image_id": "287.jpg", "category_id": 1, "keypoints": [1555.587890625, 501.13079833984375, 0.9812316298484802, 1522.5311279296875, 535.4290771484375, 0.9922553896903992, 1578.9739990234375, 541.13134765625, 0.9904876351356506, 1565.739013671875, 459.07476806640625, 0.9849873185157776, 1417.288818359375, 659.8341674804688, 0.9801855683326721, 1599.9842529296875, 688.4182739257812, 0.9699752330780029, 1569.76806640625, 406.65179443359375, 0.9884396195411682, 1322.080322265625, 787.3917236328125, 0.8752442002296448, 1583.621826171875, 839.2964477539062, 0.9201685190200806, 1563.388916015625, 389.5131530761719, 0.9826008081436157, 1280.0299072265625, 799.3274536132812, 0.7449638843536377, 1585.88037109375, 867.0008544921875, 0.9249350428581238, 1570.6688232421875, 302.0903015136719, 0.9891678690910339, 1542.775390625, 335.2537841796875, 0.9849805235862732, 1597.8193359375, 342.8785400390625, 0.9897937178611755, 1552.2183837890625, 282.2293701171875, 0.9787609577178955, 1512.045166015625, 315.60931396484375, 0.9828331470489502, 1626.290283203125, 333.440673828125, 0.984603226184845, 1408.8995361328125, 277.6085205078125, 0.9492823481559753, 1629.76513671875, 356.8808898925781, 0.9523090720176697, 1316.352294921875, 219.91299438476562, 0.9687551259994507, 1566.7921142578125, 301.97479248046875, 0.9478291273117065, 1284.197998046875, 195.6024169921875, 0.9704726934432983, 1568.6243896484375, 274.3667297363281, 0.9253636598587036, 1559.057861328125, 214.81320190429688, 0.9596825838088989, 1258.3355712890625, 166.75811767578125, 0.8205775618553162, 1572.0775146484375, 253.86212158203125, 0.9397484064102173, 1286.108154296875, 808.6676025390625, 0.74013352394104, 1569.8956298828125, 859.2342529296875, 0.9287402629852295], "score": 3.1736724376678467, "box": [1239.406005859375, 203.74639892578125, 419.2518310546875, 663.2999267578125], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07318129390478134, 0.08105261623859406, -0.02352757193148136], [0.051866840571165085, 0.09538030624389648, 0.013762712478637695], [0.02112504467368126, -0.09972605109214783, -0.02231365256011486], [-0.3209441602230072, 0.3775262236595154, -0.005883596837520599], [0.1203409731388092, 0.47490039467811584, 0.08879592269659042], [0.0356721393764019, -0.22326523065567017, 0.016419872641563416], [-0.5676527619361877, 0.687710165977478, -0.0958595797419548], [0.08174915611743927, 0.8780977129936218, 0.1141401007771492], [0.025166165083646774, -0.26797547936439514, 0.0465548112988472], [-0.6760969758033752, 0.7256919145584106, -0.029259249567985535], [0.1070965826511383, 0.9606451392173767, 0.21477016806602478], [0.04398217797279358, -0.47556066513061523, 0.03072333335876465], [-0.025440488010644913, -0.3883734941482544, -0.005828700959682465], [0.10821584612131119, -0.38134706020355225, 0.05719832330942154], [0.004550041630864143, -0.5312123894691467, 0.07849545031785965], [-0.10112470388412476, -0.4332956075668335, -0.02523651346564293], [0.18480874598026276, -0.4065159559249878, 0.10722658783197403], [-0.34596991539001465, -0.515697717666626, -0.0843137726187706], [0.24431394040584564, -0.3635285496711731, 0.3541530966758728], [-0.5584321618080139, -0.6474698185920715, -0.08837499469518661], [0.05775591731071472, -0.5364828705787659, 0.3976198136806488], [-0.6252888441085815, -0.6958650946617126, -0.10019989311695099], [0.07102102041244507, -0.6028552651405334, 0.4461759030818939]]}, {"image_id": "288.jpg", "category_id": 1, "keypoints": [1101.02099609375, 470.427001953125, 0.9803758859634399, 1091.1783447265625, 498.13262939453125, 0.9885727763175964, 1086.4420166015625, 504.761962890625, 0.9902929067611694, 1106.1982421875, 429.16461181640625, 0.9915680289268494, 1124.46826171875, 635.4434204101562, 0.9723250269889832, 1004.5582275390625, 621.7351684570312, 0.9781222343444824, 1133.0743408203125, 387.42578125, 0.9885625243186951, 1133.8079833984375, 775.474853515625, 0.905542254447937, 880.573974609375, 728.3323364257812, 0.8480794429779053, 1151.47021484375, 377.3782043457031, 0.9926062822341919, 1162.162109375, 793.23486328125, 0.9236664175987244, 848.041015625, 770.0272216796875, 0.8741602897644043, 1186.35107421875, 307.85235595703125, 0.9897647500038147, 1156.9735107421875, 321.20074462890625, 0.9916662573814392, 1176.109375, 349.6490478515625, 0.9896945357322693, 1210.9061279296875, 296.46722412109375, 0.9638739824295044, 1158.683837890625, 291.6400451660156, 0.9780917763710022, 1202.3126220703125, 353.79248046875, 0.9819130897521973, 1187.316650390625, 234.83624267578125, 0.8981572985649109, 1301.7861328125, 402.1138610839844, 0.965574324131012, 1262.52587890625, 196.58126831054688, 0.9608427286148071, 1401.0322265625, 415.9428405761719, 0.9714695811271667, 1281.156982421875, 180.2928466796875, 0.9669931530952454, 1433.156005859375, 414.48553466796875, 0.9521004557609558, 1228.0328369140625, 240.84539794921875, 0.9494712948799133, 1303.416259765625, 161.72512817382812, 0.8577691912651062, 1486.277587890625, 408.30438232421875, 0.9115205407142639, 1173.8375244140625, 792.4710083007812, 0.903045117855072, 844.6007080078125, 782.8523559570312, 0.8328659534454346], "score": 3.188020706176758, "box": [839.5469970703125, 217.63389587402344, 636.71875, 598.5430450439453], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.023619040846824646, 0.0720510333776474, 0.08236796408891678], [-0.04204676300287247, 0.090059794485569, -0.04640999063849449], [0.009619629010558128, -0.10319307446479797, -0.018803128972649574], [0.06825527548789978, 0.4357624053955078, 0.16366243362426758], [-0.26587221026420593, 0.40829992294311523, -0.07850106805562973], [0.08223415166139603, -0.20937791466712952, -0.04917557165026665], [0.09912882000207901, 0.8274444341659546, 0.2570599615573883], [-0.5712777972221375, 0.6714169979095459, -0.06450488418340683], [0.13066767156124115, -0.23567992448806763, -0.05730234086513519], [0.20175500214099884, 0.8938318490982056, 0.308782160282135], [-0.6385060548782349, 0.7554217576980591, -0.14198210835456848], [0.20608995854854584, -0.41398754715919495, -0.1401720494031906], [0.14070314168930054, -0.3767641484737396, -0.04879191145300865], [0.18325985968112946, -0.3022822439670563, -0.17102214694023132], [0.2816924750804901, -0.44860419631004333, -0.15085628628730774], [0.14784322679042816, -0.45697739720344543, -0.006629537791013718], [0.2565170228481293, -0.2864042818546295, -0.23047849535942078], [0.238933727145195, -0.6293519735336304, 0.17117805778980255], [0.4872777760028839, -0.1747300624847412, -0.22614432871341705], [0.45516249537467957, -0.7424187660217285, 0.22174327075481415], [0.741172730922699, -0.14038929343223572, -0.20875336229801178], [0.5169545412063599, -0.7967952489852905, 0.23568181693553925], [0.8218528628349304, -0.14336135983467102, -0.22930525243282318]]}, {"image_id": "288.jpg", "category_id": 1, "keypoints": [1556.870849609375, 501.836669921875, 0.9810693264007568, 1523.3682861328125, 536.1176147460938, 0.9926149845123291, 1580.2855224609375, 542.0176391601562, 0.9900658130645752, 1566.980224609375, 459.515380859375, 0.984326183795929, 1418.9609375, 659.7057495117188, 0.9795479774475098, 1601.143798828125, 689.0062255859375, 0.970274031162262, 1570.231201171875, 407.3811950683594, 0.9881680011749268, 1323.80078125, 788.7681274414062, 0.8820075988769531, 1582.0372314453125, 843.3568115234375, 0.92838454246521, 1563.8310546875, 390.56390380859375, 0.9836181998252869, 1283.9014892578125, 803.628173828125, 0.7304657697677612, 1587.668212890625, 872.6468505859375, 0.9173645377159119, 1570.4505615234375, 303.86065673828125, 0.9898379445075989, 1542.546142578125, 336.2958068847656, 0.9863054156303406, 1597.6737060546875, 344.30279541015625, 0.989707350730896, 1551.9879150390625, 284.9321594238281, 0.9810444712638855, 1512.16748046875, 317.0032653808594, 0.9838888049125671, 1626.3533935546875, 336.193359375, 0.9856488108634949, 1407.818359375, 275.02069091796875, 0.9592478275299072, 1633.9132080078125, 354.3051452636719, 0.9474837779998779, 1315.5826416015625, 218.45474243164062, 0.9746732711791992, 1574.1533203125, 299.02117919921875, 0.9416800737380981, 1283.328125, 195.01251220703125, 0.9584536552429199, 1577.5633544921875, 270.2474060058594, 0.9222833514213562, 1557.830810546875, 215.5247802734375, 0.960494339466095, 1262.3800048828125, 167.74386596679688, 0.818333625793457, 1579.985107421875, 251.26986694335938, 0.9448004961013794, 1291.0955810546875, 816.6728515625, 0.7236369252204895, 1568.8892822265625, 863.0892333984375, 0.9227498769760132], "score": 3.171118974685669, "box": [1242.7396240234375, 205.9739227294922, 419.0726318359375, 659.5769195556641], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.074004627764225, 0.08089528977870941, -0.02360788732767105], [0.052021175622940063, 0.09598886221647263, 0.012616228312253952], [0.021335192024707794, -0.10037639737129211, -0.02194712497293949], [-0.3230149745941162, 0.3773401379585266, -0.015407608821988106], [0.12267723679542542, 0.4725950360298157, 0.10203459113836288], [0.03443499654531479, -0.22326603531837463, 0.019712001085281372], [-0.5685126185417175, 0.6883471012115479, -0.11067050695419312], [0.07337522506713867, 0.8765828609466553, 0.10548456758260727], [0.021471716463565826, -0.2645561397075653, 0.05396194010972977], [-0.6712473034858704, 0.7350455522537231, -0.0399639829993248], [0.10668161511421204, 0.9624460935592651, 0.20146101713180542], [0.042830951511859894, -0.4731413424015045, 0.04293108731508255], [-0.028374649584293365, -0.3874482810497284, 0.004661038517951965], [0.10645881295204163, -0.37720003724098206, 0.0669206753373146], [0.004594538360834122, -0.5261406898498535, 0.09448397159576416], [-0.11044236272573471, -0.422580748796463, -0.010477420873939991], [0.1830863654613495, -0.3991171419620514, 0.11921841651201248], [-0.355591744184494, -0.5146260261535645, -0.05531677231192589], [0.2529439926147461, -0.3698066174983978, 0.36619722843170166], [-0.5693455934524536, -0.645698070526123, -0.05542737990617752], [0.07095574587583542, -0.5487849712371826, 0.4084677994251251], [-0.6344658136367798, -0.6980233192443848, -0.050448887050151825], [0.08747268468141556, -0.6158627271652222, 0.45558634400367737]]}, {"image_id": "289.jpg", "category_id": 1, "keypoints": [1101.5679931640625, 471.5773620605469, 0.9805168509483337, 1092.235595703125, 499.2144775390625, 0.9887274503707886, 1086.6357421875, 506.05859375, 0.9884108901023865, 1106.79296875, 430.465576171875, 0.9910317659378052, 1125.341552734375, 635.1160278320312, 0.9724494814872742, 1003.95556640625, 621.8253173828125, 0.9788565635681152, 1133.1744384765625, 388.33868408203125, 0.9893420338630676, 1133.416259765625, 772.6207275390625, 0.9101452827453613, 880.2581787109375, 728.2449951171875, 0.8542512655258179, 1151.41552734375, 378.13653564453125, 0.9929899573326111, 1161.684814453125, 791.987060546875, 0.9302730560302734, 845.2750244140625, 767.4818725585938, 0.8893380761146545, 1186.1025390625, 308.7900390625, 0.989729642868042, 1157.3502197265625, 321.9598693847656, 0.991661787033081, 1175.4508056640625, 350.57696533203125, 0.990057647228241, 1210.8897705078125, 297.76861572265625, 0.9642608761787415, 1159.5838623046875, 292.08294677734375, 0.9792181253433228, 1201.110107421875, 354.7451171875, 0.9803404808044434, 1186.566162109375, 236.3187255859375, 0.8891454935073853, 1301.724365234375, 402.0483703613281, 0.9652069211006165, 1262.9576416015625, 198.02725219726562, 0.9627471566200256, 1401.6925048828125, 415.1619567871094, 0.9724797010421753, 1283.729248046875, 182.79989624023438, 0.9696044921875, 1433.991943359375, 413.45233154296875, 0.9514989852905273, 1228.2171630859375, 243.04449462890625, 0.9549723267555237, 1307.1346435546875, 165.23748779296875, 0.8485308885574341, 1488.92333984375, 406.3223876953125, 0.8766842484474182, 1173.48388671875, 793.708984375, 0.8955023288726807, 839.8986206054688, 780.5621337890625, 0.8376550674438477], "score": 3.1878955364227295, "box": [841.2886962890625, 216.99090576171875, 633.3482666015625, 599.4017333984375], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.022028563544154167, 0.07188655436038971, 0.0826471596956253], [-0.043084729462862015, 0.08975724875926971, -0.04551195725798607], [0.009488273411989212, -0.10287387669086456, -0.018904156982898712], [0.07022666931152344, 0.43680721521377563, 0.15572887659072876], [-0.2696215808391571, 0.405456006526947, -0.07771141082048416], [0.08018769323825836, -0.20917020738124847, -0.051896460354328156], [0.0981452688574791, 0.8272039294242859, 0.2523876130580902], [-0.5741983652114868, 0.6681954264640808, -0.05948783829808235], [0.12802061438560486, -0.23575542867183685, -0.06134508177638054], [0.2026343196630478, 0.9001230597496033, 0.2886703610420227], [-0.6470240950584412, 0.7474167346954346, -0.13647958636283875], [0.20394881069660187, -0.41313689947128296, -0.14458708465099335], [0.14006465673446655, -0.37632471323013306, -0.05230960249900818], [0.17909452319145203, -0.30216550827026367, -0.17548684775829315], [0.27967333793640137, -0.4462481141090393, -0.15781620144844055], [0.148505300283432, -0.45617878437042236, -0.010099794715642929], [0.2501964569091797, -0.286140501499176, -0.23714827001094818], [0.2358568161725998, -0.6271153092384338, 0.1701909303665161], [0.4818691313266754, -0.17756743729114532, -0.23355022072792053], [0.4512880742549896, -0.7384811639785767, 0.22517774999141693], [0.7359212040901184, -0.14471550285816193, -0.2255207598209381], [0.5177081823348999, -0.7875855565071106, 0.23581942915916443], [0.8176560401916504, -0.14856408536434174, -0.24007228016853333]]}, {"image_id": "289.jpg", "category_id": 1, "keypoints": [1557.315185546875, 503.4640808105469, 0.980659544467926, 1523.9630126953125, 537.29833984375, 0.9921123385429382, 1581.025146484375, 543.5328979492188, 0.9899061322212219, 1567.2576904296875, 461.1528015136719, 0.9849703907966614, 1419.5611572265625, 659.1246948242188, 0.9792715907096863, 1602.3333740234375, 690.4717407226562, 0.9690515398979187, 1570.8580322265625, 409.065185546875, 0.9882702231407166, 1325.293212890625, 787.9447631835938, 0.8800188899040222, 1581.4853515625, 843.6246337890625, 0.9245356917381287, 1564.7625732421875, 392.2411193847656, 0.9832556247711182, 1284.455322265625, 802.2891845703125, 0.7336466312408447, 1588.44580078125, 873.4288330078125, 0.9156123995780945, 1571.705810546875, 305.9333801269531, 0.9902680516242981, 1543.6280517578125, 337.80499267578125, 0.9865627884864807, 1598.99169921875, 346.69000244140625, 0.9895080327987671, 1554.6490478515625, 285.67840576171875, 0.9801788330078125, 1512.9200439453125, 318.0528564453125, 0.9834256768226624, 1627.442626953125, 339.07611083984375, 0.9856255054473877, 1410.707763671875, 276.5155334472656, 0.9561024308204651, 1630.0556640625, 360.1429443359375, 0.9584609866142273, 1319.4228515625, 220.54962158203125, 0.971200704574585, 1563.3719482421875, 312.6524658203125, 0.944768488407135, 1287.322509765625, 197.2464599609375, 0.9678587913513184, 1559.3892822265625, 288.43634033203125, 0.9253562688827515, 1563.6800537109375, 215.4002685546875, 0.9574791789054871, 1262.490234375, 170.30496215820312, 0.8284776210784912, 1555.15966796875, 276.9167175292969, 0.9540236592292786, 1292.2230224609375, 814.341064453125, 0.7413827776908875, 1568.66259765625, 863.851806640625, 0.9316843152046204], "score": 3.170886516571045, "box": [1243.1329345703125, 206.343505859375, 417.5545654296875, 659.0770263671875], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07391706854104996, 0.08105950057506561, -0.022847017273306847], [0.05220519006252289, 0.09580346941947937, 0.012334346771240234], [0.020937511697411537, -0.10026600956916809, -0.022242166101932526], [-0.3240106701850891, 0.37613463401794434, -0.006930192932486534], [0.12371223419904709, 0.47258755564689636, 0.09981657564640045], [0.034881554543972015, -0.22336658835411072, 0.01884063333272934], [-0.5683569312095642, 0.6885727643966675, -0.09940341860055923], [0.06782549619674683, 0.8754327297210693, 0.09472217410802841], [0.022997599095106125, -0.26536983251571655, 0.05256419628858566], [-0.6726785898208618, 0.7333388328552246, -0.029926516115665436], [0.10417820513248444, 0.9624977111816406, 0.18835952877998352], [0.044721804559230804, -0.47368165850639343, 0.04098121449351311], [-0.026355240494012833, -0.3880232274532318, 0.0027357935905456543], [0.10798782110214233, -0.3777669370174408, 0.06542584300041199], [0.008731156587600708, -0.5309373140335083, 0.08962051570415497], [-0.1072562038898468, -0.4244184195995331, -0.014851415529847145], [0.18504872918128967, -0.3987487852573395, 0.11724702268838882], [-0.3500509560108185, -0.514707088470459, -0.07341912388801575], [0.24324753880500793, -0.36090561747550964, 0.36594268679618835], [-0.5635428428649902, -0.6459208726882935, -0.07748216390609741], [0.03599390387535095, -0.5135796070098877, 0.39078983664512634], [-0.6309163570404053, -0.6951645612716675, -0.08279312402009964], [0.034975722432136536, -0.5804277658462524, 0.4408932626247406]]}, {"image_id": "290.jpg", "category_id": 1, "keypoints": [1102.6759033203125, 471.7167663574219, 0.9804953932762146, 1094.029296875, 499.7665100097656, 0.9876366257667542, 1087.5579833984375, 505.982177734375, 0.9902626276016235, 1107.9071044921875, 431.1126708984375, 0.9909276962280273, 1127.027099609375, 635.5347290039062, 0.9741488099098206, 1006.2107543945312, 622.6156616210938, 0.9788814783096313, 1134.5458984375, 389.2320556640625, 0.9893667101860046, 1134.566650390625, 774.9375, 0.9078508019447327, 883.5191650390625, 727.435302734375, 0.8555512428283691, 1152.668212890625, 378.9696044921875, 0.9930422306060791, 1164.77490234375, 793.977294921875, 0.9278208613395691, 848.542236328125, 766.9498291015625, 0.9008867144584656, 1187.64501953125, 310.173583984375, 0.9894936084747314, 1159.1422119140625, 323.19891357421875, 0.9916017651557922, 1177.054931640625, 351.2169189453125, 0.9901048541069031, 1212.0389404296875, 299.1075744628906, 0.9640594720840454, 1160.9466552734375, 293.66204833984375, 0.9791229367256165, 1203.012939453125, 355.28350830078125, 0.9815069437026978, 1187.2830810546875, 237.92547607421875, 0.8870869874954224, 1302.7686767578125, 402.7131042480469, 0.9650068879127502, 1263.2642822265625, 199.559814453125, 0.9635865688323975, 1401.5374755859375, 415.32745361328125, 0.9715250134468079, 1284.1304931640625, 184.33987426757812, 0.9702540636062622, 1432.876220703125, 414.1676940917969, 0.9486240148544312, 1231.58837890625, 243.0740966796875, 0.9515954852104187, 1306.070556640625, 166.49978637695312, 0.8481451272964478, 1482.974853515625, 409.3674621582031, 0.9061002731323242, 1178.2779541015625, 795.7750244140625, 0.894694447517395, 843.3026123046875, 780.946044921875, 0.8611979484558105], "score": 3.189690113067627, "box": [842.591064453125, 218.95938110351562, 632.4757080078125, 597.4374694824219], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.020343005657196045, 0.07352513074874878, 0.08269429206848145], [-0.04464609548449516, 0.08960593491792679, -0.04625050351023674], [0.00913146324455738, -0.10429246723651886, -0.01770203188061714], [0.07189150154590607, 0.4398563504219055, 0.15140774846076965], [-0.2680259644985199, 0.40816885232925415, -0.081800177693367], [0.08236439526081085, -0.2098713368177414, -0.050124965608119965], [0.09766906499862671, 0.8348724246025085, 0.23561842739582062], [-0.573361873626709, 0.6705172061920166, -0.04414636641740799], [0.1305537074804306, -0.23700211942195892, -0.05954413115978241], [0.20496858656406403, 0.9040276408195496, 0.2733418941497803], [-0.6472419500350952, 0.7515152096748352, -0.11954715102910995], [0.20870086550712585, -0.4169747829437256, -0.1390446573495865], [0.14322739839553833, -0.3785916566848755, -0.04738175868988037], [0.18384632468223572, -0.3058331608772278, -0.17282487452030182], [0.28431013226509094, -0.4507589340209961, -0.1516147404909134], [0.15073898434638977, -0.4587259888648987, -0.003917895257472992], [0.2567303478717804, -0.2900199890136719, -0.2337477058172226], [0.236455038189888, -0.6295453906059265, 0.17877349257469177], [0.48904404044151306, -0.18050704896450043, -0.2240431010723114], [0.45196014642715454, -0.7418796420097351, 0.2367737740278244], [0.7441884279251099, -0.14853359758853912, -0.21358393132686615], [0.5191654562950134, -0.7912428975105286, 0.2456662505865097], [0.8262602090835571, -0.15100179612636566, -0.22979836165905]]}, {"image_id": "290.jpg", "category_id": 1, "keypoints": [1556.697021484375, 502.688232421875, 0.9803712964057922, 1524.074462890625, 536.8748779296875, 0.9922429919242859, 1580.6068115234375, 543.138671875, 0.9888108968734741, 1566.6734619140625, 459.99853515625, 0.9856429696083069, 1419.493408203125, 662.2680053710938, 0.979907751083374, 1601.8465576171875, 692.05517578125, 0.9703758358955383, 1570.912109375, 408.04180908203125, 0.9887346625328064, 1323.582275390625, 786.125, 0.863075315952301, 1579.6822509765625, 842.4733276367188, 0.9092205762863159, 1564.5899658203125, 391.3456726074219, 0.983968198299408, 1280.449462890625, 798.983642578125, 0.7479705214500427, 1588.2279052734375, 876.74365234375, 0.8989226818084717, 1573.1534423828125, 305.94488525390625, 0.9899306297302246, 1544.403076171875, 337.8796691894531, 0.9848698973655701, 1599.6260986328125, 346.5514831542969, 0.9896222352981567, 1555.35595703125, 285.34979248046875, 0.978234589099884, 1512.4295654296875, 319.4552001953125, 0.9832201600074768, 1628.225830078125, 339.37689208984375, 0.9838836789131165, 1413.7952880859375, 277.23736572265625, 0.9598507881164551, 1639.25146484375, 356.383056640625, 0.9241384267807007, 1320.428466796875, 223.12814331054688, 0.9627925753593445, 1586.6087646484375, 298.57305908203125, 0.957640528678894, 1288.8033447265625, 197.64822387695312, 0.9689366221427917, 1589.6387939453125, 269.61834716796875, 0.9088643193244934, 1572.1317138671875, 216.37094116210938, 0.9493261575698853, 1260.4532470703125, 171.19924926757812, 0.8329271674156189, 1597.200927734375, 245.67831420898438, 0.9408893585205078, 1283.552734375, 809.0284423828125, 0.7088994979858398, 1568.7523193359375, 872.3695678710938, 0.909318745136261], "score": 3.1683430671691895, "box": [1240.5301513671875, 206.9265594482422, 418.915283203125, 661.5759429931641], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07321904599666595, 0.08045253157615662, -0.025461159646511078], [0.05230579525232315, 0.09564545005559921, 0.009844936430454254], [0.020579945296049118, -0.10055321455001831, -0.019121477380394936], [-0.3191830813884735, 0.37823957204818726, -0.011663198471069336], [0.11953434348106384, 0.47662830352783203, 0.07698419690132141], [0.03712195158004761, -0.22289103269577026, 0.02291945368051529], [-0.5705171227455139, 0.6794544458389282, -0.1170668825507164], [0.05587589368224144, 0.8765773177146912, 0.05400355905294418], [0.02372480183839798, -0.2650946378707886, 0.05551591515541077], [-0.6773276925086975, 0.7187976241111755, -0.048715583980083466], [0.09348151087760925, 0.9670727252960205, 0.14326949417591095], [0.05001582205295563, -0.4722086191177368, 0.04286244511604309], [-0.021365642547607422, -0.38782602548599243, 0.003323271870613098], [0.11026640236377716, -0.37547969818115234, 0.06990332901477814], [0.010519883595407009, -0.5307939052581787, 0.08696116507053375], [-0.10444188117980957, -0.4152485728263855, -0.01857888512313366], [0.18663448095321655, -0.3951767683029175, 0.12270230054855347], [-0.34177103638648987, -0.5063239336013794, -0.09316907823085785], [0.2643669545650482, -0.3682819604873657, 0.3666979968547821], [-0.5584463477134705, -0.6298945546150208, -0.10939140617847443], [0.10046349465847015, -0.5618094205856323, 0.4137359857559204], [-0.6221809387207031, -0.6794973015785217, -0.13002417981624603], [0.11633245646953583, -0.6278935670852661, 0.4618341028690338]]}, {"image_id": "291.jpg", "category_id": 1, "keypoints": [1102.9066162109375, 471.8950500488281, 0.9810008406639099, 1094.59375, 500.353515625, 0.9882035255432129, 1086.988525390625, 506.1825866699219, 0.9905534386634827, 1108.0926513671875, 430.9371032714844, 0.9910627603530884, 1128.5228271484375, 635.4278564453125, 0.9734998345375061, 1005.8388061523438, 622.6530151367188, 0.9787465929985046, 1134.89306640625, 389.24725341796875, 0.9887285828590393, 1135.3465576171875, 774.472900390625, 0.9113708734512329, 881.4318237304688, 728.9239501953125, 0.8487675786018372, 1152.8150634765625, 379.00286865234375, 0.9929110407829285, 1166.048828125, 793.9324951171875, 0.9286158084869385, 846.6588134765625, 768.2200317382812, 0.8940145373344421, 1187.041259765625, 310.004638671875, 0.989703357219696, 1159.3494873046875, 323.1607666015625, 0.9912538528442383, 1176.1041259765625, 351.1917724609375, 0.9903414845466614, 1211.4302978515625, 299.4375305175781, 0.9633111357688904, 1161.8338623046875, 293.62255859375, 0.9783554077148438, 1201.633056640625, 354.9422607421875, 0.979912281036377, 1191.410400390625, 236.22653198242188, 0.8969886302947998, 1303.193603515625, 403.18280029296875, 0.9656774401664734, 1268.2222900390625, 198.93502807617188, 0.9615697264671326, 1402.49609375, 416.3586120605469, 0.9722893238067627, 1288.3765869140625, 183.06387329101562, 0.9720090627670288, 1434.8477783203125, 415.0519714355469, 0.9475975036621094, 1231.601806640625, 242.91143798828125, 0.9486212134361267, 1312.0003662109375, 164.22000122070312, 0.8019652366638184, 1483.575439453125, 410.1368713378906, 0.9008336067199707, 1178.5897216796875, 796.3897705078125, 0.8983093500137329, 843.0933837890625, 782.0496826171875, 0.8548705577850342], "score": 3.187140941619873, "box": [844.5452880859375, 218.7017822265625, 632.0362548828125, 598.5718994140625], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.018796496093273163, 0.07394564151763916, 0.08222886174917221], [-0.04607166722416878, 0.08870256692171097, -0.04574811831116676], [0.00936926156282425, -0.1038375198841095, -0.016974741593003273], [0.07629279792308807, 0.4394742548465729, 0.15209639072418213], [-0.26935043931007385, 0.40753957629203796, -0.0795278251171112], [0.08213894069194794, -0.20923957228660583, -0.049799032509326935], [0.10034188628196716, 0.8332293033599854, 0.24110394716262817], [-0.5752474069595337, 0.6699283123016357, -0.05202217772603035], [0.12989704310894012, -0.23637425899505615, -0.05978201702237129], [0.20668335258960724, 0.9022244215011597, 0.28100210428237915], [-0.6485881209373474, 0.750340461730957, -0.12809789180755615], [0.20517422258853912, -0.4159294068813324, -0.14102602005004883], [0.14244145154953003, -0.377381294965744, -0.04808490350842476], [0.17961379885673523, -0.3051721155643463, -0.17392104864120483], [0.2811141610145569, -0.44821563363075256, -0.15547651052474976], [0.15167175233364105, -0.4572262465953827, -0.0052319057285785675], [0.25093594193458557, -0.29024025797843933, -0.2362377941608429], [0.2455977499485016, -0.6312527656555176, 0.16991692781448364], [0.4829358160495758, -0.1803278923034668, -0.23328503966331482], [0.4633021652698517, -0.7403273582458496, 0.22442778944969177], [0.7373349666595459, -0.147628515958786, -0.21541327238082886], [0.5280141830444336, -0.7916994094848633, 0.2373684048652649], [0.8200416564941406, -0.15059730410575867, -0.22624799609184265]]}, {"image_id": "291.jpg", "category_id": 1, "keypoints": [1557.274169921875, 503.9622497558594, 0.9799231886863708, 1524.573486328125, 537.9238891601562, 0.9920818209648132, 1580.6378173828125, 543.4608154296875, 0.9897885322570801, 1567.3492431640625, 462.0501708984375, 0.9860263466835022, 1419.5887451171875, 661.397705078125, 0.980166494846344, 1600.535888671875, 690.4848022460938, 0.968873918056488, 1571.938232421875, 410.6241760253906, 0.9875072240829468, 1321.7568359375, 787.514404296875, 0.8766130805015564, 1582.0130615234375, 838.830322265625, 0.9141591787338257, 1566.1480712890625, 394.04644775390625, 0.980709433555603, 1280.22607421875, 799.170166015625, 0.752547562122345, 1584.864990234375, 867.26220703125, 0.9227399826049805, 1574.20556640625, 308.68438720703125, 0.989894688129425, 1545.686279296875, 340.45001220703125, 0.9856024384498596, 1600.8212890625, 349.0353698730469, 0.9907752871513367, 1557.2723388671875, 288.36175537109375, 0.9788166284561157, 1514.566650390625, 321.9749755859375, 0.9816241264343262, 1629.2763671875, 341.46923828125, 0.9841450452804565, 1415.7530517578125, 279.550537109375, 0.9547860026359558, 1639.8546142578125, 359.02569580078125, 0.9330744743347168, 1323.4473876953125, 225.80679321289062, 0.9638309478759766, 1590.605712890625, 297.60699462890625, 0.9483152627944946, 1290.9522705078125, 200.22073364257812, 0.9719160795211792, 1593.7203369140625, 266.42138671875, 0.8953364491462708, 1572.01513671875, 219.20050048828125, 0.9541558027267456, 1261.09619140625, 173.66629028320312, 0.8365672826766968, 1599.390869140625, 243.08355712890625, 0.9236348867416382, 1284.9853515625, 809.73046875, 0.7323822379112244, 1567.130615234375, 859.285400390625, 0.9306694269180298], "score": 3.1706809997558594, "box": [1238.62890625, 207.78945922851562, 422.7003173828125, 658.8993225097656], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07324589043855667, 0.08082032203674316, -0.023934733122587204], [0.052050065249204636, 0.09545525908470154, 0.012173980474472046], [0.02085321769118309, -0.10003334283828735, -0.021272912621498108], [-0.32163941860198975, 0.3762938380241394, -0.007724303752183914], [0.1178729459643364, 0.4750637412071228, 0.08712252229452133], [0.03781339153647423, -0.22289356589317322, 0.018997564911842346], [-0.5735518932342529, 0.6794993877410889, -0.10479690879583359], [0.06958670169115067, 0.8774627447128296, 0.09667826443910599], [0.028707312420010567, -0.2672120928764343, 0.05020107328891754], [-0.6826449632644653, 0.71722412109375, -0.03928450495004654], [0.09631344676017761, 0.959689736366272, 0.19709721207618713], [0.04971158504486084, -0.47459694743156433, 0.03428187221288681], [-0.020527372136712074, -0.38807663321495056, -0.002425581216812134], [0.11288343369960785, -0.3797324001789093, 0.06107913702726364], [0.012951469980180264, -0.5328154563903809, 0.08112316578626633], [-0.0972648411989212, -0.42984750866889954, -0.024684904143214226], [0.1902308613061905, -0.40062418580055237, 0.11194252222776413], [-0.3355143964290619, -0.522351861000061, -0.09370110183954239], [0.2673629820346832, -0.3718186318874359, 0.3557227849960327], [-0.5518999695777893, -0.6468422412872314, -0.10285910218954086], [0.12852929532527924, -0.5719518661499023, 0.4401358366012573], [-0.6245265603065491, -0.6835125684738159, -0.12084128707647324], [0.14390690624713898, -0.6398510932922363, 0.48574376106262207]]}, {"image_id": "292.jpg", "category_id": 1, "keypoints": [1103.5263671875, 471.4517822265625, 0.9803019762039185, 1095.41259765625, 499.5274658203125, 0.9879721403121948, 1087.5985107421875, 506.0235290527344, 0.9893637895584106, 1108.53076171875, 430.8979187011719, 0.9913240075111389, 1129.0030517578125, 633.8644409179688, 0.9726327657699585, 1004.9769897460938, 622.8579711914062, 0.9776837825775146, 1135.1513671875, 389.0941162109375, 0.989033579826355, 1135.747314453125, 771.0183715820312, 0.9122372269630432, 881.1315307617188, 727.8211669921875, 0.85588139295578, 1153.4532470703125, 378.9881591796875, 0.9924522042274475, 1168.822021484375, 788.17919921875, 0.927565336227417, 847.26953125, 767.2562866210938, 0.8878324627876282, 1187.931640625, 310.4219970703125, 0.9895062446594238, 1160.471435546875, 323.369384765625, 0.9912135004997253, 1176.3773193359375, 351.3577880859375, 0.9903701543807983, 1212.872802734375, 299.4007568359375, 0.9648032188415527, 1162.9210205078125, 293.8353271484375, 0.9790250062942505, 1201.9898681640625, 355.5039367675781, 0.9799288511276245, 1189.5540771484375, 238.77593994140625, 0.8816770911216736, 1303.745361328125, 402.0479431152344, 0.9641348123550415, 1265.5093994140625, 201.29019165039062, 0.9694488048553467, 1402.8741455078125, 416.59442138671875, 0.9732270836830139, 1285.678466796875, 185.73089599609375, 0.9755517244338989, 1435.6517333984375, 415.6691589355469, 0.9491361379623413, 1234.532958984375, 244.81494140625, 0.9541898369789124, 1307.0048828125, 167.05740356445312, 0.8652050495147705, 1491.6524658203125, 409.45782470703125, 0.8933119177818298, 1181.117919921875, 789.2172241210938, 0.8983286619186401, 843.1912841796875, 781.1024169921875, 0.841783881187439], "score": 3.188467025756836, "box": [844.4686889648438, 219.72215270996094, 631.3363647460938, 594.5252227783203], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.018055669963359833, 0.07249914109706879, 0.08327006548643112], [-0.045896053314208984, 0.08933477848768234, -0.04393397271633148], [0.008940581232309341, -0.10326237976551056, -0.018649261444807053], [0.0764385536313057, 0.43666595220565796, 0.1560428887605667], [-0.27092093229293823, 0.4060898423194885, -0.07446406781673431], [0.08111951500177383, -0.2082744687795639, -0.05358336865901947], [0.10063593834638596, 0.8282232880592346, 0.24874071776866913], [-0.5765302181243896, 0.666339635848999, -0.0429731085896492], [0.12892287969589233, -0.2344694882631302, -0.06502848863601685], [0.21417438983917236, 0.8885954022407532, 0.2809879183769226], [-0.648350715637207, 0.7476148009300232, -0.1189635619521141], [0.2044772356748581, -0.41187620162963867, -0.1495773047208786], [0.1433233767747879, -0.37507808208465576, -0.055144358426332474], [0.17697668075561523, -0.3012874722480774, -0.18062277138233185], [0.2797549068927765, -0.44442999362945557, -0.1665715128183365], [0.15247789025306702, -0.4543755054473877, -0.011602714657783508], [0.24744020402431488, -0.2853269577026367, -0.24338175356388092], [0.23935455083847046, -0.6237452626228333, 0.17040805518627167], [0.4801306128501892, -0.1788136214017868, -0.2441898137331009], [0.45885995030403137, -0.734397292137146, 0.2084805816411972], [0.7337334752082825, -0.1418013721704483, -0.24086885154247284], [0.5246090888977051, -0.7853228449821472, 0.21457527577877045], [0.8154077529907227, -0.14353813230991364, -0.25666874647140503]]}, {"image_id": "292.jpg", "category_id": 1, "keypoints": [1558.62060546875, 504.2823181152344, 0.9796868562698364, 1525.5833740234375, 538.3776245117188, 0.992131769657135, 1581.86376953125, 543.8834838867188, 0.9902055263519287, 1568.7381591796875, 462.5743103027344, 0.9852967262268066, 1420.6358642578125, 661.62060546875, 0.9800470471382141, 1601.901123046875, 692.1129150390625, 0.9695621728897095, 1573.3751220703125, 410.83819580078125, 0.9876182675361633, 1322.564208984375, 788.1397705078125, 0.8787431716918945, 1578.7808837890625, 842.292724609375, 0.9156053066253662, 1567.7481689453125, 393.83624267578125, 0.9808126091957092, 1281.60986328125, 802.4879150390625, 0.7436742782592773, 1584.1837158203125, 872.8187866210938, 0.9094775319099426, 1576.6656494140625, 307.484130859375, 0.9888362884521484, 1547.59912109375, 340.20294189453125, 0.9849220514297485, 1602.855224609375, 348.2445983886719, 0.9910150766372681, 1559.7469482421875, 287.215576171875, 0.9784485101699829, 1517.056884765625, 321.7080993652344, 0.980199933052063, 1631.57470703125, 340.0870361328125, 0.9836668372154236, 1417.72900390625, 281.54205322265625, 0.9474108219146729, 1640.42431640625, 358.93096923828125, 0.9406605362892151, 1325.6358642578125, 226.85818481445312, 0.9650506377220154, 1592.637451171875, 294.9031982421875, 0.9514557123184204, 1293.562744140625, 201.2567138671875, 0.9740560054779053, 1597.9312744140625, 265.6378479003906, 0.8970382213592529, 1573.4404296875, 217.50033569335938, 0.9554815292358398, 1262.6148681640625, 174.38970947265625, 0.8440865278244019, 1604.98095703125, 242.1484375, 0.9255692958831787, 1286.3712158203125, 815.8251953125, 0.7240139245986938, 1564.01708984375, 868.915283203125, 0.9161083102226257], "score": 3.1705074310302734, "box": [1239.8487548828125, 207.47824096679688, 423.3111572265625, 659.7305603027344], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0736197829246521, 0.08126387000083923, -0.02353522926568985], [0.05212777107954025, 0.09576617926359177, 0.01383339986205101], [0.021298116073012352, -0.1002713292837143, -0.022630274295806885], [-0.32355111837387085, 0.37657979130744934, -0.01471756398677826], [0.1178998127579689, 0.4762997031211853, 0.08814084529876709], [0.03736993670463562, -0.2242102473974228, 0.014900889247655869], [-0.576373279094696, 0.6820729374885559, -0.1077079325914383], [0.05143021047115326, 0.8769445419311523, 0.06494726240634918], [0.028539203107357025, -0.2695270776748657, 0.045181769877672195], [-0.6832826733589172, 0.7271303534507751, -0.04242917522788048], [0.08354643732309341, 0.9638261795043945, 0.16033853590488434], [0.05053606629371643, -0.47736382484436035, 0.025508824735879898], [-0.02102842926979065, -0.39041996002197266, -0.009082566946744919], [0.1138918474316597, -0.38232845067977905, 0.05340198799967766], [0.014745070599019527, -0.5348222255706787, 0.0738673061132431], [-0.09800945222377777, -0.4334949851036072, -0.029610885307192802], [0.19258947670459747, -0.4048210382461548, 0.10228104889392853], [-0.33983859419822693, -0.522451639175415, -0.0937635749578476], [0.2659354507923126, -0.37284237146377563, 0.3477507531642914], [-0.5558650493621826, -0.6492499709129333, -0.1027262955904007], [0.13280422985553741, -0.5789259672164917, 0.42942720651626587], [-0.6278863549232483, -0.6862983703613281, -0.12369529902935028], [0.15338069200515747, -0.644095242023468, 0.4775480329990387]]}, {"image_id": "293.jpg", "category_id": 1, "keypoints": [1103.4842529296875, 470.9569396972656, 0.9810926914215088, 1095.0765380859375, 499.0603332519531, 0.9885867238044739, 1087.6195068359375, 506.0729064941406, 0.9896246790885925, 1108.1282958984375, 430.1942138671875, 0.9912033677101135, 1129.0738525390625, 631.9771728515625, 0.972040057182312, 1004.9113159179688, 623.36962890625, 0.9772629141807556, 1134.8907470703125, 388.488037109375, 0.9890684485435486, 1136.013916015625, 771.6161499023438, 0.9078570604324341, 880.3483276367188, 728.325927734375, 0.8360159397125244, 1153.3157958984375, 378.69940185546875, 0.9921534061431885, 1169.0369873046875, 787.943603515625, 0.9275658130645752, 846.1234741210938, 767.6967163085938, 0.8826172947883606, 1187.433349609375, 310.3455810546875, 0.9890300035476685, 1160.1744384765625, 322.9879150390625, 0.9907664060592651, 1175.8797607421875, 351.00689697265625, 0.9904864430427551, 1212.3216552734375, 299.64202880859375, 0.9643250107765198, 1163.1761474609375, 293.5870056152344, 0.9795616865158081, 1201.1444091796875, 355.6236267089844, 0.97979336977005, 1193.2515869140625, 238.04287719726562, 0.8832364082336426, 1303.6016845703125, 402.2899169921875, 0.9636865854263306, 1269.4791259765625, 200.739990234375, 0.9704522490501404, 1404.6331787109375, 418.57794189453125, 0.9689750075340271, 1289.9288330078125, 185.5660400390625, 0.9733471274375916, 1435.635498046875, 417.578125, 0.9556204080581665, 1238.818603515625, 245.42977905273438, 0.9524972438812256, 1310.4093017578125, 165.86203002929688, 0.8431500196456909, 1492.8629150390625, 408.37249755859375, 0.8760846853256226, 1182.87158203125, 785.5186767578125, 0.9114313721656799, 843.167724609375, 780.4152221679688, 0.8468056321144104], "score": 3.1864216327667236, "box": [845.1803588867188, 215.74183654785156, 629.7319946289062, 601.1164398193359], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.01874343305826187, 0.07246340811252594, 0.08332199603319168], [-0.04476986080408096, 0.0898684412240982, -0.044323112815618515], [0.008491136133670807, -0.10347895324230194, -0.018864668905735016], [0.07764249294996262, 0.43357884883880615, 0.1682623326778412], [-0.2692221403121948, 0.40635204315185547, -0.08268468081951141], [0.08080553263425827, -0.20870904624462128, -0.053842805325984955], [0.10172838717699051, 0.8272353410720825, 0.2527717053890228], [-0.5772438645362854, 0.6660279631614685, -0.07918816804885864], [0.12916144728660583, -0.23418186604976654, -0.06523820757865906], [0.21420198678970337, 0.8847557306289673, 0.29340362548828125], [-0.6513819694519043, 0.7490479350090027, -0.15122799575328827], [0.20305991172790527, -0.41212111711502075, -0.15097060799598694], [0.14302073419094086, -0.37509864568710327, -0.05566258728504181], [0.17570266127586365, -0.30116140842437744, -0.18162940442562103], [0.27822503447532654, -0.44359612464904785, -0.17081153392791748], [0.15363602340221405, -0.45413702726364136, -0.011684859171509743], [0.24531401693820953, -0.28371864557266235, -0.24518761038780212], [0.2500307261943817, -0.624779462814331, 0.16455510258674622], [0.4784124195575714, -0.17757801711559296, -0.24487701058387756], [0.47070810198783875, -0.7348623871803284, 0.1987985521554947], [0.7316461801528931, -0.1371234506368637, -0.23895703256130219], [0.5373742580413818, -0.7845941781997681, 0.20622120797634125], [0.8141893744468689, -0.13939820230007172, -0.25006991624832153]]}, {"image_id": "293.jpg", "category_id": 1, "keypoints": [1558.2657470703125, 504.2354736328125, 0.9803425669670105, 1525.0216064453125, 537.8164672851562, 0.9920828938484192, 1581.896728515625, 543.8612060546875, 0.9894304275512695, 1568.0634765625, 462.5693359375, 0.984751284122467, 1421.361083984375, 660.3521118164062, 0.9791238903999329, 1603.07470703125, 691.305908203125, 0.9697738885879517, 1573.0496826171875, 411.0107421875, 0.9879217743873596, 1324.9901123046875, 786.5460815429688, 0.8778025507926941, 1578.417724609375, 840.8118286132812, 0.916098415851593, 1567.99072265625, 394.16961669921875, 0.9806825518608093, 1284.087158203125, 800.5791015625, 0.7521982192993164, 1584.181640625, 870.5599365234375, 0.9148012399673462, 1577.052490234375, 308.78277587890625, 0.9889898300170898, 1547.435546875, 340.38897705078125, 0.9862839579582214, 1603.667724609375, 349.5927734375, 0.9906048774719238, 1560.746826171875, 288.38043212890625, 0.9800065755844116, 1516.9302978515625, 321.3038330078125, 0.9814321994781494, 1632.826904296875, 342.88916015625, 0.9840899705886841, 1417.4217529296875, 279.3817138671875, 0.954600989818573, 1644.1337890625, 363.1120910644531, 0.9362584352493286, 1324.8782958984375, 228.03121948242188, 0.9679436683654785, 1593.657958984375, 301.1944580078125, 0.9442372918128967, 1291.7584228515625, 204.15447998046875, 0.9717741012573242, 1595.3917236328125, 270.99517822265625, 0.9084835052490234, 1576.669677734375, 220.31857299804688, 0.9519136548042297, 1264.32470703125, 178.38470458984375, 0.8467888832092285, 1602.451171875, 247.94430541992188, 0.9205130338668823, 1289.10595703125, 814.3076171875, 0.7191636562347412, 1563.28759765625, 865.8231201171875, 0.9224152565002441], "score": 3.169382095336914, "box": [1241.9713134765625, 210.01168823242188, 422.23486328125, 656.0163879394531], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07438264787197113, 0.0810081958770752, -0.022318899631500244], [0.05248793587088585, 0.09598765522241592, 0.011355256661772728], [0.020776716992259026, -0.1006837785243988, -0.022266071289777756], [-0.3235872685909271, 0.37629157304763794, -0.018943382427096367], [0.12205487489700317, 0.4744985103607178, 0.08971791714429855], [0.03793641924858093, -0.22409355640411377, 0.017145706340670586], [-0.5737907290458679, 0.6818084716796875, -0.1167214959859848], [0.05104115232825279, 0.8738176822662354, 0.06499045342206955], [0.0309373140335083, -0.2688870131969452, 0.04887540638446808], [-0.6815741658210754, 0.7262401580810547, -0.05250357836484909], [0.08438624441623688, 0.9582129716873169, 0.16216793656349182], [0.054050225764513016, -0.47703662514686584, 0.030776290223002434], [-0.01899394392967224, -0.39084210991859436, -0.0032647158950567245], [0.1174057126045227, -0.3811781704425812, 0.05662150681018829], [0.02011394128203392, -0.534906268119812, 0.07996577024459839], [-0.09582950174808502, -0.43578991293907166, -0.020903529599308968], [0.19751238822937012, -0.4002359211444855, 0.10503476858139038], [-0.3374907076358795, -0.5296558141708374, -0.07703079283237457], [0.27661213278770447, -0.3649806082248688, 0.34797975420951843], [-0.557083010673523, -0.6493449211120605, -0.09046515077352524], [0.1360347867012024, -0.5643571615219116, 0.432887464761734], [-0.6252872347831726, -0.6964461803436279, -0.10198730230331421], [0.14879626035690308, -0.6333253383636475, 0.47836700081825256]]}, {"image_id": "294.jpg", "category_id": 1, "keypoints": [1104.9443359375, 473.01141357421875, 0.9802617430686951, 1096.464599609375, 501.46124267578125, 0.98757404088974, 1089.402099609375, 507.5561218261719, 0.9884368181228638, 1109.9544677734375, 431.88189697265625, 0.9904989004135132, 1128.886474609375, 637.5303955078125, 0.9720007181167603, 1006.0016479492188, 623.0911254882812, 0.979860246181488, 1137.1708984375, 389.6633605957031, 0.9888830184936523, 1136.7095947265625, 773.9111328125, 0.9100288152694702, 880.87060546875, 727.2522583007812, 0.8487544655799866, 1155.4918212890625, 379.594482421875, 0.9923094511032104, 1169.6800537109375, 790.3389892578125, 0.9265908598899841, 846.7361450195312, 767.6310424804688, 0.895665168762207, 1189.2786865234375, 310.8280944824219, 0.9890657067298889, 1162.0386962890625, 323.7940673828125, 0.9917604923248291, 1177.9385986328125, 351.17279052734375, 0.9900685548782349, 1213.649658203125, 299.46710205078125, 0.9645676612854004, 1164.621337890625, 294.86578369140625, 0.9801455140113831, 1203.214599609375, 355.8825378417969, 0.9810448884963989, 1192.904541015625, 238.02719116210938, 0.8890975117683411, 1306.1455078125, 404.64935302734375, 0.963814914226532, 1268.57421875, 200.98724365234375, 0.9663599133491516, 1406.2689208984375, 419.651123046875, 0.9658635258674622, 1289.3013916015625, 187.82830810546875, 0.9721413254737854, 1437.516845703125, 419.3764953613281, 0.9541959762573242, 1237.06005859375, 246.20742797851562, 0.9438028335571289, 1310.06787109375, 169.62054443359375, 0.8788366317749023, 1493.582275390625, 412.1677551269531, 0.9078971147537231, 1182.535400390625, 790.031494140625, 0.9118434190750122, 842.741943359375, 781.4296875, 0.8511249423027039], "score": 3.1897451877593994, "box": [842.9849243164062, 216.6891632080078, 634.5829467773438, 599.2890472412109], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.01919715479016304, 0.0735626220703125, 0.0823918804526329], [-0.04496123269200325, 0.0892396867275238, -0.04564115032553673], [0.008842108771204948, -0.1037994921207428, -0.01750297285616398], [0.07134392112493515, 0.4392159581184387, 0.1550508290529251], [-0.27304527163505554, 0.40327274799346924, -0.0864383652806282], [0.08191464096307755, -0.2090829610824585, -0.05091816931962967], [0.09879782050848007, 0.8308263421058655, 0.24974392354488373], [-0.5824026465415955, 0.6614993810653687, -0.06825467944145203], [0.12992632389068604, -0.23527371883392334, -0.06237265095114708], [0.2105199545621872, 0.8885071873664856, 0.2925373315811157], [-0.6556065082550049, 0.7459313869476318, -0.1398407518863678], [0.20367425680160522, -0.41519075632095337, -0.14431636035442352], [0.14318139851093292, -0.3761399984359741, -0.050048671662807465], [0.1769208014011383, -0.3046802878379822, -0.17726735770702362], [0.2782476842403412, -0.44925475120544434, -0.16204512119293213], [0.1528555005788803, -0.45466727018356323, -0.00488247349858284], [0.24760836362838745, -0.2868932783603668, -0.23959635198116302], [0.2446252405643463, -0.6297202110290527, 0.16995078325271606], [0.47951140999794006, -0.17761635780334473, -0.23343296349048615], [0.4644950330257416, -0.7398224472999573, 0.2107878178358078], [0.7333973050117493, -0.1401638388633728, -0.2236928790807724], [0.5349489450454712, -0.784694254398346, 0.2138858586549759], [0.8151229023933411, -0.1402549147605896, -0.24037466943264008]]}, {"image_id": "294.jpg", "category_id": 1, "keypoints": [1559.62451171875, 502.6601257324219, 0.9800603985786438, 1525.5125732421875, 536.2383422851562, 0.9922862648963928, 1583.29150390625, 542.9415283203125, 0.9878876209259033, 1570.136474609375, 460.379150390625, 0.9844282269477844, 1420.7156982421875, 661.9898071289062, 0.9783133268356323, 1604.1728515625, 690.8329467773438, 0.9710911512374878, 1575.3970947265625, 409.3175048828125, 0.9878271818161011, 1324.205078125, 786.8716430664062, 0.8597803711891174, 1579.3890380859375, 841.289794921875, 0.9122719168663025, 1569.872314453125, 392.94256591796875, 0.9824504256248474, 1284.1162109375, 801.4326171875, 0.7405015230178833, 1585.1484375, 871.8345947265625, 0.9116285443305969, 1578.616943359375, 307.5367431640625, 0.9901045560836792, 1548.998779296875, 338.6190490722656, 0.9867944717407227, 1605.390625, 348.28192138671875, 0.9901764988899231, 1562.7381591796875, 288.67803955078125, 0.9809725284576416, 1519.2088623046875, 319.51861572265625, 0.9817115068435669, 1634.6278076171875, 342.217529296875, 0.9836386442184448, 1418.3302001953125, 279.4057922363281, 0.9471142292022705, 1646.338134765625, 358.26519775390625, 0.9297391772270203, 1325.931640625, 226.89141845703125, 0.9733067154884338, 1598.325439453125, 297.63629150390625, 0.9334601163864136, 1293.9466552734375, 200.81561279296875, 0.9761046171188354, 1600.4935302734375, 269.3775329589844, 0.8866140842437744, 1577.550048828125, 219.69927978515625, 0.9537069201469421, 1264.168701171875, 173.05087280273438, 0.8561497330665588, 1605.39892578125, 248.33016967773438, 0.9132343530654907, 1289.079345703125, 814.964599609375, 0.6976912021636963, 1566.669921875, 868.74072265625, 0.915327250957489], "score": 3.1643669605255127, "box": [1242.531494140625, 206.0841827392578, 422.6502685546875, 663.3766326904297], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.07567451149225235, 0.07967685163021088, -0.023436248302459717], [0.051458872854709625, 0.09694276005029678, 0.009055305272340775], [0.021847423166036606, -0.10082794725894928, -0.02032475918531418], [-0.32324686646461487, 0.37774091958999634, -0.018691392615437508], [0.12178405374288559, 0.4741126298904419, 0.09783147275447845], [0.04137914255261421, -0.2215285450220108, 0.024787232279777527], [-0.5754772424697876, 0.6806593537330627, -0.12450920045375824], [0.047903575003147125, 0.8730558156967163, 0.05829758197069168], [0.0308279637247324, -0.2618648409843445, 0.061055153608322144], [-0.6765908598899841, 0.7260543704032898, -0.05045096576213837], [0.0807155892252922, 0.9560160040855408, 0.15715527534484863], [0.0572468638420105, -0.47017133235931396, 0.04995767027139664], [-0.016793103888630867, -0.38629716634750366, 0.012567739933729172], [0.11892664432525635, -0.37257617712020874, 0.07304398715496063], [0.024993950501084328, -0.5245755910873413, 0.10387316346168518], [-0.09311775118112564, -0.43216103315353394, -0.0046262070536613464], [0.19775956869125366, -0.3898380994796753, 0.12401437759399414], [-0.3380470871925354, -0.5225759744644165, -0.05566239729523659], [0.2780527174472809, -0.364560067653656, 0.36863940954208374], [-0.5558432340621948, -0.6473570466041565, -0.04946219176054001], [0.14496926963329315, -0.5642126202583313, 0.4662643074989319], [-0.621223509311676, -0.6991780996322632, -0.05730492249131203], [0.15946580469608307, -0.630367636680603, 0.5155051946640015]]}, {"image_id": "295.jpg", "category_id": 1, "keypoints": [1105.1011962890625, 473.27105712890625, 0.9808916449546814, 1096.9739990234375, 501.12213134765625, 0.9881667494773865, 1088.5372314453125, 507.8677062988281, 0.9893173575401306, 1109.906494140625, 432.83709716796875, 0.9911361932754517, 1131.1956787109375, 637.338134765625, 0.9738534688949585, 1004.7189331054688, 624.2772827148438, 0.9779921770095825, 1136.7938232421875, 391.4612731933594, 0.988871157169342, 1136.5704345703125, 774.6887817382812, 0.9159148335456848, 881.390380859375, 724.6161499023438, 0.8877398371696472, 1155.3902587890625, 381.3868408203125, 0.99205482006073, 1168.5660400390625, 792.7760620117188, 0.9338037967681885, 852.1893310546875, 767.1871337890625, 0.8890649080276489, 1189.278564453125, 310.56951904296875, 0.9892539978027344, 1162.56201171875, 325.24151611328125, 0.991848886013031, 1176.9931640625, 352.11151123046875, 0.9901821613311768, 1214.1236572265625, 299.65716552734375, 0.962735652923584, 1165.49462890625, 296.06805419921875, 0.9805665612220764, 1201.7542724609375, 355.8836669921875, 0.9789465069770813, 1194.830810546875, 240.2518310546875, 0.8911550045013428, 1303.679931640625, 403.1392822265625, 0.9627906084060669, 1269.4263916015625, 201.10833740234375, 0.9614437222480774, 1405.213623046875, 416.56494140625, 0.9743579626083374, 1290.5267333984375, 186.75405883789062, 0.9638184309005737, 1440.793701171875, 414.1667175292969, 0.9467385411262512, 1234.8653564453125, 240.01190185546875, 0.9470892548561096, 1312.770751953125, 168.99203491210938, 0.8479034304618835, 1497.03173828125, 406.8842468261719, 0.8552370071411133, 1180.9207763671875, 794.411865234375, 0.9034909605979919, 845.8157958984375, 783.092529296875, 0.8381953835487366], "score": 3.187126636505127, "box": [842.2789306640625, 222.7798309326172, 636.047607421875, 593.0399932861328], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0174221433699131, 0.07139495015144348, 0.08445360511541367], [-0.04692742973566055, 0.08968035876750946, -0.04230479151010513], [0.00926334597170353, -0.10302726924419403, -0.020051095634698868], [0.07757478207349777, 0.4363066852092743, 0.15471497178077698], [-0.27501702308654785, 0.4055349826812744, -0.06190259009599686], [0.08163363486528397, -0.2073678821325302, -0.05627482756972313], [0.09815745800733566, 0.8272210359573364, 0.2527819275856018], [-0.5839830040931702, 0.6589614152908325, -0.00900859385728836], [0.12957032024860382, -0.2331354171037674, -0.06814876943826675], [0.21019549667835236, 0.8918400406837463, 0.28233855962753296], [-0.6448482871055603, 0.7459046840667725, -0.08840005844831467], [0.20220953226089478, -0.41366755962371826, -0.1487981081008911], [0.14377926290035248, -0.37348800897598267, -0.05397928133606911], [0.17422057688236237, -0.3040216565132141, -0.18279370665550232], [0.2773905098438263, -0.4459482431411743, -0.16664919257164001], [0.15427550673484802, -0.45128709077835083, -0.008060891181230545], [0.24254997074604034, -0.2889631986618042, -0.2481362223625183], [0.24852973222732544, -0.62223219871521, 0.16909891366958618], [0.47494032979011536, -0.18115051090717316, -0.2488599419593811], [0.46204274892807007, -0.7374479174613953, 0.22498387098312378], [0.7291014790534973, -0.1482602208852768, -0.23663154244422913], [0.5300542116165161, -0.784223198890686, 0.2372708022594452], [0.8110558390617371, -0.15336479246616364, -0.2505643367767334]]}, {"image_id": "295.jpg", "category_id": 1, "keypoints": [1558.5916748046875, 504.60986328125, 0.9793804883956909, 1524.619873046875, 537.8812866210938, 0.99219810962677, 1581.8985595703125, 544.9029541015625, 0.9883988499641418, 1569.4962158203125, 462.93206787109375, 0.9856621026992798, 1420.90673828125, 662.2073974609375, 0.979225218296051, 1602.3333740234375, 693.8690185546875, 0.969417929649353, 1576.060546875, 412.2353820800781, 0.9872705936431885, 1322.399658203125, 787.6364135742188, 0.8747690916061401, 1576.4822998046875, 846.1780395507812, 0.9189475774765015, 1571.362548828125, 395.85809326171875, 0.9789161086082458, 1281.657470703125, 800.974853515625, 0.761176586151123, 1580.7720947265625, 880.7395629882812, 0.8985834717750549, 1583.950927734375, 311.259521484375, 0.9894623756408691, 1553.5032958984375, 341.37841796875, 0.9839257001876831, 1608.9820556640625, 352.3876037597656, 0.9916363954544067, 1567.9462890625, 291.30401611328125, 0.9793145656585693, 1523.4442138671875, 320.9870300292969, 0.9806360602378845, 1637.7998046875, 346.0872802734375, 0.9851996302604675, 1421.8123779296875, 282.7275085449219, 0.9358271360397339, 1646.955810546875, 360.67962646484375, 0.9257513284683228, 1327.484130859375, 227.78598022460938, 0.9641175866127014, 1589.1224365234375, 307.60491943359375, 0.9351174235343933, 1295.3924560546875, 201.66326904296875, 0.9789920449256897, 1587.256103515625, 281.2115783691406, 0.8901000022888184, 1581.4432373046875, 224.81808471679688, 0.952783465385437, 1262.9443359375, 175.41708374023438, 0.870258629322052, 1587.5968017578125, 264.3628845214844, 0.9298776984214783, 1286.095947265625, 814.5581665039062, 0.7272114753723145, 1560.8951416015625, 878.457763671875, 0.9011101722717285], "score": 3.1684341430664062, "box": [1240.1419677734375, 205.3031768798828, 423.9727783203125, 663.2222747802734], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0755981057882309, 0.07943876087665558, -0.023611698299646378], [0.050607141107320786, 0.09697439521551132, 0.010983608663082123], [0.022685827687382698, -0.1002105325460434, -0.0210784450173378], [-0.323731929063797, 0.37690746784210205, -0.023522768169641495], [0.11698336154222488, 0.47793591022491455, 0.08457188308238983], [0.04488253965973854, -0.2219245284795761, 0.019652578979730606], [-0.5783806443214417, 0.6791722774505615, -0.1239001452922821], [0.041559528559446335, 0.8763606548309326, 0.04678354784846306], [0.039014995098114014, -0.2656337022781372, 0.052750010043382645], [-0.6835087537765503, 0.7214937210083008, -0.0540173314511776], [0.06947153061628342, 0.9667458534240723, 0.14023548364639282], [0.07111001014709473, -0.47231417894363403, 0.035983964800834656], [-0.004120193887501955, -0.38940274715423584, -0.000376824289560318], [0.12950290739536285, -0.3740939497947693, 0.06320612132549286], [0.03742864355444908, -0.5297595262527466, 0.08568105101585388], [-0.0784006267786026, -0.43544071912765503, -0.02381768822669983], [0.20779290795326233, -0.39193272590637207, 0.11437156796455383], [-0.32111531496047974, -0.5173734426498413, -0.09470529854297638], [0.28250858187675476, -0.3698001503944397, 0.3607693314552307], [-0.5380396842956543, -0.6432602405548096, -0.0975380539894104], [0.11217691004276276, -0.5465944409370422, 0.44266676902770996], [-0.6032975912094116, -0.69386225938797, -0.1108754575252533], [0.11781255155801773, -0.6121586561203003, 0.4941953420639038]]}, {"image_id": "296.jpg", "category_id": 1, "keypoints": [1104.831298828125, 474.1938781738281, 0.9804213643074036, 1096.0838623046875, 502.21380615234375, 0.9873999357223511, 1089.3360595703125, 508.5745544433594, 0.9885931015014648, 1110.30419921875, 433.0239562988281, 0.9907394647598267, 1130.7572021484375, 637.566162109375, 0.9734346866607666, 1005.3326416015625, 623.93115234375, 0.9784553050994873, 1137.829345703125, 391.0186767578125, 0.9882331490516663, 1136.77099609375, 776.903076171875, 0.9113088846206665, 879.3450927734375, 726.5267333984375, 0.8514175415039062, 1156.379150390625, 381.0574645996094, 0.9921708703041077, 1170.725830078125, 793.031494140625, 0.9299138784408569, 846.68212890625, 768.0423583984375, 0.8920878767967224, 1190.459716796875, 311.54962158203125, 0.9890722036361694, 1163.1513671875, 325.4713134765625, 0.9919220805168152, 1178.892578125, 352.107177734375, 0.9897507429122925, 1215.3480224609375, 300.29583740234375, 0.9657045006752014, 1166.3897705078125, 297.1898498535156, 0.9816147685050964, 1203.87841796875, 356.3377685546875, 0.9806768894195557, 1193.6629638671875, 239.67486572265625, 0.8865991234779358, 1307.43212890625, 404.886474609375, 0.9613266587257385, 1268.0810546875, 201.79876708984375, 0.9690278768539429, 1406.58837890625, 419.27435302734375, 0.9717552661895752, 1289.856201171875, 186.76898193359375, 0.9727258682250977, 1439.6865234375, 418.77703857421875, 0.9563056230545044, 1238.397705078125, 244.66818237304688, 0.9350159764289856, 1312.5225830078125, 167.63906860351562, 0.8609088659286499, 1497.2503662109375, 411.93292236328125, 0.8886180520057678, 1184.8992919921875, 794.6334228515625, 0.9189616441726685, 841.8187255859375, 781.6868896484375, 0.8391848206520081], "score": 3.1881823539733887, "box": [842.3804931640625, 219.74356079101562, 635.6864013671875, 594.9978332519531], "idx": 1, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.020567405968904495, 0.07291074097156525, 0.08252301067113876], [-0.04490622133016586, 0.08918794989585876, -0.04556560516357422], [0.00968068465590477, -0.1034235805273056, -0.017997117713093758], [0.07623206824064255, 0.43791550397872925, 0.15270744264125824], [-0.2748185694217682, 0.40341827273368835, -0.07727896422147751], [0.08375658839941025, -0.20812706649303436, -0.05030287057161331], [0.09788446873426437, 0.8321368098258972, 0.23914365470409393], [-0.5879175066947937, 0.65818190574646, -0.08248243480920792], [0.13197442889213562, -0.23382852971553802, -0.061410561203956604], [0.20929843187332153, 0.8873566389083862, 0.2857990264892578], [-0.6582768559455872, 0.7456977367401123, -0.15316832065582275], [0.20540593564510345, -0.413387656211853, -0.14376741647720337], [0.14553004503250122, -0.3744533658027649, -0.04927044361829758], [0.17816296219825745, -0.3031013607978821, -0.17643095552921295], [0.2802754342556, -0.4465082287788391, -0.1620822250843048], [0.1570618748664856, -0.452056348323822, -0.003281084820628166], [0.24699756503105164, -0.28677207231521606, -0.24092215299606323], [0.2457968145608902, -0.6283084750175476, 0.17218631505966187], [0.479173868894577, -0.17758183181285858, -0.24445205926895142], [0.46448904275894165, -0.7418527007102966, 0.21048329770565033], [0.7333971858024597, -0.14127324521541595, -0.23473860323429108], [0.5330544114112854, -0.7893638014793396, 0.21506766974925995], [0.8152507543563843, -0.1419210284948349, -0.2505761981010437]]}, {"image_id": "296.jpg", "category_id": 1, "keypoints": [1559.7061767578125, 505.2873840332031, 0.980853259563446, 1525.7188720703125, 538.329833984375, 0.9919087290763855, 1582.526123046875, 545.251708984375, 0.9879635572433472, 1571.0321044921875, 463.6982116699219, 0.9850518703460693, 1420.2205810546875, 662.4152221679688, 0.9787629842758179, 1603.4962158203125, 691.5586547851562, 0.9721664786338806, 1577.45263671875, 412.9354248046875, 0.9873088002204895, 1324.7197265625, 785.5739135742188, 0.8555610179901123, 1579.593017578125, 840.866455078125, 0.9050158858299255, 1572.683349609375, 396.1167907714844, 0.9800975322723389, 1283.64453125, 799.7020874023438, 0.7600024938583374, 1583.5146484375, 872.0687866210938, 0.917553186416626, 1584.901123046875, 311.3443298339844, 0.9897735714912415, 1554.2203369140625, 341.50537109375, 0.9853954315185547, 1609.767333984375, 352.60595703125, 0.9915196895599365, 1569.42724609375, 291.32525634765625, 0.979011595249176, 1524.5867919921875, 321.26934814453125, 0.9796019196510315, 1638.699951171875, 345.95947265625, 0.9847155809402466, 1424.869384765625, 282.35772705078125, 0.9436419010162354, 1652.881103515625, 360.6297302246094, 0.9221318364143372, 1330.410888671875, 229.28680419921875, 0.965061366558075, 1603.3458251953125, 300.135498046875, 0.9319441318511963, 1298.4306640625, 203.7496337890625, 0.9782430529594421, 1603.442138671875, 272.8015441894531, 0.8836526274681091, 1585.39208984375, 224.1793212890625, 0.951351523399353, 1266.1070556640625, 176.55194091796875, 0.8693960309028625, 1608.7259521484375, 254.641845703125, 0.8917275667190552, 1287.5626220703125, 813.2698974609375, 0.7033703327178955, 1563.4375, 864.9948120117188, 0.9263899922370911], "score": 3.165074348449707, "box": [1245.2081298828125, 206.64321899414062, 419.9482421875, 662.8746643066406], "idx": 2, "pred_xyz_jts": [[0.0, 0.0, 0.0], [-0.0759856104850769, 0.07906349003314972, -0.024350959807634354], [0.04999828338623047, 0.09741824120283127, 0.011416662484407425], [0.023562796413898468, -0.10032200813293457, -0.02096089906990528], [-0.33265823125839233, 0.3691849112510681, -0.028279541060328484], [0.12089090049266815, 0.47466564178466797, 0.09898506104946136], [0.04587354138493538, -0.2218666672706604, 0.021008748561143875], [-0.5851843953132629, 0.6711002588272095, -0.1356278359889984], [0.04719052463769913, 0.872474730014801, 0.05044640973210335], [0.0365927517414093, -0.2637227177619934, 0.05592527613043785], [-0.6901534199714661, 0.7151516675949097, -0.06630440056324005], [0.07559516280889511, 0.9566593766212463, 0.14960968494415283], [0.07055428624153137, -0.47038257122039795, 0.03735307231545448], [-0.005820992402732372, -0.3877332806587219, 0.0019534192979335785], [0.12834759056568146, -0.371634304523468, 0.06513717770576477], [0.03682626038789749, -0.5293870568275452, 0.0853191614151001], [-0.08631513267755508, -0.4233832359313965, -0.019817069172859192], [0.20814861357212067, -0.39054161310195923, 0.11396659910678864], [-0.32929718494415283, -0.5090590715408325, -0.0857897400856018], [0.29487407207489014, -0.3679896593093872, 0.35655519366264343], [-0.5479579567909241, -0.6322746276855469, -0.09080792963504791], [0.1569903939962387, -0.5661051869392395, 0.4503774344921112], [-0.6122846603393555, -0.6820432543754578, -0.11092853546142578], [0.16714335978031158, -0.6324934363365173, 0.5003471374511719]]}] \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/INSTALL.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/INSTALL.md deleted file mode 100644 index 9e1dbd8..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/INSTALL.md +++ /dev/null @@ -1,99 +0,0 @@ -# AlphaPose Installation -The AlphaPose installation can be tricky and may fail at different stages. To help avoid problems, I documented the installation process using Docker containers. Here's a simple tutorial on how I successfully installed AlphaPose on a Debian-based Linux OS (Ubuntu 22.04) with an NVIDIA RTX 4070 8GB and CUDA 12.2, using a Docker container to ensure compatibility. - -## Set Up - -First, ensure your graphics card is accessible. Open the terminal and run the command `nvidia-smi`. If this command shows the status of your graphics card and CUDA version, you're ready to proceed. If not, refer to [online tutorials](https://www.cherryservers.com/blog/install-cuda-ubuntu) or the [official documentation](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/) to properly install CUDA and `nvcc`. - -Next, install Docker. There are many [online tutorials](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04) to guide you through this. You also need to install the NVIDIA container toolkit to use your GPU in a Docker container. Follow the [official documentation](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) for this installation. - -With CUDA and Docker set up, we start the installation process for AlphaPose. Open your terminal and let's start running some commands: - -``` -# Pulling PyTorch image from docker hub -docker pull pytorch/pytorch:2.3.0-cuda12.1-cudnn8-devel - -# Find the IMAGE ID -docker images - -# And run your container allowing for GPU usage -docker run --gpus all -it - -# Updates the list of available packages -apt update - -# Installing system dependencies -apt install libyaml-dev -apt install locales -export LANG=C.UTF-8 - -# Installing python dependencies with correct and compatible versions -pip install torchaudio==2.3.0+cu121 -f https://download.pytorch.org/whl/torchaudio/ -pip install cython -pip install chumpy -pip install easydict munkres natsort opencv-python pyyaml scipy tensorboardx terminaltables timm==0.1.20 tqdm visdom jinja2 typeguard -``` - -Now we'll adjust the `setup.py` file a little bit to make sure we install `halpecocotools` with no compatibility problems. First run `pip install git+https://github.com/Ambrosiussen/HalpeCOCOAPI.git#subdirectory=PythonAPI`. Then install nano `apt install nano` and use it `nano setup.py` to update the function `get_install_requires()` by removing `halpecocotools` from the `install_requires` list, ending up with: - -``` -def get_install_requires(): - install_requires = [ - 'six', 'terminaltables', 'scipy', - 'opencv-python', 'matplotlib', 'visdom', - 'tqdm', 'tensorboardx', 'easydict', - 'pyyaml', - 'torch>=1.1.0', 'torchvision>=0.3.0', - 'munkres', 'timm==0.1.20', 'natsort' - ] -``` - -And now we proceed with the installations: - -``` -# Installing visualization dependencies -conda install -c fvcore -c iopath -c conda-forge fvcore iopath -conda install -c bottler nvidiacub - -# Installing 3D libraries -pip install --extra-index-url https://miropsota.github.io/torch_packages_builder pytorch3d==0.7.6+pt2.3.0cu121 -pip install pytorch_triton==3.0.0 -f https://download.pytorch.org/whl/nightly/pytorch-triton/ - -# Fixing 'numpy' potential incompatibilites with 'cython' -pip install "numpy<1.24" - -# Installing git and cloning repo -apt install git -git clone https://github.com/MVIG-SJTU/AlphaPose.git -cd AlphaPose - -# Building the package -python setup.py build develop -``` - -At this point, everything should already be properly installed. All you have to do now is download some models and put them in your container with `docker cp` to finally use the system. - -- [Download the object detection model](https://drive.google.com/file/d/1D47msNOOiJKvPOXlnpyzdKA3k6E97NTC/view) and place it into `AlphaPose/detector/yolo/data/` - -- [Download human model for tracking](https://drive.google.com/file/d/1myNKfr2cXqiHZVXaaG8ZAq_U2UpeOLfG/view) and place it into `AlphaPose/trackers/weights/`. Rename it to `osnet_ain_x1_0_msmt17_256x128_amsgrad_ep50_lr0.0015_coslr_b64_fb10_softmax_labsmth_flip_jitter.pth` - -- For 3D pose extraction and mesh reconstruction, [download human model](https://huggingface.co/spaces/brjathu/HMR2.0/blob/e5201da358ccbc04f4a5c4450a302fcb9de571dd/data/smpl/basicModel_neutral_lbs_10_207_0_v1.0.0.pkl) and place it into `AlphaPose/model_files/` - -- Download any pose extraction model you want to run from the [AlphaPose's model zoo](https://github.com/MVIG-SJTU/AlphaPose/blob/master/docs/MODEL_ZOO.md) and place them into `AlphaPose/pretrained_models/`. - -## Running Models - -Once everything is set up, you just need to run your selected model. Here's an example of how to do it: - -``` -# Go to AlphaPose root -cd AlphaPose - -# Run a model for 2D inference -python scripts/demo_inference.py --cfg configs/smpl/256x192_adam_lr1e-3-res34_smpl_24_3d_base_2x_mix.yaml --checkpoint pretrained_models/pretrained_w_cam.pth --indir --outdir --save_img - -# Or run the model for 3D inference -python scripts/demo_3d_inference.py --cfg configs/smpl/256x192_adam_lr1e-3-res34_smpl_24_3d_base_2x_mix.yaml --checkpoint pretrained_models/pretrained_w_cam.pth --video --outdir --save_img -``` - -Finally if you run into multi-processing problems with inference, making your program get stuck, [this issue](https://github.com/MVIG-SJTU/AlphaPose/pull/1064) might help. \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/README.md b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/README.md deleted file mode 100644 index 981262a..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/README.md +++ /dev/null @@ -1,206 +0,0 @@ -# Pose Extraction Pipeline - -A key part of any artificial intelligence project is gathering data. That's why we spent a few weeks testing different open-source pose extraction tools to find the best one for our needs. This section highlights the main tools we tested, with descriptions and comparisons, leading to our final choice. It also includes step-by-step instructions on how to install and use the selected tool, so you can easily set it up yourself. - -Before diving into the technical details, we want to extend special thanks to [Ilya Vidrin](https://www.ilyavidrin.com/) and his dance team for providing the choreography used in this project. The images shown here come directly from their performances. - -## Model Exploration - -The first models we explored were for 2D pose extraction. We primarily used [OpenPose](https://github.com/CMU-Perceptual-Computing-Lab/openpose) and [AlphaPose](https://github.com/MVIG-SJTU/AlphaPose/tree/master). OpenPose had many installation and setup issues, so we chose AlphaPose instead. AlphaPose is also a newer, with more modern models and better pose estimation results. - -We tested all the models within [AlphaPose model zoo](https://github.com/MVIG-SJTU/AlphaPose/blob/master/docs/MODEL_ZOO.md) and narrowed it down to four final options, as shown in the figure below. These models represent some of the best average results from the repository and pretty much cover all the different possible outputs one can get. From left to right, the models are: Fast Pose (DCN) from the MSCOCO dataset, Fast Pose (DCN) Combined Loss from the COCO WholeBody dataset, Fast Pose from the Halpe dataset with 26 keypoints, and Fast Pose (DCN) Combined 10 Hand Weight Loss from the Halpe dataset with 136 keypoints. - -
- -
- - - - -
- Visualizing pose extractions coming from different models from AlphaPose.
- Visualizing pose extractions coming from different models from AlphaPose. From left to right, the models are: Fast Pose (DCN) from the MSCOCO dataset, Fast Pose (DCN) Combined Loss from the COCO WholeBody dataset, Fast Pose from the Halpe dataset with 26 keypoints, and Fast Pose (DCN) Combined 10 Hand Weight Loss from the Halpe dataset with 136 keypoints. -
-
- -
- -To more accurately represent the body, having clear markers for the pelvis and torso, we decided to use the Halpe models. To evaluate their quality without any preprocessing, we created the animations below. - -
- -
- - - - - -
- Visualizing Halpe 26 keypoints poses
- Visualizing poses extracted using the model trained on Halpe dataset with 26 keypoints. -
- Visualizing Halpe 136 keypoints poses
- Visualizing poses extracted using the model trained on Halpe dataset with 136 keypoints. -
-
- -
- -However, it is clear that both models require further processing for final use. This is because they struggle with some frames, losing track of one or both dancers, or repeating poses and placing the dancers in the same position. Additionally, the joints appear unstable, showing significant local vibration and resulting in very shaky poses. While the models promise better results when a tracking pipeline is added, we found the improvements to be minimal, as shown in the GIFs below. Interpolation between frames would still be needed to achieve more stable pose extraction. - -
- -
-

Studying tracking improvements for Halpe 26 keypoints.

- - - - - -
- Visualizing Halpe 26 no tracking
- Model with no tracking. -
- Visualizing Halpe 26 with tracking
- Model with tracking. -
-
- -
- -
-

Studying tracking improvements for Halpe 136 keypoints.

- - - - - -
- Visualizing Halpe 136 no tracking
- Model with no tracking. -
- Visualizing Halpe 136 with tracking
- Model with tracking. -
-
- -
- -The 2D processing pipelines though were not fully implemented and won't be discussed here because we decided to use 3D models instead. 3D pose extraction adds crucial information for generating choreography, especially for pairs of dancers. It captures the richness of each dancer's movements and the subtleties of their interactions in the full space, which would be lost if we reduced the dimensionality. - -With this in mind, we explored two main 3D pose extraction models: [VIBE](https://github.com/mkocabas/VIBE) and [HybrIK](https://github.com/Jeff-sjtu/HybrIK) (the latter being part of the AlphaPose pipeline). The GIFs below show the pose extraction and mesh reconstructions performed by each model. - -
- -
-

VIBE 3D pose extraction.

- - - - - -
- Joints for VIBE 3D pose extraction
- Joints from 3D pose extraction coming from VIBE. -
- Mesh for VIBE 3D pose extraction
- Mesh reconstruction from 3D pose extraction coming from VIBE. -
-
- -
- -
-

HybrIk 3D pose extraction.

- - - - - -
- Joints for HybrIk 3D pose extraction
- Joints from 3D pose extraction coming from HybrIk. -
- Mesh for HybrIk 3D pose extraction
- Mesh reconstruction from 3D pose extraction coming from HybrIk. -
-
- -
- -It became clear to us, including from the GIFs above, that the model integrated with AlphaPose performs much better than VIBE. It excels both in identifying instances and in extracting the poses accurately. - -Therefore, the rest of this document will focus on using AlphaPose for 3D pose extraction. We will provide a step-by-step guide for installation and setup. The examples shown will better represent the actual scenario, as AlphaPose supports multi-instance pose extraction, allowing us to extract poses for two dancers simultaneously. This is an improvement over HybrIK, which only handles single-person pose extraction, but was used in this section for easier visualization and pose extraction capabilities assessment. - -## Set Up - -Refer to the [installation document](https://github.com/Luizerko/ai_choreo/blob/master/pose_extraction/INSTALL.md) to set up your own version of the project. - -## Extracting Poses - -Once the pipeline is chosen, the next important step is processing the data. Selecting a method doesn't mean the data is already clean and ready to use. The GIF below shows some common issues, and this section explains how we resolved them to get to the final the data that will be used as input to our models. - -
- -
- - - - -
- Visualizing mesh coming directly from AlphaPose.
- Visualizing mesh reconstruction coming directly from AlphaPose, with no preprocessing. -
-
- -
- -The problems addressed were: - -1. **Missing frames:** When a frame was lost because no pose was identified, we replicated the poses from the previous frame. This solution worked well due to the small number of missed frames and the high sampling rate (approximately 30 FPS), which prevented noticeable impacts on movement. - -2. **Frames with only one person:** When the model captured only one person in a frame, we compared the sum of Euclidean distances between corresponding joints for the identified person and the two people in the previous frame. We then added the person from the previous frame with the greater distance to the current frame (assuming this was the non-captured person). - -3. **Frames with more than two people:** When the model identified more than two people in a frame, we retained the two people with the highest confidence scores and removed the rest, as we know in advance that our data only contains two people per frame. - -4. **Index matching:** When the model lost track of people, swapping their indices back and forth over time, we scanned all frames and used the aforementioned sum of Euclidean distances between corresponding joints to correct the inversions. - -5. **Vertex jitter:** When the model caused local inaccuracies that varied the positions of vertices beyond the actual movement, making a jitter effect, we tested a few different methods and ended up using a 3D DCT low-pass filter (25% threshold) to smooth the data. - -In the grid below, you can see the original video, the motion extraction without processing, and the final result after applying our pipeline. - -
- -
-

Pose extraction pipeline evaluation.

- - - - - - - - - - -
- Visualizing pose extraction with minimum processing
- Visualizing pose extraction with minimum processing (missing frames and missing/additional people). -
- Visualizing original video.
- Visualizing original video. -
- Visualizing pose extraction with full processing pipeline
- Visualizing pose extraction with full processing pipeline. -
-
- -
- -## Footnotes - -It is worth noting that for the final pipeline, two minor adjustments were made that were not previously mentioned: - -1. By default, AlphaPose outputs data with 24 joints per person, but it also computes an output with 29 joints. We adjusted a few lines of the original pipeline to output the 29 joints data instead of 24, providing a slightly richer representation. - -2. Additionally, AlphaPose normalizes the position of its instances by centering the bodies at the coordinate (0, 0, 0) in the global frame. While this is generally beneficial, our project aims to study the interaction between the dancers' bodies. Therefore, we removed a normalization line within `Simple3DPoseBaseSMPLCam.forward()` to ensure the dancers' positions are accurately preserved. \ No newline at end of file diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/0210-0220.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/0210-0220.gif deleted file mode 100644 index e3cfe41..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/0210-0220.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/2d_halpe136_joints.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/2d_halpe136_joints.gif deleted file mode 100644 index bcb4376..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/2d_halpe136_joints.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/2d_halpe26_joints.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/2d_halpe26_joints.gif deleted file mode 100644 index b289230..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/2d_halpe26_joints.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_hybrik_joints.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_hybrik_joints.gif deleted file mode 100644 index a97a257..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_hybrik_joints.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_hybrik_video.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_hybrik_video.gif deleted file mode 100644 index 4ce3374..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_hybrik_video.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_vibe_joints.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_vibe_joints.gif deleted file mode 100644 index 2420427..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_vibe_joints.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_vibe_video.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_vibe_video.gif deleted file mode 100644 index 91710eb..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/3d_vibe_video.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_136_no_tracking.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_136_no_tracking.gif deleted file mode 100644 index 0310cea..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_136_no_tracking.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_136_tracking.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_136_tracking.gif deleted file mode 100644 index b0cea5f..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_136_tracking.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_26_no_tracking.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_26_no_tracking.gif deleted file mode 100644 index 89064e0..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_26_no_tracking.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_26_tracking.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_26_tracking.gif deleted file mode 100644 index cbf2b73..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/halpe_26_tracking.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/mesh_video.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/mesh_video.gif deleted file mode 100644 index 3f259f9..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/mesh_video.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/model_coverage.png b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/model_coverage.png deleted file mode 100644 index 7e844f3..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/model_coverage.png and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/no_processing.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/no_processing.gif deleted file mode 100644 index 882daa4..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/no_processing.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/processing.gif b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/processing.gif deleted file mode 100644 index fa30f2c..0000000 Binary files a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/assets/processing.gif and /dev/null differ diff --git a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/data_processing.ipynb b/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/data_processing.ipynb deleted file mode 100644 index 188e993..0000000 --- a/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski/pose_extraction/data_processing.ipynb +++ /dev/null @@ -1,518 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "36064a28-f020-4d6f-8c5a-3e8ba396b75e", - "metadata": {}, - "source": [ - "## Loading and checking data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "db2bc90d-98f3-41c8-b061-e7a23b6a77d4", - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "import json\n", - "\n", - "%matplotlib inline\n", - "\n", - "# Reading output of AlphaPose\n", - "with open('3d_pose_extraction/raw_ilya_hannah_dyads.json') as f:\n", - " output = json.load(f)\n", - "print(output[0].keys())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "cb7f5eb4-9e5b-4763-93b7-94c7ec30f598", - "metadata": {}, - "outputs": [], - "source": [ - "# Checking the information for every frame\n", - "poses_per_frame = {}\n", - "for frame in output:\n", - " image_id = int(frame['image_id'].split('.')[0])\n", - " \n", - " try:\n", - " poses_per_frame[image_id] += 1\n", - " except:\n", - " poses_per_frame[image_id] = 1\n", - "\n", - "# Are there frames in which no one is identified?\n", - "missing_frames = []\n", - "for k in [*poses_per_frame.keys()][:-1]:\n", - " if poses_per_frame.get(k+1) is None:\n", - " missing_frames.append(k+1)\n", - "print('Missing frames: {}\\n'.format(missing_frames))\n", - "\n", - "print('Possible number of people per frame: {}\\n'.format(np.unique([*poses_per_frame.values()])))\n", - "\n", - "# For some frames, either more than 2 people are identified or only 1 person is identified\n", - "less_instances = []\n", - "more_instances = []\n", - "for k, v in poses_per_frame.items():\n", - " if v > 2:\n", - " more_instances.append(k)\n", - " elif v < 2:\n", - " less_instances.append(k)\n", - "print('Frames with 1 person: {}\\n'.format(less_instances))\n", - "print('Frames with more than 2 people: {}'.format(more_instances))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3c168291-7855-4192-b2c2-00dfaacdf300", - "metadata": {}, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import Axes3D\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML\n", - "\n", - "# Visualizing 3 dancers on a frame\n", - "fig = plt.figure(figsize=(12, 6))\n", - "axes = []\n", - "color = ['red', 'blue', 'green']\n", - "skeleton = [(0, 1), (0, 2), (0, 3), (1, 4), (2, 5), (3, 6), (4, 7), (5, 8), (6, 9), (7, 10),\n", - " (8, 11), (9, 12), (9, 13), (9, 14), (12, 15), (13, 16), (14, 17), (16, 18), (17, 19), \n", - " (18, 20), (19, 21), (20, 22), (21, 23)]\n", - "\n", - "indexes = [6, 7, 8]\n", - "for i in range(len(indexes)):\n", - " subplot_number = 131+i\n", - " axes.append(fig.add_subplot(subplot_number, projection=\"3d\"))\n", - " axes[i].set_xlim([-1, 1])\n", - " axes[i].set_ylim([-1, 1])\n", - " axes[i].set_zlim([-1, 1])\n", - "\n", - " scatter_points = np.array(output[indexes[i]]['pred_xyz_jts'])\n", - " axes[i].scatter(scatter_points[:, 2], scatter_points[:, 0], -scatter_points[:, 1], color=color[i])\n", - "\n", - " for (start, end) in skeleton:\n", - " xs = [scatter_points[start, 2], scatter_points[end, 2]]\n", - " ys = [scatter_points[start, 0], scatter_points[end, 0]]\n", - " zs = [-scatter_points[start, 1], -scatter_points[end, 1]]\n", - " axes[i].plot(xs, ys, zs, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "950102da-5dfa-4c55-a9dd-23c02fac8b4d", - "metadata": {}, - "source": [ - "## Handling missing frames, single person frames and 3 people frames" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "900e22dc-4f8d-4f4f-a1a0-432b998135e1", - "metadata": {}, - "outputs": [], - "source": [ - "# Processing frames with more or less than 2 people\n", - "filtered_output = output.copy()\n", - "wrong_instances = sorted(set(more_instances).union(set(less_instances)))\n", - "\n", - "for i in wrong_instances:\n", - " # Filtering frames with more than 2 people\n", - " if poses_per_frame[i] > 2:\n", - " scores = []\n", - " for j in range(poses_per_frame[i]):\n", - " scores.append(filtered_output[i*2+j]['score'])\n", - " indices = np.argsort(scores)[:poses_per_frame[i]-2]\n", - " \n", - " if len(indices) > 1:\n", - " indices = -np.sort(-indices)\n", - "\n", - " for z in indices:\n", - " filtered_output.pop(i*2+z)\n", - "\n", - " # Enriching frames with only 1 person\n", - " elif poses_per_frame[i] < 2:\n", - " only_person = np.array(filtered_output[i*2]['pred_xyz_jts'])\n", - " to_compare_1 = np.array(filtered_output[i*2-1]['pred_xyz_jts'])\n", - " to_compare_2 = np.array(filtered_output[i*2-2]['pred_xyz_jts'])\n", - " \n", - " distance_1 = np.sum(np.linalg.norm(only_person - to_compare_1))\n", - " distance_2 = np.sum(np.linalg.norm(only_person - to_compare_2))\n", - "\n", - " if distance_1 > distance_2:\n", - " new_data = filtered_output[i*2-1].copy()\n", - " new_data['image_id'] = filtered_output[i*2]['image_id']\n", - " filtered_output.insert(i*2+1, new_data)\n", - " else:\n", - " new_data = filtered_output[i*2-2].copy()\n", - " new_data['image_id'] = filtered_output[i*2]['image_id']\n", - " filtered_output.insert(i*2, new_data)\n", - " \n", - "filtered_poses_per_frame = {}\n", - "for frame in filtered_output:\n", - " image_id = int(frame['image_id'].split('.')[0])\n", - " \n", - " try:\n", - " filtered_poses_per_frame[image_id] += 1\n", - " except:\n", - " filtered_poses_per_frame[image_id] = 1\n", - "print('Possible number of people per frame: {}\\n'.format(np.unique([*filtered_poses_per_frame.values()])))" - ] - }, - { - "cell_type": "markdown", - "id": "5e117bb9-2fe7-4d15-9622-c66de20bb434", - "metadata": {}, - "source": [ - "## First visualizations" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "b9eec897-db0f-4fd6-86aa-16939d6b2224", - "metadata": {}, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import Axes3D\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML\n", - "\n", - "from matplotlib import rcParams\n", - "rcParams['animation.embed_limit'] = 100\n", - "\n", - "def animation(filtered_output, np_flag=False, interval=100):\n", - " fig = plt.figure(figsize=(12, 6))\n", - " \n", - " ax1 = fig.add_subplot(121, projection=\"3d\")\n", - " ax1.set_xlim([-1, 1])\n", - " ax1.set_ylim([-1, 1])\n", - " ax1.set_zlim([-1, 1])\n", - " scatt1 = ax1.scatter([], [], [], color='red')\n", - " lines1 = [ax1.plot([], [], [], 'gray')[0] for _ in skeleton]\n", - " \n", - " ax2 = fig.add_subplot(122, projection=\"3d\")\n", - " ax2.set_xlim([-1, 1])\n", - " ax2.set_ylim([-1, 1])\n", - " ax2.set_zlim([-1, 1])\n", - " scatt2 = ax2.scatter([], [], [], color='blue')\n", - " lines2 = [ax2.plot([], [], [], 'gray')[0] for _ in skeleton]\n", - "\n", - " if np_flag:\n", - " person_1_poses = filtered_output[0::2, :, :]\n", - " person_2_poses = filtered_output[1::2, :, :]\n", - " \n", - " else:\n", - " person_1_poses = []\n", - " person_2_poses = []\n", - " for i, frame in enumerate(filtered_output):\n", - " if i%2 == 0:\n", - " person_1_poses.append(frame['pred_xyz_jts'])\n", - " else:\n", - " person_2_poses.append(frame['pred_xyz_jts'])\n", - " person_1_poses = np.array(person_1_poses)\n", - " person_2_poses = np.array(person_2_poses)\n", - " \n", - " poses_1_x = person_1_poses[:, :, 2]\n", - " poses_1_y = person_1_poses[:, :, 0]\n", - " poses_1_z = -person_1_poses[:, :, 1]\n", - " \n", - " poses_2_x = person_2_poses[:, :, 2]\n", - " poses_2_y = person_2_poses[:, :, 0]\n", - " poses_2_z = -person_2_poses[:, :, 1]\n", - " \n", - " def update(frame):\n", - " \n", - " scatt1._offsets3d = (poses_1_x[frame], poses_1_y[frame], poses_1_z[frame])\n", - " scatt2._offsets3d = (poses_2_x[frame], poses_2_y[frame], poses_2_z[frame])\n", - " \n", - " for line, (start, end) in zip(lines1, skeleton):\n", - " line.set_data([poses_1_x[frame, start], poses_1_x[frame, end]], [poses_1_y[frame, start], poses_1_y[frame, end]])\n", - " line.set_3d_properties([poses_1_z[frame, start], poses_1_z[frame, end]])\n", - " \n", - " for line, (start, end) in zip(lines2, skeleton):\n", - " line.set_data([poses_2_x[frame, start], poses_2_x[frame, end]], [poses_2_y[frame, start], poses_2_y[frame, end]])\n", - " line.set_3d_properties([poses_2_z[frame, start], poses_2_z[frame, end]])\n", - " \n", - " return scatt1, scatt2, *lines1, *lines2\n", - "\n", - " plt.close(fig)\n", - " return FuncAnimation(fig, update, frames=range(len(poses_1_x)), interval=interval, blit=False)\n", - "\n", - "ani = animation(filtered_output[:200])\n", - "HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "markdown", - "id": "566a954b-f862-4533-af60-2a2f0124bee7", - "metadata": {}, - "source": [ - "## Fixing dancer indices" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "2c2bcf77-a4f5-4cc7-ae26-adc2b5440e13", - "metadata": {}, - "outputs": [], - "source": [ - "# From the animation above, we can see the dancers sometimes exchange their positions\n", - "# This phenomenom, however, is not captured by the indices as the simple study below show\n", - "for i in range(int(len(filtered_output)/2)-1):\n", - " if filtered_output[i*2]['idx'] > filtered_output[i*2+1]['idx']:\n", - " print('Captured Inversion!')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "24e92f6e-0d8d-4607-bd07-bdc28dd6a89f", - "metadata": {}, - "outputs": [], - "source": [ - "# Matching instances in throughout the entirety of the video\n", - "for i in range(int(len(filtered_output)/2)-1):\n", - " person_1 = np.array(filtered_output[i*2]['pred_xyz_jts'])\n", - " to_compare_1 = np.array(filtered_output[(i+1)*2]['pred_xyz_jts'])\n", - " to_compare_2 = np.array(filtered_output[(i+1)*2+1]['pred_xyz_jts'])\n", - " \n", - " distance_1 = np.sum(np.linalg.norm(person_1 - to_compare_1))\n", - " distance_2 = np.sum(np.linalg.norm(person_1 - to_compare_2))\n", - "\n", - " if distance_1 > distance_2:\n", - " change_order_aux = filtered_output[(i+1)*2+1].copy()\n", - " filtered_output[(i+1)*2+1] = filtered_output[(i+1)*2]\n", - " filtered_output[(i+1)*2] = change_order_aux\n", - "\n", - " filtered_output[(i+1)*2]['idx'] = 1\n", - " filtered_output[(i+1)*2+1]['idx'] = 2\n", - "\n", - "# ani = animation(filtered_output)\n", - "# HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "markdown", - "id": "4bbedcec-df54-4489-b2a6-2abfa948a278", - "metadata": {}, - "source": [ - "## Smoothing data to handle jitter" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3d2b304c-264d-4744-8a6a-dce4cf647e03", - "metadata": {}, - "outputs": [], - "source": [ - "# Smoothing data to handle the jitter\n", - "from scipy.signal import savgol_filter\n", - "\n", - "person_1_poses = []\n", - "person_2_poses = []\n", - "for i, frame in enumerate(filtered_output):\n", - " if i%2 == 0:\n", - " person_1_poses.append(frame['pred_xyz_jts'])\n", - " else:\n", - " person_2_poses.append(frame['pred_xyz_jts'])\n", - "person_1_poses = np.array(person_1_poses)\n", - "person_2_poses = np.array(person_2_poses)\n", - "\n", - "# Savitzky-Golay filter\n", - "def savgol_smoothness(poses, wl=12, po=3):\n", - " smoothed_data = np.zeros_like(poses)\n", - " \n", - " for joint in range(poses.shape[1]):\n", - " for axis in range(3):\n", - " smoothed_data[:, joint, axis] = savgol_filter(poses[:, joint, axis], wl, po)\n", - "\n", - " return smoothed_data\n", - "\n", - "smoothed_data_1 = savgol_smoothness(person_1_poses)\n", - "smoothed_data_2 = savgol_smoothness(person_2_poses)\n", - "\n", - "interleaved_array = np.zeros((2*smoothed_data_1.shape[0], smoothed_data_1.shape[1], smoothed_data_1.shape[2]))\n", - "interleaved_array[0::2] = smoothed_data_1\n", - "interleaved_array[1::2] = smoothed_data_2\n", - "\n", - "# print(\"###############################################################################################\")\n", - "# print(\"#################################### Savitzky-Golay Filter ####################################\")\n", - "# print(\"###############################################################################################\")\n", - "# ani = animation(interleaved_array, np_flag=True)\n", - "# HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a0d0819b-3d6d-4106-afd7-b64b103156f6", - "metadata": {}, - "outputs": [], - "source": [ - "from scipy.fftpack import dct, idct\n", - "\n", - "# Discrete cosine transform\n", - "def dct_smoothness(poses, threshold=0.25):\n", - " smoothed_data = np.zeros_like(poses)\n", - " \n", - " for joint in range(poses.shape[1]):\n", - " for axis in range(3):\n", - " frequency_data = dct(poses[:, joint, axis], norm='ortho')\n", - " \n", - " frequency_data[int(threshold*len(frequency_data)):] = 0\n", - " \n", - " smoothed_data[:, joint, axis] = idct(frequency_data, norm='ortho')\n", - "\n", - " return smoothed_data\n", - "\n", - "smoothed_data_1 = dct_smoothness(person_1_poses)\n", - "smoothed_data_2 = dct_smoothness(person_2_poses)\n", - "interleaved_array[0::2] = smoothed_data_1\n", - "interleaved_array[1::2] = smoothed_data_2\n", - "\n", - "# print(\"###################################################################################################\")\n", - "# print(\"#################################### Discrete Cosine Transform ####################################\")\n", - "# print(\"###################################################################################################\")\n", - "# ani = animation(interleaved_array, np_flag=True)\n", - "# HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f8b1880c-940e-4b74-8c56-e252452a422b", - "metadata": {}, - "outputs": [], - "source": [ - "# 3D discrete cosine transform\n", - "def dct_3d_smoothness(poses, threshold=0.25):\n", - " smoothed_data = np.zeros_like(poses)\n", - " \n", - " for joint in range(poses.shape[1]):\n", - " frequency_data = dct(poses[:, joint, :], axis=0, norm='ortho')\n", - " \n", - " frequency_data[int(threshold*len(frequency_data)):] = 0\n", - " \n", - " smoothed_data[:, joint, :] = idct(frequency_data, axis=0, norm='ortho')\n", - "\n", - " return smoothed_data\n", - " \n", - "smoothed_data_1 = dct_3d_smoothness(person_1_poses)\n", - "smoothed_data_2 = dct_3d_smoothness(person_2_poses)\n", - "interleaved_array[0::2] = smoothed_data_1\n", - "interleaved_array[1::2] = smoothed_data_2\n", - "\n", - "print(\"######################################################################################################\")\n", - "print(\"#################################### 3D Discrete Cosine Transform ####################################\")\n", - "print(\"######################################################################################################\")\n", - "ani = animation(interleaved_array[:200], np_flag=True)\n", - "HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "markdown", - "id": "39d8cb09-aef2-4f14-ac8d-e4255fc5f761", - "metadata": {}, - "source": [ - "# Evaluating final poses" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1688e761-a085-4c1c-9aa0-9818ab871d5d", - "metadata": {}, - "outputs": [], - "source": [ - "# Comparing the original video, the initial mesh reconstuction and the extracted pose after full processing pipeline\n", - "from IPython.display import Video, display\n", - "\n", - "video_1_path = './ilya_poses/0210-0220.mp4'\n", - "video_2_path = './3d_pose_extraction/vis/mesh_video.mp4'\n", - "# Video(video_path, width=640, height=480, embed=True)\n", - "\n", - "video_1_html = f\"\"\"\n", - "\n", - "\"\"\"\n", - "\n", - "video_2_html = f\"\"\"\n", - "\n", - "\"\"\"\n", - "\n", - "ani = animation(interleaved_array, np_flag=True, interval=35)\n", - "ani_html = ani.to_jshtml()\n", - "\n", - "display(HTML(f\"\"\"\n", - "
\n", - "
\n", - " {video_1_html}\n", - "
\n", - "
\n", - " {video_2_html}\n", - "
\n", - "
\n", - "
\n", - " {ani_html}\n", - "
\n", - "\"\"\"))" - ] - }, - { - "cell_type": "markdown", - "id": "1371e997-8185-46e9-bc69-445616859277", - "metadata": {}, - "source": [ - "# Saving data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "26882a2f-e844-4ca5-85b8-70cf45df48dc", - "metadata": {}, - "outputs": [], - "source": [ - "# Saving processed data to use on the model\n", - "np.save('../model/data/pose_extraction_img_9085', interleaved_array)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.13" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/ChoreoAI_Zixuan_Wang/.gitignore b/ChoreoAI_Zixuan_Wang/.gitignore deleted file mode 100644 index 9781035..0000000 --- a/ChoreoAI_Zixuan_Wang/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.idea/ -__pycache__/ -log/ \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/README.md b/ChoreoAI_Zixuan_Wang/README.md deleted file mode 100644 index fed5335..0000000 --- a/ChoreoAI_Zixuan_Wang/README.md +++ /dev/null @@ -1,80 +0,0 @@ -## Welcome to ChoreoAI! - -
- -
- -Hi guys! Welcome to my repository for [Google Summer of Code 2024 - AI-Generated Choreography - from Solos to Duets](https://humanai.foundation/gsoc/2024/proposal_ChoreoAI1.html). This project focuses on leveraging cutting-edge AI technologies to innovate the way choreographies are created, focusing particularly on duets. This is my [Contributor Profile of GSoC](https://summerofcode.withgoogle.com/programs/2024/projects/PEvVr15z). To learn more about the developmental insights, check out my [blog post](https://wang-zixuan.github.io/posts/2024/gsoc_2024). - -For a hands-on experience, dive into my [Google Colab Notebook](https://colab.research.google.com/drive/1_UhiZ3LczwTCqnzfObKShWeaYSLlvwzW?usp=sharing) which provides an interactive demonstration of the network. - -I also would like to express my heartfelt thank you to my incredible mentors [Mariel Pettee](https://marielpettee.com/) and [Ilya Vidrin](https://www.ilyavidrin.com/) for their invaluable guidance, and my colleague, [Luis Zerkowski](https://github.com/Luizerko), for his collaborative efforts and insights from his [project](https://github.com/humanai-foundation/ChoreoAI/tree/main/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski). - -## Goals -### Problem Addressed -This project aims at developing AI-generated choreography for duets. It outlines a novel approach leveraging Transformer and Variational Autoencoder to analyze and generate dance movements, focusing on creating authentic dance material that reflect the intricate dynamics between dancers. - -### Solution Approach -The project uses **Probability-and-Attention-based Variational Autoencoder** to generate dancing data. - -The comprehensive solution plan involves: -- Understand key relationships between parts of the body of each dancer through a dedicated VAE containing self-attention layers and LSTM layers -- Design a Duet VAE to learn key interaction between two dancers -- Propose a probability-based method to restrict model to focus only on reconstruction of dancer data -- Enhance the overall coherence of the generated choreography by implementing regression loss and velocity loss - -### Key Deliverables -- Create a dataset of point-cloud data corresponding to extracted motion capture poses from videos of dance duets -- Utilize Transformer model with encoder-decoder structure and various attention mechanisms to generate the movements of Dancer #2 conditioned on the inputs of Dancer #1 -- Implement a Spatial/Temporal Joint Relation Module to learn key relationships between parts of the body of each dancer that are integral to the dynamics of the duet -- Collaborate with the original dancers to use the model outputs to inspire new performance material - -## Repository Hierarchy -``` -. -├── data # Scripts for data processing and augmentation -├── dataset # Processed 3D joint datasets -├── evaluation_test # Evaluation test before officially admitted by GSoC 2024 -├── gsoc_vis # Visualization of model outputs -├── job-gpu.sh # GPU job submission script -├── loss # Loss functions implementation -├── model # Model architecture and training scripts -├── model_weights # Trained model weights -├── plot.py # Script for plotting results -├── pose_extraction # Pose extraction from video data -├── README.md # Repository documentation -├── test_functions_for_colab_demo.py # Test functions for Colab demonstrations -├── test.py # Testing scripts -├── train.py # Training pipeline -└── utils # Utility scripts for logging and other functions -└── visualization.ipynb # Jupyter Notebook for result visualization -``` - -## Detailed Solution -### Data preparation -For comprehensive details on converting raw duet videos into 3D joint data, please refer to our [pose extraction documentation](pose_extraction/README.md). - -### Model Structure -
- -
- -The model includes 3 VAEs, separately for dancer 1, dancer 2, and duet. Each VAE contains encoder and decoder, and encoder contains self-attention layer and LSTM layer. VAE for duet will receive original data of dancer 1 and dancer 2, and calculate the distance between two dancers to measure proximity. Then, it will generate one sequence representing interrelation for each dancer. It will be combined with the generated output from VAE for single dancer and passed to transformer decoder, and then generate the motion in the next time step. - -For more architectural details, visit our [model documentation](model/README.md). - -### Generated Results - -The following visualizations showcase the output of our model (blue) in comparison to the original dance movements (black): - -
- - - -
- -
- - - -
\ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/assets/logo.png b/ChoreoAI_Zixuan_Wang/assets/logo.png deleted file mode 100644 index ac95875..0000000 Binary files a/ChoreoAI_Zixuan_Wang/assets/logo.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/assets/network.png b/ChoreoAI_Zixuan_Wang/assets/network.png deleted file mode 100644 index 73f15af..0000000 Binary files a/ChoreoAI_Zixuan_Wang/assets/network.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/assets/network_detailed.png b/ChoreoAI_Zixuan_Wang/assets/network_detailed.png deleted file mode 100644 index 33d7d5c..0000000 Binary files a/ChoreoAI_Zixuan_Wang/assets/network_detailed.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/assets/train_loss.png b/ChoreoAI_Zixuan_Wang/assets/train_loss.png deleted file mode 100644 index fd55947..0000000 Binary files a/ChoreoAI_Zixuan_Wang/assets/train_loss.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/assets/validation_loss.png b/ChoreoAI_Zixuan_Wang/assets/validation_loss.png deleted file mode 100644 index 5b248d1..0000000 Binary files a/ChoreoAI_Zixuan_Wang/assets/validation_loss.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/data/dataset_augmented.py b/ChoreoAI_Zixuan_Wang/data/dataset_augmented.py deleted file mode 100644 index 643a627..0000000 --- a/ChoreoAI_Zixuan_Wang/data/dataset_augmented.py +++ /dev/null @@ -1,37 +0,0 @@ -import torch - - -class DancerDatasetAugmented(torch.utils.data.Dataset): - def __init__(self, data1, data2, seq_len, augmentation_factor=2, mean=0, std=0.01): - self.data1 = data1 - self.data2 = data2 - self.seq_len = seq_len - self.dataset_length = len(self.data1) - self.seq_len - 1 - self.augmentation_factor = augmentation_factor - self.mean = mean - self.std = std - - def __len__(self): - return self.dataset_length * self.augmentation_factor - - def __getitem__(self, index): - if index < self.dataset_length: - dancer1_data = self.data1[index: index + self.seq_len] - dancer2_data = self.data2[index: index + self.seq_len] - - else: - index = index % self.dataset_length - dancer1_data = self.add_noise(self.data1[index: index + self.seq_len]) - dancer2_data = self.add_noise(self.data2[index: index + self.seq_len]) - - return { - 'dancer1': dancer1_data, - 'dancer2': dancer2_data, - # label - 'dancer1_next_timestamp': self.data1[index + 1: index + self.seq_len + 1], - 'dancer2_next_timestamp': self.data2[index + 1: index + self.seq_len + 1], - } - - def add_noise(self, data): - noise = torch.randn_like(data) * self.std + self.mean - return data + noise diff --git a/ChoreoAI_Zixuan_Wang/data/dataset_original.py b/ChoreoAI_Zixuan_Wang/data/dataset_original.py deleted file mode 100644 index f25f903..0000000 --- a/ChoreoAI_Zixuan_Wang/data/dataset_original.py +++ /dev/null @@ -1,20 +0,0 @@ -import torch - - -class DancerDatasetOriginal(torch.utils.data.Dataset): - def __init__(self, data1, data2, seq_len): - self.data1 = data1 - self.data2 = data2 - self.seq_len = seq_len - self.dataset_length = len(self.data1) - self.seq_len - 1 - - def __len__(self): - return self.dataset_length - - def __getitem__(self, index): - return { - 'dancer1': self.data1[index: index + self.seq_len], - 'dancer2': self.data2[index: index + self.seq_len], - 'dancer1_next_timestamp': self.data1[index + 1: index + self.seq_len + 1], - 'dancer2_next_timestamp': self.data2[index + 1: index + self.seq_len + 1], - } diff --git a/ChoreoAI_Zixuan_Wang/dataset/test_dataset_ilya_hannah.npy b/ChoreoAI_Zixuan_Wang/dataset/test_dataset_ilya_hannah.npy deleted file mode 100644 index fcda57e..0000000 Binary files a/ChoreoAI_Zixuan_Wang/dataset/test_dataset_ilya_hannah.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/.DS_Store b/ChoreoAI_Zixuan_Wang/evaluation_test/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/.DS_Store and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/README.md b/ChoreoAI_Zixuan_Wang/evaluation_test/README.md deleted file mode 100644 index f535cec..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/README.md +++ /dev/null @@ -1,62 +0,0 @@ -# AI-Generated Choreography - from Solos to Duets - -## Introduction -This is the submission for GSoC [AI-Enabled Choreography](https://humanai.foundation/gsoc/2024/proposal_ChoreoAI1.html). In this project, I trained a generative model using VAE + LSTM layers to generate new sequences of a dancer. - -## Part 1: Visualize the data -I followed [this repo](https://github.com/mariel-pettee/choreo-graph/blob/main/functions/plotting.py) to visualize motion capture [data](https://github.com/mariel-pettee/choreo-graph/tree/main/data). The code provides visualization of `seq` and `ghost` in a 3D space, which is convenient for us to view the difference between original sequence and generated sequence. - -## Part 2: Train a generative model -### Model selection -I utilized VAE structure with LSTM layers. The reason why I choose this structure is that LSTM is suitable for processing sequential data and can learn the long-term dependencies. Compared to LSTM, GNN is more suitable for processing graph-structured data. Our motion capture data do have “joints” and edge information of the body, but the two main reasons why I didn’t use GNN are: 1) Our task primarily focuses on generating sequential data, not the relationship between different joints; 2) GNN will have much higher computational demand than LSTM due to computation of adjacency matrix. - -I trained two modelw using static images and sequences separately. Currently, the model which uses static images of the dancer outperforms the one that uses sequential data (lower loss). I acknowledge that the output sequences show jittery behavior and require further optimization. - -### Data processing -- Data preprocessing: center all data -- 70% train data, 15% validation data, 15% test data -- `seq_len=64`, no overlap - -### Model design -The model follows the general structure of VAE, containing an encoder and a decoder, where the encoder consists 2 LSTM layers, 2 linear layers for mean and log variance in the latent space. In the decoder, there is a linear layer with ReLU activation, 2 LSTM layers, and an output smooth layer. I also used the reparameterization trick to reformulate the sampling step into a differentiable operation. - -To find the best model, I trained it with different configurations and computed the validation error. For example, I tested different values of `latent_dim` and `n_units` in LSTM layers of encoder and decoder, both beginning with 32. Finally, the test results showed that larger values of `latent_dim` and `n_units` had better performance, so I chose `latent_dim` to be 256 and `n_units` to be 394. - -Furthermore, I tested with adding a rotation layer to achieve data augmentation, but it showed no performance improvement. - -Two separate models with `seq_len=64` and `seq_len=1` were trained with MSE loss and KL divergence loss. The model was trained with `1000` epochs with Adam optimizer and multi-step learning rate scheduler when `seq_len=64`, and trained with `500` epochs when `seq_len=1`. Initially, I set the `epoch` to be a much smaller value (e.g., ~100), but the output would be static and the total loss didn't decrease. - -Due to time limit and GPU memory limit, I could only train with non-overlapping data with `seq_len=64`. In the future weeks, I would test with overlapping data and longer sequence length to improve the performance of the model. - -### Results -![Alt text](image-1.png) -![Alt text](image.png) -The above two figures show the training loss and evaluation loss when I trained the model with `seq_len=64` using wandb tool. The training loss stabilized around `0.05`. - -The generated result now showed a jittery fashion, propably due to limited `seq_len` during training. However, I believe the model managed to learn the core features of the input. - -When I generated new data conditioned on the test sequence, if $\sigma$ increased, the output would have some variations with the original input, demonstrating the capability of the model to sample from the latent space and reconstruct a sequence. With higher value of $\sigma$ (> 0.5), the output would have a greater range of motion when compared to the test sequence. - -When I generated new data randomly, the model trained with static images was not able to generate a realistic sequence. This was mainly due to the fact that the model only learned 2D data and didn't see any temporal information. On the contrary, the model trained with sequential data was able to generate at least a reasonable sequence. - -## Part 3: Why this project? -### My interest in this project - -This project poses an exciting challenge that fuses AI and art, which aligns well with my passion to push the boundaries of AI. With 2+ years’ experience in CV/AI field, I mainly focused on utilizing vision data to complete real-world tasks. Here is a list of projects I have worked on: -- Depth estimation of spatial-temporal stereo event video streams (master’s thesis @ NJU) -- Image super-resolution and denoising using generative models (internship @ Vivo AI) -- Second-order optimizers in deep learning models (CSE 6740 project @ GT) - -I am also familiar with famous GenAI models in CV/NLP, including Transformers, ViT, and diffusion models. Therefore, given the project’s expected results of training a generative model to learn the interaction between two dancers, I believe I can contribute significantly to this project. - -### How would I approach modeling duets with AI - -One straightforward idea using supervised learning would be training a generative model (transformer / GNN / VAE) with input as the movements of dancer #1 and target as the movements of dancer #2 (if we have labelled data). The model will follow the common encoder-decoder structure, and is capable of learning the spatial and temporal correlation between two dancers. - -We may also need to design effective modules for this specific task, such as a module which can learn “warp” between two dancers. The model then can map the sequences of dancer #1 into a high-dimensional space and be transformed into another feature space of dancer #2. - -### Previous experience or interest in art as well as feelings about AI in art - -Having played pipa, an ancient Chinese instrument, for over 18 years, I have always been fascinated by the emotional depth of art and ancient Chinese music. - -I believe there are many philosophical discussions about AI in art, and AI cannot fully replace human creativity, which are deeply rooted in human experiences. However, I am optimistic about its potential capacity to complement/support human creativity by analyzing vast amount of data and learning patterns. diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_betternot_and_retrograde.npy b/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_betternot_and_retrograde.npy deleted file mode 100644 index 29058fc..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_betternot_and_retrograde.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_beyond.npy b/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_beyond.npy deleted file mode 100644 index 5a1f829..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_beyond.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_chunli.npy b/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_chunli.npy deleted file mode 100644 index d2c23e4..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_chunli.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_honey.npy b/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_honey.npy deleted file mode 100644 index a5963b4..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_honey.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_knownbetter.npy b/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_knownbetter.npy deleted file mode 100644 index 28d11af..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_knownbetter.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_penelope.npy b/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_penelope.npy deleted file mode 100644 index d6f62a9..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/data/mariel_penelope.npy and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/dataset.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/dataset.py deleted file mode 100644 index 70224cf..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/dataset.py +++ /dev/null @@ -1,76 +0,0 @@ -import torch -from functions.load_data import * -from torch_geometric.data import Data - -class MarielDataset(torch.utils.data.Dataset): - 'Characterizes a dataset for PyTorch' - def __init__(self, reduced_joints=False, xy_centering=True, seq_len=128, file_path="data/mariel_*.npy", no_overlap=False): - 'Initialization' - self.file_path = file_path - self.seq_len = seq_len - self.no_overlap = no_overlap - self.reduced_joints = reduced_joints # use a meaningful subset of joints - self.data = load_data(pattern=file_path) - self.xy_centering = xy_centering - self.n_joints = 53 - self.n_dim = 6 - - print("") - - if self.no_overlap: - print("Generating non-overlapping sequences...") - else: - print("Generating overlapping sequences...") - - if self.xy_centering: - print("Using (x, y)-centering...") - else: - print("Not using (x, y)-centering...") - - if self.reduced_joints: - print("Reducing joints...") - else: - print("Using all joints...") - - def __len__(self): - 'Denotes the total number of samples' - if self.xy_centering: - data = self.data[1] # choose index 1, for the (x,y)-centered phrases - else: - data = self.data[0] # choose index 0, for data without (x,y)-centering - - if self.no_overlap: - # number of complete non-overlapping phrases - return int(len(data) / self.seq_len) - else: - # number of overlapping phrases up until the final complete phrase - return len(data) - self.seq_len - - def __getitem__(self, index): - 'Generates one sample of data' - edge_index, is_skeleton_edge, reduced_joint_indices = edges(reduced_joints=self.reduced_joints, seq_len=self.seq_len) - - if self.xy_centering: - data = self.data[1] # choose index 1, for the (x,y)-centered phrases - else: - data = self.data[0] # choose index 0, for data without (x,y)-centering - - if self.reduced_joints: - data = data[:, reduced_joint_indices, :] # reduce number of joints if desired - - if self.no_overlap: - # non-overlapping phrases - index = index * self.seq_len - sequence = data[index: index + self.seq_len] - # prediction_target = data[index: index + self.seq_len + self.predicted_timesteps] - else: - # overlapping phrases - sequence = data[index: index + self.seq_len] - # prediction_target = data[index: index + self.seq_len + self.predicted_timesteps] - - # [seq_len, joints, 6] - cur_data = {} - cur_data['seq'] = torch.Tensor(sequence) - # cur_data['target'] = torch.Tensor(prediction_target) - return cur_data - \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/load_data.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/load_data.py deleted file mode 100644 index 7a2f714..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/load_data.py +++ /dev/null @@ -1,181 +0,0 @@ -# Reference: https://github.com/mariel-pettee/choreo-graph/blob/7e50d643a2b09196ff08934d383c5f68815ddff2/functions/load_data.py -import numpy as np -import torch -from glob import glob -import os -import sys -sys.path.append('../') - -# 53 points -point_labels = [ - 'ARIEL', 'C7', 'CLAV', 'LANK', 'LBHD', 'LBSH', 'LBWT', 'LELB', 'LFHD', 'LFRM', 'LFSH', 'LFWT', 'LHEL', 'LIEL', 'LIHAND', 'LIWR', 'LKNE', 'LKNI', 'LMT1', 'LMT5', 'LOHAND', 'LOWR', 'LSHN', 'LTHI', 'LTOE', 'LUPA', 'MBWT', 'MFWT', 'RANK', 'RBHD', 'RBSH', 'RBWT', 'RELB', 'RFHD', 'RFRM', 'RFSH', 'RFWT', 'RHEL', 'RIEL', 'RIHAND', 'RIWR', 'RKNE', 'RKNI', 'RMT1', 'RMT5', 'ROHAND', 'ROWR', 'RSHN', 'RTHI', 'RTOE', 'RUPA', 'STRN', 'T10' -] - -reduced_joint_names = [ - 'ARIEL', 'CLAV', 'RFSH', 'LFSH', 'RIEL', 'LIEL', 'RIWR', 'LIWR', 'RKNE', 'LKNE', 'RTOE', 'LTOE', 'LHEL', 'RHEL', 'RFWT', 'LFWT', 'LBWT', 'RBWT' -] - -skeleton_lines = [ - # ( (start group), (end group) ), - (('LHEL',), ('LTOE',)), # toe to heel - (('RHEL',), ('RTOE',)), - (('LMT1',), ('LMT5',)), # horizontal line across foot - (('RMT1',), ('RMT5',)), - (('LHEL',), ('LMT1',)), # heel to sides of feet - (('LHEL',), ('LMT5',)), - (('RHEL',), ('RMT1',)), - (('RHEL',), ('RMT5',)), - (('LTOE',), ('LMT1',)), # toe to sides of feet - (('LTOE',), ('LMT5',)), - (('RTOE',), ('RMT1',)), - (('RTOE',), ('RMT5',)), - (('LKNE',), ('LHEL',)), # heel to knee - (('RKNE',), ('RHEL',)), - (('LFWT',), ('RBWT',)), # connect pelvis - (('RFWT',), ('LBWT',)), - (('LFWT',), ('RFWT',)), - (('LBWT',), ('RBWT',)), - (('LFWT',), ('LBWT',)), - (('RFWT',), ('RBWT',)), - (('LFWT',), ('LTHI',)), # pelvis to thighs - (('RFWT',), ('RTHI',)), - (('LBWT',), ('LTHI',)), - (('RBWT',), ('RTHI',)), - (('LKNE',), ('LTHI',)), - (('RKNE',), ('RTHI',)), - (('CLAV',), ('LFSH',)), # clavicle to shoulders - (('CLAV',), ('RFSH',)), - (('STRN',), ('LFSH',)), # sternum & T10 (back sternum) to shoulders - (('STRN',), ('RFSH',)), - (('T10',), ('LFSH',)), - (('T10',), ('RFSH',)), - (('C7',), ('LBSH',)), # back clavicle to back shoulders - (('C7',), ('RBSH',)), - (('LFSH',), ('LBSH',)), # front shoulders to back shoulders - (('RFSH',), ('RBSH',)), - (('LFSH',), ('RBSH',)), - (('RFSH',), ('LBSH',)), - (('LFSH',), ('LUPA',),), # shoulders to upper arms - (('RFSH',), ('RUPA',),), - (('LBSH',), ('LUPA',),), - (('RBSH',), ('RUPA',),), - (('LIWR',), ('LIHAND',),), # wrist to hand - (('RIWR',), ('RIHAND',),), - (('LOWR',), ('LOHAND',),), - (('ROWR',), ('ROHAND',),), - (('LIWR',), ('LOWR',),), # across the wrist - (('RIWR',), ('ROWR',),), - (('LIHAND',), ('LOHAND',),), # across the palm - (('RIHAND',), ('ROHAND',),), - (('LFHD',), ('LBHD',)), # draw lines around circumference of the head - (('LBHD',), ('RBHD',)), - (('RBHD',), ('RFHD',)), - (('RFHD',), ('LFHD',)), - (('LFHD',), ('ARIEL',)), # connect circumference points to top of head - (('LBHD',), ('ARIEL',)), - (('RBHD',), ('ARIEL',)), - (('RFHD',), ('ARIEL',)), -] - - -def load_data(pattern="data/mariel_*.npy"): - datasets = {} - ds_all = [] - - exclude_points = [26, 53] - point_mask = np.ones(55, dtype=bool) - point_mask[exclude_points] = 0 - - for f in sorted(glob(pattern)): - # [joints, timestep, dimension] - ds_name = os.path.basename(f)[7: -4] - # [timestep, joints, dimension] - ds = np.load(f).transpose((1, 0, 2)) - # delete first 500 and last 500 timesteps - ds = ds[500: -500, point_mask] - ds[:, :, 2] *= -1 - # betternot_and_retrograde: 9925; beyond: 5803; chunli: 3866; honey: 5309; knownbetter: 6649; penelope: 6757 - datasets[ds_name] = ds - ds_all.append(ds) - - ds_counts = np.array([ds.shape[0] for ds in ds_all]) - ds_offsets = np.zeros_like(ds_counts) - ds_offsets[1:] = np.cumsum(ds_counts[: -1]) - ds_all = np.concatenate(ds_all) - - print("Original numpy dataset contains {:,} timesteps of {} joints with {} dimensions each.".format(ds_all.shape[0], ds_all.shape[1], ds_all.shape[2])) - - low, hi = np.quantile(ds_all, [0.01, 0.99], axis=(0, 1)) - xy_min = min(low[:2]) - xy_max = max(hi[:2]) - xy_range = xy_max - xy_min - - # normalize data - ds_all[:, :, :2] -= xy_min - ds_all *= 2 / xy_range - ds_all[:, :, :2] -= 1.0 - - ds_all_centered = ds_all.copy() - # center data - ds_all_centered[:, :, :2] -= ds_all_centered[:, :, :2].mean(axis=1, keepdims=True) - - datasets_centered = {} - - for ds in datasets: - datasets[ds][:, :, :2] -= xy_min - datasets[ds] *= 2 / xy_range - datasets[ds][:, :, :2] -= 1.0 - datasets_centered[ds] = datasets[ds].copy() - datasets_centered[ds][:, :, :2] -= datasets[ds][:, :, :2].mean(axis=1, keepdims=True) - - # calculate velocity for each frame - velocities = np.vstack([np.zeros((1, 53, 3)), np.array([35 * (ds_all[t + 1, :, :] - ds_all[t, :, :]) for t in range(len(ds_all) - 1)])]) - - ds_all = np.dstack([ds_all, velocities]) - ds_all_centered = np.dstack([ds_all_centered, velocities]) - - for data in [ds_all, ds_all_centered]: - # Normalize locations & velocities (separately) to [-1, 1] - loc_min = np.min(data[:, :, :3]) - loc_max = np.max(data[:, :, :3]) - vel_min = np.min(data[:, :, 3:]) - vel_max = np.max(data[:, :, 3:]) - data[:, :, : 3] = (data[:, :, :3] - loc_min) * 2 / (loc_max - loc_min) - 1 - data[:, :, 3:] = (data[:, :, 3:] - vel_min) * 2 / (vel_max - vel_min) - 1 - - # [38309, 53, 6] - return ds_all, ds_all_centered, datasets, datasets_centered, ds_counts - - -def edges(reduced_joints, seq_len): - # Define a subset of joints if we want to train on fewer joints that still capture meaningful body movement - if reduced_joints: - reduced_joint_indices = [point_labels.index(joint_name) for joint_name in reduced_joint_names] - edge_index = np.array([(i, j) for i in reduced_joint_indices for j in reduced_joint_indices if i != j]) - else: - reduced_joint_indices = None - edge_index = np.array([(i, j) for i in range(53) for j in range(53) if i != j]) # note: no self-loops! - - skeleton_idxs = [] - for g1, g2 in skeleton_lines: - entry = [] - entry.append([point_labels.index(l) for l in g1][0]) - entry.append([point_labels.index(l) for l in g2][0]) - skeleton_idxs.append(entry) - - is_skeleton_edge = [] - for edge in np.arange(edge_index.shape[0]): - if [edge_index[edge][0], edge_index[edge][1]] in skeleton_idxs: - is_skeleton_edge.append(torch.tensor(1.0)) - else: - is_skeleton_edge.append(torch.tensor(0.0)) - - is_skeleton_edge = np.array(is_skeleton_edge) - copies = np.tile(is_skeleton_edge, (seq_len, 1)) # create copies of the 1D array for every timestep - skeleton_edges_over_time = torch.tensor(np.transpose(copies)) - - if reduced_joints: - ### Need to remake these lists to include only nodes 0-18 now - edge_index = np.array([(i, j) for i in np.arange(len(reduced_joint_indices)) for j in np.arange(len(reduced_joint_indices)) if i != j]) - - return torch.tensor(edge_index, dtype=torch.long), skeleton_edges_over_time, reduced_joint_indices diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/losses.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/losses.py deleted file mode 100644 index e69de29..0000000 diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/model.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/model.py deleted file mode 100644 index 9a9438b..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/model.py +++ /dev/null @@ -1,131 +0,0 @@ -import torch -import logging -import importlib -from torch.nn.parallel import DataParallel, DistributedDataParallel -from functions.model_variants import VAELSTM -from functions.model_variants_static import VAELSTM_Static - -logger = logging.getLogger('ai_enabled_choreography') - - -class GenerativeModel: - def __init__(self, cfg): - self.cfg = cfg - self.is_train = cfg['is_train'] - self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') - self.kl_weight = 0.0001 - - self.network = VAELSTM(seq_len=cfg['train']['seq_len'], - latent_dim=cfg['train']['vae']['latent_dim'], - n_units=cfg['train']['vae']['n_units'], - reduced_joints=cfg['train']['reduced_joints'], - device=self.device).to(self.device) - - self.loss = -1 - - self.print_network(self.network) - - self.setup_optimizers() - self.scheduler = torch.optim.lr_scheduler.MultiStepLR(self.optimizer, **self.cfg['train']['scheduler']) - - if torch.cuda.device_count() > 1: - self.network = DataParallel(self.network) - - if self.is_train: - self.init_training_settings() - - def init_training_settings(self): - pass - - def setup_optimizers(self): - optim_params = [] - for k, v in self.network.named_parameters(): - if v.requires_grad: - optim_params.append(v) - self.optimizer = torch.optim.Adam(optim_params, **self.cfg['train']['optim']) - - def print_network(self, net): - if isinstance(net, (DataParallel, DistributedDataParallel)): - net_cls_str = (f'{net.__class__.__name__} - ' - f'{net.module.__class__.__name__}') - else: - net_cls_str = f'{net.__class__.__name__}' - - if isinstance(net, (DataParallel, DistributedDataParallel)): - net = net.module - - net_str = str(net) - net_params = sum(map(lambda x: x.numel(), net.parameters())) - - logger.info(f'Network: {net_cls_str}, with parameters: {net_params:,d}') - logger.info(net_str) - - def feed_data(self, data): - self.model_input = data['seq'][:, :, :, :3].to(self.device) - - def compute_loss(self, pred, mean, log_var): - reconstruction_loss = torch.nn.MSELoss() - l_reconstruction = reconstruction_loss(pred, self.model_input[:, :, :, :3]) * 2 - # 0.5 * torch.mean(torch.sum((self.model_input[:, :, :, :3] - pred) ** 2, dim=-1)) - l_kl = -0.5 * torch.mean(torch.sum(1 + log_var - mean ** 2 - torch.exp(log_var), dim=-1), dim=0) * self.kl_weight - l_total = l_reconstruction + l_kl - return l_total - - def optimize_parameters(self): - self.optimizer.zero_grad() - - pred, mean, log_var = self.network(self.model_input, is_train=True) - - self.loss = self.compute_loss(pred, mean, log_var) - - self.loss.backward() - self.optimizer.step() - - def update_learning_rate(self): - self.scheduler.step() - - def validate(self, dataloader_val): - self.network.eval() - val_loss = 0 - with torch.no_grad(): - for data in dataloader_val: - self.feed_data(data) - pred, mean, log_var = self.network(self.model_input, is_train=False) - val_loss += self.compute_loss(pred, mean, log_var) - - val_loss /= len(dataloader_val) - self.network.train() - return val_loss - - def test(self, dataloader_test): - self.network.eval() - test_loss = 0 - with torch.no_grad(): - for data in dataloader_test: - self.feed_data(data) - pred, mean, log_var = self.network(self.model_input, is_train=False) - test_loss += self.compute_loss(pred, mean, log_var) - - test_loss /= len(dataloader_test) - self.network.train() - return test_loss - - def save_network(self, epoch, strict=True, param_key='params'): - save_filename = f'model_{epoch}.pth' - net = self.network if isinstance(self.network, list) else [self.network] - param_key = param_key if isinstance(param_key, list) else [param_key] - assert len(net) == len(param_key), 'The lengths of net and param_key should be the same.' - - save_dict = {} - for net_, param_key_ in zip(net, param_key): - if isinstance(net_, (DataParallel, DistributedDataParallel)): - net_ = net_.module - state_dict = net_.state_dict() - for key, param in state_dict.items(): - if key.startswith('module.'): # remove unnecessary 'module.' - key = key[7:] - state_dict[key] = param.cpu() - save_dict[param_key_] = state_dict - - torch.save(save_dict, save_filename) - diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/model_variants.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/model_variants.py deleted file mode 100644 index 8877c80..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/model_variants.py +++ /dev/null @@ -1,77 +0,0 @@ -import torch -import torch.nn as nn -import torch.nn.functional as F -import numpy as np - -class RotationLayer(nn.Module): - def __init__(self, theta, device='cpu'): - super(RotationLayer, self).__init__() - self.R = torch.Tensor([[1, 0, 0], [0, 1, 0], [0, 0, 0]]) * torch.cos(theta) + torch.Tensor([[0, -1, 0], [1, 0, 0], [0, 0, 0]]) * torch.sin(theta) + torch.Tensor([[0, 0, 0], [0, 0, 0], [0, 0, 1]]) - self.R = self.R.to(device) - - def forward(self, x): - return torch.matmul(x, self.R) - -class Encoder(nn.Module): - def __init__(self, n_vtx, latent_dim, n_units, device='cpu'): - super(Encoder, self).__init__() - # self.rotation = RotationLayer(theta=theta, device=device) - self.lstm = nn.LSTM(input_size=n_vtx * 3, hidden_size=n_units, batch_first=True, num_layers=2) - self.mean = nn.Linear(in_features=n_units, out_features=latent_dim) - self.log_var = nn.Linear(in_features=n_units, out_features=latent_dim) - - def forward(self, x): - # if is_train: - # x = self.rotation(x) - x = x.reshape(x.shape[0], x.shape[1], -1) - _, (h_n, _) = self.lstm(x) - z_mean = self.mean(h_n[-1]) - z_log_var = self.log_var(h_n[-1]) - return z_mean, z_log_var - - -class Decoder(nn.Module): - def __init__(self, seq_len, n_vtx, latent_dim=32, n_units=32, device='cpu'): - super(Decoder, self).__init__() - self.seq_len = seq_len - self.n_vtx = n_vtx - # self.rotation = RotationLayer(theta=theta, device=device) - self.linear = nn.Linear(latent_dim, n_units) - self.lstm = nn.LSTM(input_size=n_units, hidden_size=n_units, batch_first=True, num_layers=2) - self.out = nn.Conv1d(in_channels=n_units, out_channels=self.n_vtx * 3, kernel_size=3, padding=1) - - def forward(self, x): - x = F.relu(self.linear(x)) - x = x.unsqueeze(1).repeat(1, self.seq_len, 1) - lstm_out, _ = self.lstm(x) - lstm_out = lstm_out.reshape(-1, lstm_out.shape[2], lstm_out.shape[1]) - lstm_out = self.out(lstm_out) - lstm_out = lstm_out.reshape(-1, lstm_out.shape[2], self.n_vtx, 3) - # if is_train: - # lstm_out = self.rotation(lstm_out) - return lstm_out - - -class VAELSTM(nn.Module): - def __init__(self, seq_len, latent_dim, n_units, reduced_joints=False, device='cuda'): - super(VAELSTM, self).__init__() - self.num_joints = 18 if reduced_joints else 53 - self.device = device - - # theta = 2 * np.pi * torch.rand(1) - - self.encoder = Encoder(n_vtx=self.num_joints, latent_dim=latent_dim, n_units=n_units, device=device) - self.decoder = Decoder(seq_len=seq_len, n_vtx=self.num_joints, device=device, latent_dim=latent_dim, n_units=n_units) - - def sample_z(self, mean, log_var): - batch, dim = mean.shape - epsilon = torch.randn(batch, dim).to(self.device) - return mean + torch.exp(0.5 * log_var) * epsilon - - def forward(self, x, is_train=True): - # input size: [batch_size, seq_len, joints, 3] - - mean, log_var = self.encoder(x) - z = self.sample_z(mean, log_var) - x = self.decoder(z) - return x, mean, log_var diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/plot.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/plot.py deleted file mode 100644 index d23d26f..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/plot.py +++ /dev/null @@ -1,221 +0,0 @@ -# Reference: https://github.com/mariel-pettee/choreo-graph/blob/7e50d643a2b09196ff08934d383c5f68815ddff2/functions/plotting.py -from glob import glob -from tqdm import tqdm -import numpy as np -import mpl_toolkits.mplot3d.axes3d as p3 -import matplotlib -from matplotlib import animation -from mpl_toolkits.mplot3d.art3d import juggle_axes -from IPython.display import display, HTML -import matplotlib.pyplot as plt -from functions.load_data import * - -skeleton_idxs = [] -for g1, g2 in skeleton_lines: - entry = [] - entry.append([point_labels.index(l) for l in g1]) - entry.append([point_labels.index(l) for l in g2]) - skeleton_idxs.append(entry) - -# Cloud of every point connected: -cloud_idxs = [] -for i in range(53): - for j in range(53): - if i == j: continue # skip self-loops - entry = [] - entry.append([i]) - entry.append([j]) - cloud_idxs.append(entry) - -cloud_idxs_names = [] -for i in range(53): - for j in range(53): - if i == j: continue # skip self-loops - entry = [] - entry.append([point_labels[i]]) - entry.append([point_labels[j]]) - cloud_idxs_names.append(entry) - -all_idxs = skeleton_idxs + cloud_idxs - -# calculate the coordinates for the lines -def get_line_segments(seq, zcolor=None, cmap=None, cloud=False, edge_types=None, edge_class=None): - xline = np.zeros((seq.shape[0], len(all_idxs), 3, 2)) - if cmap: - colors = np.zeros((len(all_idxs), 4)) - for edge,(joint1,joint2) in enumerate(all_idxs): - xline[:,edge,:,0] = np.mean(seq[:, joint1], axis=1) - xline[:,edge,:,1] = np.mean(seq[:, joint2], axis=1) - if cmap: - if edge_types is not None: - if edge >= len(skeleton_idxs): # cloud edges - if edge_types[edge - len(skeleton_idxs), edge_class] == 1: - colors[edge] = cmap(1) - else: - colors[edge] = cmap(0) - else: - colors[edge] = cmap(0) - if cmap: - return xline, colors - else: - return xline - -# put line segments on the given axis, with given colors -def put_lines(ax, segments, color=None, lw=2.5, alpha=None, skeleton=True, skeleton_alpha=0.3, cloud=False, cloud_alpha=0.03, threshold=0, edge_types=None, edge_opacities=None, edge_class=None): - lines = [] - ### Main skeleton - for i in tqdm(range(len(skeleton_idxs)), desc="Skeleton lines"): - if isinstance(color, (list,tuple,np.ndarray)): - c = color[i] - else: - c = color - - if skeleton: alpha = skeleton_alpha - else: alpha = 0 - - ### THESE LINES PLOT THE MAIN SKELETON - l = ax.plot(np.linspace(segments[i, 0, 0],segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - color=c, - alpha=alpha, - lw=lw)[0] - lines.append(l) - - if cloud: - ### Cloud of all-connected joints - for i in tqdm(range(len(cloud_idxs)), desc="Cloud lines"): - if isinstance(color, (list, tuple, np.ndarray)): - c = color[i] - else: - c = color - - ### plot or don't plot lines based on edge class - if edge_types is not None and edge_class is not None: - custom_colors = ["deeppink", "red", "blue", "green", "orange"] - if edge_types[i][edge_class] == 1: - if edge_opacities is not None and edge_opacities[i, edge_class] > threshold: # and cloud_idxs[i][1] == [10]: - alpha = 0.5 #edge_opacities[i,edge_class] - print("Surviving edge: {} | ({} -> {}), i.e. ({} -> {})".format(i, cloud_idxs[i][0], cloud_idxs[i][1], cloud_idxs_names[i][0], cloud_idxs_names[i][1])) - else: - alpha = cloud_alpha - l = ax.plot( - np.linspace(segments[i, 0, 0], segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - color=custom_colors[edge_class], - alpha=alpha, - lw=lw)[0] - lines.append(l) - else: - l = ax.plot( - np.linspace(segments[i, 0, 0], segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - alpha=0, - color="white", - lw=lw)[0] - lines.append(None) - - else: # regular cloud - l = ax.plot( - np.linspace(segments[i, 0, 0], segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - alpha=cloud_alpha, - lw=lw)[0] - lines.append(l) - return lines - -# animate a video of the stick figure. -# `ghost` may be a second sequence, which will be superimposed on the primary sequence. -# If ghost_shift is given, the primary and ghost sequence will be separated laterally by that amount. -# `zcolor` may be an N-length array, where N is the number of vertices in seq, and will be used to color the vertices. Typically this is set to the avg. z-value of each vtx. -def animate_stick(seq, ghost=None, ghost_shift=0, edge_types=None, edge_opacities=None, threshold=0, edge_class=None, figsize=None, zcolor=None, pointer=None, ax_lims=(-0.4, 0.4), speed=45, dot_size=20, dot_alpha=0.5, lw=2.5, cmap='cool_r', pointer_color='black', cloud=False, cloud_alpha=0.03, skeleton=True, skeleton_alpha=0.3): - if zcolor is None: - zcolor = np.zeros(seq.shape[1]) - fig = plt.figure(figsize=figsize) - ax = p3.Axes3D(fig) - - # The following lines eliminate background lines/axes: - # ax.axis('off') - # ax.xaxis.set_visible(False) - # ax.yaxis.set_visible(False) - # ax.set_frame_on(False) - - # set figure background opacity (alpha) to 0: - fig.patch.set_alpha(0.) - - if ghost_shift and ghost is not None: - seq = seq.copy() - ghost = ghost.copy() - seq[:, :, 0] -= ghost_shift - ghost[:, :, 0] += ghost_shift - - cm = matplotlib.cm.get_cmap(cmap) - - if edge_types is not None: - num_connections = np.zeros((53)) - for edge, (joint1, joint2) in enumerate(all_idxs): - if edge > len(skeleton_idxs) and edge_types[edge - len(skeleton_idxs), edge_class] == 1: - num_connections[joint1] += 1 - num_connections[joint2] += 1 - num_connections = num_connections / np.sum(num_connections) # normalize so colormap can use values between 0 and 1 - dot_color = [cm(num_connections[joint]) for joint in range(53)] - pts = ax.scatter(seq[0, :, 0], seq[0, :, 1], seq[0, :, 2], c=dot_color, s=dot_size, cmap=cm, alpha=dot_alpha) - - else: - dot_color = "black" - pts = ax.scatter(seq[0, :, 0], seq[0, :, 1], seq[0, :, 2], c=dot_color, s=dot_size, cmap=cm, alpha=dot_alpha) - - ghost_color = 'blue' - - if ghost is not None: - pts_g = ax.scatter(ghost[0, :, 0], ghost[0, :, 1], ghost[0, :, 2], c=ghost_color, s=dot_size, alpha=dot_alpha) - - if ax_lims: - ax.set_xlim(*ax_lims) - ax.set_ylim(*ax_lims) - ax.set_zlim(*ax_lims) - plt.close(fig) - xline, colors = get_line_segments(seq, zcolor, cm, edge_types=edge_types, edge_class=edge_class) - lines = put_lines(ax, xline[0], color=colors, lw=lw, alpha=0.9, cloud=cloud, cloud_alpha=cloud_alpha, edge_types=edge_types, edge_opacities=edge_opacities, threshold=threshold, edge_class=edge_class, skeleton=skeleton, skeleton_alpha=skeleton_alpha) - - if ghost is not None: - xline_g = get_line_segments(ghost) - lines_g = put_lines(ax, xline_g[0], ghost_color, lw=lw, alpha=1.0, cloud=cloud, cloud_alpha=cloud_alpha, skeleton=skeleton, skeleton_alpha=skeleton_alpha) - - if pointer is not None: - vR = 0.15 - dX, dY = vR * np.cos(pointer), vR * np.sin(pointer) - zidx = point_labels.index('CLAV') - X = seq[:, zidx, 0] - Y = seq[:, zidx, 1] - Z = seq[:, zidx, 2] - quiv = ax.quiver(X[0], Y[0], Z[0], dX[0], dY[0], 0, color=pointer_color) - ax.quiv = quiv - - def update(t): - pts._offsets3d = juggle_axes(seq[t, :, 0], seq[t, :, 1], seq[t, :, 2], 'z') - for i,l in enumerate(lines): - if l is not None: - l.set_data(xline[t, i, :2]) - l.set_3d_properties(xline[t, i, 2]) - - if ghost is not None: - pts_g._offsets3d = juggle_axes(ghost[t, :, 0], ghost[t, :, 1], ghost[t, :, 2], 'z') - for i,l in enumerate(lines_g): - l.set_data(xline_g[t, i, :2]) - l.set_3d_properties(xline_g[t, i, 2]) - - if pointer is not None: - ax.quiv.remove() - ax.quiv = ax.quiver(X[t], Y[t], Z[t], dX[t], dY[t], 0, color=pointer_color) - - return animation.FuncAnimation( - fig, - update, - len(seq), - interval=speed, - blit=False, - ) diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/utils.py b/ChoreoAI_Zixuan_Wang/evaluation_test/functions/utils.py deleted file mode 100644 index f34440d..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/functions/utils.py +++ /dev/null @@ -1,65 +0,0 @@ -import yaml -from collections import OrderedDict -from os import path as osp -import time -import logging - - -def ordered_yaml(): - try: - from yaml import CDumper as Dumper - from yaml import CLoader as Loader - except ImportError: - from yaml import Dumper, Loader - - _mapping_tag = yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG - - def dict_representer(dumper, data): - return dumper.represent_dict(data.items()) - - def dict_constructor(loader, node): - return OrderedDict(loader.construct_pairs(node)) - - Dumper.add_representer(OrderedDict, dict_representer) - Loader.add_constructor(_mapping_tag, dict_constructor) - return Loader, Dumper - - -def parse(config_path): - with open(config_path, mode='r') as f: - Loader, _ = ordered_yaml() - opt = yaml.load(f, Loader=Loader) - - return opt - -def get_time_str(): - return time.strftime('%Y%m%d_%H%M%S', time.localtime()) - - -def get_root_logger(logger_name='ai_enabled_choreography', log_level=logging.INFO, log_file=None): - logger = logging.getLogger(logger_name) - # if the logger has been initialized, just return it - if logger.hasHandlers(): - return logger - - format_str = '%(asctime)s %(levelname)s: %(message)s' - logging.basicConfig(format=format_str, level=log_level) - - if log_file is not None: - file_handler = logging.FileHandler(log_file, 'w') - file_handler.setFormatter(logging.Formatter(format_str)) - file_handler.setLevel(log_level) - logger.addHandler(file_handler) - - return logger - -def dict2str(opt, indent_level=1): - msg = '\n' - for k, v in opt.items(): - if isinstance(v, dict): - msg += ' ' * (indent_level * 2) + k + ':[' - msg += dict2str(v, indent_level + 1) - msg += ' ' * (indent_level * 2) + ']\n' - else: - msg += ' ' * (indent_level * 2) + k + ': ' + str(v) + '\n' - return msg \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/image-1.png b/ChoreoAI_Zixuan_Wang/evaluation_test/image-1.png deleted file mode 100644 index 0d22dd5..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/image-1.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/image.png b/ChoreoAI_Zixuan_Wang/evaluation_test/image.png deleted file mode 100644 index 519007f..0000000 Binary files a/ChoreoAI_Zixuan_Wang/evaluation_test/image.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/logs/train_ai_enabled_choreography_20240311_021541.log b/ChoreoAI_Zixuan_Wang/evaluation_test/logs/train_ai_enabled_choreography_20240311_021541.log deleted file mode 100644 index 9dffe30..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/logs/train_ai_enabled_choreography_20240311_021541.log +++ /dev/null @@ -1,85 +0,0 @@ -2024-03-11 02:15:41,611 INFO: - name: ai_enabled_choreography - is_train: True - use_graph: False - train:[ - optim:[ - lr: 0.001 - weight_decay: 0 - betas: [0.9, 0.99] - ] - scheduler:[ - milestones: [2, 4, 6, 8, 10, 12] - gamma: 0.5 - ] - epochs: 14 - batch_size: 256 - seq_len: 1 - vae:[ - latent_dim: 32 - n_units: 32 - ] - reduced_joints: False - predicted_timesteps: 50 - no_overlap: False - ] - logger:[ - print_freq: 100 - ] - -2024-03-11 02:15:43,116 INFO: Dataset created. -2024-03-11 02:15:43,116 INFO: Total iterations per epoch: 104 -2024-03-11 02:15:43,260 INFO: Network: VAELSTM_Static, with parameters: 13,616 -2024-03-11 02:15:43,261 INFO: VAELSTM_Static( - (encoder): Encoder( - (conv1): Conv2d(3, 3, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1), bias=False) - (linear): Linear(in_features=159, out_features=32, bias=True) - (mean): Linear(in_features=32, out_features=32, bias=True) - (log_var): Linear(in_features=32, out_features=32, bias=True) - ) - (decoder): Decoder( - (linear): Linear(in_features=32, out_features=32, bias=True) - (output_linear): Linear(in_features=32, out_features=159, bias=True) - ) -) -2024-03-11 02:15:43,261 INFO: Start training from epoch: 0, iter: 0 -2024-03-11 02:34:51,131 INFO: Epoch: 0, iter: 100, loss: 0.04685264080762863 -2024-03-11 02:35:37,030 INFO: Epoch average training loss: 0.11431083083152771 -2024-03-11 02:35:37,030 INFO: Validating... -2024-03-11 02:39:48,841 INFO: Validation error: 0.03362208604812622 -2024-03-11 02:44:09,966 INFO: Test error: 0.030422862619161606 -2024-03-11 03:02:31,920 INFO: Epoch: 1, iter: 200, loss: 0.03148512542247772 -2024-03-11 03:04:03,604 INFO: Epoch average training loss: 0.03520941734313965 -2024-03-11 03:04:03,604 INFO: Validating... -2024-03-11 03:08:14,776 INFO: Validation error: 0.0260284636169672 -2024-03-11 03:12:36,210 INFO: Test error: 0.024602852761745453 -2024-03-11 03:30:10,070 INFO: Epoch: 2, iter: 300, loss: 0.026049016043543816 -2024-03-11 03:32:27,305 INFO: Epoch average training loss: 0.029609303921461105 -2024-03-11 03:32:27,305 INFO: Validating... -2024-03-11 03:36:38,205 INFO: Validation error: 0.02357492968440056 -2024-03-11 03:40:59,279 INFO: Test error: 0.02197439968585968 -2024-03-11 03:57:47,173 INFO: Epoch: 3, iter: 400, loss: 0.02382057160139084 -2024-03-11 04:00:49,281 INFO: Epoch average training loss: 0.025071803480386734 -2024-03-11 04:00:49,281 INFO: Validating... -2024-03-11 04:04:59,053 INFO: Validation error: 0.020497405901551247 -2024-03-11 04:09:19,587 INFO: Test error: 0.019112318754196167 -2024-03-11 04:25:18,735 INFO: Epoch: 4, iter: 500, loss: 0.020585503429174423 -2024-03-11 04:29:06,844 INFO: Epoch average training loss: 0.021482273936271667 -2024-03-11 04:29:06,845 INFO: Validating... -2024-03-11 04:33:16,997 INFO: Validation error: 0.018646329641342163 -2024-03-11 04:37:37,558 INFO: Test error: 0.01749219372868538 -2024-03-11 04:52:51,492 INFO: Epoch: 5, iter: 600, loss: 0.019174333661794662 -2024-03-11 04:57:25,383 INFO: Epoch average training loss: 0.01932256482541561 -2024-03-11 04:57:25,384 INFO: Validating... -2024-03-11 05:01:35,459 INFO: Validation error: 0.017124200239777565 -2024-03-11 05:05:56,070 INFO: Test error: 0.016293823719024658 -2024-03-11 05:20:24,814 INFO: Epoch: 6, iter: 700, loss: 0.018680881708860397 -2024-03-11 05:25:43,929 INFO: Epoch average training loss: 0.018043341115117073 -2024-03-11 05:25:43,929 INFO: Validating... -2024-03-11 05:29:53,641 INFO: Validation error: 0.016468102112412453 -2024-03-11 05:34:13,758 INFO: Test error: 0.015664447098970413 -2024-03-11 05:47:55,925 INFO: Epoch: 7, iter: 800, loss: 0.016253704205155373 -2024-03-11 05:54:00,999 INFO: Epoch average training loss: 0.017237063497304916 -2024-03-11 05:54:00,999 INFO: Validating... -2024-03-11 05:58:11,199 INFO: Validation error: 0.0158311165869236 -2024-03-11 06:02:31,580 INFO: Test error: 0.015030814334750175 diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/train.py b/ChoreoAI_Zixuan_Wang/evaluation_test/train.py deleted file mode 100644 index 50eb7c8..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/train.py +++ /dev/null @@ -1,121 +0,0 @@ -import argparse -import numpy as np -import torch -import os -from os import path as osp -import logging -import wandb - -from torch_geometric import loader - -from functions.utils import parse, get_time_str, get_root_logger, dict2str -from functions.dataset import MarielDataset -from functions.model import GenerativeModel - -def parse_config(): - parser = argparse.ArgumentParser() - parser.add_argument('--config', type=str, default='train_config.yml', help='Path to configuration YAML file.') - args = parser.parse_args() - cfg = parse(args.config) - - return cfg - -def init_loggers(cfg): - log_file = osp.join("logs", f"train_{cfg['name']}_{get_time_str()}.log") - logger = get_root_logger(logger_name='ai_enabled_choreography', log_level=logging.INFO, log_file=log_file) - logger.info(dict2str(cfg)) - return logger - - -def create_dataset_loader(cfg, logger): - if os.path.exists("train_set.pt") and os.path.exists("val_set.pt") and os.path.exists("test_set.pt"): - train_set = torch.load("train_set.pt") - val_set = torch.load("val_set.pt") - test_set = torch.load("test_set.pt") - else: - data = MarielDataset(seq_len=cfg['train']['seq_len'], reduced_joints=cfg['train']['reduced_joints'], predicted_timesteps=cfg['train']['predicted_timesteps'], no_overlap=cfg['train']['no_overlap'], use_graph=cfg['use_graph']) - - train_indices = np.arange(int(0.7 * len(data))) # 70% split for training data - val_indices = np.arange(int(0.7 * len(data)), int(0.85 * len(data))) # next 15% on validation - test_indices = np.arange(int(0.85 * len(data)), len(data)) # last 15% on test - - train_set = torch.utils.data.Subset(data, train_indices) - val_set = torch.utils.data.Subset(data, val_indices) - test_set = torch.utils.data.Subset(data, test_indices) - - # torch.save(train_set, "train_set.pt") - # torch.save(val_set, "val_set.pt") - # torch.save(test_set, "test_set.pt") - - if not cfg['use_graph']: - dataloader_train = torch.utils.data.DataLoader(train_set, batch_size=cfg['train']['batch_size'], shuffle=True, drop_last=True) - dataloader_val = torch.utils.data.DataLoader(val_set, batch_size=cfg['train']['batch_size'], shuffle=True, drop_last=True) - dataloader_test = torch.utils.data.DataLoader(test_set, batch_size=1, shuffle=True, drop_last=True) - else: - dataloader_train = loader.DataLoader(train_set, batch_size=cfg['train']['batch_size'], shuffle=True, drop_last=True) - dataloader_val = loader.DataLoader(val_set, batch_size=cfg['train']['batch_size'], shuffle=True, drop_last=True) - dataloader_test = loader.DataLoader(test_set, batch_size=1, shuffle=True, drop_last=True) - - logger.info("Dataset created.") - logger.info(f"Total iterations per epoch: {int(len(train_set) / cfg['train']['batch_size'])}") - - return dataloader_train, dataloader_val, dataloader_test - - -def main(): - - wandb.init(project='ai_enabled_choreography') - - cfg = parse_config() - logger = init_loggers(cfg) - - torch.backends.cudnn.benchmark = False - torch.backends.cudnn.deterministic = True - torch.manual_seed(42) - - dataloader_train, dataloader_val, dataloader_test = create_dataset_loader(cfg, logger) - - model = GenerativeModel(cfg) - - current_iter = 0 - logger.info(f'Start training from epoch: 0, iter: {current_iter}') - - best_loss = 1 - - # train - for epoch in range(cfg['train']['epochs']): - # err = 0 - loss = 0 - - for train_data in dataloader_train: - current_iter += 1 - model.feed_data(train_data) - model.optimize_parameters() - - loss += model.loss - # err += model.error - - wandb.log({'train/loss': model.loss}) - - if current_iter % cfg['logger']['print_freq'] == 0: - logger.info(f'Epoch: {epoch}, iter: {current_iter}, loss: {model.loss}') - - model.update_learning_rate() - loss /= len(dataloader_train) - wandb.log({'train/epoch_loss': loss}) - - logger.info(f'Epoch average training loss: {loss}') - logger.info(f'Validating...') - val_loss = model.validate(dataloader_val) - wandb.log({'eval/loss': val_loss}) - if val_loss < best_loss: - best_loss = val_loss - # best_model = model - model.save_network(epoch) - - test_loss = model.test(dataloader_test) - wandb.log({'test/loss': test_loss}) - - -if __name__ == '__main__': - main() diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/train_config.yml b/ChoreoAI_Zixuan_Wang/evaluation_test/train_config.yml deleted file mode 100644 index 463aaa0..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/train_config.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: ai_enabled_choreography - -is_train: true - -train: - optim: - lr: !!float 1e-3 - weight_decay: 0 - betas: [0.9, 0.99] - - scheduler: - milestones: [200, 300] - gamma: 0.5 - - epochs: 480 - batch_size: 256 - seq_len: 64 - vae: - latent_dim: 256 - n_units: 394 - reduced_joints: false - no_overlap: true - -logger: - print_freq: 100 \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/visualization_seq.ipynb b/ChoreoAI_Zixuan_Wang/evaluation_test/visualization_seq.ipynb deleted file mode 100644 index ed0d4e4..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/visualization_seq.ipynb +++ /dev/null @@ -1,353 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "from functions.load_data import *\n", - "from functions.plot import *" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Original numpy dataset contains 38,309 timesteps of 53 joints with 3 dimensions each.\n" - ] - } - ], - "source": [ - "ds_all, ds_all_centered, datasets, datasets_centered, ds_counts = load_data()" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(64, 53, 3)\n" - ] - } - ], - "source": [ - "seq_len = 64\n", - "start_ts = 0\n", - "\n", - "seq = ds_all_centered[start_ts: start_ts + seq_len, :, :3]\n", - "print(seq.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Visualize a single sequence" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Skeleton lines: 100%|██████████| 58/58 [00:00<00:00, 700.18it/s]\n" - ] - } - ], - "source": [ - "ani = animate_stick(seq, speed=50, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "animation_js = ani.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Load network" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "VAELSTM(\n", - " (encoder): Encoder(\n", - " (lstm): LSTM(159, 394, num_layers=2, batch_first=True)\n", - " (mean): Linear(in_features=394, out_features=256, bias=True)\n", - " (log_var): Linear(in_features=394, out_features=256, bias=True)\n", - " )\n", - " (decoder): Decoder(\n", - " (linear): Linear(in_features=256, out_features=394, bias=True)\n", - " (lstm): LSTM(394, 394, num_layers=2, batch_first=True)\n", - " (out): Conv1d(394, 159, kernel_size=(3,), stride=(1,), padding=(1,))\n", - " )\n", - ")\n" - ] - }, - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from functions.model_variants import VAELSTM\n", - "import torch\n", - "from copy import deepcopy\n", - "\n", - "network = VAELSTM(seq_len=64, latent_dim=256, n_units=394, device='cpu')\n", - "print(network)\n", - "\n", - "load_net = torch.load('model10000_seq_new.pth', map_location='cpu')['params']\n", - "for k, v in deepcopy(load_net).items():\n", - " if k.startswith('module.'):\n", - " load_net[k[7:]] = v\n", - " load_net.pop(k)\n", - "\n", - "network.load_state_dict(load_net, strict=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Compare an input dance sequence from a holdout test set with its corresponding decoded sequence" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "90\n" - ] - } - ], - "source": [ - "import random\n", - "\n", - "test_set = torch.load('test_set_seq.h5')\n", - "print(len(test_set))" - ] - }, - { - "cell_type": "code", - "execution_count": 90, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "torch.Size([64, 53, 3])" - ] - }, - "execution_count": 90, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "rdm_idx = 50\n", - "\n", - "seq_test = test_set[rdm_idx]['seq'][:, :, :3]\n", - "seq_test.shape" - ] - }, - { - "cell_type": "code", - "execution_count": 91, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(64, 53, 3)\n" - ] - } - ], - "source": [ - "output, mean, log_var = network(seq_test.unsqueeze(0))\n", - "output = output.squeeze(0).detach().numpy()\n", - "\n", - "print(output.shape)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "animation = animate_stick(seq_test.numpy(), ghost=output, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Adding noise to latent space" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "$\\sigma=0$" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "sigma = 0\n", - "\n", - "mean, _ = network.encoder(seq_test.unsqueeze(0))\n", - "output = network.decoder(mean + torch.Tensor(np.random.normal(0, sigma, 256)))\n", - "output = output.squeeze(0).detach().numpy()\n", - "\n", - "animation = animate_stick(seq_test.numpy(), ghost=output, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "$\\sigma=0.1$" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "mean, _ = network.encoder(seq_test.unsqueeze(0))\n", - "output = network.decoder(mean + torch.Tensor(np.random.normal(0, sigma, 256)))\n", - "output = output.squeeze(0).squeeze(0).detach().numpy()\n", - "\n", - "animation = animate_stick(seq_test.numpy(), ghost=output, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "$\\sigma=0.5$" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "outputs = []\n", - "sigma = 0.5\n", - "\n", - "mean, _ = network.encoder(seq_test.unsqueeze(0))\n", - "output = network.decoder(mean + torch.Tensor(np.random.normal(0, sigma, 256)))\n", - "output = output.squeeze(0).detach().numpy()\n", - "\n", - "animation = animate_stick(seq_test.numpy(), ghost=output, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Sample randomly from the latent space" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "sigma = 0.5\n", - "\n", - "output = network.decoder(torch.Tensor(np.random.normal(0, sigma, (1, 256))))\n", - "output = output.squeeze(0).squeeze(0).detach().numpy()\n", - "\n", - "animation = animate_stick(output, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/ChoreoAI_Zixuan_Wang/evaluation_test/visualization_static.ipynb b/ChoreoAI_Zixuan_Wang/evaluation_test/visualization_static.ipynb deleted file mode 100644 index 2652d14..0000000 --- a/ChoreoAI_Zixuan_Wang/evaluation_test/visualization_static.ipynb +++ /dev/null @@ -1,388 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "from functions.load_data import *\n", - "from functions.plot import *" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Original numpy dataset contains 38,309 timesteps of 53 joints with 3 dimensions each.\n" - ] - } - ], - "source": [ - "ds_all, ds_all_centered, datasets, datasets_centered, ds_counts = load_data()" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(64, 53, 3)\n" - ] - } - ], - "source": [ - "seq_len = 64\n", - "start_ts = 0\n", - "\n", - "seq = ds_all_centered[start_ts: start_ts + seq_len, :, :3]\n", - "print(seq.shape)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Visualize a single sequence" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Skeleton lines: 100%|██████████| 58/58 [00:00<00:00, 891.88it/s]\n" - ] - } - ], - "source": [ - "ani = animate_stick(seq, speed=50, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "animation_js = ani.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Load network" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "VAELSTM(\n", - " (encoder): Encoder(\n", - " (lstm): LSTM(159, 394, num_layers=2, batch_first=True)\n", - " (mean): Linear(in_features=394, out_features=256, bias=True)\n", - " (log_var): Linear(in_features=394, out_features=256, bias=True)\n", - " )\n", - " (decoder): Decoder(\n", - " (linear): Linear(in_features=256, out_features=394, bias=True)\n", - " (lstm): LSTM(394, 394, num_layers=2, batch_first=True)\n", - " (out): Conv1d(394, 159, kernel_size=(3,), stride=(1,), padding=(1,))\n", - " )\n", - ")\n" - ] - }, - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from functions.model_variants import VAELSTM\n", - "import torch\n", - "from copy import deepcopy\n", - "\n", - "network = VAELSTM(seq_len=1, latent_dim=256, n_units=394, device='cpu')\n", - "print(network)\n", - "\n", - "load_net = torch.load('model480_static_new.pth', map_location='cpu')['params']\n", - "for k, v in deepcopy(load_net).items():\n", - " if k.startswith('module.'):\n", - " load_net[k[7:]] = v\n", - " load_net.pop(k)\n", - "\n", - "network.load_state_dict(load_net, strict=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Compare an input dance sequence from a holdout test set with its corresponding decoded sequence" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "5747\n" - ] - } - ], - "source": [ - "import random\n", - "\n", - "test_set = torch.load('test_set_static.h5')\n", - "print(len(test_set))" - ] - }, - { - "cell_type": "code", - "execution_count": 157, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(64, 53, 3)\n" - ] - } - ], - "source": [ - "rdm_idx = 2850\n", - "seqs = []\n", - "\n", - "# randomly choose a sequence with length 64\n", - "for i in range(64):\n", - " seq = test_set[rdm_idx + i]['seq'][:, :, :3]\n", - " seqs.append(seq.squeeze(0))\n", - "\n", - "seqs_numpy = np.stack(seqs, axis=0)\n", - "print(seqs_numpy.shape)" - ] - }, - { - "cell_type": "code", - "execution_count": 159, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "(64, 53, 3)\n" - ] - } - ], - "source": [ - "import numpy as np\n", - "\n", - "outputs = []\n", - "for i in range(64):\n", - " output, mean, log_var = network(seqs[i].unsqueeze(0).unsqueeze(0))\n", - " output = output.squeeze(0).squeeze(0).detach().numpy()\n", - " outputs.append(output)\n", - "\n", - "outputs = np.stack(outputs, axis=0)\n", - "print(outputs.shape)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "animation = animate_stick(seqs_numpy[:, :, :3], ghost=outputs, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Adding noise to latent space" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "$\\sigma=0$, the generated sequence is almost identical to the original sequence" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "outputs = []\n", - "sigma = 0\n", - "\n", - "bias = torch.Tensor(np.random.normal(0, sigma, 256))\n", - "\n", - "for i in range(64):\n", - " mean, _ = network.encoder(seqs[i].unsqueeze(0).unsqueeze(0))\n", - " output = network.decoder(mean + bias)\n", - " output = output.squeeze(0).squeeze(0).detach().numpy()\n", - " outputs.append(output)\n", - "\n", - "outputs = np.stack(outputs, axis=0)\n", - "\n", - "animation = animate_stick(seqs_numpy[:, :, :3], ghost=outputs, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "$\\sigma=0.1$" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "outputs = []\n", - "sigma = 0.1\n", - "\n", - "bias = torch.Tensor(np.random.normal(0, sigma, 256))\n", - "\n", - "for i in range(64):\n", - " mean, _ = network.encoder(seqs[i].unsqueeze(0).unsqueeze(0))\n", - " output = network.decoder(mean + bias)\n", - " output = output.squeeze(0).squeeze(0).detach().numpy()\n", - " outputs.append(output)\n", - "\n", - "outputs = np.stack(outputs, axis=0)\n", - "\n", - "animation = animate_stick(seqs_numpy[:, :, :3], ghost=outputs, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "$\\sigma=0.5$" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "outputs = []\n", - "sigma = 0.5\n", - "\n", - "bias = torch.Tensor(np.random.normal(0, sigma, 256))\n", - "\n", - "for i in range(64):\n", - " mean, _ = network.encoder(seqs[i].unsqueeze(0).unsqueeze(0))\n", - " output = network.decoder(mean + bias)\n", - " output = output.squeeze(0).squeeze(0).detach().numpy()\n", - " outputs.append(output)\n", - "\n", - "outputs = np.stack(outputs, axis=0)\n", - "\n", - "animation = animate_stick(seqs_numpy[:, :, :3], ghost=outputs, ghost_shift=0.2, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Sample randomly from the latent space, output shows a jittery fashion" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "outputs = []\n", - "sigma = 0.1\n", - "\n", - "for i in range(64):\n", - " output = network.decoder(torch.Tensor(np.random.normal(0, sigma, (1, 256))))\n", - " output = output.squeeze(0).squeeze(0).detach().numpy()\n", - " outputs.append(output)\n", - "\n", - "outputs = np.stack(outputs, axis=0)\n", - "\n", - "animation = animate_stick(outputs, figsize=(10, 8), cmap='inferno', cloud=False, ax_lims=(-1, 1))\n", - "\n", - "animation_js = animation.to_jshtml()\n", - "display(HTML(animation_js))" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.4" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_1.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_1.gif deleted file mode 100644 index 146e6f7..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_1.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_2_1.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_2_1.gif deleted file mode 100644 index b59d324..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_2_1.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_2_2.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_2_2.gif deleted file mode 100644 index 008d1c8..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_2_2.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_3.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_3.gif deleted file mode 100644 index b59d324..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_3.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_3_original.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_3_original.gif deleted file mode 100644 index cfa376a..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/fail_case_3_original.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_104.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_104.gif deleted file mode 100644 index 624c3a8..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_104.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_155.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_155.gif deleted file mode 100644 index 70ad3b5..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_155.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_1900.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_1900.gif deleted file mode 100644 index 8f6f8ab..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_1900.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_846.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_846.gif deleted file mode 100644 index 7ea9c84..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_846.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_909.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_909.gif deleted file mode 100644 index b2ba2d2..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_False_909.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1319.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1319.gif deleted file mode 100644 index 9e04ff1..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1319.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1635.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1635.gif deleted file mode 100644 index 495ef17..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1635.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1929.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1929.gif deleted file mode 100644 index 8190b46..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_1929.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_2036.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_2036.gif deleted file mode 100644 index 5cf9cae..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_2036.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_585.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_585.gif deleted file mode 100644 index b7ee3b9..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_585.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_604.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_604.gif deleted file mode 100644 index 8dfd895..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_604.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_629.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_629.gif deleted file mode 100644 index 36dbd16..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_dyads_rehearsal_leah_generate_d1_True_629.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_100.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_100.gif deleted file mode 100644 index 20dc68a..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_100.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_217.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_217.gif deleted file mode 100644 index 4dad7cb..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_217.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_331.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_331.gif deleted file mode 100644 index 88488b3..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_331.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_35.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_35.gif deleted file mode 100644 index 7baf2dd..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_35.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_894.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_894.gif deleted file mode 100644 index 4b1a582..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_False_894.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1012.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1012.gif deleted file mode 100644 index af464ef..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1012.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1162.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1162.gif deleted file mode 100644 index 6402254..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1162.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_121.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_121.gif deleted file mode 100644 index b3d4fe1..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_121.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1780.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1780.gif deleted file mode 100644 index 805cef9..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_1780.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_192.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_192.gif deleted file mode 100644 index b363026..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_192.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_24.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_24.gif deleted file mode 100644 index 5005e6f..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_24.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_247.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_247.gif deleted file mode 100644 index ef210f1..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_247.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_417.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_417.gif deleted file mode 100644 index cda955f..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_417.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_837.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_837.gif deleted file mode 100644 index 985adda..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_hannah_cassie_generate_d1_True_837.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_1097.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_1097.gif deleted file mode 100644 index 7cef2d0..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_1097.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_241.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_241.gif deleted file mode 100644 index 45b1cfa..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_241.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_423.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_423.gif deleted file mode 100644 index 8c35301..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_423.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_73.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_73.gif deleted file mode 100644 index a980b2a..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_73.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_84.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_84.gif deleted file mode 100644 index 9b7bcec..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_False_84.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1154.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1154.gif deleted file mode 100644 index 7f3ba58..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1154.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1175.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1175.gif deleted file mode 100644 index 8850aba..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1175.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1236.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1236.gif deleted file mode 100644 index c81f2e3..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_1236.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_250.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_250.gif deleted file mode 100644 index 71b5984..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_250.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_666.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_666.gif deleted file mode 100644 index 4c86a2a..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_666.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_748.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_748.gif deleted file mode 100644 index 2c4bc25..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_ilya_hannah_dyads_generate_d1_True_748.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_False_500.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_False_500.gif deleted file mode 100644 index 42bffba..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_False_500.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_False_573.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_False_573.gif deleted file mode 100644 index 1ae0515..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_False_573.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_0.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_0.gif deleted file mode 100644 index 607a4a5..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_0.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_1.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_1.gif deleted file mode 100644 index 0adc3c8..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_1.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_1183.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_1183.gif deleted file mode 100644 index d616260..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_1183.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_128.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_128.gif deleted file mode 100644 index 4c2fc6e..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_128.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_189.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_189.gif deleted file mode 100644 index 4439b0b..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_189.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_32.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_32.gif deleted file mode 100644 index dc01e4e..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_32.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_378.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_378.gif deleted file mode 100644 index 3e7a78d..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_378.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_430.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_430.gif deleted file mode 100644 index 60f9a79..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_430.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_500.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_500.gif deleted file mode 100644 index b76956d..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_500.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_580.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_580.gif deleted file mode 100644 index 8240bb8..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_580.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_64.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_64.gif deleted file mode 100644 index e15b7cf..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_64.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_666.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_666.gif deleted file mode 100644 index d27be98..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_666.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_98.gif b/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_98.gif deleted file mode 100644 index 8b51b5a..0000000 Binary files a/ChoreoAI_Zixuan_Wang/gsoc_vis/pose_extraction_img_9085_generate_d1_True_98.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/job-gpu.sh b/ChoreoAI_Zixuan_Wang/job-gpu.sh deleted file mode 100644 index f04ecce..0000000 --- a/ChoreoAI_Zixuan_Wang/job-gpu.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -#SBATCH -A m4474 -#SBATCH -C gpu -#SBATCH -q shared -#SBATCH -t 48:00:00 -#SBATCH -n 1 -#SBATCH -c 32 -#SBATCH --gpus-per-task=1 - -srun python3 train.py \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/loss/reconstruction_loss.py b/ChoreoAI_Zixuan_Wang/loss/reconstruction_loss.py deleted file mode 100644 index 7ba32c7..0000000 --- a/ChoreoAI_Zixuan_Wang/loss/reconstruction_loss.py +++ /dev/null @@ -1,37 +0,0 @@ -import torch -import torch.nn as nn - -class ReconstructionLoss(nn.Module): - def __init__(self, velocity_loss_weight, kl_loss_weight, mse_loss_weight=0.5): - super(ReconstructionLoss, self).__init__() - self.mse_loss = nn.MSELoss() - self.velocity_loss_weight = velocity_loss_weight - self.kl_loss_weight = kl_loss_weight - self.mse_loss_weight = mse_loss_weight - - def forward(self, pred_data_1, pred_data_2, target_1, target_2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2, dancer1_data, dancer2_data, frames=1): - if is_simplified_model: - mse_1 = self.mse_loss(out_1, dancer1_data) - mse_2 = self.mse_loss(out_2, dancer2_data) - return self.mse_loss_weight * (mse_1 + mse_2) - - else: - mse_1 = self.mse_loss(pred_data_1, target_1) - mse_2 = self.mse_loss(pred_data_2, target_2) - - # video continuity loss - # [batch, seq_len, 29, 3] - velocity_1 = pred_data_1[:, 1:, :, :] - pred_data_1[:, :-1, :, :] - velocity_1_diff = velocity_1[:, frames:, :, :] - velocity_1[:, :-frames, :, :] - velocity_loss_1 = torch.mean(torch.norm(velocity_1_diff, p=2, dim=[2, 3])) - - velocity_2 = pred_data_2[:, 1:, :, :] - pred_data_2[:, :-1, :, :] - velocity_2_diff = velocity_2[:, frames:, :, :] - velocity_2[:, :-frames, :, :] - velocity_loss_2 = torch.mean(torch.norm(velocity_2_diff, p=2, dim=[2, 3])) - - # KL divergence loss - return self.mse_loss_weight * mse_1 + self.mse_loss_weight * mse_2 + self.velocity_loss_weight * velocity_loss_1 + self.velocity_loss_weight * velocity_loss_2 + self.kl_loss_weight * ( - - 0.5 * torch.mean(torch.sum(1 + log_var_1 - mean_1 ** 2 - torch.exp(log_var_1), dim=-1), dim=0) - - 0.5 * torch.mean(torch.sum(1 + log_var_2 - mean_2 ** 2 - torch.exp(log_var_2), dim=-1), dim=0) - - 0.5 * torch.mean(torch.sum(1 + log_var_duet - mean_duet ** 2 - torch.exp(log_var_duet), dim=-1), dim=0) - ) diff --git a/ChoreoAI_Zixuan_Wang/model/README.md b/ChoreoAI_Zixuan_Wang/model/README.md deleted file mode 100644 index 3ae715f..0000000 --- a/ChoreoAI_Zixuan_Wang/model/README.md +++ /dev/null @@ -1,58 +0,0 @@ -# Probability-and-Attention-based VAE for Duet Generation - -## Motivation -Transformers are advanced machine learning models that use attention mechanisms to process sequence data efficiently. They focus on relationships between all parts of the sequence simultaneously, making them faster and more effective at capturing complex patterns than traditional models like RNNs. Variational Autoencoders are generative models that learn to encode data into a compressed latent space and then decode it back to the original space. They balance a reconstruction loss, ensuring data similarity, with a KL divergence loss, promoting distributional similarity to a prior, facilitating data generation and representation learning. - -We aim to utilize both models to generate sequential dancing data by taking advantage of attention mechanism and probabilistic generative capabilities. The transformer's ability to model interactions between sequence elements at different positions allows us to capture the dynamic interplay between dancers' movements over time. On the other hand, the variational autoencoder (VAE) will enable us to generate new dance sequences that are both diverse and realistic by learning a latent space representation of dance movements. This integrated approach allows the model to not only understand the complex patterns in dance but also to innovate by generating movements that maintain the fluidity and expressiveness essential to human-like dance performances. - -## Network Design - -The network consists of three VAEs designated as VAE 1, VAE 2, and VAE 3. Each VAE processes different aspects of dance movement sequences, with VAE 1 and VAE 2 handling individual sequences and VAE 3 focusing on the absolute distances between dancers, capturing their spatial interactions. -![](../assets/network_detailed.png) - -### Input and Output -- **Input**: Sequences for dancer 1 and dancer 2, with shape `[seq_length, num_joints, dim]`, the time window for this sequence is `[t, t + seq_length]`. -- **Output**: Predicted sequence in the next time step with same shape as input `[seq_length, num_joints, dim]`, and the time window is `[t + 1, t + 1 + seq_length]`. - -### VAE -- **Positional Encoding**: This component is crucial as it provides the model with information about the sequence order of the dance movements, which is essential for understanding the temporal dynamics of the dance. -- **Multi-head Attention**: It enables the model to focus on different parts of the dance sequence simultaneously, improving the ability to model complex dependencies. -- **2-layer LSTM**: These layers are part of the VAEs’ encoders and decoders, helping to capture the temporal dependencies and nuances in dance movements over time. -- **Reparameterization**: This step in the VAEs allows for generating new dance sequences by sampling from the learned distribution in the latent space, ensuring variability and creativity in generated dance movements. -- **Conv layer**: A convolutional layer in the decoder helps to smooth the output from the encoder, an important aspect of performances. - -### Transformer Decoder for Data Generation -We utilize standard transformer decoder to generate data based on both its own input sequence and context provided by three VAEs. In the forward pass of this module, -- The input sequence is reshaped and processed through the linear transformation to match the expected dimensionality for the transformer layers. -- Positional encodings are added to the transformed input to incorporate temporal information. -- Call the official `nn.TransformerDecoder` API, with `tgt` being original sequence and `memory` being the summation of the output from VAE for single dancer and VAE for duet. For example, to generate dancer 2, `tgt` would be the original dancer 2 data, `memory` would be the summation of VAE 1 output and VAE 3 output. -- The output from the transformer decoder is then passed through a final linear layer to ensure it has the correct shape and properties to match the expected output format. -- Finally, the output is reshaped to ensure it matches the original input's structure. - -### Probability-based Method -During the experiment, we observed that supervising only the output of the Transformer Decoder resulted in suboptimal reconstruction performance. To enhance the reconstruction accuracy of the individual dancer VAEs, we introduced a probability-based method. This approach selectively optimizes either VAE 1 or VAE 2 with a certain probability, effectively focusing the optimization process on improving the reconstruction loss for single dancers. This strategy ensures that each VAE can learn detailed and accurate representations independently, thereby improving the overall quality of the model's output. - -### Losses -- MSE Loss: This is a standard loss used to measure the average squared difference between the predicted outputs and the actual target values. It effectively quantifies the accuracy of the model's predictions by penalizing the error between the predicted and actual dancer positions. For simplified models, where the focus is on directly optimizing the Variational Autoencoders (VAEs) for individual dancers, MSE is computed between the VAE outputs and the actual dancer data. In more complex scenarios, MSE is calculated between the Transformer Decoder outputs (predicted dancer movements) and the corresponding targets. -- KL Divergence Loss: This loss component is crucial for the training of VAEs. It measures the difference between the learned distribution (represented by the means and log variances of the latent variables) and the prior distribution, typically assumed to be a standard normal distribution. This loss ensures that the latent space representations do not stray too far from a normal distribution, which helps in regularizing the model and avoiding overfitting. It also facilitates the generation process by ensuring that the latent space has good coverage and that similar inputs lead to similar outputs in a continuous latent space. -- Velocity Loss: Designed to maintain the continuity and fluidity of motion between consecutive frames, this loss calculates the first order difference between frames, referred to as velocity, and then measures how much this velocity changes over a specified number of frames (denoted by `frames`). The loss is computed as the norm of the difference in velocities, which encourages smoother transitions and more realistic motion in the generated dance sequences. In our experiment, Velocity Loss played an important role in regularizing the result to be "rational" and not being crazy. The model also behaves sensitive to the parameters of this loss, including `frames` and `loss_weight`. - -### Learning curves - -To get the best model weights, we tested different hyperparameter configurations. Below are training loss and validation loss for 5 configurations for the model, with the best configuration being -```python -linear_num_features = 64 -n_head = 8 -latent_dim = 64 -n_units = 64 -seq_len = 64 -no_input_prob = 0.1 -velocity_loss_weight = 0.05 -kl_loss_weight = 0.00005 -mse_loss_weight = 0.5 -frames = 1 -``` -
- - -
\ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/model/model_pipeline.py b/ChoreoAI_Zixuan_Wang/model/model_pipeline.py deleted file mode 100644 index 68f496d..0000000 --- a/ChoreoAI_Zixuan_Wang/model/model_pipeline.py +++ /dev/null @@ -1,120 +0,0 @@ -import torch -import os -import logging -from copy import deepcopy - -from model.transformer import DancerTransformer -from torch.nn.parallel import DataParallel, DistributedDataParallel -from loss.reconstruction_loss import ReconstructionLoss -from utils.misc import get_time_str - -logger = logging.getLogger('ai_choreo') - - -class Pipeline: - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob, velocity_loss_weight, kl_loss_weight, mse_loss_weight=0.5, frames=1, epochs=100): - self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') - self.linear_num_features = linear_num_features - self.n_head = n_head - self.latent_dim = latent_dim - self.n_units = n_units - self.seq_len = seq_len - self.no_input_prob = no_input_prob - self.velocity_loss_weight = velocity_loss_weight - self.kl_loss_weight = kl_loss_weight - self.mse_loss_weight = mse_loss_weight - self.frames = frames - self.epochs = epochs - self.network = DancerTransformer(linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob).to(self.device) - self.loss = 0 - self.criterion = ReconstructionLoss(self.velocity_loss_weight, self.kl_loss_weight, self.mse_loss_weight) - - self.init_training_settings(epochs) - - def init_training_settings(self, epochs): - self.network.train() - self.setup_optimizers() - self.setup_schedulers(epochs) - - def setup_optimizers(self): - optim_params = [] - for k, v in self.network.named_parameters(): - if v.requires_grad: - optim_params.append(v) - - self.optimizer = torch.optim.Adam(optim_params) - - def setup_schedulers(self, epochs): - self.scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(self.optimizer, epochs) - - def feed_data(self, data): - self.dancer1_data = torch.tensor(data['dancer1'], dtype=torch.float32).to(self.device) - self.dancer2_data = torch.tensor(data['dancer2'], dtype=torch.float32).to(self.device) - self.dancer1_next_timestamp = torch.tensor(data['dancer1_next_timestamp'], dtype=torch.float32).to(self.device) - self.dancer2_next_timestamp = torch.tensor(data['dancer2_next_timestamp'], dtype=torch.float32).to(self.device) - - def compute_loss(self, pred_data_1, pred_data_2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2): - return self.criterion(pred_data_1, pred_data_2, self.dancer1_next_timestamp, self.dancer2_next_timestamp, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2, self.dancer1_data, self.dancer2_data, self.frames) - - def optimize_parameters(self): - self.network.zero_grad() - pred_data1, pred_data2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2 = self.network(self.dancer1_data, self.dancer2_data) - - self.loss = self.compute_loss(pred_data1, pred_data2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2) - - self.loss.backward() - self.optimizer.step() - - return self.loss - - def load_network(self, net, load_path, strict=True, param_key='params'): - if isinstance(net, (DataParallel, DistributedDataParallel)): - net = net.module - logger.info( - f'Loading {net.__class__.__name__} model from {load_path}.') - load_net = torch.load( - load_path, map_location=lambda storage, loc: storage) - if param_key is not None: - load_net = load_net[param_key] - for k, v in deepcopy(load_net).items(): - if k.startswith('module.'): - load_net[k[7:]] = v - load_net.pop(k) - net.load_state_dict(load_net, strict=strict) - - def update_learning_rate(self): - self.scheduler.step() - - def save_network(self, param_key='params'): - save_filename = "best_model" + "_fea_" + str(self.linear_num_features) + "_head_" + str(self.n_head) + "_latent_" + str(self.latent_dim) + "_units_" + str(self.n_units) + "_seq_len_" + str(self.seq_len) + "_prob_" + str(self.no_input_prob) + "_velo_" + str(self.velocity_loss_weight) + "_kl_" + str(self.kl_loss_weight) + "_mse_" + str(self.mse_loss_weight) + "_frames_" + str(self.frames) + ".pth" - save_path = os.path.join("result", save_filename) - - param_key = param_key if isinstance(param_key, list) else [param_key] - - save_dict = {} - net_ = self.network - param_key_ = param_key[0] - - if isinstance(net_, (DataParallel, DistributedDataParallel)): - net_ = net_.module - state_dict = net_.state_dict() - for key, param in state_dict.items(): - if key.startswith('module.'): - key = key[7:] - state_dict[key] = param.cpu() - save_dict[param_key_] = state_dict - - torch.save(save_dict, save_path) - - def test(self, test_loader): - self.network.eval() - cur_loss = 0 - with torch.no_grad(): - for test_data in test_loader: - self.feed_data(test_data) - pred_data1, pred_data2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2 = self.network(self.dancer1_data, self.dancer2_data, is_inference=True) - cur_loss += self.compute_loss(pred_data1, pred_data2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2) - - cur_loss /= len(test_loader) - self.network.train() - return cur_loss diff --git a/ChoreoAI_Zixuan_Wang/model/transformer.py b/ChoreoAI_Zixuan_Wang/model/transformer.py deleted file mode 100644 index 5c3356c..0000000 --- a/ChoreoAI_Zixuan_Wang/model/transformer.py +++ /dev/null @@ -1,191 +0,0 @@ -import torch -import torch.nn as nn -import torch.nn.functional as F -import math - - -class VAEForSingleDancerEncoder(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim): - super(VAEForSingleDancerEncoder, self).__init__() - self.linear = nn.Linear(29 * 3, linear_num_features) - self.pos_encoding = PositionalEncoding(linear_num_features) - self.multihead_attention = nn.MultiheadAttention(embed_dim=linear_num_features, num_heads=n_head, batch_first=True) - self.lstm = nn.LSTM(input_size=linear_num_features, hidden_size=linear_num_features, num_layers=2, batch_first=True) - self.mean = nn.Linear(in_features=linear_num_features, out_features=latent_dim) - self.log_var = nn.Linear(in_features=linear_num_features, out_features=latent_dim) - - def forward(self, x): - x = x.reshape(x.shape[0], x.shape[1], -1) - x = self.pos_encoding(self.linear(x)) - attn_output, _ = self.multihead_attention(x, x, x) - _, (hidden, _) = self.lstm(attn_output) - z_mean = self.mean(hidden[-1]) - z_log_var = self.log_var(hidden[-1]) - return z_mean, z_log_var - - -class VAEForSingleDancerDecoder(nn.Module): - def __init__(self, latent_dim, n_units, seq_len): - super(VAEForSingleDancerDecoder, self).__init__() - self.linear = nn.Linear(latent_dim, n_units) - self.lstm = nn.LSTM(input_size=n_units, hidden_size=n_units, num_layers=2, batch_first=True) - self.out = nn.Conv1d(in_channels=n_units, out_channels=29 * 3, kernel_size=3, padding=1) - self.seq_len = seq_len - - def forward(self, x): - x = F.relu(self.linear(x)) - x = x.unsqueeze(1).repeat(1, self.seq_len, 1) - lstm_out, _ = self.lstm(x) - lstm_out = lstm_out.reshape(-1, lstm_out.shape[2], lstm_out.shape[1]) - lstm_out = self.out(lstm_out) - lstm_out = lstm_out.reshape(-1, lstm_out.shape[2], 29 * 3) - return lstm_out - - -class VAEForSingleDancer(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, default_log_var, device='cuda'): - super(VAEForSingleDancer, self).__init__() - self.encoder = VAEForSingleDancerEncoder(linear_num_features, n_head, latent_dim) - self.decoder = VAEForSingleDancerDecoder(latent_dim, n_units, seq_len) - self.device = device - self.latent_dim = latent_dim - self.default_log_var = default_log_var - - def sample_z(self, mean, log_var): - batch, dim = mean.shape - epsilon = torch.randn(batch, dim).to(self.device) - return mean + torch.exp(0.5 * log_var) * epsilon - - def forward(self, x, no_input=False): - batch = x.size()[0] - if no_input: - mean, log_var = torch.zeros(batch, self.latent_dim), torch.ones(batch, self.latent_dim) * self.default_log_var - mean = mean.to(self.device) - log_var = log_var.to(self.device) - else: - mean, log_var = self.encoder(x) - z = self.sample_z(mean, log_var) - x = self.decoder(z) - return x, mean, log_var - - -class VAEForDuet(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, device='cuda'): - super(VAEForDuet, self).__init__() - self.encoder = VAEForSingleDancerEncoder(linear_num_features, n_head, latent_dim) - self.decoder = VAEForSingleDancerDecoder(latent_dim, n_units, seq_len) - self.device = device - - def sample_z(self, mean, log_var): - batch, dim = mean.shape - epsilon = torch.randn(batch, dim).to(self.device) - return mean + torch.exp(0.5 * log_var) * epsilon - - def forward(self, d1, d2): - # proximity - proximity = torch.abs(d1 - d2) - mean, log_var = self.encoder(proximity) - z = self.sample_z(mean, log_var) - x = self.decoder(z) - return x, mean, log_var - - -class PositionalEncoding(nn.Module): - def __init__(self, d_model, max_len=5000): - super(PositionalEncoding, self).__init__() - pe = torch.zeros(max_len, d_model) - position = torch.arange(0, max_len, dtype=torch.float).unsqueeze(1) - div_term = torch.exp(torch.arange(0, d_model, 2).float() * (-math.log(10000.0) / d_model)) - pe[:, 0::2] = torch.sin(position * div_term) - pe[:, 1::2] = torch.cos(position * div_term) - pe = pe.unsqueeze(0).transpose(0, 1) - self.register_buffer('pe', pe) - - def forward(self, x): - x = x + self.pe[:x.size(0), :, :x.size(2)] - return x - - -class TransformerDecoder(nn.Module): - def __init__(self, d_model, nhead=8, num_layers=2, dim_feedforward=256): - super(TransformerDecoder, self).__init__() - self.linear = nn.Linear(29 * 3, d_model) - self.pos_encoder = PositionalEncoding(d_model) - self.decoder_layer = nn.TransformerDecoderLayer(d_model=d_model, nhead=nhead, dim_feedforward=dim_feedforward) - self.transformer_decoder = nn.TransformerDecoder(self.decoder_layer, num_layers=num_layers) - self.fc_out = nn.Linear(d_model, 29 * 3) - - def forward(self, tgt, memory): - # tgt: [29, 3], memory: [29 * 3] - batch_size, seq_len, num_joints, joint_dim = tgt.shape - tgt = tgt.view(batch_size, seq_len, num_joints * joint_dim) - - tgt = self.linear(tgt) - memory = self.linear(memory) - - tgt = self.pos_encoder(tgt) - output = self.transformer_decoder(tgt, memory) - output = self.fc_out(output) - output = output.view(batch_size, seq_len, num_joints, joint_dim) - return output - - -class DancerTransformer(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob, default_log_var=0.5): - super(DancerTransformer, self).__init__() - self.vae_1 = VAEForSingleDancer(linear_num_features, n_head, latent_dim, n_units, seq_len, default_log_var) - self.vae_2 = VAEForSingleDancer(linear_num_features, n_head, latent_dim, n_units, seq_len, default_log_var) - self.vae_duet = VAEForDuet(linear_num_features, n_head, latent_dim, n_units, seq_len) - self.transformer_decoder_1 = TransformerDecoder(linear_num_features) - self.transformer_decoder_2 = TransformerDecoder(linear_num_features) - self.no_input_prob = no_input_prob - - def forward(self, d1, d2, is_inference=False): - rdm_val = torch.randn(1) - is_simplified_model = False - - combined = torch.stack((d1, d2), dim=-1) - mean = combined.mean(dim=(2, 3, 4), keepdim=True) - std = combined.std(dim=(2, 3, 4), keepdim=True) - combined_normalized = (combined - mean) / (std + 1e-6) - - d1_normalized = combined_normalized[..., 0] - d2_normalized = combined_normalized[..., 1] - - if not is_inference and rdm_val < self.no_input_prob: - is_simplified_model = True - # only focus on one VAE model - out_1, mean_1, log_var_1 = self.vae_1(d1_normalized) - out_2, mean_2, log_var_2 = self.vae_2(d2_normalized) - batch_size, seq_len, _ = out_1.shape - out_1 = out_1.view(batch_size, seq_len, 29, 3) - out_2 = out_2.view(batch_size, seq_len, 29, 3) - pred_1 = None - pred_2 = None - mean_duet = None - log_var_duet = None - - else: - out_1, mean_1, log_var_1 = self.vae_1(d1_normalized) - out_2, mean_2, log_var_2 = self.vae_2(d2_normalized) - out_duet, mean_duet, log_var_duet = self.vae_duet(d1_normalized, d2_normalized) - - # [batch_size, seq_len, 29 * 3] - memory_1 = out_1 + out_duet - memory_2 = out_2 + out_duet - - # transformer decoder - pred_2 = self.transformer_decoder_1(d2_normalized, memory_1) - pred_1 = self.transformer_decoder_2(d1_normalized, memory_2) - - return pred_1, pred_2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2 - - -if __name__ == '__main__': - model = DancerTransformer(64, 8, 32, 32, 64).to('cuda') - print(model) - input_1 = torch.rand(8, 64, 29, 3).to('cuda') - input_2 = torch.rand(8, 64, 29, 3).to('cuda') - - out_1, out_2, _, _, _, _, _, _ = model(input_1, input_2) - print(out_1.shape) diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_0.0001_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_0.0001_mse_0.5_frames_1.pth deleted file mode 100644 index e3a5804..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_0.0001_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_5e-05_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_5e-05_mse_0.5_frames_1.pth deleted file mode 100644 index 83d9e02..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_5e-05_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_5e-05_mse_0.5_frames_5.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_5e-05_mse_0.5_frames_5.pth deleted file mode 100644 index 9f45149..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.05_kl_5e-05_mse_0.5_frames_5.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.1_kl_0.0001_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.1_kl_0.0001_mse_0.5_frames_1.pth deleted file mode 100644 index 2b08475..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.1_kl_0.0001_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.1_kl_5e-05_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.1_kl_5e-05_mse_0.5_frames_1.pth deleted file mode 100644 index 1ab99b1..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.1_kl_5e-05_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.2_kl_0.0001_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.2_kl_0.0001_mse_0.5_frames_1.pth deleted file mode 100644 index 62461e7..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.2_kl_0.0001_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.2_kl_5e-05_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.2_kl_5e-05_mse_0.5_frames_1.pth deleted file mode 100644 index 723dc90..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.1_velo_0.2_kl_5e-05_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.05_kl_0.0001_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.05_kl_0.0001_mse_0.5_frames_1.pth deleted file mode 100644 index 281c671..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.05_kl_0.0001_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.05_kl_5e-05_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.05_kl_5e-05_mse_0.5_frames_1.pth deleted file mode 100644 index efc4ffb..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.05_kl_5e-05_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.0_kl_0.0001_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.0_kl_0.0001_mse_0.5_frames_1.pth deleted file mode 100644 index 48ec265..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.0_kl_0.0001_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.0_kl_5e-05_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.0_kl_5e-05_mse_0.5_frames_1.pth deleted file mode 100644 index d114e39..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.0_kl_5e-05_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.1_kl_5e-05_mse_0.5_frames_1.pth b/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.1_kl_5e-05_mse_0.5_frames_1.pth deleted file mode 100644 index 1d999b0..0000000 Binary files a/ChoreoAI_Zixuan_Wang/model_weights/best_model_fea_64_head_8_latent_64_units_64_seq_len_64_prob_0.3_velo_0.1_kl_5e-05_mse_0.5_frames_1.pth and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/plot.py b/ChoreoAI_Zixuan_Wang/plot.py deleted file mode 100644 index 9649b52..0000000 --- a/ChoreoAI_Zixuan_Wang/plot.py +++ /dev/null @@ -1,224 +0,0 @@ -from glob import glob -from tqdm import tqdm -import numpy as np -import mpl_toolkits.mplot3d.axes3d as p3 -import matplotlib -from matplotlib import animation -from mpl_toolkits.mplot3d.art3d import juggle_axes -from IPython.display import display, HTML -import matplotlib.pyplot as plt -ffmpeg_path = '/global/homes/z/zxwang11/ffmpeg-static/ffmpeg-7.0.1-amd64-static/ffmpeg' -plt.rcParams['animation.ffmpeg_path'] = ffmpeg_path - - -point_labels = [ - 'pelvis', 'left_hip', 'right_hip', # 2 - 'spine1', 'left_knee', 'right_knee', # 5 - 'spine2', 'left_ankle', 'right_ankle', # 8 - 'spine3', 'left_foot', 'right_foot', # 11 - 'neck', 'left_collar', 'right_collar', # 14 - 'jaw', # 15 - 'left_shoulder', 'right_shoulder', # 17 - 'left_elbow', 'right_elbow', # 19 - 'left_wrist', 'right_wrist', # 21 - 'left_thumb', 'right_thumb', - 'head', 'left_middle', 'right_middle', # 26 - 'left_bigtoe', 'right_bigtoe' -] - -skeleton_lines = [ - # ( (start group), (end group) ), - (('pelvis',), ('left_hip',)), - (('pelvis',), ('right_hip',)), - (('left_hip',), ('left_knee',)), - (('right_hip',), ('right_knee',)), - (('left_knee',), ('left_ankle',)), - (('right_knee',), ('right_ankle',)), - (('left_ankle',), ('left_foot',)), - (('right_ankle',), ('right_foot',)), - (('pelvis',), ('spine1',)), - (('spine1',), ('spine2',)), - (('spine2',), ('spine3',)), - (('spine3',), ('neck',)), - (('spine3',), ('left_collar',)), - (('spine3',), ('right_collar',)), - (('neck',), ('jaw',)), - (('left_collar',), ('left_shoulder',)), - (('right_collar',), ('right_shoulder',)), - (('left_shoulder',), ('left_elbow',)), - (('right_shoulder',), ('right_elbow',)), - (('left_elbow',), ('left_wrist',)), - (('right_elbow',), ('right_wrist',)), - (('left_wrist',), ('left_thumb',)), - (('right_wrist',), ('right_thumb',)), - (('neck',), ('head',)), - - # (('left_shoulder',), ('left_middle',)), - # (('right_shoulder',), ('right_middle',)), - (('left_ankle',), ('left_bigtoe',)), - (('right_ankle',), ('right_bigtoe',)), -] - - -skeleton_idxs = [] -for g1, g2 in skeleton_lines: - entry = [] - entry.append([point_labels.index(l) for l in g1]) - entry.append([point_labels.index(l) for l in g2]) - skeleton_idxs.append(entry) - -# Cloud of every point connected: -cloud_idxs = [] -for i in range(29): - for j in range(29): - entry = [] - entry.append([i]) - entry.append([j]) - cloud_idxs.append(entry) - -all_idxs = skeleton_idxs + cloud_idxs - -def get_line_segments(seq, zcolor=None, cmap=None, cloud=False, edge_types=None, edge_class=None): - xline = np.zeros((seq.shape[0], len(all_idxs), 3, 2)) - if cmap: - colors = np.zeros((len(all_idxs), 4)) - for edge, (joint1, joint2) in enumerate(all_idxs): - xline[:, edge, :,0] = np.mean(seq[:, joint1], axis=1) - xline[:, edge, :,1] = np.mean(seq[:, joint2], axis=1) - if cmap: - if edge_types is not None: - if edge >= len(skeleton_idxs): # cloud edges - if edge_types[edge - len(skeleton_idxs), edge_class] == 1: - colors[edge] = cmap(1) - else: - colors[edge] = cmap(0) - else: - colors[edge] = cmap(0) - if cmap: - return xline, colors - else: - return xline - -# put line segments on the given axis, with given colors -def put_lines(ax, segments, color=None, lw=2.5, alpha=None, skeleton=True, skeleton_alpha=0.3, cloud=False, cloud_alpha=0.03, threshold=0, edge_types=None, edge_opacities=None, edge_class=None): - lines = [] - ### Main skeleton - for i in tqdm(range(len(skeleton_idxs)), desc="Skeleton lines"): - if isinstance(color, (list, tuple, np.ndarray)): - c = color[i] - else: - c = color - - if skeleton: alpha = skeleton_alpha - else: alpha = 0 - - ### THESE LINES PLOT THE MAIN SKELETON - l = ax.plot(np.linspace(segments[i, 0, 0],segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - # color=c, - alpha=alpha, - lw=lw)[0] - lines.append(l) - - if cloud: - ### Cloud of all-connected joints - for i in tqdm(range(len(cloud_idxs)), desc="Cloud lines"): - if isinstance(color, (list, tuple, np.ndarray)): - c = color[i] - else: - c = color - - l = ax.plot( - np.linspace(segments[i, 0, 0], segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - color=c, - alpha=cloud_alpha, - lw=lw)[0] - lines.append(l) - return lines - -# animate a video of the stick figure. -# `ghost` may be a second sequence, which will be superimposed on the primary sequence. -# If ghost_shift is given, the primary and ghost sequence will be separated laterally by that amount. -# `zcolor` may be an N-length array, where N is the number of vertices in seq, and will be used to color the vertices. Typically this is set to the avg. z-value of each vtx. -def animate_stick(seq, ghost=None, ghost_shift=0, threshold=0, figsize=None, zcolor=None, pointer=None, ax_lims=(-0.4, 0.4), speed=45, dot_size=20, dot_alpha=0.5, lw=2.5, cmap='cool_r', pointer_color='black', cloud=False, cloud_alpha=0.03, skeleton=True, skeleton_alpha=0.3): - if zcolor is None: - zcolor = np.zeros(seq.shape[1]) - - fig = plt.figure(figsize=figsize) - # ax = p3.Axes3D(fig) - ax = plt.axes(projection='3d') - - # The following lines eliminate background lines/axes: - ax.axis('off') - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - # ax.set_frame_on(True) - - # set figure background opacity (alpha) to 0: - fig.patch.set_alpha(0.) - - if ghost_shift and ghost is not None: - seq = seq.copy() - ghost = ghost.copy() - seq[:, :, 0] -= ghost_shift - ghost[:, :, 0] += ghost_shift - - cm = matplotlib.colormaps[cmap] - - dot_color = "black" - pts = ax.scatter(seq[0, :, 0], seq[0, :, 1], seq[0, :, 2], c=dot_color, s=dot_size, alpha=dot_alpha) - ghost_color = 'blue' - - if ghost is not None: - pts_g = ax.scatter(ghost[0, :, 0], ghost[0, :, 1], ghost[0, :, 2], c=ghost_color, s=dot_size, alpha=dot_alpha) - - if ax_lims: - ax.set_xlim(*ax_lims) - ax.set_ylim(*ax_lims) - ax.set_zlim(*ax_lims) - - plt.close(fig) - xline, colors = get_line_segments(seq, zcolor, cm) - lines = put_lines(ax, xline[0], color=colors, lw=lw, alpha=0.9, cloud=cloud, cloud_alpha=cloud_alpha, threshold=threshold, skeleton=skeleton, skeleton_alpha=skeleton_alpha) - - if ghost is not None: - xline_g = get_line_segments(ghost) - lines_g = put_lines(ax, xline_g[0], ghost_color, lw=lw, alpha=1.0, cloud=cloud, cloud_alpha=cloud_alpha, skeleton=skeleton, skeleton_alpha=skeleton_alpha) - - if pointer is not None: - vR = 0.15 - dX, dY = vR * np.cos(pointer), vR * np.sin(pointer) - zidx = point_labels.index('CLAV') - X = seq[:, zidx, 0] - Y = seq[:, zidx, 1] - Z = seq[:, zidx, 2] - quiv = ax.quiver(X[0], Y[0], Z[0], dX[0], dY[0], 0, color=pointer_color) - ax.quiv = quiv - - def update(t): - pts._offsets3d = juggle_axes(seq[t, :, 0], seq[t, :, 1], seq[t, :, 2], 'z') - for i,l in enumerate(lines): - if l is not None: - l.set_data(xline[t, i, :2]) - l.set_3d_properties(xline[t, i, 2]) - - if ghost is not None: - pts_g._offsets3d = juggle_axes(ghost[t, :, 0], ghost[t, :, 1], ghost[t, :, 2], 'z') - for i, l in enumerate(lines_g): - l.set_data(xline_g[t, i, :2]) - l.set_3d_properties(xline_g[t, i, 2]) - - if pointer is not None: - ax.quiv.remove() - ax.quiv = ax.quiver(X[t], Y[t], Z[t], dX[t], dY[t], 0, color=pointer_color) - - return animation.FuncAnimation( - fig, - update, - len(seq), - interval=speed, - blit=False, - ) diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/INSTALL.md b/ChoreoAI_Zixuan_Wang/pose_extraction/INSTALL.md deleted file mode 100644 index 74ee7ca..0000000 --- a/ChoreoAI_Zixuan_Wang/pose_extraction/INSTALL.md +++ /dev/null @@ -1,92 +0,0 @@ -# AlphaPose Installation on Perlmutter - -## Perlmutter Introduction -[Perlmutter](https://docs.nersc.gov/getting-started/) is the computing resources for National Energy Research Scientific Computing Center (NERSC). It is a HPE Cray EX supercomputer with over 1500 GPU-accelerated compute nodes. - -To install AlphaPose on Perlmutter, please make sure that you have available GPU resources. It's very hard to use AlphaPose with CPU because it uses CUDA operators. - -Then, please follow the instructions below. The package version might be tricky. - -## NVCC - -`nvcc` is already installed in the login node of Perlmutter. The CUDA driver version on Perlmutter is 12.2, which requires us to install PyTorch >= 2.x. - -```bash -nvcc --version -# 12.2 -``` - -## Package Installation - -- Anaconda: conda is easy for us to manage the python environment. - - ```bash - wget https://repo.anaconda.com/archive/Anaconda3-2023.03-Linux-x86_64.sh - bash Anaconda3-2023.03-Linux-x86_64.sh - - source ~/.bashrc - # check conda version - conda --version - ``` - -- Installation of torch & torchvision - - ```bash - # important! we need python version >= 3.10 to make everything work - conda create -n alphapose python=3.10 - conda activate alphapose - - # install pytorch with wheel - wget https://download.pytorch.org/whl/cu121/torch-2.3.0%2Bcu121-cp310-cp310-linux_x86_64.whl - pip install torch-2.3.0%2Bcu121-cp310-cp310-linux_x86_64.whl - - # install torchvision with wheel - wget https://download.pytorch.org/whl/cu121/torchvision-0.18.0%2Bcu121-cp310-cp310-linux_x86_64.whl - pip install torchvision-0.18.0%2Bcu121-cp310-cp310-linux_x86_64.whl - ``` - -- Get Alphapose from GitHub - - ```bash - git clone https://github.com/MVIG-SJTU/AlphaPose.git - cd alphapose - ``` - - ```bash - # install dependencies - pip install cython - pip install chumpy - - conda install -c fvcore -c iopath -c conda-forge fvcore iopath - conda install -c bottler nvidiacub - - # pytorch3d compatible with torch - pip install --extra-index-url https://miropsota.github.io/torch_packages_builder pytorch3d==0.7.6+pt2.3.0cu121 - - wget https://download.pytorch.org/whl/nightly/pytorch_triton-3.0.0%2B989adb9a29-cp310-cp310-linux_x86_64.whl - pip install pytorch_triton-3.0.0%2B989adb9a29-cp310-cp310-linux_x86_64.whl - ``` - -- Halpecocotool issue - - - When installing AlphaPose, you might encounter Halpecocotool issue. Follow this https://github.com/MVIG-SJTU/AlphaPose/issues/1195 to solve it before installing AlphaPose! - -- Final Installation - - ```bash - # installation of alphapose requires gcc > 9 - export CC=/usr/bin/gcc-12 - export CXX=/usr/bin/g++-12 - export CUDA_HOME=/opt/nvidia/hpc_sdk/Linux_x86_64/23.9/cuda/12.2 - export PATH=$CUDA_HOME/bin:$PATH - export LD_LIBRARY_PATH=$CUDA_HOME/lib64:$LD_LIBRARY_PATH - - python setup.py build develop - ``` - -## Inference - - ```bash - # video inference, put the video file under scripts folder - python scripts/demo_3d_inference.py --cfg configs/smpl/256x192_adam_lr1e-3-res34_smpl_24_3d_base_2x_mix.yaml --checkpoint pretrained_models/pretrained_w_cam.pth --video scripts/Dyads\ Rehearsal\ Leah.mov --outdir examples/res_3d - ``` \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/README.md b/ChoreoAI_Zixuan_Wang/pose_extraction/README.md deleted file mode 100644 index 57209ca..0000000 --- a/ChoreoAI_Zixuan_Wang/pose_extraction/README.md +++ /dev/null @@ -1,43 +0,0 @@ -## Data Preprocessing for Duets -High-quality training data is essential for an AI model. In order to extract 3D joints (point cloud) data from videos provided by Ilya, we have tested two open-source tools for pose estimation, [OpenPose](https://github.com/Devashi-Choudhary/AI-Dance-based-on-Human-Pose-Estimation) and [AlphaPose](https://github.com/MVIG-SJTU/AlphaPose). - -We had no luck in managing configuration of OpenPose, so we switched to AlphaPose, which provided many different kinds of models for both 2D and 3D inference. - -### AlphaPose Installation -I would like to thank Mariel for providing the computing resources on Perlmutter. The installation document of AlphaPose on Perlmutter can be found [in this documentation](INSTALL.md). It focuses on a specific server, but I believe that it can be applied to any Linux server with CUDA driver version >= 12.0. - -### Model Inference - -#### 2D - -I have tested with [this model](https://github.com/MVIG-SJTU/AlphaPose/blob/master/configs/halpe_136/resnet/256x192_res50_lr1e-3_2x-dcn-regression.yaml) for 2D keypoints inference. There are many different models trained on different datasets, so feel free to explore the model zoo to find the one that meets your need. - -![image](imgs/halpe136_2d.png) - -#### 3D - -AlphaPose utilizes [Hybrik](https://github.com/MVIG-SJTU/AlphaPose/blob/master/configs/smpl/256x192_adam_lr1e-3-res34_smpl_24_3d_base_2x_mix.yaml) for body mesh estimation. This image shows the body mesh using [SMPL](https://github.com/Jeff-sjtu/HybrIK). - -![body_mesh](imgs/body_mesh.png) - -AlphaPose will also extract 3D body joints for every person in every frame. The workflow includes: -- Use YOLO to detect body instances in the frame -- Pass results (boxes) from YOLO and original image to the Simple3DPoseBaseSMPLCam model -- Get the inference result of 3D joints, move the first joint to `(0, 0, 0)` - -Therefore, in order to keep the interaction between the dancers, we remove [this line](https://github.com/MVIG-SJTU/AlphaPose/blob/master/alphapose/models/simple3dposeSMPLWithCam.py#L325) in the model. Below shows the original unprocessed data. -
- -
- -Please check out [this jupyter notebook](preprocessing.ipynb) for detailed processing of raw data, which addresses: -- missing frames -- frames with only one person / more than two persons -- index matching -- jitter - -Processed data: - -
- -
diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/2.gif b/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/2.gif deleted file mode 100644 index 14582fa..0000000 Binary files a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/2.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/3.gif b/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/3.gif deleted file mode 100644 index 21e854f..0000000 Binary files a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/3.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/body_mesh.png b/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/body_mesh.png deleted file mode 100644 index c8aa934..0000000 Binary files a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/body_mesh.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/dataset.gif b/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/dataset.gif deleted file mode 100644 index 7525aae..0000000 Binary files a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/dataset.gif and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/halpe136_2d.png b/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/halpe136_2d.png deleted file mode 100644 index aedfc88..0000000 Binary files a/ChoreoAI_Zixuan_Wang/pose_extraction/imgs/halpe136_2d.png and /dev/null differ diff --git a/ChoreoAI_Zixuan_Wang/pose_extraction/preprocessing.ipynb b/ChoreoAI_Zixuan_Wang/pose_extraction/preprocessing.ipynb deleted file mode 100644 index 9aa4473..0000000 --- a/ChoreoAI_Zixuan_Wang/pose_extraction/preprocessing.ipynb +++ /dev/null @@ -1,415 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Loading data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# code reference: https://github.com/Luizerko/ai_choreo/blob/master/pose_extraction/data_processing.ipynb\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np\n", - "import json\n", - "\n", - "%matplotlib inline\n", - "\n", - "with open('../raw_img_9085.json') as f:\n", - " output = json.load(f)\n", - "\n", - "print(len(output))\n", - "print(output[0].keys())\n", - "print(output[0]['idx'], output[1]['idx'])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "poses_per_frame = {}\n", - "for frame in output:\n", - " image_id = int(frame['image_id'].split('.')[0])\n", - "\n", - " try:\n", - " poses_per_frame[image_id] += 1\n", - " except:\n", - " poses_per_frame[image_id] = 1\n", - "\n", - "missing_frames = []\n", - "for k in [*poses_per_frame.keys()][:-1]:\n", - " if poses_per_frame.get(k + 1) is None:\n", - " missing_frames.append(k + 1)\n", - "\n", - "print('Missing frames: {}\\n'.format(missing_frames))\n", - "print('Possible number of people per frame: {}\\n'.format(np.unique([*poses_per_frame.values()])))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "less_instances = []\n", - "more_instances = []\n", - "for k, v in poses_per_frame.items():\n", - " if v > 2:\n", - " more_instances.append(k)\n", - " elif v < 2:\n", - " less_instances.append(k)\n", - "print('Frames with 1 person: {}\\n'.format(less_instances))\n", - "print('Frames with 3 people: {}'.format(more_instances))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from mpl_toolkits.mplot3d import Axes3D\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "fig = plt.figure(figsize=(12, 6))\n", - "axes = []\n", - "color = ['red', 'blue', 'green']\n", - "skeleton = [(0, 1), (0, 2), (0, 3), (1, 4), (2, 5), (3, 6), (4, 7), (5, 8), (6, 9), (7, 10),\n", - " (8, 11), (9, 12), (9, 13), (9, 14), (12, 15), (13, 16), (14, 17), (16, 18), (17, 19), \n", - " (18, 20), (19, 21), (20, 22), (21, 23)]\n", - "\n", - "indexes = [512, 513, 514]\n", - "for i in range(len(indexes)):\n", - " subplot_number = 131 + i\n", - " axes.append(fig.add_subplot(subplot_number, projection=\"3d\"))\n", - " axes[i].set_xlim([-1.2, 1.2])\n", - " axes[i].set_ylim([-1.2, 1.2])\n", - " axes[i].set_zlim([-1.2, 1.2])\n", - "\n", - " scatter_points = np.array(output[indexes[i]]['pred_xyz_jts'])\n", - " axes[i].scatter(scatter_points[:, 2], scatter_points[:, 0], -scatter_points[:, 1], color=color[i])\n", - "\n", - " for (start, end) in skeleton:\n", - " xs = [scatter_points[start, 2], scatter_points[end, 2]]\n", - " ys = [scatter_points[start, 0], scatter_points[end, 0]]\n", - " zs = [-scatter_points[start, 1], -scatter_points[end, 1]]\n", - " axes[i].plot(xs, ys, zs, color='grey')\n", - "\n", - "plt.tight_layout()\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Handling missing frames, single person frames and 3 people frames" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "filtered_output = output.copy()\n", - "wrong_instances = sorted(set(more_instances).union(set(less_instances)))\n", - "\n", - "for i in wrong_instances:\n", - " # Filtering frames with more than 2 people\n", - " if poses_per_frame[i] > 2:\n", - " scores = [filtered_output[i * 2]['score'], filtered_output[i * 2 + 1]['score'], filtered_output[i * 2 + 2]['score']]\n", - " index = np.argmin(scores)\n", - " \n", - " if index == 0:\n", - " filtered_output.pop(i * 2)\n", - " elif index == 1:\n", - " filtered_output.pop(i * 2 + 1)\n", - " else:\n", - " filtered_output.pop(i * 2 + 2)\n", - "\n", - " # Enriching frames with only 1 person\n", - " elif poses_per_frame[i] < 2:\n", - " only_person = np.array(filtered_output[i * 2]['pred_xyz_jts'])\n", - " to_compare_1 = np.array(filtered_output[i * 2 - 1]['pred_xyz_jts'])\n", - " to_compare_2 = np.array(filtered_output[i * 2 - 2]['pred_xyz_jts'])\n", - " \n", - " distance_1 = np.sum(np.linalg.norm(only_person - to_compare_1))\n", - " distance_2 = np.sum(np.linalg.norm(only_person - to_compare_2))\n", - "\n", - " if distance_1 > distance_2:\n", - " new_data = filtered_output[i * 2 - 1].copy()\n", - " new_data['image_id'] = filtered_output[i*2]['image_id']\n", - " filtered_output.insert(i * 2 + 1, new_data)\n", - " else:\n", - " new_data = filtered_output[i * 2 - 2].copy()\n", - " new_data['image_id'] = filtered_output[i * 2]['image_id']\n", - " filtered_output.insert(i * 2, new_data)\n", - " \n", - "filtered_poses_per_frame = {}\n", - "for frame in filtered_output:\n", - " image_id = int(frame['image_id'].split('.')[0])\n", - " \n", - " try:\n", - " filtered_poses_per_frame[image_id] += 1\n", - " except:\n", - " filtered_poses_per_frame[image_id] = 1\n", - "print('Possible number of people per frame: {}\\n'.format(np.unique([*filtered_poses_per_frame.values()])))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Visualizations" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import matplotlib.pyplot as plt\n", - "from mpl_toolkits.mplot3d import Axes3D\n", - "from matplotlib.animation import FuncAnimation\n", - "from IPython.display import HTML\n", - "import numpy as np\n", - "from matplotlib import rcParams\n", - "\n", - "rcParams['animation.embed_limit'] = 100\n", - "\n", - "def animation(filtered_output, np_flag=False, interval=100):\n", - " fig = plt.figure(figsize=(8, 8))\n", - " \n", - " ax = fig.add_subplot(111, projection=\"3d\")\n", - " ax.set_xlim([-1.2, 1.2])\n", - " ax.set_ylim([-1.2, 1.2])\n", - " ax.set_zlim([-1.2, 1.2])\n", - " \n", - " scatt1 = ax.scatter([], [], [], color='red')\n", - " lines1 = [ax.plot([], [], [], 'gray')[0] for _ in skeleton]\n", - " \n", - " scatt2 = ax.scatter([], [], [], color='blue')\n", - " lines2 = [ax.plot([], [], [], 'gray')[0] for _ in skeleton]\n", - "\n", - " if np_flag:\n", - " person_1_poses = filtered_output[0::2, :, :]\n", - " person_2_poses = filtered_output[1::2, :, :]\n", - " else:\n", - " person_1_poses = []\n", - " person_2_poses = []\n", - " for i, frame in enumerate(filtered_output):\n", - " if i % 2 == 0:\n", - " person_1_poses.append(frame['pred_xyz_jts'])\n", - " else:\n", - " person_2_poses.append(frame['pred_xyz_jts'])\n", - " person_1_poses = np.array(person_1_poses)\n", - " person_2_poses = np.array(person_2_poses)\n", - " \n", - " poses_1_x = person_1_poses[:, :, 2]\n", - " poses_1_y = person_1_poses[:, :, 0]\n", - " poses_1_z = -person_1_poses[:, :, 1]\n", - " \n", - " poses_2_x = person_2_poses[:, :, 2]\n", - " poses_2_y = person_2_poses[:, :, 0]\n", - " poses_2_z = -person_2_poses[:, :, 1]\n", - " \n", - " def update(frame):\n", - " scatt1._offsets3d = (poses_1_x[frame], poses_1_y[frame], poses_1_z[frame])\n", - " scatt2._offsets3d = (poses_2_x[frame], poses_2_y[frame], poses_2_z[frame])\n", - " \n", - " for line, (start, end) in zip(lines1, skeleton):\n", - " line.set_data([poses_1_x[frame, start], poses_1_x[frame, end]], [poses_1_y[frame, start], poses_1_y[frame, end]])\n", - " line.set_3d_properties([poses_1_z[frame, start], poses_1_z[frame, end]])\n", - " \n", - " for line, (start, end) in zip(lines2, skeleton):\n", - " line.set_data([poses_2_x[frame, start], poses_2_x[frame, end]], [poses_2_y[frame, start], poses_2_y[frame, end]])\n", - " line.set_3d_properties([poses_2_z[frame, start], poses_2_z[frame, end]])\n", - " \n", - " return [scatt1, scatt2] + lines1 + lines2\n", - "\n", - " plt.close(fig)\n", - " return FuncAnimation(fig, update, frames=range(len(poses_1_x)), interval=interval, blit=False)\n", - "\n", - "ani = animation(filtered_output[10500:10800])\n", - "HTML(ani.to_jshtml())\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "for i in range(int(len(filtered_output)/2)-1):\n", - " if filtered_output[i * 2]['idx'] > filtered_output[i * 2 + 1]['idx']:\n", - " print('Captured Inversion!')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "for i in range(int(len(filtered_output)/2)-1):\n", - " person_1 = np.array(filtered_output[i * 2]['pred_xyz_jts'])\n", - " to_compare_1 = np.array(filtered_output[(i + 1) * 2]['pred_xyz_jts'])\n", - " to_compare_2 = np.array(filtered_output[(i + 1) * 2 + 1]['pred_xyz_jts'])\n", - " \n", - " distance_1 = np.sum(np.linalg.norm(person_1 - to_compare_1))\n", - " distance_2 = np.sum(np.linalg.norm(person_1 - to_compare_2))\n", - "\n", - " if distance_1 > distance_2:\n", - " change_order_aux = filtered_output[(i+1)*2+1].copy()\n", - " filtered_output[(i + 1) * 2 + 1] = filtered_output[(i + 1) * 2]\n", - " filtered_output[(i + 1) * 2] = change_order_aux\n", - "\n", - " filtered_output[(i + 1) * 2]['idx'] = 1\n", - " filtered_output[(i + 1) * 2 + 1]['idx'] = 2\n", - "\n", - "ani = animation(filtered_output[10500:10800])\n", - "HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Smoothing data" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from scipy.signal import savgol_filter\n", - "\n", - "person_1_poses = []\n", - "person_2_poses = []\n", - "\n", - "for i, frame in enumerate(filtered_output):\n", - " if i % 2 == 0:\n", - " person_1_poses.append(frame['pred_xyz_jts'])\n", - " else:\n", - " person_2_poses.append(frame['pred_xyz_jts'])\n", - "person_1_poses = np.array(person_1_poses)\n", - "person_2_poses = np.array(person_2_poses)\n", - "\n", - "# Savitzky-Golay filter\n", - "def savgol_smoothness(poses, wl=11, po=3):\n", - " smoothed_data = np.zeros_like(poses)\n", - " \n", - " for joint in range(poses.shape[1]):\n", - " for axis in range(3):\n", - " smoothed_data[:, joint, axis] = savgol_filter(poses[:, joint, axis], wl, po)\n", - "\n", - " return smoothed_data\n", - "\n", - "smoothed_data_1 = savgol_smoothness(person_1_poses)\n", - "smoothed_data_2 = savgol_smoothness(person_2_poses)\n", - "\n", - "interleaved_array = np.zeros((2*smoothed_data_1.shape[0], smoothed_data_1.shape[1], smoothed_data_1.shape[2]))\n", - "interleaved_array[0::2] = smoothed_data_1\n", - "interleaved_array[1::2] = smoothed_data_2\n", - "\n", - "print(\"###############################################################################################\")\n", - "print(\"#################################### Savitzky-Golay Filter ####################################\")\n", - "print(\"###############################################################################################\")\n", - "ani = animation(interleaved_array[10500:10800], np_flag=True)\n", - "HTML(ani.to_jshtml())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from scipy.fftpack import dct, idct\n", - "\n", - "# Discrete cosine transform\n", - "def dct_smoothness(poses, threshold=0.25):\n", - " smoothed_data = np.zeros_like(poses)\n", - " \n", - " for joint in range(poses.shape[1]):\n", - " for axis in range(3):\n", - " frequency_data = dct(poses[:, joint, axis], norm='ortho')\n", - " \n", - " frequency_data[int(threshold*len(frequency_data)):] = 0\n", - " \n", - " smoothed_data[:, joint, axis] = idct(frequency_data, norm='ortho')\n", - "\n", - " return smoothed_data\n", - "\n", - "smoothed_data_1 = dct_smoothness(person_1_poses)\n", - "smoothed_data_2 = dct_smoothness(person_2_poses)\n", - "interleaved_array[0::2] = smoothed_data_1\n", - "interleaved_array[1::2] = smoothed_data_2\n", - "\n", - "print(\"###################################################################################################\")\n", - "print(\"#################################### Discrete Cosine Transform ####################################\")\n", - "\n", - "print(\"###################################################################################################\")\n", - "ani = animation(interleaved_array[10500:10800], np_flag=True)\n", - "HTML(ani.to_jshtml())\n", - "ani.save('dataset.gif')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Store final result" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "np.save(\"processed_img_9085.npy\", interleaved_array)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.9" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/ChoreoAI_Zixuan_Wang/test.py b/ChoreoAI_Zixuan_Wang/test.py deleted file mode 100644 index 1692c03..0000000 --- a/ChoreoAI_Zixuan_Wang/test.py +++ /dev/null @@ -1,101 +0,0 @@ -import numpy as np -import torch -from torch.utils.data import Subset - -from model.transformer import DancerTransformer -from data.dataset_original import DancerDatasetOriginal - - -def preprocess_dataset(dancer_np): - dancer1_np = dancer_np[::2, :, :] - dancer2_np = dancer_np[1::2, :, :] - return dancer1_np, dancer2_np - - -def create_test_dataset(dataset_dir): - dancer_np = np.load('dataset/' + dataset_dir) - dancer1_np, dancer2_np = preprocess_dataset(dancer_np) - dataset = DancerDatasetOriginal(torch.from_numpy(dancer1_np), torch.from_numpy(dancer2_np), 64) - - train_size = int(0.9 * len(dataset)) - test_dataset = Subset(dataset, range(train_size, len(dataset))) - - return test_dataset - - -def generate_dancer_data(test_dataset, test_set_idx, seq_len, net: DancerTransformer, device, generate_d1=True): - test_dict_data = test_dataset[test_set_idx] - test_dict_data_next_timestamap = test_dataset[test_set_idx + seq_len] - dancer1_data = test_dict_data['dancer1'].to(device) - dancer2_data = test_dict_data['dancer2'].to(device) - - dancer1_data_next_timestamp = test_dict_data_next_timestamap['dancer1'].to(device) - dancer2_data_next_timestamp = test_dict_data_next_timestamap['dancer2'].to(device) - - dancer1_data_all = torch.cat((dancer1_data, dancer1_data_next_timestamp), dim=0) - dancer2_data_all = torch.cat((dancer2_data, dancer2_data_next_timestamp), dim=0) - - d1_all = dancer1_data_all[None, :].clone().detach().float() - d2_all = dancer2_data_all[None, :].clone().detach().float() - - # 64 frames - d1 = dancer1_data[None, :].clone().detach().float() - d2 = dancer2_data[None, :].clone().detach().float() - - with torch.no_grad(): - vae_1, vae_2, vae_duet, transformer_decoder_1, transformer_decoder_2 = net.vae_1, net.vae_2, net.vae_duet, net.transformer_decoder_1, net.transformer_decoder_2 - - for i in range(64): - # [1, 64, 29, 3] - if generate_d1: - combined = torch.stack((d1[:, i: i + seq_len, :, :], d2_all[:, i: i + seq_len, :, :]), dim=-1) - else: - combined = torch.stack((d1_all[:, i: i + seq_len, :, :], d2[:, i: i + seq_len, :, :]), dim=-1) - - mean = combined.mean(dim=(2, 3, 4), keepdim=True) - std = combined.std(dim=(2, 3, 4), keepdim=True) - combined_normalized = (combined - mean) / (std + 1e-6) - - d1_normalized = combined_normalized[..., 0] - d2_normalized = combined_normalized[..., 1] - - out_1, mean_1, log_var_1 = vae_1(d1_normalized) - out_2, mean_2, log_var_2 = vae_2(d2_normalized) - out_duet, mean_duet, log_var_duet = vae_duet(d1_normalized, d2_normalized) - - # [batch_size, seq_len, 29 * 3] - memory_1 = out_1 + out_duet - memory_2 = out_2 + out_duet - - # transformer decoder [1, 64, 29, 3] - if generate_d1: - pred_1 = transformer_decoder_2(d1_normalized, memory_2) - last_dim = pred_1[:, -1, :, :].unsqueeze(1) - d1 = torch.cat((d1, last_dim), dim=1) - else: - pred_2 = transformer_decoder_1(d2_normalized, memory_1) - last_dim = pred_2[:, -1, :, :].unsqueeze(1) - d2 = torch.cat((d2, last_dim), dim=1) - - - seq1_original = dancer1_data_all[..., [2, 0, 1]] - seq1_original[..., 2] = -seq1_original[..., 2] - seq1_original = seq1_original.cpu().numpy() - - seq2_original = dancer2_data_all[..., [2, 0, 1]] - seq2_original[..., 2] = -seq2_original[..., 2] - seq2_original = seq2_original.cpu().numpy() - - seq1_next_ts = None - seq2_next_ts = None - - if generate_d1: - seq1_next_ts = d1[0][..., [2, 0, 1]] - seq1_next_ts[..., 2] = -seq1_next_ts[..., 2] - seq1_next_ts = seq1_next_ts.cpu().numpy() - else: - seq2_next_ts = d2[0][..., [2, 0, 1]] - seq2_next_ts[..., 2] = -seq2_next_ts[..., 2] - seq2_next_ts = seq2_next_ts.cpu().numpy() - - return seq1_original, seq2_original, seq1_next_ts, seq2_next_ts diff --git a/ChoreoAI_Zixuan_Wang/test_functions_for_colab_demo.py b/ChoreoAI_Zixuan_Wang/test_functions_for_colab_demo.py deleted file mode 100644 index ea57913..0000000 --- a/ChoreoAI_Zixuan_Wang/test_functions_for_colab_demo.py +++ /dev/null @@ -1,548 +0,0 @@ -import torch -import torch.nn as nn -import torch.nn.functional as F -from torch.nn.parallel import DataParallel, DistributedDataParallel -from torch.utils.data import Subset - -import math -import numpy as np -from tqdm import tqdm -from copy import deepcopy - -import matplotlib -import matplotlib.pyplot as plt -from matplotlib import animation -from mpl_toolkits.mplot3d.art3d import juggle_axes -from IPython.display import display, HTML - - -point_labels = [ - 'pelvis', 'left_hip', 'right_hip', # 2 - 'spine1', 'left_knee', 'right_knee', # 5 - 'spine2', 'left_ankle', 'right_ankle', # 8 - 'spine3', 'left_foot', 'right_foot', # 11 - 'neck', 'left_collar', 'right_collar', # 14 - 'jaw', # 15 - 'left_shoulder', 'right_shoulder', # 17 - 'left_elbow', 'right_elbow', # 19 - 'left_wrist', 'right_wrist', # 21 - 'left_thumb', 'right_thumb', - 'head', 'left_middle', 'right_middle', # 26 - 'left_bigtoe', 'right_bigtoe' -] - -skeleton_lines = [ - # ( (start group), (end group) ), - (('pelvis',), ('left_hip',)), - (('pelvis',), ('right_hip',)), - (('left_hip',), ('left_knee',)), - (('right_hip',), ('right_knee',)), - (('left_knee',), ('left_ankle',)), - (('right_knee',), ('right_ankle',)), - (('left_ankle',), ('left_foot',)), - (('right_ankle',), ('right_foot',)), - (('pelvis',), ('spine1',)), - (('spine1',), ('spine2',)), - (('spine2',), ('spine3',)), - (('spine3',), ('neck',)), - (('spine3',), ('left_collar',)), - (('spine3',), ('right_collar',)), - (('neck',), ('jaw',)), - (('left_collar',), ('left_shoulder',)), - (('right_collar',), ('right_shoulder',)), - (('left_shoulder',), ('left_elbow',)), - (('right_shoulder',), ('right_elbow',)), - (('left_elbow',), ('left_wrist',)), - (('right_elbow',), ('right_wrist',)), - (('left_wrist',), ('left_thumb',)), - (('right_wrist',), ('right_thumb',)), - (('neck',), ('head',)), - - # (('left_shoulder',), ('left_middle',)), - # (('right_shoulder',), ('right_middle',)), - (('left_ankle',), ('left_bigtoe',)), - (('right_ankle',), ('right_bigtoe',)), -] - - -skeleton_idxs = [] -for g1, g2 in skeleton_lines: - entry = [] - entry.append([point_labels.index(l) for l in g1]) - entry.append([point_labels.index(l) for l in g2]) - skeleton_idxs.append(entry) - -# Cloud of every point connected: -cloud_idxs = [] -for i in range(29): - for j in range(29): - entry = [] - entry.append([i]) - entry.append([j]) - cloud_idxs.append(entry) - -all_idxs = skeleton_idxs + cloud_idxs - -device = 'cuda' if torch.cuda.is_available() else 'cpu' - -def get_line_segments(seq, zcolor=None, cmap=None, cloud=False, edge_types=None, edge_class=None): - xline = np.zeros((seq.shape[0], len(all_idxs), 3, 2)) - if cmap: - colors = np.zeros((len(all_idxs), 4)) - for edge, (joint1, joint2) in enumerate(all_idxs): - xline[:, edge, :,0] = np.mean(seq[:, joint1], axis=1) - xline[:, edge, :,1] = np.mean(seq[:, joint2], axis=1) - if cmap: - if edge_types is not None: - if edge >= len(skeleton_idxs): # cloud edges - if edge_types[edge - len(skeleton_idxs), edge_class] == 1: - colors[edge] = cmap(1) - else: - colors[edge] = cmap(0) - else: - colors[edge] = cmap(0) - if cmap: - return xline, colors - else: - return xline - -# put line segments on the given axis, with given colors -def put_lines(ax, segments, color=None, lw=2.5, alpha=None, skeleton=True, skeleton_alpha=0.3, cloud=False, cloud_alpha=0.03, threshold=0, edge_types=None, edge_opacities=None, edge_class=None): - lines = [] - ### Main skeleton - for i in tqdm(range(len(skeleton_idxs)), desc="Skeleton lines"): - if isinstance(color, (list, tuple, np.ndarray)): - c = color[i] - else: - c = color - - if skeleton: alpha = skeleton_alpha - else: alpha = 0 - - ### THESE LINES PLOT THE MAIN SKELETON - l = ax.plot(np.linspace(segments[i, 0, 0],segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - color=c, - alpha=alpha, - lw=lw)[0] - lines.append(l) - - if cloud: - ### Cloud of all-connected joints - for i in tqdm(range(len(cloud_idxs)), desc="Cloud lines"): - if isinstance(color, (list, tuple, np.ndarray)): - c = color[i] - else: - c = color - - l = ax.plot( - np.linspace(segments[i, 0, 0], segments[i, 0, 1], 2), - np.linspace(segments[i, 1, 0], segments[i, 1, 1], 2), - np.linspace(segments[i, 2, 0], segments[i, 2, 1], 2), - color=c, - alpha=cloud_alpha, - lw=lw)[0] - lines.append(l) - return lines - -# animate a video of the stick figure. -# `ghost` may be a second sequence, which will be superimposed on the primary sequence. -# If ghost_shift is given, the primary and ghost sequence will be separated laterally by that amount. -# `zcolor` may be an N-length array, where N is the number of vertices in seq, and will be used to color the vertices. Typically this is set to the avg. z-value of each vtx. -def animate_stick(seq, ghost=None, ghost_shift=0, threshold=0, figsize=None, zcolor=None, pointer=None, ax_lims=(-0.4, 0.4), ay_lims=(-1, 1), az_lims=(-1, 1), speed=45, dot_size=20, dot_alpha=0.5, lw=2.5, cmap='cool_r', pointer_color='black', cloud=False, cloud_alpha=0.03, skeleton=True, skeleton_alpha=0.3, dpi=50): - if zcolor is None: - zcolor = np.zeros(seq.shape[1]) - - fig = plt.figure(figsize=figsize, dpi=dpi) - ax = plt.axes(projection='3d') - - # The following lines eliminate background lines/axes: - ax.axis('off') - ax.xaxis.set_visible(False) - ax.yaxis.set_visible(False) - # ax.set_frame_on(True) - - # set figure background opacity (alpha) to 0: - fig.patch.set_alpha(0.) - - if ghost_shift and ghost is not None: - seq = seq.copy() - ghost = ghost.copy() - seq[:, :, 0] -= ghost_shift - ghost[:, :, 0] += ghost_shift - - cm = matplotlib.colormaps[cmap] - - dot_color = "black" - pts = ax.scatter(seq[0, :, 0], seq[0, :, 1], seq[0, :, 2], c=dot_color, s=dot_size, alpha=dot_alpha) - ghost_color = 'blue' - - if ghost is not None: - pts_g = ax.scatter(ghost[0, :, 0], ghost[0, :, 1], ghost[0, :, 2], c=ghost_color, s=dot_size, alpha=dot_alpha) - - if ax_lims: - ax.set_xlim(*ax_lims) - ax.set_ylim(*ay_lims) - ax.set_zlim(*az_lims) - - plt.close(fig) - xline, colors = get_line_segments(seq, zcolor, cm) - lines = put_lines(ax, xline[0], color=colors, lw=lw, alpha=0.9, cloud=cloud, cloud_alpha=cloud_alpha, threshold=threshold, skeleton=skeleton, skeleton_alpha=skeleton_alpha) - - if ghost is not None: - xline_g = get_line_segments(ghost) - lines_g = put_lines(ax, xline_g[0], ghost_color, lw=lw, alpha=1.0, cloud=cloud, cloud_alpha=cloud_alpha, skeleton=skeleton, skeleton_alpha=skeleton_alpha) - - if pointer is not None: - vR = 0.15 - dX, dY = vR * np.cos(pointer), vR * np.sin(pointer) - zidx = point_labels.index('CLAV') - X = seq[:, zidx, 0] - Y = seq[:, zidx, 1] - Z = seq[:, zidx, 2] - quiv = ax.quiver(X[0], Y[0], Z[0], dX[0], dY[0], 0, color=pointer_color) - ax.quiv = quiv - - def update(t): - pts._offsets3d = juggle_axes(seq[t, :, 0], seq[t, :, 1], seq[t, :, 2], 'z') - for i,l in enumerate(lines): - if l is not None: - l.set_data(xline[t, i, :2]) - l.set_3d_properties(xline[t, i, 2]) - - if ghost is not None: - pts_g._offsets3d = juggle_axes(ghost[t, :, 0], ghost[t, :, 1], ghost[t, :, 2], 'z') - for i, l in enumerate(lines_g): - l.set_data(xline_g[t, i, :2]) - l.set_3d_properties(xline_g[t, i, 2]) - - if pointer is not None: - ax.quiv.remove() - ax.quiv = ax.quiver(X[t], Y[t], Z[t], dX[t], dY[t], 0, color=pointer_color) - - return animation.FuncAnimation( - fig, - update, - len(seq), - interval=speed, - blit=False, - ) - - -class VAEForSingleDancerEncoder(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim): - super(VAEForSingleDancerEncoder, self).__init__() - self.linear = nn.Linear(29 * 3, linear_num_features) - self.pos_encoding = PositionalEncoding(linear_num_features) - self.multihead_attention = nn.MultiheadAttention(embed_dim=linear_num_features, num_heads=n_head, batch_first=True) - self.lstm = nn.LSTM(input_size=linear_num_features, hidden_size=linear_num_features, num_layers=2, batch_first=True) - self.mean = nn.Linear(in_features=linear_num_features, out_features=latent_dim) - self.log_var = nn.Linear(in_features=linear_num_features, out_features=latent_dim) - - def forward(self, x): - x = x.reshape(x.shape[0], x.shape[1], -1) - x = self.pos_encoding(self.linear(x)) - attn_output, _ = self.multihead_attention(x, x, x) - _, (hidden, _) = self.lstm(attn_output) - z_mean = self.mean(hidden[-1]) - z_log_var = self.log_var(hidden[-1]) - return z_mean, z_log_var - - -class VAEForSingleDancerDecoder(nn.Module): - def __init__(self, latent_dim, n_units, seq_len): - super(VAEForSingleDancerDecoder, self).__init__() - self.linear = nn.Linear(latent_dim, n_units) - self.lstm = nn.LSTM(input_size=n_units, hidden_size=n_units, num_layers=2, batch_first=True) - self.out = nn.Conv1d(in_channels=n_units, out_channels=29 * 3, kernel_size=3, padding=1) - self.seq_len = seq_len - - def forward(self, x): - x = F.relu(self.linear(x)) - x = x.unsqueeze(1).repeat(1, self.seq_len, 1) - lstm_out, _ = self.lstm(x) - lstm_out = lstm_out.reshape(-1, lstm_out.shape[2], lstm_out.shape[1]) - lstm_out = self.out(lstm_out) - lstm_out = lstm_out.reshape(-1, lstm_out.shape[2], 29 * 3) - return lstm_out - - -class VAEForSingleDancer(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, default_log_var, device='cuda'): - super(VAEForSingleDancer, self).__init__() - self.encoder = VAEForSingleDancerEncoder(linear_num_features, n_head, latent_dim) - self.decoder = VAEForSingleDancerDecoder(latent_dim, n_units, seq_len) - self.device = device - self.latent_dim = latent_dim - self.default_log_var = default_log_var - - def sample_z(self, mean, log_var): - batch, dim = mean.shape - epsilon = torch.randn(batch, dim).to(self.device) - return mean + torch.exp(0.5 * log_var) * epsilon - - def forward(self, x, no_input=False): - batch = x.size()[0] - if no_input: - mean, log_var = torch.zeros(batch, self.latent_dim), torch.ones(batch, self.latent_dim) * self.default_log_var - mean = mean.to(self.device) - log_var = log_var.to(self.device) - else: - mean, log_var = self.encoder(x) - z = self.sample_z(mean, log_var) - x = self.decoder(z) - return x, mean, log_var - - -class VAEForDuet(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, device='cuda'): - super(VAEForDuet, self).__init__() - self.encoder = VAEForSingleDancerEncoder(linear_num_features, n_head, latent_dim) - self.decoder = VAEForSingleDancerDecoder(latent_dim, n_units, seq_len) - self.device = device - - def sample_z(self, mean, log_var): - batch, dim = mean.shape - epsilon = torch.randn(batch, dim).to(self.device) - return mean + torch.exp(0.5 * log_var) * epsilon - - def forward(self, d1, d2): - # proximity - proximity = torch.abs(d1 - d2) - mean, log_var = self.encoder(proximity) - z = self.sample_z(mean, log_var) - x = self.decoder(z) - return x, mean, log_var - - -class PositionalEncoding(nn.Module): - def __init__(self, d_model, max_len=5000): - super(PositionalEncoding, self).__init__() - pe = torch.zeros(max_len, d_model) - position = torch.arange(0, max_len, dtype=torch.float).unsqueeze(1) - div_term = torch.exp(torch.arange(0, d_model, 2).float() * (-math.log(10000.0) / d_model)) - pe[:, 0::2] = torch.sin(position * div_term) - pe[:, 1::2] = torch.cos(position * div_term) - pe = pe.unsqueeze(0).transpose(0, 1) - self.register_buffer('pe', pe) - - def forward(self, x): - x = x + self.pe[:x.size(0), :, :x.size(2)] - return x - - -class TransformerDecoder(nn.Module): - def __init__(self, d_model, nhead=8, num_layers=2, dim_feedforward=256): - super(TransformerDecoder, self).__init__() - self.linear = nn.Linear(29 * 3, d_model) - self.pos_encoder = PositionalEncoding(d_model) - self.decoder_layer = nn.TransformerDecoderLayer(d_model=d_model, nhead=nhead, dim_feedforward=dim_feedforward) - self.transformer_decoder = nn.TransformerDecoder(self.decoder_layer, num_layers=num_layers) - self.fc_out = nn.Linear(d_model, 29 * 3) - - def forward(self, tgt, memory): - # tgt: [29, 3], memory: [29 * 3] - batch_size, seq_len, num_joints, joint_dim = tgt.shape - tgt = tgt.view(batch_size, seq_len, num_joints * joint_dim) - - tgt = self.linear(tgt) - memory = self.linear(memory) - - tgt = self.pos_encoder(tgt) - output = self.transformer_decoder(tgt, memory) - output = self.fc_out(output) - output = output.view(batch_size, seq_len, num_joints, joint_dim) - return output - - -class DancerTransformer(nn.Module): - def __init__(self, linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob, default_log_var=0.5): - super(DancerTransformer, self).__init__() - self.vae_1 = VAEForSingleDancer(linear_num_features, n_head, latent_dim, n_units, seq_len, default_log_var, device=device) - self.vae_2 = VAEForSingleDancer(linear_num_features, n_head, latent_dim, n_units, seq_len, default_log_var, device=device) - self.vae_duet = VAEForDuet(linear_num_features, n_head, latent_dim, n_units, seq_len, device=device) - self.transformer_decoder_1 = TransformerDecoder(linear_num_features) - self.transformer_decoder_2 = TransformerDecoder(linear_num_features) - self.no_input_prob = no_input_prob - - def forward(self, d1, d2, is_inference=False): - rdm_val = torch.randn(1) - is_simplified_model = False - - combined = torch.stack((d1, d2), dim=-1) - mean = combined.mean(dim=(2, 3, 4), keepdim=True) - std = combined.std(dim=(2, 3, 4), keepdim=True) - combined_normalized = (combined - mean) / (std + 1e-6) - - d1_normalized = combined_normalized[..., 0] - d2_normalized = combined_normalized[..., 1] - - if not is_inference and rdm_val < self.no_input_prob: - is_simplified_model = True - # only focus on one VAE model - out_1, mean_1, log_var_1 = self.vae_1(d1_normalized) - out_2, mean_2, log_var_2 = self.vae_2(d2_normalized) - batch_size, seq_len, _ = out_1.shape - out_1 = out_1.view(batch_size, seq_len, 29, 3) - out_2 = out_2.view(batch_size, seq_len, 29, 3) - pred_1 = None - pred_2 = None - mean_duet = None - log_var_duet = None - - else: - out_1, mean_1, log_var_1 = self.vae_1(d1_normalized) - out_2, mean_2, log_var_2 = self.vae_2(d2_normalized) - out_duet, mean_duet, log_var_duet = self.vae_duet(d1_normalized, d2_normalized) - - # [batch_size, seq_len, 29 * 3] - memory_1 = out_1 + out_duet - memory_2 = out_2 + out_duet - - # transformer decoder - pred_2 = self.transformer_decoder_1(d2_normalized, memory_1) - pred_1 = self.transformer_decoder_2(d1_normalized, memory_2) - - return pred_1, pred_2, mean_1, log_var_1, mean_2, log_var_2, mean_duet, log_var_duet, is_simplified_model, out_1, out_2 - - -class DancerDatasetOriginal(torch.utils.data.Dataset): - def __init__(self, data1, data2, seq_len): - self.data1 = data1 - self.data2 = data2 - self.seq_len = seq_len - self.dataset_length = len(self.data1) - self.seq_len - 1 - - def __len__(self): - return self.dataset_length - - def __getitem__(self, index): - return { - 'dancer1': self.data1[index: index + self.seq_len], - 'dancer2': self.data2[index: index + self.seq_len], - 'dancer1_next_timestamp': self.data1[index + 1: index + self.seq_len + 1], - 'dancer2_next_timestamp': self.data2[index + 1: index + self.seq_len + 1], - } - - -def load_network(net, load_path, strict=True, param_key='params'): - if isinstance(net, (DataParallel, DistributedDataParallel)): - net = net.module - load_net = torch.load( - load_path, map_location=lambda storage, loc: storage, weights_only=True) - if param_key is not None: - load_net = load_net[param_key] - for k, v in deepcopy(load_net).items(): - if k.startswith('module.'): - load_net[k[7:]] = v - load_net.pop(k) - net.load_state_dict(load_net, strict=strict) - - -def preprocess_dataset(dancer_np): - dancer1_np = dancer_np[::2, :, :] - dancer2_np = dancer_np[1::2, :, :] - return dancer1_np, dancer2_np - - -def create_test_dataset(dataset_dir): - dancer_np = np.load(dataset_dir, allow_pickle=True) - dancer1_np, dancer2_np = preprocess_dataset(dancer_np) - dataset = DancerDatasetOriginal(torch.from_numpy(dancer1_np), torch.from_numpy(dancer2_np), 64) - - train_size = int(0.9 * len(dataset)) - test_dataset = Subset(dataset, range(train_size, len(dataset))) - - return test_dataset - - -def generate_dancer_data(test_dataset, test_set_idx, seq_len, net: DancerTransformer, device, generated_seq_len=64, generate_d1=True): - test_dict_data = test_dataset[test_set_idx] - dancer1_data = test_dict_data['dancer1'].to(device) - dancer2_data = test_dict_data['dancer2'].to(device) - - quotient = generated_seq_len // seq_len - remainder = generated_seq_len % seq_len - - dancer1_data_next_timestamp = [] - dancer2_data_next_timestamp = [] - - new_idx = test_set_idx - - for i in range(quotient + 1): - cur_test_data = test_dataset[new_idx] - dancer1_data_next_timestamp.append(cur_test_data['dancer1']) - dancer2_data_next_timestamp.append(cur_test_data['dancer2']) - - new_idx += seq_len - - if remainder > 0: - cur_test_data = test_dataset[new_idx] - dancer1_data_next_timestamp.append(cur_test_data['dancer1'][:remainder]) - dancer2_data_next_timestamp.append(cur_test_data['dancer2'][:remainder]) - - dancer1_data_all = torch.cat(dancer1_data_next_timestamp, dim=0) - dancer2_data_all = torch.cat(dancer2_data_next_timestamp, dim=0) - dancer1_data_all = dancer1_data_all.to(device) - dancer2_data_all = dancer2_data_all.to(device) - - d1_all = dancer1_data_all[None, :].clone().detach().float() - d2_all = dancer2_data_all[None, :].clone().detach().float() - - d1 = dancer1_data[None, :].clone().detach().float() - d2 = dancer2_data[None, :].clone().detach().float() - - with torch.no_grad(): - vae_1, vae_2, vae_duet, transformer_decoder_1, transformer_decoder_2 = net.vae_1, net.vae_2, net.vae_duet, net.transformer_decoder_1, net.transformer_decoder_2 - - for i in range(generated_seq_len): - if generate_d1: - combined = torch.stack((d1[:, i: i + seq_len, :, :], d2_all[:, i: i + seq_len, :, :]), dim=-1) - else: - combined = torch.stack((d1_all[:, i: i + seq_len, :, :], d2[:, i: i + seq_len, :, :]), dim=-1) - - mean = combined.mean(dim=(2, 3, 4), keepdim=True) - std = combined.std(dim=(2, 3, 4), keepdim=True) - combined_normalized = (combined - mean) / (std + 1e-6) - - d1_normalized = combined_normalized[..., 0] - d2_normalized = combined_normalized[..., 1] - - out_1, mean_1, log_var_1 = vae_1(d1_normalized) - out_2, mean_2, log_var_2 = vae_2(d2_normalized) - out_duet, mean_duet, log_var_duet = vae_duet(d1_normalized, d2_normalized) - - # [batch_size, seq_len, 29 * 3] - memory_1 = out_1 + out_duet - memory_2 = out_2 + out_duet - - # transformer decoder [1, 64, 29, 3] - if generate_d1: - pred_1 = transformer_decoder_2(d1_normalized, memory_2) - last_dim = pred_1[:, -1, :, :].unsqueeze(1) - d1 = torch.cat((d1, last_dim), dim=1) - else: - pred_2 = transformer_decoder_1(d2_normalized, memory_1) - last_dim = pred_2[:, -1, :, :].unsqueeze(1) - d2 = torch.cat((d2, last_dim), dim=1) - - - seq1_original = dancer1_data_all[..., [2, 0, 1]] - seq1_original[..., 2] = -seq1_original[..., 2] - seq1_original = seq1_original.cpu().numpy() - - seq2_original = dancer2_data_all[..., [2, 0, 1]] - seq2_original[..., 2] = -seq2_original[..., 2] - seq2_original = seq2_original.cpu().numpy() - - if generate_d1: - seq1_next_ts = d1[0][..., [2, 0, 1]] - seq1_next_ts[..., 2] = -seq1_next_ts[..., 2] - seq1_next_ts = seq1_next_ts.cpu().numpy() - return seq2_original[seq_len - 5:], seq1_next_ts[seq_len - 5:] - else: - seq2_next_ts = d2[0][..., [2, 0, 1]] - seq2_next_ts[..., 2] = -seq2_next_ts[..., 2] - seq2_next_ts = seq2_next_ts.cpu().numpy() - return seq1_original[seq_len - 5:], seq2_next_ts[seq_len - 5:] \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/train.py b/ChoreoAI_Zixuan_Wang/train.py deleted file mode 100644 index b10809e..0000000 --- a/ChoreoAI_Zixuan_Wang/train.py +++ /dev/null @@ -1,154 +0,0 @@ -import torch -from os import path as osp -import logging -import numpy as np -from torch.utils.data import Subset, DataLoader -import wandb -from itertools import product - -from utils.logger import get_root_logger -from utils.misc import get_time_str -from data.dataset_original import DancerDatasetOriginal -from data.dataset_augmented import DancerDatasetAugmented -from model.model_pipeline import Pipeline - -import os -os.environ["WANDB__SERVICE_WAIT"] = "300" - -def init_logger(): - log_file = osp.join("log", f"train_{get_time_str()}.log") - logger = get_root_logger( - logger_name='ai_choreo', log_level=logging.INFO, log_file=log_file) - - return logger - - -def preprocess_dataset(dancer_np): - dancer1_np = dancer_np[::2, :, :] - dancer2_np = dancer_np[1::2, :, :] - return dancer1_np, dancer2_np - - -def create_dataset_loader(dataset_dir): - dancer_np = np.load('dataset/' + dataset_dir) - dancer1_np, dancer2_np = preprocess_dataset(dancer_np) - # dataset = DancerDatasetOriginal(torch.from_numpy(dancer1_np), torch.from_numpy(dancer2_np), 64) - dataset = DancerDatasetAugmented(torch.from_numpy(dancer1_np), torch.from_numpy(dancer2_np), 64) - - train_size = int(0.7 * len(dataset)) - validation_size = int(0.2 * len(dataset)) - - train_dataset = Subset(dataset, range(train_size)) - validation_dataset = Subset(dataset, range(train_size, train_size + validation_size)) - - train_loader = DataLoader(train_dataset, batch_size=16, shuffle=False) - validation_loader = DataLoader(validation_dataset, batch_size=1, shuffle=False) - return train_loader, validation_loader - - -def main(): - torch.backends.cudnn.benchmark = False - torch.backends.cudnn.deterministic = True - - seed = 42 - np.random.seed(seed) - torch.manual_seed(seed) - torch.cuda.manual_seed(seed) - torch.cuda.manual_seed_all(seed) - - logger = init_logger() - - dataset_names = ['pose_extraction_img_9085.npy', 'pose_extraction_ilya_hannah_dyads.npy', 'pose_extraction_hannah_cassie.npy', 'pose_extraction_dyads_rehearsal_leah.npy'] - - train_loaders = [] - validation_loaders = [] - - train_data_length = 0 - - wandb.login(key="f73ba40c8f47503a7c50b110fb21cb8f740a59dc") - - for name in dataset_names: - train_loader, validation_loader = create_dataset_loader(name) - train_loaders.append(train_loader) - train_data_length += len(train_loader) - validation_loaders.append(validation_loader) - - epochs = 100 - - logger.info("Started training.") - - linear_num_features = 64 - n_head = 8 - # latent_dim_all = [64, 128, 256] - # n_units_all = [64, 128, 256] - latent_dim_all = [64] - n_units_all = [64] - seq_len = 64 - # no_input_prob_all = [0.1, 0.2, 0.3] - no_input_prob_all = [0.1] - # velocity_loss_weight_all = [0.0, 0.05, 0.1, 0.2] - velocity_loss_weight_all = [0.05] - kl_loss_weight_all = [0.00005] - # kl_loss_weight_all = [0.0001] - mse_loss_weight = 0.5 - frames_all = [5] - - hyperparameters_combinations = list(product(latent_dim_all, n_units_all, no_input_prob_all, velocity_loss_weight_all, kl_loss_weight_all, frames_all)) - - for latent_dim, n_units, no_input_prob, velocity_loss_weight, kl_loss_weight, frames in hyperparameters_combinations: - - logger.info( - f'linear_num_features: {linear_num_features}\n' - f'n_head: {n_head}\n' - f'latent_dim: {latent_dim}\n' - f'n_units: {n_units}\n' - f'seq_len: {seq_len}\n' - f'no_input_prob: {no_input_prob}\n' - f'velocity_loss_weight: {velocity_loss_weight}\n' - f'kl_loss_weight: {kl_loss_weight}\n' - f'mse_loss_weight: {mse_loss_weight}\n' - f'frames: {frames}' - ) - - wandb.init(project='duet_hyperparameter_tuning_new', reinit=True) - wandb.run.name = f"linear_num_features_{linear_num_features}_n_head_{n_head}_latent_dim_{latent_dim}_n_units_{n_units}_seq_len_{seq_len}_no_input_prob_{no_input_prob}_velocity_loss_weight_{velocity_loss_weight}_kl_loss_weight_{kl_loss_weight}_mse_loss_weight_{mse_loss_weight}_frames_{frames}" - - model = Pipeline(linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob, velocity_loss_weight, kl_loss_weight, mse_loss_weight, frames) - - prev_best_validation_loss = -1 - - for epoch in range(epochs): - logger.info(f"Epoch: {epoch}") - train_loss = 0 - - for train_loader in train_loaders: - logger.info(f"train loader size: {len(train_loader)}") - for train_data in train_loader: - model.feed_data(train_data) - cur_loss = model.optimize_parameters() - train_loss += cur_loss.item() - logger.info(f"one train data training loss: {cur_loss}") - - model.update_learning_rate() - wandb.log({'train/loss': train_loss / train_data_length}) - logger.info(f"total training loss: {train_loss / train_data_length}") - - validation_loss = 0 - - for validation_loader in validation_loaders: - validation_loss += model.test(validation_loader) - - validation_loss /= len(validation_loaders) - logger.info(f"validation loss: {validation_loss}") - wandb.log({'validation/loss': validation_loss.item()}) - - if prev_best_validation_loss == -1 or validation_loss < prev_best_validation_loss: - prev_best_validation_loss = validation_loss - logger.info("save network...") - model.save_network() - - wandb.finish() - - -if __name__ == '__main__': - main() diff --git a/ChoreoAI_Zixuan_Wang/utils/logger.py b/ChoreoAI_Zixuan_Wang/utils/logger.py deleted file mode 100644 index d22b6d5..0000000 --- a/ChoreoAI_Zixuan_Wang/utils/logger.py +++ /dev/null @@ -1,19 +0,0 @@ -import logging - - -def get_root_logger(logger_name='ai_choreo', log_level=logging.INFO, log_file=None): - logger = logging.getLogger(logger_name) - # if the logger has been initialized, just return it - if logger.hasHandlers(): - return logger - - format_str = '%(asctime)s %(levelname)s: %(message)s' - logging.basicConfig(format=format_str, level=log_level) - - if log_file is not None: - file_handler = logging.FileHandler(log_file, 'w') - file_handler.setFormatter(logging.Formatter(format_str)) - file_handler.setLevel(log_level) - logger.addHandler(file_handler) - - return logger diff --git a/ChoreoAI_Zixuan_Wang/utils/misc.py b/ChoreoAI_Zixuan_Wang/utils/misc.py deleted file mode 100644 index 9348b42..0000000 --- a/ChoreoAI_Zixuan_Wang/utils/misc.py +++ /dev/null @@ -1,5 +0,0 @@ -import time - - -def get_time_str(): - return time.strftime('%Y%m%d_%H%M%S', time.localtime()) \ No newline at end of file diff --git a/ChoreoAI_Zixuan_Wang/visualization.ipynb b/ChoreoAI_Zixuan_Wang/visualization.ipynb deleted file mode 100644 index c64d9a4..0000000 --- a/ChoreoAI_Zixuan_Wang/visualization.ipynb +++ /dev/null @@ -1,3157 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Demo - Generating Dancer Data" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "import torch\n", - "import numpy as np\n", - "from IPython.display import display, HTML\n", - "\n", - "from plot import animate_stick\n", - "from test import create_test_dataset, generate_dancer_data\n", - "from model.model_pipeline import Pipeline\n", - "from model.transformer import DancerTransformer" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "torch.backends.cudnn.benchmark = False\n", - "torch.backends.cudnn.deterministic = True\n", - "\n", - "device = 'cuda' if torch.cuda.is_available() else 'cpu'\n", - "\n", - "# test configuration\n", - "linear_num_features = 64\n", - "n_head = 8\n", - "latent_dim = 64\n", - "n_units = 64\n", - "seq_len = 64\n", - "no_input_prob = 0.1\n", - "velocity_loss_weight = 0.05\n", - "kl_loss_weight = 0.00005\n", - "mse_loss_weight = 0.5\n", - "\n", - "model = Pipeline(linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob, velocity_loss_weight, kl_loss_weight, mse_loss_weight)\n", - "net = DancerTransformer(linear_num_features, n_head, latent_dim, n_units, seq_len, no_input_prob).to(device)\n", - "model.load_network(net, f\"result/best_model_fea_{linear_num_features}_head_{n_head}_latent_{latent_dim}_units_{n_units}_seq_len_{seq_len}_prob_{no_input_prob}_velo_{velocity_loss_weight}_kl_{kl_loss_weight}_mse_{mse_loss_weight}.pth\")" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "646\n" - ] - } - ], - "source": [ - "test_dataset = create_test_dataset('pose_extraction_img_9085.npy')\n", - "test_set_idx = np.random.randint(0, len(test_dataset) - seq_len)\n", - "print(test_set_idx)\n", - "\n", - "generate_d1 = True\n", - "seq1_original, seq2_original, seq1_next_ts, seq2_next_ts = generate_dancer_data(test_dataset, test_set_idx, seq_len, net, device, generate_d1=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Skeleton lines: 100%|██████████| 26/26 [00:00<00:00, 1207.54it/s]\n", - "Skeleton lines: 100%|██████████| 26/26 [00:00<00:00, 1236.47it/s]\n" - ] - }, - { - "data": { - "text/html": [ - "" - ], - "text/plain": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "ani = animate_stick(seq2_original, \n", - " ghost=seq1_next_ts, \n", - " # ghost_shift=-0.2,\n", - " figsize=(10, 8), \n", - " speed=100,\n", - " cmap='inferno', \n", - " cloud=False,\n", - " ax_lims=(-1.4, 2.5)\n", - ")\n", - "\n", - "display(HTML(ani.to_html5_video()))\n", - "# ani.save('animation.gif')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "base", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.9" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/README.md b/README.md index 42a9e60..c292aa3 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,22 @@ While the fields of technology and dance have historically not often intersected | Contributor | Approach | Repository Link | Blog Post | |-----------------|-----------------|-----------------|-----------------| | Luis Zerkowski | Graph Neural Network | [Repo Link](https://github.com/humanai-foundation/ChoreoAI/tree/main/ChoreoAI_Duet_ChorAIgraphy_Luis_Zerkowski) | [Blog Post](https://medium.com/@luisvz) -| Zixuan Wang | Transformer and VAE | [Repo Link](https://github.com/humanai-foundation/ChoreoAI/tree/main/ChoreoAI_Zixuan_Wang) | [Blog Post](https://wang-zixuan.github.io/posts/2024/gsoc_2024) \ No newline at end of file +| Zixuan Wang | Transformer and VAE | [Repo Link](https://github.com/humanai-foundation/ChoreoAI/tree/main/ChoreoAI_Zixuan_Wang) | [Blog Post](https://wang-zixuan.github.io/posts/2024/gsoc_2024) + + +## Environment Setup + +This repository contains Jupyter notebooks for choreography analysis +and machine learning research. + +### Prerequisites +- Python 3.8+ +- pip +- Jupyter Notebook or Jupyter Lab + +### Setup Instructions + +1. Clone the repository: + ```bash + git clone https://github.com/humanai-foundation/ChoreoAI.git + cd ChoreoAI diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..bdda0ea --- /dev/null +++ b/requirements.txt @@ -0,0 +1,19 @@ +# Core scientific stack +numpy +pandas +scipy + +# Machine Learning +torch +scikit-learn + +# Visualization +matplotlib +seaborn + +# Jupyter / notebooks +jupyter +ipykernel + +# Utilities +tqdm