Usage: switch Generation examples to vLLM-Omni (Nano/Super convention)

#46
by shilinzhu-nvidia - opened
README.md CHANGED
@@ -460,167 +460,280 @@ python -m cosmos_framework.inference.prompt_upsampling \
460
 
461
  For image-to-video, provide either one shared image via `--image-url` or one image per prompt via `--image-list` (the image-list file must have the same number of non-empty lines as the prompt file). Accepted image formats: local paths, HTTP(S) URLs, and `data:` URLs.
462
 
463
- ### Setup
464
 
465
- Install cosmos-framework:
466
 
467
- ```shell
468
- sudo apt-get install -y --no-install-recommends curl ffmpeg git-lfs libx11-dev tree wget
 
469
 
470
- git clone https://github.com/NVIDIA/cosmos-framework.git
471
- cd cosmos-framework
472
 
473
- # Pick the dependency group that matches your CUDA toolkit (see docs/setup.md)
474
- uv sync --all-extras --group=cu130-train # or --group=cu128-train for CUDA 12.8
475
- source .venv/bin/activate && export LD_LIBRARY_PATH=
 
 
 
 
 
 
476
  ```
477
 
478
- Cosmos3-Edge is a compact omni model that fits on a single GPU and is the recommended starting point for single-GPU inference. The examples below run offline batch inference via `cosmos_framework.scripts.inference`. Each example is self-contained and points at the same conditioning inputs used in this model card (hosted under the repo's `assets/`), so the shown outputs correspond to the shown inputs. Each sample's outputs are written under `-o <output_dir>/<sample_name>/` (e.g. `vision.mp4`, `sample_outputs.json`, `reasoner_text.txt`).
479
 
480
- ### Generation (image / video / action)
481
 
482
- #### Image to video
483
 
484
- ```shell
485
- BASE="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets"
486
- python - "$BASE" <<'PY'
487
- import json, sys, urllib.request
488
- base = sys.argv[1]
489
- prompt = urllib.request.urlopen(f"{base}/example_i2v_prompt.json").read().decode()
490
- json.dump(
491
- {"model_mode": "image2video", "prompt": prompt, "vision_path": f"{base}/example_i2v_input.jpg"},
492
- open("i2v_edge.json", "w"), indent=2,
493
- )
494
- PY
495
 
496
- python -m cosmos_framework.scripts.inference \
497
- --parallelism-preset=latency \
498
- -i i2v_edge.json \
499
- -o outputs/omni_edge \
500
- --checkpoint-path Cosmos3-Edge \
501
- --resolution 480 \
502
- --num-frames 121 \
503
- --fps 24 \
504
- --num-steps 50 \
505
- --guidance 5.0 \
506
- --shift 3.0 \
507
- --sampler unipc \
508
- --seed 0
509
  ```
510
 
511
- The generated video is written to `outputs/omni_edge/<sample_name>/vision.mp4`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
 
513
  Example output:
514
 
515
  <video controls width="832" height="480" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_i2v_output.mp4"></video>
516
 
517
- #### Action — forward dynamics
518
 
519
- Forward dynamics rolls out one action chunk at a time. This self-contained script fetches the UMI conditioning frame and action chunks, runs `cosmos_framework.scripts.inference` per chunk, feeds each chunk's final generated frame in as the next chunk's conditioning image, and stitches the 2-chunk rollout. Install `imageio[ffmpeg]` first.
 
 
 
 
 
 
 
 
 
 
 
 
520
 
521
  ```python
522
- import json, subprocess, urllib.request
 
523
  from pathlib import Path
524
 
525
  import imageio.v3 as iio
526
  import numpy as np
527
-
528
- BASE = "https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets"
529
- work = Path("umi_fd"); work.mkdir(exist_ok=True)
530
-
531
- # 1. Fetch the UMI conditioning frame + action chunks from the model repo
532
- first_frame = work / "first_frame.png"
533
- urllib.request.urlretrieve(f"{BASE}/example_action_fd_umi_first_frame.png", first_frame)
534
- spec = json.loads(urllib.request.urlopen(f"{BASE}/example_action_fd_umi_action_chunks.json").read())
535
- chunks = spec["action_chunks"] # shape (2, 16, 10)
536
-
537
- current_frame, stitched = first_frame, []
538
- for i, chunk in enumerate(chunks):
539
- # 2a. Write this chunk as a flat (16, 10) action_path file
540
- action_path = work / f"action_{i}.json"
541
- action_path.write_text(json.dumps(chunk))
542
- # 2b. Build the forward_dynamics input for this chunk
543
- # (fields match inputs/omni/action_forward_dynamics_*.json)
544
- sample = {
545
- "name": f"umi_fd_{i}",
546
- "model_mode": "forward_dynamics",
547
- "domain_name": spec["domain_name"], # "umi"
548
- "view_point": spec["view_point"], # "ego_view"
549
- "fps": spec["fps"], # 20
550
- "image_size": spec["image_size"], # 256
551
- "action_chunk_size": spec["action_chunk_size"], # 16
552
- "prompt": spec["prompt"], # "mouse arrangement"
553
- "vision_path": str(current_frame),
554
- "action_path": str(action_path),
555
- "seed": i,
 
 
 
 
 
 
 
 
556
  }
557
- sample_path = work / f"sample_{i}.json"
558
- sample_path.write_text(json.dumps(sample))
559
- # 2c. Run cosmos-framework inference for this chunk
560
- subprocess.run([
561
- "python", "-m", "cosmos_framework.scripts.inference",
562
- "--parallelism-preset=latency",
563
- "-i", str(sample_path),
564
- "-o", str(work / "out"),
565
- "--checkpoint-path", "Cosmos3-Edge",
566
- ], check=True)
567
- # 2d. Read the rollout; drop the conditioning frame (index 0), keep the generated frames
568
- frames = iio.imread(work / "out" / f"umi_fd_{i}" / "vision.mp4")
569
- stitched.extend(frames[1:])
570
- # 2e. Autoregressive conditioning: last generated frame -> next chunk's input image
571
- next_frame = work / f"ar_frame_{i + 1}.png"
572
- iio.imwrite(next_frame, frames[-1])
573
- current_frame = next_frame
574
-
575
- # 3. Stitch the generated-only rollout
576
- out_mp4 = work / "umi_fd_2chunk.mp4"
577
- iio.imwrite(out_mp4, np.asarray(stitched), fps=spec["fps"])
578
- print("Saved stitched rollout:", out_mp4)
 
 
 
 
 
 
 
 
 
 
 
579
  ```
580
 
 
581
  Example output:
582
 
583
  <video width="512" controls src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_action_fd_umi_2chunk_output.mp4"></video>
584
 
585
- #### Action inverse dynamics
586
 
587
- Inverse dynamics predicts the action sequence from an observation video (no action input). Repeat with `example_action_id_av_1_input.mp4` (and `name: av_inverse_1`) for the second example.
 
 
 
588
 
589
- ```shell
590
- cat > av_inverse_0.json <<'JSON'
591
- {
592
- "name": "av_inverse_0",
593
- "model_mode": "inverse_dynamics",
594
- "domain_name": "av",
595
- "view_point": "ego_view",
596
- "image_size": 480,
597
- "fps": 10,
598
- "action_chunk_size": 60,
599
- "prompt": "You are an autonomous vehicle planning system.",
600
- "vision_path": "https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/example_action_id_av_0_input.mp4"
601
- }
602
- JSON
603
 
604
- python -m cosmos_framework.scripts.inference \
605
- --parallelism-preset=latency \
606
- -i av_inverse_0.json \
607
- -o outputs/omni_edge \
608
- --checkpoint-path Cosmos3-Edge \
609
- --seed 0
610
- ```
611
 
612
- The predicted action is written to `outputs/omni_edge/<sample_name>/sample_outputs.json`.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
613
 
614
- Example outputs (predicted action trajectory, 60 steps × 9 raw action dims = translation + rot6d):
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
 
616
- - [av_inverse_0 predicted action JSON](assets/edge_action_id_av_0_output.json)
617
- - [av_inverse_1 predicted action JSON](assets/edge_action_id_av_1_output.json)
618
 
619
- The predicted per-frame relative poses are integrated into an absolute camera trajectory (`pose_rel_to_abs`, `backward_framewise`) and visualized below — 3D path with camera frustums (left) and top-down bird's-eye (right), colored by frame index:
 
620
 
621
- <img width="1280" src="assets/edge_action_id_av_0_output.png">
622
 
623
- <img width="1280" src="assets/edge_action_id_av_1_output.png">
624
 
625
  ### Reasoning
626
 
 
460
 
461
  For image-to-video, provide either one shared image via `--image-url` or one image per prompt via `--image-list` (the image-list file must have the same number of non-empty lines as the prompt file). Accepted image formats: local paths, HTTP(S) URLs, and `data:` URLs.
462
 
463
+ ### vLLM-Omni
464
 
465
+ #### Container
466
 
467
+ ```
468
+ docker pull vllm/vllm-omni:cosmos3
469
+ ```
470
 
471
+ #### General Invocation
 
472
 
473
+ You can use the release-tested `vllm-omni` package for deploying an OpenAI-compatible API inference endpoint.
474
+ The recommended vLLM-Omni serving configuration for nvidia/Cosmos3-Edge on a single GPU is:
475
+
476
+ ```bash
477
+ vllm serve nvidia/Cosmos3-Edge \
478
+ --omni \
479
+ --host 0.0.0.0 \
480
+ --port 8000 \
481
+ --init-timeout 1800
482
  ```
483
 
484
+ To speed up inference with additional GPUs, enable context parallelism with `--ulysses-degree` or switch to tensor parallelism with `--tensor-parallel-size`. Setting `--enable-layerwise-offload` can help reduce memory usage on GPUs with less available memory.
485
 
486
+ #### Examples
487
 
488
+ ##### Download example prompts
489
 
490
+ The example inputs (`assets/`) live in this model repo. Download just this folder with the Hugging Face CLI:
 
 
 
 
 
 
 
 
 
 
491
 
492
+ ```bash
493
+ pip install -U "huggingface_hub[cli]"
494
+ hf download nvidia/Cosmos3-Edge assets/ --local-dir Cosmos3-Edge
495
+ cd Cosmos3-Edge
 
 
 
 
 
 
 
 
 
496
  ```
497
 
498
+ Run all commands below from the downloaded repo root.
499
+
500
+ ---
501
+
502
+ ##### Image to video generation
503
+
504
+ ```python
505
+ import json
506
+ import mimetypes
507
+ from pathlib import Path
508
+
509
+ import requests
510
+
511
+ # 1. Read JSON-upsampled prompt and negative prompt
512
+ json_prompt = json.load(open("assets/example_i2v_prompt.json"))
513
+ negative_prompt = json.load(open("assets/negative_prompt.json"))
514
+
515
+ # 2. Build and send the multipart API request
516
+ url = "http://localhost:8000/v1/videos/sync"
517
+ image_path = Path("assets/example_i2v_input.jpg")
518
+ mime_type = mimetypes.guess_type(image_path)[0] or "image/png"
519
+ data = {
520
+ "prompt": json.dumps(json_prompt),
521
+ "negative_prompt": json.dumps(negative_prompt),
522
+ "size": "832x480",
523
+ "num_frames": "121",
524
+ "fps": "24",
525
+ "num_inference_steps": "50",
526
+ "guidance_scale": "5.0",
527
+ "max_sequence_length": "4096",
528
+ "flow_shift": "3.0",
529
+ "extra_params": json.dumps(
530
+ {
531
+ "use_resolution_template": False,
532
+ "use_duration_template": False,
533
+ "guardrails": True,
534
+ }
535
+ ),
536
+ "seed": "0",
537
+ }
538
+
539
+ with image_path.open("rb") as image_file:
540
+ files = {
541
+ "input_reference": (image_path.name, image_file, mime_type),
542
+ }
543
+ print("Sending request to server...")
544
+ response = requests.post(
545
+ url,
546
+ data=data,
547
+ files=files,
548
+ headers={"Accept": "video/mp4"},
549
+ )
550
+ response.raise_for_status()
551
+
552
+ # 3. Save the generated video
553
+ output_path = Path("/tmp/cosmos3_edge_i2v.mp4")
554
+ output_path.write_bytes(response.content)
555
+ print(f"Saved video to {output_path}")
556
+ ```
557
 
558
  Example output:
559
 
560
  <video controls width="832" height="480" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_i2v_output.mp4"></video>
561
 
562
+ ---
563
 
564
+ ##### Action generation
565
+
566
+ The forward-dynamics example uses UMI robotics action trajectories, and the inverse-dynamics examples use autonomous-vehicle (AV) action trajectories. Source files:
567
+
568
+ - Forward dynamics first frame: `assets/example_action_fd_umi_first_frame.png`
569
+ - Forward dynamics action chunks: `assets/example_action_fd_umi_action_chunks.json`
570
+ - Forward dynamics output video: `assets/edge_action_fd_umi_2chunk_output.mp4`
571
+ - Inverse dynamics source videos: `assets/example_action_id_av_0_input.mp4`, `assets/example_action_id_av_1_input.mp4`
572
+ - Inverse dynamics predicted actions: `assets/edge_action_id_av_0_output.json`, `assets/edge_action_id_av_1_output.json`
573
+
574
+ ###### Action forward dynamics
575
+
576
+ The example below performs a 2-chunk UMI robotics rollout with the vLLM-Omni `/v1/videos/sync` inference endpoint. Each request sends one conditioning frame through `input_reference` and one 16-step normalized action chunk through `extra_params["action"]`. The request also sets the top-level `size` field to the input image resolution, so vLLM-Omni returns each chunk at the same resolution as the conditioning image without reflection padding. The stitched output drops each chunk's conditioning frame, producing 32 generated frames. The script extracts the last generated frame from each chunk and uses it as the next chunk's conditioning frame.
577
 
578
  ```python
579
+ import json
580
+ import mimetypes
581
  from pathlib import Path
582
 
583
  import imageio.v3 as iio
584
  import numpy as np
585
+ import requests
586
+ from PIL import Image
587
+
588
+ url = "http://localhost:8000/v1/videos/sync"
589
+ first_frame_path = Path("assets/example_action_fd_umi_first_frame.png")
590
+ action_spec = json.loads(Path("assets/example_action_fd_umi_action_chunks.json").read_text())
591
+ action_chunks = action_spec["action_chunks"]
592
+
593
+ prompt = action_spec.get("prompt", "mouse arrangement")
594
+ fps = int(action_spec.get("fps", 20))
595
+ action_chunk_size = int(action_spec.get("action_chunk_size", 16))
596
+ current_frame_path = first_frame_path
597
+ input_width, input_height = Image.open(first_frame_path).size
598
+ chunk_video_paths = []
599
+ stitch_frames = []
600
+
601
+ for chunk_idx, action_chunk in enumerate(action_chunks):
602
+ mime_type = mimetypes.guess_type(current_frame_path)[0] or "image/png"
603
+ extra_params = {
604
+ "action_mode": "forward_dynamics",
605
+ "domain_name": action_spec.get("domain_name", "umi"),
606
+ "action_chunk_size": action_chunk_size,
607
+ "image_size": action_spec.get("image_size", 256),
608
+ "view_point": action_spec.get("view_point", "ego_view"),
609
+ "action": action_chunk,
610
+ "guardrails": True,
611
+ }
612
+ data = {
613
+ "prompt": prompt,
614
+ "num_frames": str(action_chunk_size + 1), # conditioning frame + generated frames
615
+ "fps": str(fps),
616
+ "size": f"{input_width}x{input_height}", # return chunks at input resolution
617
+ "num_inference_steps": "30",
618
+ "guidance_scale": "1.0",
619
+ "flow_shift": "10.0",
620
+ "seed": str(chunk_idx),
621
+ "extra_params": json.dumps(extra_params),
622
  }
623
+
624
+ with current_frame_path.open("rb") as image_file:
625
+ files = {"input_reference": (current_frame_path.name, image_file, mime_type)}
626
+ print(f"Sending action FD chunk {chunk_idx} to vLLM-Omni...")
627
+ response = requests.post(
628
+ url,
629
+ data=data,
630
+ files=files,
631
+ headers={"Accept": "video/mp4"},
632
+ timeout=600,
633
+ )
634
+ response.raise_for_status()
635
+
636
+ chunk_video_path = Path(f"/tmp/cosmos3_edge_action_fd_chunk_{chunk_idx:02d}.mp4")
637
+ chunk_video_path.write_bytes(response.content)
638
+ chunk_video_paths.append(chunk_video_path)
639
+
640
+ # The returned chunk contains the conditioning frame followed by generated frames.
641
+ # Drop the conditioning frame when stitching the generated-only rollout.
642
+ frames = iio.imread(chunk_video_path)
643
+ stitch_frames.extend(frames[1:])
644
+
645
+ # Autoregressive conditioning: use the final generated frame from this chunk
646
+ # as the input image for the next vLLM-Omni request.
647
+ if chunk_idx + 1 < len(action_chunks):
648
+ current_frame_path = Path(f"/tmp/cosmos3_edge_action_fd_ar_frame_{chunk_idx + 1:02d}.png")
649
+ iio.imwrite(current_frame_path, frames[-1])
650
+
651
+ stitched_path = Path("/tmp/cosmos3_edge_action_fd_umi_2chunk.mp4")
652
+ iio.imwrite(stitched_path, np.asarray(stitch_frames), fps=fps)
653
+ print("Generated chunk videos:", chunk_video_paths)
654
+ print("Saved stitched rollout:", stitched_path)
655
+ print("stitched resolution:", f"{input_width}x{input_height}")
656
  ```
657
 
658
+
659
  Example output:
660
 
661
  <video width="512" controls src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_action_fd_umi_2chunk_output.mp4"></video>
662
 
663
+ ###### Action inverse dynamics
664
 
665
+ ```python
666
+ import json
667
+ import time
668
+ from pathlib import Path
669
 
670
+ import requests
 
 
 
 
 
 
 
 
 
 
 
 
 
671
 
672
+ base_url = "http://localhost:8000"
673
+ input_videos = {
674
+ "av_inverse_0": Path("assets/example_action_id_av_0_input.mp4"),
675
+ "av_inverse_1": Path("assets/example_action_id_av_1_input.mp4"),
676
+ }
 
 
677
 
678
+ for name, video_path in input_videos.items():
679
+ extra_params = {
680
+ "action_mode": "inverse_dynamics",
681
+ "domain_name": "av",
682
+ "action_chunk_size": 60,
683
+ "image_size": 480,
684
+ "view_point": "ego_view",
685
+ "raw_action_dim": 9,
686
+ "guardrails": True,
687
+ }
688
+ data = {
689
+ "prompt": "You are an autonomous vehicle planning system.",
690
+ "num_frames": "61",
691
+ "fps": "10",
692
+ "num_inference_steps": "30",
693
+ "guidance_scale": "1.0",
694
+ "flow_shift": "10.0",
695
+ "seed": "0",
696
+ "extra_params": json.dumps(extra_params),
697
+ }
698
 
699
+ with video_path.open("rb") as video_file:
700
+ files = {
701
+ "input_reference": (video_path.name, video_file, "video/mp4"),
702
+ }
703
+ print(f"Submitting {name} request to server...")
704
+ response = requests.post(f"{base_url}/v1/videos", data=data, files=files)
705
+ response.raise_for_status()
706
+ initial = response.json()
707
+
708
+ while True:
709
+ response = requests.get(f"{base_url}/v1/videos/{initial['id']}", timeout=30)
710
+ response.raise_for_status()
711
+ final = response.json()
712
+ print(initial["id"], final.get("status"), f"{final.get('progress', 0)}%")
713
+ if final.get("status") == "completed":
714
+ break
715
+ if final.get("status") in {"failed", "cancelled"}:
716
+ raise RuntimeError(json.dumps(final, indent=2))
717
+ time.sleep(2)
718
+
719
+ action = final.get("action")
720
+ if not action or "data" not in action:
721
+ raise RuntimeError(f"Response did not include action data: {json.dumps(final, indent=2)}")
722
+
723
+ output_path = Path(f"/tmp/cosmos3_edge_action_id_{name}.json")
724
+ output_path.write_text(json.dumps(action, indent=2))
725
+ print(f"Saved predicted action to {output_path}")
726
+ print("action shape:", action.get("shape"), "dtype:", action.get("dtype"))
727
+ ```
728
 
729
+ Example outputs:
 
730
 
731
+ - [av_inverse_0 predicted action JSON](https://huggingface.co/nvidia/Cosmos3-Edge/blob/main/assets/edge_action_id_av_0_output.json)
732
+ - [av_inverse_1 predicted action JSON](https://huggingface.co/nvidia/Cosmos3-Edge/blob/main/assets/edge_action_id_av_1_output.json)
733
 
734
+ <img width="1280" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_action_id_av_0_output.png">
735
 
736
+ <img width="1280" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_action_id_av_1_output.png">
737
 
738
  ### Reasoning
739
 
assets/edge_action_fd_umi_2chunk_output.mp4 CHANGED
Binary files a/assets/edge_action_fd_umi_2chunk_output.mp4 and b/assets/edge_action_fd_umi_2chunk_output.mp4 differ
 
assets/edge_action_id_av_0_output.json CHANGED
@@ -1,671 +1,672 @@
1
  {
2
- "action_mode": "inverse_dynamics",
3
- "domain": "av",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  "shape": [
5
  60,
6
  9
7
  ],
 
8
  "raw_action_dim": 9,
9
- "action": [
10
- [
11
- 0.0492725670337677,
12
- 0.0027780681848526,
13
- 0.12276968359947205,
14
- 1.0912220478057861,
15
- 0.056050658226013184,
16
- -0.03594321012496948,
17
- 0.030706346035003662,
18
- 1.0093190670013428,
19
- -0.00604289211332798
20
- ],
21
- [
22
- -0.007567889988422394,
23
- -0.019974909722805023,
24
- 0.00013506412506103516,
25
- 1.0231894254684448,
26
- -0.037268370389938354,
27
- -0.003811468370258808,
28
- 0.02535127103328705,
29
- 1.0174977779388428,
30
- 0.03470897674560547
31
- ],
32
- [
33
- 0.014719709753990173,
34
- 0.011253640055656433,
35
- 0.017695963382720947,
36
- 1.025843620300293,
37
- -0.03104156255722046,
38
- -0.005794652737677097,
39
- -0.030716806650161743,
40
- 1.0413531064987183,
41
- 0.01473526656627655
42
- ],
43
- [
44
- -0.013746244832873344,
45
- -0.04279136657714844,
46
- 0.054797977209091187,
47
- 1.005152702331543,
48
- 0.012148350477218628,
49
- 0.01932545006275177,
50
- 0.06782984733581543,
51
- 1.0558966398239136,
52
- -0.013639584183692932
53
- ],
54
- [
55
- -0.03328731656074524,
56
- -0.051407188177108765,
57
- -0.021849721670150757,
58
- 1.0325393676757812,
59
- -0.03902357816696167,
60
- -0.024453535676002502,
61
- -0.017833620309829712,
62
- 1.0098190307617188,
63
- -0.0584946870803833
64
- ],
65
- [
66
- -0.029519766569137573,
67
- -0.028055891394615173,
68
- 0.03050599992275238,
69
- 0.9881038069725037,
70
- -0.03656008839607239,
71
- -0.01283542811870575,
72
- -0.00565178319811821,
73
- 1.080800175666809,
74
- -0.017281994223594666
75
- ],
76
- [
77
- -0.011123806238174438,
78
- -0.05460470914840698,
79
- -0.027077168226242065,
80
- 0.9637793898582458,
81
- 0.033554643392562866,
82
- 0.0005118958652019501,
83
- 0.009503960609436035,
84
- 1.0083622932434082,
85
- -0.012419827282428741
86
- ],
87
- [
88
- -0.03292049467563629,
89
- -0.007556885480880737,
90
- -0.013117879629135132,
91
- 1.0389888286590576,
92
- 0.009211443364620209,
93
- 0.0004763305187225342,
94
- 0.008194603025913239,
95
- 1.0815035104751587,
96
- -0.01655164361000061
97
- ],
98
- [
99
- -0.04493507742881775,
100
- -0.06127440929412842,
101
- 0.001424163579940796,
102
- 1.013352870941162,
103
- 0.004481300711631775,
104
- 0.025304794311523438,
105
- 0.006128959357738495,
106
- 1.0681028366088867,
107
- -0.00686771422624588
108
- ],
109
- [
110
- -0.030037686228752136,
111
- -0.03212025761604309,
112
- 0.023348862305283546,
113
- 1.0441007614135742,
114
- -0.05258065462112427,
115
- -0.021048009395599365,
116
- -0.029807180166244507,
117
- 1.034578800201416,
118
- -0.014456585049629211
119
- ],
120
- [
121
- -0.014103271067142487,
122
- 0.025796979665756226,
123
- 0.04251772165298462,
124
- 0.9963867664337158,
125
- -0.0397055447101593,
126
- -0.01084243506193161,
127
- 0.02179667353630066,
128
- 1.0178091526031494,
129
- -0.013726159930229187
130
- ],
131
- [
132
- -0.003684312105178833,
133
- 0.05981910228729248,
134
- 0.05711224675178528,
135
- 1.0093343257904053,
136
- 0.028475672006607056,
137
- 0.001445818692445755,
138
- -0.020538076758384705,
139
- 1.037355899810791,
140
- -0.01827913522720337
141
- ],
142
- [
143
- 0.03632017970085144,
144
- -0.012596674263477325,
145
- -0.0021329596638679504,
146
- 1.017427682876587,
147
- -0.0349656343460083,
148
- 0.0012267082929611206,
149
- -0.01260308176279068,
150
- 0.9703530669212341,
151
- -0.0073813144117593765
152
- ],
153
- [
154
- -0.011411070823669434,
155
- -0.005874995142221451,
156
- 0.026514321565628052,
157
- 1.0364291667938232,
158
- -0.030991971492767334,
159
- -0.012775301933288574,
160
- 0.010760307312011719,
161
- 1.0230164527893066,
162
- 0.0036681964993476868
163
- ],
164
- [
165
- -0.03211809694766998,
166
- -0.03171342611312866,
167
- 0.09722405672073364,
168
- 1.0030951499938965,
169
- -0.04289373755455017,
170
- -0.021315112709999084,
171
- 0.004807896912097931,
172
- 1.018676996231079,
173
- -0.017371565103530884
174
- ],
175
- [
176
- -0.024475954473018646,
177
- 0.02450975775718689,
178
- 0.06028921157121658,
179
- 1.0367043018341064,
180
- -0.022009819746017456,
181
- -0.005576560273766518,
182
- -0.002016906626522541,
183
- 1.063349723815918,
184
- 0.020130634307861328
185
- ],
186
- [
187
- 0.03983509540557861,
188
- -0.02397836744785309,
189
- 0.010893553495407104,
190
- 0.9761494398117065,
191
- 0.02465665340423584,
192
- -0.017013490200042725,
193
- -0.02577705681324005,
194
- 1.0183336734771729,
195
- -0.00889291986823082
196
- ],
197
- [
198
- 0.0029510706663131714,
199
- 0.00048250705003738403,
200
- 0.04033096134662628,
201
- 1.0104117393493652,
202
- -0.04752606153488159,
203
- -0.020059630274772644,
204
- 0.04684591293334961,
205
- 1.0126203298568726,
206
- 0.011921316385269165
207
- ],
208
- [
209
- -0.007882542908191681,
210
- 0.010108783841133118,
211
- 0.08553957939147949,
212
- 1.0543534755706787,
213
- -0.011878160759806633,
214
- 0.004970535635948181,
215
- 0.04494476318359375,
216
- 0.9712116122245789,
217
- -0.018314406275749207
218
- ],
219
- [
220
- 0.007552340626716614,
221
- 0.011678948998451233,
222
- 0.04768258333206177,
223
- 0.9983221292495728,
224
- -0.004615429788827896,
225
- -0.015687569975852966,
226
- 0.044579118490219116,
227
- 1.0042574405670166,
228
- -0.010387729853391647
229
- ],
230
- [
231
- -0.01746491715312004,
232
- -0.01572650671005249,
233
- 0.13096320629119873,
234
- 1.0259068012237549,
235
- -0.029484689235687256,
236
- -0.03678843379020691,
237
- 0.010326370596885681,
238
- 1.0019237995147705,
239
- -0.002774123102426529
240
- ],
241
- [
242
- 0.0026634931564331055,
243
- -0.009467966854572296,
244
- 0.14494286477565765,
245
- 0.9812352657318115,
246
- 0.017128512263298035,
247
- 0.012508213520050049,
248
- -0.024752527475357056,
249
- 1.0985816717147827,
250
- 0.015492737293243408
251
- ],
252
- [
253
- 0.03854304552078247,
254
- -0.008769303560256958,
255
- 0.11566334962844849,
256
- 0.9737118482589722,
257
- -0.01673179119825363,
258
- -0.018953025341033936,
259
- -0.012977235019207,
260
- 0.9721554517745972,
261
- 0.0349918007850647
262
- ],
263
- [
264
- -0.0030047446489334106,
265
- -0.009083330631256104,
266
- 0.1344253271818161,
267
- 0.9926329255104065,
268
- -0.024212762713432312,
269
- 0.0017178058624267578,
270
- 0.016143664717674255,
271
- 1.0157742500305176,
272
- 0.010643526911735535
273
- ],
274
- [
275
- -0.045004695653915405,
276
- -0.010600969195365906,
277
- 0.18357813358306885,
278
- 0.9997273087501526,
279
- 0.0063629597425460815,
280
- -0.006538301706314087,
281
- 0.01902395486831665,
282
- 0.9693968892097473,
283
- -0.013994455337524414
284
- ],
285
- [
286
- -0.00023024529218673706,
287
- -0.0009731166064739227,
288
- 0.125358447432518,
289
- 0.9873268008232117,
290
- -0.04494881629943848,
291
- 0.008636444807052612,
292
- 0.031695425510406494,
293
- 1.0152395963668823,
294
- -0.013823017477989197
295
- ],
296
- [
297
- -0.004302617162466049,
298
- 0.01654791831970215,
299
- 0.16861490905284882,
300
- 0.9910706281661987,
301
- -0.005278902128338814,
302
- -0.004654077813029289,
303
- -0.02641427516937256,
304
- 1.0447455644607544,
305
- -0.049528032541275024
306
- ],
307
- [
308
- -0.000592939555644989,
309
- -0.012477047741413116,
310
- 0.13705644011497498,
311
- 1.0510917901992798,
312
- 0.06183886528015137,
313
- 0.048055797815322876,
314
- 0.0075543709099292755,
315
- 1.076184868812561,
316
- 0.007683612406253815
317
- ],
318
- [
319
- -0.05304187536239624,
320
- 0.0009202458313666284,
321
- 0.14418748021125793,
322
- 0.9925802946090698,
323
- -0.00786562543362379,
324
- 0.0032329335808753967,
325
- -0.012539669871330261,
326
- 1.0186715126037598,
327
- 0.018542185425758362
328
- ],
329
- [
330
- 0.024564266204833984,
331
- 0.009374044835567474,
332
- 0.18087324500083923,
333
- 1.0111358165740967,
334
- -0.03049929440021515,
335
- -0.016463443636894226,
336
- -0.01921217143535614,
337
- 0.9871999025344849,
338
- 0.017088785767555237
339
- ],
340
- [
341
- 0.022949129343032837,
342
- -0.04131603240966797,
343
- 0.19567090272903442,
344
- 1.00861656665802,
345
- -0.020925015211105347,
346
- 0.03157716989517212,
347
- -0.006639786064624786,
348
- 1.0749444961547852,
349
- 0.0244922935962677
350
- ],
351
- [
352
- -0.024561643600463867,
353
- -0.024565041065216064,
354
- 0.2132226824760437,
355
- 1.0048532485961914,
356
- -0.033265262842178345,
357
- -0.00411271583288908,
358
- 0.024862200021743774,
359
- 0.9953704476356506,
360
- 0.02016773819923401
361
- ],
362
- [
363
- -0.04613077640533447,
364
- 0.014696702361106873,
365
- 0.15417152643203735,
366
- 1.0198122262954712,
367
- -0.026680350303649902,
368
- 0.014329209923744202,
369
- 0.005940426141023636,
370
- 1.022228717803955,
371
- -0.024758338928222656
372
- ],
373
- [
374
- -0.010072870180010796,
375
- -0.024880200624465942,
376
- 0.13916361331939697,
377
- 0.9761840105056763,
378
- -0.009975235909223557,
379
- 0.025477468967437744,
380
- -0.014405995607376099,
381
- 1.0225327014923096,
382
- 0.023038417100906372
383
- ],
384
- [
385
- 0.022480040788650513,
386
- -0.02796754240989685,
387
- 0.23018993437290192,
388
- 1.0366700887680054,
389
- -0.04851686954498291,
390
- -0.018277451395988464,
391
- -0.04015558958053589,
392
- 0.9874343276023865,
393
- -0.030734479427337646
394
- ],
395
- [
396
- -0.049507319927215576,
397
- 0.01422920823097229,
398
- 0.26603734493255615,
399
- 1.031073808670044,
400
- -0.04608184099197388,
401
- -0.03205329179763794,
402
- -0.005019050091505051,
403
- 1.0201328992843628,
404
- -0.0012849867343902588
405
- ],
406
- [
407
- 0.008047588169574738,
408
- -0.0008665798231959343,
409
- 0.2219693958759308,
410
- 1.006353735923767,
411
- 0.035203397274017334,
412
- -0.024340704083442688,
413
- 0.018846064805984497,
414
- 0.981877326965332,
415
- -0.01925256848335266
416
- ],
417
- [
418
- -0.013573065400123596,
419
- 0.038729697465896606,
420
- 0.291162371635437,
421
- 1.022515892982483,
422
- -0.04885658621788025,
423
- -0.0371018648147583,
424
- 0.011265397071838379,
425
- 0.991978645324707,
426
- -0.014600545167922974
427
- ],
428
- [
429
- -0.028716295957565308,
430
- 0.010424546897411346,
431
- 0.23472987115383148,
432
- 0.9604178071022034,
433
- -0.01644868403673172,
434
- -0.03593927621841431,
435
- 0.014066249132156372,
436
- 1.0241563320159912,
437
- 0.007917448878288269
438
- ],
439
- [
440
- 0.014299914240837097,
441
- 0.02478766441345215,
442
- 0.2777073085308075,
443
- 0.9854560494422913,
444
- -0.0494789183139801,
445
- 0.0038264989852905273,
446
- 0.046025872230529785,
447
- 0.99747633934021,
448
- -0.002948228269815445
449
- ],
450
- [
451
- 0.014394521713256836,
452
- -0.006892867386341095,
453
- 0.3007967472076416,
454
- 0.9841299057006836,
455
- -0.018609896302223206,
456
- -0.015770815312862396,
457
- 0.01806017756462097,
458
- 1.0174659490585327,
459
- -0.029632598161697388
460
- ],
461
- [
462
- 0.044240355491638184,
463
- 0.002140611410140991,
464
- 0.2953586280345917,
465
- 1.032522201538086,
466
- 0.050619423389434814,
467
- 0.008867695927619934,
468
- -0.0005566533654928207,
469
- 0.9871653914451599,
470
- 0.004703894257545471
471
- ],
472
- [
473
- -0.005402863025665283,
474
- 0.013296566903591156,
475
- 0.2701025605201721,
476
- 1.0170661211013794,
477
- -0.06885349750518799,
478
- -0.006968732923269272,
479
- 0.012921012938022614,
480
- 1.0026192665100098,
481
- 0.01675109565258026
482
- ],
483
- [
484
- 0.015888594090938568,
485
- -0.00748724490404129,
486
- 0.28690701723098755,
487
- 1.0003695487976074,
488
- 0.014451086521148682,
489
- -0.03193315863609314,
490
- 0.01911655068397522,
491
- 1.068222165107727,
492
- 0.008464306592941284
493
- ],
494
- [
495
- -0.017068609595298767,
496
- -0.01834823191165924,
497
- 0.28184136748313904,
498
- 1.0071308612823486,
499
- -0.005658802576363087,
500
- 0.00984986126422882,
501
- 0.003953553736209869,
502
- 1.0035746097564697,
503
- -0.020444631576538086
504
- ],
505
- [
506
- -0.01500992476940155,
507
- -0.05801194906234741,
508
- 0.32294556498527527,
509
- 0.9796587824821472,
510
- 0.03137961030006409,
511
- -0.015654146671295166,
512
- -0.016864046454429626,
513
- 1.0168483257293701,
514
- 0.026266515254974365
515
- ],
516
- [
517
- 0.00849653035402298,
518
- -0.03136369585990906,
519
- 0.26844871044158936,
520
- 0.9956073760986328,
521
- -0.05256202816963196,
522
- 0.005388505756855011,
523
- -0.04388928413391113,
524
- 1.0204882621765137,
525
- -0.00988558679819107
526
- ],
527
- [
528
- -0.04224461317062378,
529
- 0.012396953999996185,
530
- 0.3375932276248932,
531
- 0.9928956627845764,
532
- -0.0015121088363230228,
533
- -0.05535763502120972,
534
- -0.04726970195770264,
535
- 1.0142278671264648,
536
- -0.024589985609054565
537
- ],
538
- [
539
- -0.037602633237838745,
540
- -0.012579888105392456,
541
- 0.30167242884635925,
542
- 1.009423017501831,
543
- -0.0187627375125885,
544
- 0.04206383228302002,
545
- 0.028117001056671143,
546
- 0.989692747592926,
547
- -0.010284461081027985
548
- ],
549
- [
550
- -0.004165366291999817,
551
- -0.026345625519752502,
552
- 0.4009022116661072,
553
- 0.9986672401428223,
554
- -0.01250922679901123,
555
- 0.0042685046792030334,
556
- 0.015345975756645203,
557
- 0.9648115634918213,
558
- -0.016175568103790283
559
- ],
560
- [
561
- -0.022583335638046265,
562
- 0.014377593994140625,
563
- 0.327165424823761,
564
- 0.9429260492324829,
565
- -0.027141675353050232,
566
- 0.001349136233329773,
567
- -0.005665980279445648,
568
- 1.0480256080627441,
569
- -0.0012257285416126251
570
- ],
571
- [
572
- 0.005218146834522486,
573
- -0.040852129459381104,
574
- 0.3993855118751526,
575
- 0.9598320126533508,
576
- -0.023340433835983276,
577
- -0.02271309494972229,
578
- -0.020142480731010437,
579
- 1.051469087600708,
580
- 0.009255185723304749
581
- ],
582
- [
583
- -0.037923991680145264,
584
- 0.025105401873588562,
585
- 0.3933091163635254,
586
- 1.0346593856811523,
587
- -0.010025262832641602,
588
- -0.0026304125785827637,
589
- 0.0606459379196167,
590
- 1.0578848123550415,
591
- -0.01859600841999054
592
- ],
593
- [
594
- 0.009695393033325672,
595
- 0.03079819679260254,
596
- 0.3637555241584778,
597
- 1.0505470037460327,
598
- -0.023109078407287598,
599
- -0.019764401018619537,
600
- -0.02277173101902008,
601
- 1.0263841152191162,
602
- -0.051579952239990234
603
- ],
604
- [
605
- 0.022953376173973083,
606
- 0.028223201632499695,
607
- 0.4363210201263428,
608
- 1.0759626626968384,
609
- -0.0024564415216445923,
610
- -0.025827422738075256,
611
- -0.09447044134140015,
612
- 1.0149407386779785,
613
- 0.021662309765815735
614
- ],
615
- [
616
- 0.014230787754058838,
617
- 0.020535573363304138,
618
- 0.4178773760795593,
619
- 1.029559850692749,
620
- -0.054546236991882324,
621
- 0.015977725386619568,
622
- 0.011292777955532074,
623
- 1.0829910039901733,
624
- 0.039515405893325806
625
- ],
626
- [
627
- 0.00998670607805252,
628
- 0.026538744568824768,
629
- 0.46360039710998535,
630
- 0.9611713886260986,
631
- -0.029512137174606323,
632
- -0.02962188422679901,
633
- 0.009693756699562073,
634
- 0.995912492275238,
635
- -0.020875200629234314
636
- ],
637
- [
638
- -0.006078124046325684,
639
- 0.013974085450172424,
640
- 0.4646471440792084,
641
- 0.9841764569282532,
642
- 0.05670785903930664,
643
- 0.005611345171928406,
644
- -0.01180122047662735,
645
- 0.996303141117096,
646
- 0.026255637407302856
647
- ],
648
- [
649
- -0.020032674074172974,
650
- 0.006266318261623383,
651
- 0.5462930202484131,
652
- 1.0015963315963745,
653
- 0.0005848035216331482,
654
- 0.02695554494857788,
655
- 0.019355863332748413,
656
- 1.030512809753418,
657
- -0.025447487831115723
658
- ],
659
- [
660
- 0.03668421506881714,
661
- 0.01689925789833069,
662
- 0.43984678387641907,
663
- 0.9758548736572266,
664
- 0.012799695134162903,
665
- 0.05056124925613403,
666
- -0.037308186292648315,
667
- 1.0156702995300293,
668
- 0.008510351181030273
669
- ]
670
- ]
671
  }
 
1
  {
2
+ "data": [
3
+ [
4
+ 0.0009765625,
5
+ -0.00244140625,
6
+ 0.04296875,
7
+ 1.0,
8
+ -0.000732421875,
9
+ -0.0009765625,
10
+ 0.0009765625,
11
+ 1.0,
12
+ -0.001953125
13
+ ],
14
+ [
15
+ -0.005035400390625,
16
+ 0.0,
17
+ 0.0078125,
18
+ 1.0,
19
+ 0.001953125,
20
+ 0.000244140625,
21
+ -0.0009765625,
22
+ 1.0,
23
+ 0.0
24
+ ],
25
+ [
26
+ -0.001953125,
27
+ -0.0009765625,
28
+ -0.00390625,
29
+ 0.9921875,
30
+ 0.005859375,
31
+ -0.009765625,
32
+ 0.0078125,
33
+ 1.015625,
34
+ -0.0009765625
35
+ ],
36
+ [
37
+ -0.00439453125,
38
+ -0.001953125,
39
+ -0.009765625,
40
+ 1.0,
41
+ -0.00048828125,
42
+ 0.00146484375,
43
+ 0.001953125,
44
+ 1.0078125,
45
+ 0.0009765625
46
+ ],
47
+ [
48
+ -0.0048828125,
49
+ -0.0078125,
50
+ -0.0166015625,
51
+ 1.0,
52
+ -0.00390625,
53
+ -0.001953125,
54
+ -0.00390625,
55
+ 1.0,
56
+ 0.0
57
+ ],
58
+ [
59
+ -0.0078125,
60
+ -0.009765625,
61
+ -0.016845703125,
62
+ 0.9921875,
63
+ -0.000732421875,
64
+ 0.001953125,
65
+ -0.0029296875,
66
+ 0.9921875,
67
+ 0.001953125
68
+ ],
69
+ [
70
+ -0.001220703125,
71
+ -0.00390625,
72
+ -0.013671875,
73
+ 0.99609375,
74
+ -0.00146484375,
75
+ 0.001953125,
76
+ 0.0,
77
+ 0.99609375,
78
+ -0.0009765625
79
+ ],
80
+ [
81
+ -0.005859375,
82
+ -0.001953125,
83
+ -0.015625,
84
+ 1.0,
85
+ -0.001953125,
86
+ -0.001953125,
87
+ 0.0,
88
+ 1.0,
89
+ 0.0013427734375
90
+ ],
91
+ [
92
+ 0.0,
93
+ 0.00146484375,
94
+ -0.0244140625,
95
+ 1.0,
96
+ 0.001953125,
97
+ 0.001953125,
98
+ -0.0078125,
99
+ 1.0,
100
+ -0.001953125
101
+ ],
102
+ [
103
+ -0.0009765625,
104
+ -0.00390625,
105
+ -0.01220703125,
106
+ 1.0,
107
+ -0.0009765625,
108
+ -0.000732421875,
109
+ 0.0,
110
+ 1.0,
111
+ 0.001953125
112
+ ],
113
+ [
114
+ -0.00390625,
115
+ -0.0068359375,
116
+ -0.0093994140625,
117
+ 1.0,
118
+ -0.0029296875,
119
+ 0.0032958984375,
120
+ -0.005859375,
121
+ 1.0,
122
+ -0.001953125
123
+ ],
124
+ [
125
+ 0.0009765625,
126
+ -0.0078125,
127
+ -0.0142822265625,
128
+ 1.0078125,
129
+ -0.0048828125,
130
+ -0.001953125,
131
+ -0.001953125,
132
+ 1.0,
133
+ 0.0
134
+ ],
135
+ [
136
+ -0.001953125,
137
+ -0.001953125,
138
+ -0.0150146484375,
139
+ 1.0,
140
+ -0.00390625,
141
+ -0.001220703125,
142
+ 0.0009765625,
143
+ 1.0,
144
+ 0.001708984375
145
+ ],
146
+ [
147
+ -0.0009765625,
148
+ -0.009765625,
149
+ -0.001953125,
150
+ 1.0,
151
+ -0.005859375,
152
+ -0.00390625,
153
+ 0.00244140625,
154
+ 1.0,
155
+ -0.001953125
156
+ ],
157
+ [
158
+ 0.00390625,
159
+ -0.005859375,
160
+ 0.00390625,
161
+ 1.0,
162
+ 0.001953125,
163
+ 0.0010986328125,
164
+ -0.00390625,
165
+ 1.0,
166
+ 0.0078125
167
+ ],
168
+ [
169
+ 0.0087890625,
170
+ -0.006591796875,
171
+ 0.015625,
172
+ 1.0,
173
+ 0.001953125,
174
+ 0.00146484375,
175
+ -0.00390625,
176
+ 1.0,
177
+ 0.00390625
178
+ ],
179
+ [
180
+ 0.001953125,
181
+ 0.0009765625,
182
+ 0.01123046875,
183
+ 1.0,
184
+ -0.001220703125,
185
+ -0.0048828125,
186
+ 0.00390625,
187
+ 1.0,
188
+ -0.001953125
189
+ ],
190
+ [
191
+ 0.0001220703125,
192
+ 0.0,
193
+ 0.0234375,
194
+ 1.0,
195
+ 0.0009765625,
196
+ 0.001953125,
197
+ 0.0009765625,
198
+ 1.0,
199
+ 0.0009765625
200
+ ],
201
+ [
202
+ -0.0009765625,
203
+ 0.0009765625,
204
+ 0.03125,
205
+ 1.0,
206
+ -0.00390625,
207
+ 0.0009765625,
208
+ 0.002197265625,
209
+ 1.0,
210
+ 0.0
211
+ ],
212
+ [
213
+ -0.0068359375,
214
+ -0.002227783203125,
215
+ 0.044921875,
216
+ 0.99609375,
217
+ -0.00341796875,
218
+ 0.0020751953125,
219
+ 0.001953125,
220
+ 1.0078125,
221
+ 0.00103759765625
222
+ ],
223
+ [
224
+ -0.0048828125,
225
+ -0.00390625,
226
+ 0.0556640625,
227
+ 1.0,
228
+ 0.0,
229
+ -0.0009765625,
230
+ 0.00390625,
231
+ 1.0078125,
232
+ 0.00390625
233
+ ],
234
+ [
235
+ 0.0,
236
+ -0.0078125,
237
+ 0.064453125,
238
+ 1.0,
239
+ -0.001953125,
240
+ -0.001953125,
241
+ 0.00390625,
242
+ 1.0078125,
243
+ -0.001953125
244
+ ],
245
+ [
246
+ -0.0018310546875,
247
+ 0.0,
248
+ 0.0732421875,
249
+ 1.0,
250
+ -0.00390625,
251
+ 0.0,
252
+ 0.0029296875,
253
+ 1.0,
254
+ 0.0
255
+ ],
256
+ [
257
+ 0.0,
258
+ -0.0078125,
259
+ 0.08203125,
260
+ 1.0,
261
+ -0.001953125,
262
+ -0.005859375,
263
+ 0.00146484375,
264
+ 1.0078125,
265
+ -0.00146484375
266
+ ],
267
+ [
268
+ 0.0,
269
+ -0.00048828125,
270
+ 0.087890625,
271
+ 1.0,
272
+ -0.0009765625,
273
+ 0.00390625,
274
+ 0.0028076171875,
275
+ 1.0,
276
+ 0.001953125
277
+ ],
278
+ [
279
+ -0.002197265625,
280
+ -0.0078125,
281
+ 0.103515625,
282
+ 1.0,
283
+ 0.0,
284
+ -0.000732421875,
285
+ 0.0009765625,
286
+ 0.99609375,
287
+ -0.0009765625
288
+ ],
289
+ [
290
+ -0.00341796875,
291
+ 0.0009765625,
292
+ 0.103515625,
293
+ 1.0,
294
+ -0.00018310546875,
295
+ -0.00390625,
296
+ 0.0,
297
+ 1.0,
298
+ 0.00048828125
299
+ ],
300
+ [
301
+ -0.00390625,
302
+ 0.001953125,
303
+ 0.1142578125,
304
+ 1.0,
305
+ -0.0009765625,
306
+ 0.001953125,
307
+ 0.00146484375,
308
+ 1.0,
309
+ 0.001220703125
310
+ ],
311
+ [
312
+ -0.00439453125,
313
+ 0.0009765625,
314
+ 0.126953125,
315
+ 1.0,
316
+ -0.00048828125,
317
+ -0.0029296875,
318
+ 0.001953125,
319
+ 1.0,
320
+ -0.001953125
321
+ ],
322
+ [
323
+ -0.00335693359375,
324
+ -0.00390625,
325
+ 0.130859375,
326
+ 1.0,
327
+ 0.0,
328
+ -0.00390625,
329
+ 0.004150390625,
330
+ 1.0,
331
+ -0.0009765625
332
+ ],
333
+ [
334
+ -0.00439453125,
335
+ -0.00213623046875,
336
+ 0.140625,
337
+ 0.9921875,
338
+ -0.00390625,
339
+ 0.001953125,
340
+ 0.001953125,
341
+ 1.0,
342
+ 0.0009765625
343
+ ],
344
+ [
345
+ -0.0048828125,
346
+ -0.001953125,
347
+ 0.1416015625,
348
+ 1.0,
349
+ 0.0,
350
+ -0.0029296875,
351
+ 0.002197265625,
352
+ 1.0,
353
+ 0.000335693359375
354
+ ],
355
+ [
356
+ 0.0,
357
+ -0.001953125,
358
+ 0.154296875,
359
+ 1.0,
360
+ -0.001953125,
361
+ -0.0009765625,
362
+ 0.0,
363
+ 1.0,
364
+ 0.0
365
+ ],
366
+ [
367
+ -0.001953125,
368
+ 0.0,
369
+ 0.1640625,
370
+ 1.0,
371
+ -0.00048828125,
372
+ -0.001953125,
373
+ -0.0009765625,
374
+ 1.0,
375
+ -0.00048828125
376
+ ],
377
+ [
378
+ 0.0009765625,
379
+ -0.000244140625,
380
+ 0.1650390625,
381
+ 1.0,
382
+ 0.000244140625,
383
+ -0.00146484375,
384
+ 0.001953125,
385
+ 1.0,
386
+ 0.00146484375
387
+ ],
388
+ [
389
+ 0.00244140625,
390
+ 0.0009765625,
391
+ 0.1748046875,
392
+ 1.0,
393
+ -0.0029296875,
394
+ -0.00390625,
395
+ 0.00390625,
396
+ 1.0,
397
+ 0.0
398
+ ],
399
+ [
400
+ 0.001953125,
401
+ 0.001953125,
402
+ 0.1787109375,
403
+ 0.99609375,
404
+ -0.0029296875,
405
+ -0.0048828125,
406
+ 0.0009765625,
407
+ 0.9921875,
408
+ 0.00390625
409
+ ],
410
+ [
411
+ 0.00830078125,
412
+ -0.0009765625,
413
+ 0.189453125,
414
+ 1.0,
415
+ -0.0009765625,
416
+ -0.009765625,
417
+ 0.001953125,
418
+ 1.0,
419
+ -0.00048828125
420
+ ],
421
+ [
422
+ 0.013671875,
423
+ -0.00048828125,
424
+ 0.1923828125,
425
+ 1.0,
426
+ -0.0029296875,
427
+ -0.00439453125,
428
+ 0.0009765625,
429
+ 1.0,
430
+ -0.001953125
431
+ ],
432
+ [
433
+ 0.01171875,
434
+ 0.00164794921875,
435
+ 0.203125,
436
+ 1.0078125,
437
+ 0.000244140625,
438
+ -0.0078125,
439
+ 0.0029296875,
440
+ 1.0078125,
441
+ 0.001953125
442
+ ],
443
+ [
444
+ 0.015625,
445
+ 0.001708984375,
446
+ 0.2119140625,
447
+ 1.0078125,
448
+ 0.001953125,
449
+ -0.0068359375,
450
+ 0.001953125,
451
+ 1.0078125,
452
+ 0.0
453
+ ],
454
+ [
455
+ 0.0146484375,
456
+ 0.00390625,
457
+ 0.224609375,
458
+ 1.0,
459
+ 0.00390625,
460
+ -0.009765625,
461
+ 0.0,
462
+ 1.0078125,
463
+ 0.00439453125
464
+ ],
465
+ [
466
+ 0.017578125,
467
+ -0.00390625,
468
+ 0.2265625,
469
+ 1.0,
470
+ 0.00048828125,
471
+ -0.005859375,
472
+ 0.00244140625,
473
+ 1.0,
474
+ 0.0
475
+ ],
476
+ [
477
+ 0.017578125,
478
+ -0.002197265625,
479
+ 0.240234375,
480
+ 1.0,
481
+ 0.0009765625,
482
+ -0.009765625,
483
+ -0.00048828125,
484
+ 1.0078125,
485
+ 0.000244140625
486
+ ],
487
+ [
488
+ 0.0159912109375,
489
+ 0.0,
490
+ 0.25390625,
491
+ 1.0,
492
+ -0.005859375,
493
+ -0.0078125,
494
+ 0.0078125,
495
+ 1.0,
496
+ 0.001953125
497
+ ],
498
+ [
499
+ 0.01953125,
500
+ -0.001953125,
501
+ 0.26953125,
502
+ 1.0,
503
+ -0.0078125,
504
+ -0.011962890625,
505
+ 0.0078125,
506
+ 1.0,
507
+ 0.0078125
508
+ ],
509
+ [
510
+ 0.014404296875,
511
+ 0.001953125,
512
+ 0.275390625,
513
+ 0.99609375,
514
+ 0.00244140625,
515
+ -0.005859375,
516
+ 0.00048828125,
517
+ 1.0,
518
+ 0.00390625
519
+ ],
520
+ [
521
+ 0.0155029296875,
522
+ 0.0,
523
+ 0.279296875,
524
+ 0.99609375,
525
+ 0.001708984375,
526
+ -0.009765625,
527
+ -0.0009765625,
528
+ 1.0,
529
+ 0.00048828125
530
+ ],
531
+ [
532
+ 0.01519775390625,
533
+ 0.00244140625,
534
+ 0.294921875,
535
+ 1.0,
536
+ 0.001953125,
537
+ -0.0087890625,
538
+ -0.00390625,
539
+ 1.0,
540
+ -0.0009765625
541
+ ],
542
+ [
543
+ 0.01513671875,
544
+ 0.0048828125,
545
+ 0.3046875,
546
+ 1.0,
547
+ 0.0009765625,
548
+ -0.00634765625,
549
+ 0.0,
550
+ 1.0,
551
+ 0.00146484375
552
+ ],
553
+ [
554
+ 0.0166015625,
555
+ -0.00390625,
556
+ 0.31640625,
557
+ 1.0,
558
+ -0.001953125,
559
+ -0.0078125,
560
+ 0.0010986328125,
561
+ 1.0,
562
+ 0.0
563
+ ],
564
+ [
565
+ 0.015380859375,
566
+ 0.001953125,
567
+ 0.333984375,
568
+ 1.0,
569
+ -0.0009765625,
570
+ -0.00732421875,
571
+ 0.001220703125,
572
+ 1.0,
573
+ 0.0009765625
574
+ ],
575
+ [
576
+ 0.0146484375,
577
+ 0.00390625,
578
+ 0.341796875,
579
+ 1.0,
580
+ 0.001220703125,
581
+ -0.0078125,
582
+ 0.001953125,
583
+ 1.0,
584
+ 0.003662109375
585
+ ],
586
+ [
587
+ 0.01708984375,
588
+ 0.000732421875,
589
+ 0.35546875,
590
+ 1.0,
591
+ 0.0,
592
+ -0.0078125,
593
+ 0.000244140625,
594
+ 1.0,
595
+ 0.0
596
+ ],
597
+ [
598
+ 0.013427734375,
599
+ 0.00390625,
600
+ 0.369140625,
601
+ 0.99609375,
602
+ 0.00225830078125,
603
+ -0.0078125,
604
+ -0.001953125,
605
+ 1.0,
606
+ 0.0029296875
607
+ ],
608
+ [
609
+ 0.01507568359375,
610
+ 0.001953125,
611
+ 0.37890625,
612
+ 1.0,
613
+ -0.0029296875,
614
+ -0.0107421875,
615
+ 0.0,
616
+ 1.0,
617
+ -0.00390625
618
+ ],
619
+ [
620
+ 0.01513671875,
621
+ 0.00146484375,
622
+ 0.390625,
623
+ 1.0,
624
+ 0.0,
625
+ -0.0078125,
626
+ 0.0009765625,
627
+ 1.0,
628
+ 0.0
629
+ ],
630
+ [
631
+ 0.0164794921875,
632
+ 0.0,
633
+ 0.404296875,
634
+ 1.0,
635
+ 0.00048828125,
636
+ -0.0078125,
637
+ -0.0009765625,
638
+ 1.0,
639
+ 0.0009765625
640
+ ],
641
+ [
642
+ 0.017578125,
643
+ 0.0009765625,
644
+ 0.4140625,
645
+ 1.0,
646
+ -0.000244140625,
647
+ -0.005859375,
648
+ 0.0009765625,
649
+ 1.0,
650
+ -0.0009765625
651
+ ],
652
+ [
653
+ 0.0167236328125,
654
+ 0.0,
655
+ 0.43359375,
656
+ 1.0,
657
+ 0.0,
658
+ -0.00439453125,
659
+ 0.0,
660
+ 1.0,
661
+ 0.0009765625
662
+ ]
663
+ ],
664
  "shape": [
665
  60,
666
  9
667
  ],
668
+ "dtype": "torch.bfloat16",
669
  "raw_action_dim": 9,
670
+ "action_mode": "inverse_dynamics",
671
+ "domain_id": 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  }
assets/edge_action_id_av_0_output.png CHANGED

Git LFS Details

  • SHA256: 3d8e092d4603af254861bad993fbd2aee37abc75d0b2935e80dbdb66137d57fb
  • Pointer size: 131 Bytes
  • Size of remote file: 202 kB

Git LFS Details

  • SHA256: 048f4e46303e5fc8e03d28d9793af72c71b99df06029576f40c18caff9415b45
  • Pointer size: 131 Bytes
  • Size of remote file: 118 kB
assets/edge_action_id_av_1_output.json CHANGED
@@ -1,671 +1,672 @@
1
  {
2
- "action_mode": "inverse_dynamics",
3
- "domain": "av",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  "shape": [
5
  60,
6
  9
7
  ],
 
8
  "raw_action_dim": 9,
9
- "action": [
10
- [
11
- 0.13546139001846313,
12
- 0.025174729526042938,
13
- 1.426080346107483,
14
- 1.1145950555801392,
15
- 0.07488197088241577,
16
- -0.07223373651504517,
17
- 0.04350957274436951,
18
- 1.0150262117385864,
19
- -0.00448286347091198
20
- ],
21
- [
22
- 0.07021187245845795,
23
- -0.011819683015346527,
24
- 1.2888935804367065,
25
- 1.0235754251480103,
26
- -0.05280384421348572,
27
- -0.02510145492851734,
28
- 0.04146409034729004,
29
- 1.0186502933502197,
30
- 0.05276322364807129
31
- ],
32
- [
33
- 0.09703329205513,
34
- 0.018842071294784546,
35
- 1.3100371360778809,
36
- 1.0333178043365479,
37
- -0.0431232750415802,
38
- -0.028406988829374313,
39
- -0.028543800115585327,
40
- 1.049324631690979,
41
- 0.02590996026992798
42
- ],
43
- [
44
- 0.06821039319038391,
45
- -0.05265656113624573,
46
- 1.3186297416687012,
47
- 1.0072031021118164,
48
- 0.015827640891075134,
49
- -0.0009630471467971802,
50
- 0.08952575922012329,
51
- 1.0796962976455688,
52
- -0.013196155428886414
53
- ],
54
- [
55
- 0.05664193630218506,
56
- -0.05819624662399292,
57
- 1.1806482076644897,
58
- 1.0337612628936768,
59
- -0.05230799317359924,
60
- -0.05698022246360779,
61
- -0.018793731927871704,
62
- 1.0122668743133545,
63
- -0.06691086292266846
64
- ],
65
- [
66
- 0.06336109340190887,
67
- -0.033161431550979614,
68
- 1.2057015895843506,
69
- 0.9815682172775269,
70
- -0.052350759506225586,
71
- -0.05170893669128418,
72
- 0.0011204741895198822,
73
- 1.0991325378417969,
74
- -0.021897152066230774
75
- ],
76
- [
77
- 0.10591363161802292,
78
- -0.04752570390701294,
79
- 1.138118028640747,
80
- 0.9648622274398804,
81
- 0.035588592290878296,
82
- -0.04252072796225548,
83
- 0.018809214234352112,
84
- 1.0108567476272583,
85
- -0.019017472863197327
86
- ],
87
- [
88
- 0.07684259116649628,
89
- 0.01119421049952507,
90
- 1.0927064418792725,
91
- 1.047748327255249,
92
- 0.007765151560306549,
93
- -0.034338124096393585,
94
- 0.013474099338054657,
95
- 1.0956096649169922,
96
- -0.027869120240211487
97
- ],
98
- [
99
- 0.058235108852386475,
100
- -0.05473977327346802,
101
- 1.0785033702850342,
102
- 1.0151678323745728,
103
- 0.006711810827255249,
104
- -0.006015300750732422,
105
- 0.01291511207818985,
106
- 1.0781538486480713,
107
- -0.013953767716884613
108
- ],
109
- [
110
- 0.08591170608997345,
111
- -0.01916104555130005,
112
- 1.0887410640716553,
113
- 1.0545742511749268,
114
- -0.07691192626953125,
115
- -0.07171212136745453,
116
- -0.03703737258911133,
117
- 1.0434694290161133,
118
- -0.01779910922050476
119
- ],
120
- [
121
- 0.12193122506141663,
122
- 0.04982006549835205,
123
- 1.1134510040283203,
124
- 0.9903247356414795,
125
- -0.05103370547294617,
126
- -0.06394928693771362,
127
- 0.03896644711494446,
128
- 1.0138628482818604,
129
- -0.014058023691177368
130
- ],
131
- [
132
- 0.12709589302539825,
133
- 0.08672934770584106,
134
- 1.1100571155548096,
135
- 1.015282154083252,
136
- 0.038707435131073,
137
- -0.04258517920970917,
138
- -0.018928349018096924,
139
- 1.047316551208496,
140
- -0.02057214081287384
141
- ],
142
- [
143
- 0.20476627349853516,
144
- -0.004204690456390381,
145
- 1.0337212085723877,
146
- 1.014133334159851,
147
- -0.05253276228904724,
148
- -0.04514233395457268,
149
- -0.010963991284370422,
150
- 0.9420084953308105,
151
- 0.0007240017876029015
152
- ],
153
- [
154
- 0.1305149793624878,
155
- 0.005878615193068981,
156
- 1.033996343612671,
157
- 1.045791506767273,
158
- -0.042561084032058716,
159
- -0.06542721390724182,
160
- 0.021425798535346985,
161
- 1.0274286270141602,
162
- 0.0124284029006958
163
- ],
164
- [
165
- 0.10023510456085205,
166
- -0.04296022653579712,
167
- 1.1195508241653442,
168
- 0.9977197647094727,
169
- -0.05583757162094116,
170
- -0.07558904588222504,
171
- 0.014273092150688171,
172
- 1.023720622062683,
173
- -0.024730771780014038
174
- ],
175
- [
176
- 0.0990428775548935,
177
- 0.04719004034996033,
178
- 1.035454273223877,
179
- 1.0485506057739258,
180
- -0.030744656920433044,
181
- -0.0516490712761879,
182
- 0.0031055528670549393,
183
- 1.084179401397705,
184
- 0.03411594033241272
185
- ],
186
- [
187
- 0.18363159894943237,
188
- -0.022317931056022644,
189
- 0.9875563383102417,
190
- 0.9695990085601807,
191
- 0.02742236852645874,
192
- -0.06816740334033966,
193
- -0.026920944452285767,
194
- 1.0165114402770996,
195
- -0.006480269134044647
196
- ],
197
- [
198
- 0.1489933729171753,
199
- 0.010654207319021225,
200
- 0.9851521849632263,
201
- 1.006519079208374,
202
- -0.06747135519981384,
203
- -0.07406698167324066,
204
- 0.06726109981536865,
205
- 1.0085840225219727,
206
- 0.027757495641708374
207
- ],
208
- [
209
- 0.13006925582885742,
210
- 0.029765993356704712,
211
- 1.0499398708343506,
212
- 1.0703331232070923,
213
- -0.014614774845540524,
214
- -0.03657462075352669,
215
- 0.06404685974121094,
216
- 0.9599027633666992,
217
- -0.014807313680648804
218
- ],
219
- [
220
- 0.1508059799671173,
221
- 0.032676249742507935,
222
- 1.0083245038986206,
223
- 0.9963503479957581,
224
- -0.0070220306515693665,
225
- -0.06628589332103729,
226
- 0.06477618217468262,
227
- 1.0072726011276245,
228
- -0.007128316909074783
229
- ],
230
- [
231
- 0.11251222342252731,
232
- -0.0026700645685195923,
233
- 1.0918068885803223,
234
- 1.0276920795440674,
235
- -0.03953169286251068,
236
- -0.0927085280418396,
237
- 0.019856765866279602,
238
- 0.9975546598434448,
239
- 0.004296505823731422
240
- ],
241
- [
242
- 0.13503776490688324,
243
- -0.0022014454007148743,
244
- 1.1109027862548828,
245
- 0.9730671048164368,
246
- 0.031084954738616943,
247
- -0.021330691874027252,
248
- -0.035146862268447876,
249
- 1.1298999786376953,
250
- 0.026377543807029724
251
- ],
252
- [
253
- 0.20373189449310303,
254
- 0.0066124312579631805,
255
- 1.0865638256072998,
256
- 0.951166033744812,
257
- -0.022680997848510742,
258
- -0.0717519223690033,
259
- -0.017153583467006683,
260
- 0.947241485118866,
261
- 0.06100693345069885
262
- ],
263
- [
264
- 0.12869884073734283,
265
- 0.0009192153811454773,
266
- 1.1064804792404175,
267
- 0.9902001619338989,
268
- -0.03608040511608124,
269
- -0.03935205936431885,
270
- 0.02843669056892395,
271
- 1.0206758975982666,
272
- 0.022822603583335876
273
- ],
274
- [
275
- 0.05427470803260803,
276
- -0.00707852840423584,
277
- 1.1810686588287354,
278
- 0.9920096397399902,
279
- 0.015142932534217834,
280
- -0.047295693308115005,
281
- 0.03290848433971405,
282
- 0.9424457550048828,
283
- -0.012523934245109558
284
- ],
285
- [
286
- 0.12798452377319336,
287
- 0.00911194272339344,
288
- 1.0834853649139404,
289
- 0.9739716649055481,
290
- -0.07137984037399292,
291
- -0.026688896119594574,
292
- 0.04823383688926697,
293
- 1.0036730766296387,
294
- -0.014016598463058472
295
- ],
296
- [
297
- 0.10942955315113068,
298
- 0.031042322516441345,
299
- 1.1583876609802246,
300
- 0.9817203879356384,
301
- -0.011942118406295776,
302
- -0.043164484202861786,
303
- -0.02978423237800598,
304
- 1.04923677444458,
305
- -0.056136518716812134
306
- ],
307
- [
308
- 0.10907559096813202,
309
- -0.0026908516883850098,
310
- 1.0988688468933105,
311
- 1.0609620809555054,
312
- 0.07384312152862549,
313
- 0.024690091609954834,
314
- 0.008226443082094193,
315
- 1.081573724746704,
316
- 0.014119073748588562
317
- ],
318
- [
319
- 0.031764477491378784,
320
- 0.013917614705860615,
321
- 1.1128538846969604,
322
- 0.9848617911338806,
323
- -0.015249735675752163,
324
- -0.03202739357948303,
325
- -0.015041425824165344,
326
- 1.0215630531311035,
327
- 0.033230751752853394
328
- ],
329
- [
330
- 0.12878119945526123,
331
- 0.023490235209465027,
332
- 1.1582074165344238,
333
- 1.0055062770843506,
334
- -0.04619118571281433,
335
- -0.05664844810962677,
336
- -0.017391160130500793,
337
- 0.9662125706672668,
338
- 0.03224971890449524
339
- ],
340
- [
341
- 0.12120363116264343,
342
- -0.04378873109817505,
343
- 1.182194471359253,
344
- 1.009393572807312,
345
- -0.0335625559091568,
346
- 0.00684395432472229,
347
- -0.005338199436664581,
348
- 1.0869426727294922,
349
- 0.03969764709472656
350
- ],
351
- [
352
- 0.05638664960861206,
353
- -0.03647586703300476,
354
- 1.2009563446044922,
355
- 0.9984641075134277,
356
- -0.05453255772590637,
357
- -0.0372387133538723,
358
- 0.0403997004032135,
359
- 0.9810760617256165,
360
- 0.04043358564376831
361
- ],
362
- [
363
- 0.011728793382644653,
364
- 0.027970075607299805,
365
- 1.1322298049926758,
366
- 1.0198390483856201,
367
- -0.0455511212348938,
368
- -0.006279349327087402,
369
- 0.010412359610199928,
370
- 1.0186899900436401,
371
- -0.026677101850509644
372
- ],
373
- [
374
- 0.053032226860523224,
375
- -0.04712134599685669,
376
- 1.1237342357635498,
377
- 0.9611762762069702,
378
- -0.021937359124422073,
379
- 0.018652111291885376,
380
- -0.016917169094085693,
381
- 1.0234456062316895,
382
- 0.048842430114746094
383
- ],
384
- [
385
- 0.08784544467926025,
386
- -0.025047630071640015,
387
- 1.2723655700683594,
388
- 1.0370999574661255,
389
- -0.07394164800643921,
390
- -0.044928669929504395,
391
- -0.043362945318222046,
392
- 0.9763723015785217,
393
- -0.02699899673461914
394
- ],
395
- [
396
- -0.009237855672836304,
397
- 0.03177258372306824,
398
- 1.3164576292037964,
399
- 1.0414162874221802,
400
- -0.07275909185409546,
401
- -0.061671167612075806,
402
- 0.0015474595129489899,
403
- 1.032768726348877,
404
- 0.005709396675229073
405
- ],
406
- [
407
- 0.05477365851402283,
408
- 0.012895097956061363,
409
- 1.2975010871887207,
410
- 1.0040152072906494,
411
- 0.03407350182533264,
412
- -0.05409081280231476,
413
- 0.029324442148208618,
414
- 0.9713408946990967,
415
- -0.015376955270767212
416
- ],
417
- [
418
- 0.02794671058654785,
419
- 0.06096711754798889,
420
- 1.3625465631484985,
421
- 1.0257132053375244,
422
- -0.0661202073097229,
423
- -0.060118913650512695,
424
- 0.01601516455411911,
425
- 0.9891493916511536,
426
- -0.007037729024887085
427
- ],
428
- [
429
- -0.0049686431884765625,
430
- 0.021519839763641357,
431
- 1.3200123310089111,
432
- 0.9469268321990967,
433
- -0.029946185648441315,
434
- -0.061565935611724854,
435
- 0.01981288194656372,
436
- 1.026505947113037,
437
- 0.022090449929237366
438
- ],
439
- [
440
- 0.047706544399261475,
441
- 0.04660728573799133,
442
- 1.3682596683502197,
443
- 0.9749968647956848,
444
- -0.06939545273780823,
445
- -0.005478903651237488,
446
- 0.06134665012359619,
447
- 0.9848971962928772,
448
- 0.004333950579166412
449
- ],
450
- [
451
- 0.03102855384349823,
452
- 0.003251001238822937,
453
- 1.4478474855422974,
454
- 0.9742774963378906,
455
- -0.03383569419384003,
456
- -0.02746567875146866,
457
- 0.02350945770740509,
458
- 1.0158922672271729,
459
- -0.03130576014518738
460
- ],
461
- [
462
- 0.05813401937484741,
463
- 0.0125759057700634,
464
- 1.4482089281082153,
465
- 1.0439938306808472,
466
- 0.05200397968292236,
467
- 0.005969449877738953,
468
- 0.0027684755623340607,
469
- 0.9825729727745056,
470
- 0.01648828387260437
471
- ],
472
- [
473
- -0.0089106485247612,
474
- 0.024400830268859863,
475
- 1.4145373106002808,
476
- 1.0210087299346924,
477
- -0.09587275981903076,
478
- -0.009322216734290123,
479
- 0.018595583736896515,
480
- 1.0009500980377197,
481
- 0.031541064381599426
482
- ],
483
- [
484
- 0.016475535929203033,
485
- 0.00021431595087051392,
486
- 1.4626590013504028,
487
- 0.998957097530365,
488
- 0.018983498215675354,
489
- -0.045883119106292725,
490
- 0.0337342768907547,
491
- 1.0978525876998901,
492
- 0.019673556089401245
493
- ],
494
- [
495
- -0.036137282848358154,
496
- -0.007708325982093811,
497
- 1.4744925498962402,
498
- 1.0073951482772827,
499
- -0.013876121491193771,
500
- 0.016109943389892578,
501
- 0.008133228868246078,
502
- 0.9977384805679321,
503
- -0.021755725145339966
504
- ],
505
- [
506
- -0.03884613513946533,
507
- -0.06246161460876465,
508
- 1.5229177474975586,
509
- 0.9727920889854431,
510
- 0.032630473375320435,
511
- -0.01720132678747177,
512
- -0.01759961247444153,
513
- 1.009096622467041,
514
- 0.04174342751502991
515
- ],
516
- [
517
- -0.006744686514139175,
518
- -0.026827126741409302,
519
- 1.4614980220794678,
520
- 0.9892110824584961,
521
- -0.0867668092250824,
522
- 0.012920737266540527,
523
- -0.05401039123535156,
524
- 1.0108506679534912,
525
- -0.009190022945404053
526
- ],
527
- [
528
- -0.073823481798172,
529
- 0.03360071778297424,
530
- 1.548876166343689,
531
- 0.992531418800354,
532
- -0.013758067041635513,
533
- -0.06328955292701721,
534
- -0.050108402967453,
535
- 1.0183138847351074,
536
- -0.02237868309020996
537
- ],
538
- [
539
- -0.07975953817367554,
540
- 0.006201028823852539,
541
- 1.4995603561401367,
542
- 1.0114961862564087,
543
- -0.034154221415519714,
544
- 0.06583219766616821,
545
- 0.04064834117889404,
546
- 0.9752056002616882,
547
- -0.010351963341236115
548
- ],
549
- [
550
- -0.02477230131626129,
551
- -0.010323986411094666,
552
- 1.6327433586120605,
553
- 0.9934014678001404,
554
- -0.023765064775943756,
555
- 0.008500143885612488,
556
- 0.022889405488967896,
557
- 0.9481912851333618,
558
- -0.011290617287158966
559
- ],
560
- [
561
- -0.05678778886795044,
562
- 0.03334859013557434,
563
- 1.5436371564865112,
564
- 0.9216117262840271,
565
- -0.04614248871803284,
566
- 0.009150288999080658,
567
- -0.0032990574836730957,
568
- 1.0570346117019653,
569
- 0.007348708808422089
570
- ],
571
- [
572
- -0.011288350448012352,
573
- -0.03350934386253357,
574
- 1.6283073425292969,
575
- 0.9435537457466125,
576
- -0.03863242268562317,
577
- -0.025661557912826538,
578
- -0.020400390028953552,
579
- 1.0645133256912231,
580
- 0.014078482985496521
581
- ],
582
- [
583
- -0.069125235080719,
584
- 0.053319260478019714,
585
- 1.6039180755615234,
586
- 1.048014521598816,
587
- -0.017253872007131577,
588
- 0.0021562278270721436,
589
- 0.08208471536636353,
590
- 1.0798635482788086,
591
- -0.020576387643814087
592
- ],
593
- [
594
- -0.012679237872362137,
595
- 0.0652129054069519,
596
- 1.5671252012252808,
597
- 1.0588984489440918,
598
- -0.04377758502960205,
599
- -0.015812575817108154,
600
- -0.026169881224632263,
601
- 1.025010108947754,
602
- -0.0748242735862732
603
- ],
604
- [
605
- 0.01086987555027008,
606
- 0.05597236752510071,
607
- 1.6437878608703613,
608
- 1.0936434268951416,
609
- -0.014055110514163971,
610
- -0.027691349387168884,
611
- -0.12438446283340454,
612
- 1.0165749788284302,
613
- 0.035496294498443604
614
- ],
615
- [
616
- 0.0006901919841766357,
617
- 0.043153002858161926,
618
- 1.6060333251953125,
619
- 1.038730263710022,
620
- -0.08321201801300049,
621
- 0.02608250081539154,
622
- 0.018437214195728302,
623
- 1.1159051656723022,
624
- 0.05883333086967468
625
- ],
626
- [
627
- -0.006728820502758026,
628
- 0.05351740121841431,
629
- 1.6550605297088623,
630
- 0.9489508867263794,
631
- -0.04436221718788147,
632
- -0.034510985016822815,
633
- 0.015057206153869629,
634
- 0.9887169003486633,
635
- -0.02340702712535858
636
- ],
637
- [
638
- -0.026852332055568695,
639
- 0.03303128480911255,
640
- 1.637021780014038,
641
- 0.9822630286216736,
642
- 0.062065958976745605,
643
- 0.013584144413471222,
644
- -0.014878742396831512,
645
- 0.9946336150169373,
646
- 0.03628125786781311
647
- ],
648
- [
649
- -0.040788352489471436,
650
- 0.026913568377494812,
651
- 1.7084579467773438,
652
- 1.0035864114761353,
653
- -0.006568185985088348,
654
- 0.037571728229522705,
655
- 0.023859664797782898,
656
- 1.0393028259277344,
657
- -0.026828676462173462
658
- ],
659
- [
660
- 0.023405075073242188,
661
- 0.037857502698898315,
662
- 1.5682668685913086,
663
- 0.9750896692276001,
664
- 0.009421169757843018,
665
- 0.06575840711593628,
666
- -0.04637560248374939,
667
- 1.0138170719146729,
668
- 0.014570996165275574
669
- ]
670
- ]
671
  }
 
1
  {
2
+ "data": [
3
+ [
4
+ 0.0654296875,
5
+ -0.00634765625,
6
+ 1.0859375,
7
+ 1.0078125,
8
+ -0.0003662109375,
9
+ -0.01953125,
10
+ 0.001953125,
11
+ 1.0078125,
12
+ 0.0
13
+ ],
14
+ [
15
+ 0.0654296875,
16
+ -0.0078125,
17
+ 1.046875,
18
+ 1.0078125,
19
+ 0.0,
20
+ -0.024169921875,
21
+ -0.001953125,
22
+ 1.0,
23
+ 0.00390625
24
+ ],
25
+ [
26
+ 0.0791015625,
27
+ -0.015625,
28
+ 1.03125,
29
+ 1.0,
30
+ 0.001953125,
31
+ -0.02734375,
32
+ 0.00390625,
33
+ 1.0078125,
34
+ 0.00537109375
35
+ ],
36
+ [
37
+ 0.080078125,
38
+ -0.017578125,
39
+ 1.0,
40
+ 1.0,
41
+ -0.001953125,
42
+ -0.02490234375,
43
+ 0.0,
44
+ 1.0078125,
45
+ 0.00927734375
46
+ ],
47
+ [
48
+ 0.0888671875,
49
+ -0.01953125,
50
+ 0.984375,
51
+ 1.0078125,
52
+ -0.001953125,
53
+ -0.03125,
54
+ -0.00390625,
55
+ 1.0,
56
+ 0.00732421875
57
+ ],
58
+ [
59
+ 0.091796875,
60
+ -0.0146484375,
61
+ 0.96875,
62
+ 1.0,
63
+ -0.000244140625,
64
+ -0.03173828125,
65
+ -0.0029296875,
66
+ 0.99609375,
67
+ 0.005859375
68
+ ],
69
+ [
70
+ 0.1044921875,
71
+ -0.003662109375,
72
+ 0.9609375,
73
+ 1.0,
74
+ -0.00390625,
75
+ -0.03466796875,
76
+ 0.00390625,
77
+ 1.0,
78
+ -0.00146484375
79
+ ],
80
+ [
81
+ 0.107421875,
82
+ 0.009765625,
83
+ 0.9609375,
84
+ 1.0,
85
+ -0.0009765625,
86
+ -0.037109375,
87
+ -0.00390625,
88
+ 1.0,
89
+ 0.0006103515625
90
+ ],
91
+ [
92
+ 0.1220703125,
93
+ 0.0107421875,
94
+ 0.95703125,
95
+ 1.0,
96
+ 0.00390625,
97
+ -0.037109375,
98
+ -0.00390625,
99
+ 1.0,
100
+ -0.0078125
101
+ ],
102
+ [
103
+ 0.12890625,
104
+ 0.009765625,
105
+ 0.94921875,
106
+ 1.0,
107
+ -0.0009765625,
108
+ -0.043212890625,
109
+ -0.0029296875,
110
+ 1.0,
111
+ 0.00390625
112
+ ],
113
+ [
114
+ 0.125,
115
+ 0.0009765625,
116
+ 0.94140625,
117
+ 1.0,
118
+ -0.00048828125,
119
+ -0.0400390625,
120
+ -0.00390625,
121
+ 1.0,
122
+ 0.0
123
+ ],
124
+ [
125
+ 0.125,
126
+ 0.0,
127
+ 0.93359375,
128
+ 1.0,
129
+ -0.0048828125,
130
+ -0.044921875,
131
+ 0.0,
132
+ 1.0,
133
+ 0.00390625
134
+ ],
135
+ [
136
+ 0.1279296875,
137
+ 0.00390625,
138
+ 0.921875,
139
+ 1.0,
140
+ 0.001953125,
141
+ -0.038818359375,
142
+ -0.0009765625,
143
+ 1.0,
144
+ 0.004150390625
145
+ ],
146
+ [
147
+ 0.12890625,
148
+ 0.00390625,
149
+ 0.91796875,
150
+ 1.0,
151
+ 0.00390625,
152
+ -0.0419921875,
153
+ -0.005859375,
154
+ 1.0,
155
+ 0.001953125
156
+ ],
157
+ [
158
+ 0.1328125,
159
+ 0.005859375,
160
+ 0.9140625,
161
+ 1.0078125,
162
+ 0.00390625,
163
+ -0.04052734375,
164
+ -0.001953125,
165
+ 1.0,
166
+ 0.001953125
167
+ ],
168
+ [
169
+ 0.12890625,
170
+ 0.005126953125,
171
+ 0.921875,
172
+ 1.0,
173
+ 0.0,
174
+ -0.04150390625,
175
+ -0.00390625,
176
+ 1.0,
177
+ 0.001953125
178
+ ],
179
+ [
180
+ 0.1259765625,
181
+ 0.0078125,
182
+ 0.9296875,
183
+ 1.0,
184
+ 0.001708984375,
185
+ -0.0400390625,
186
+ -0.00048828125,
187
+ 1.0,
188
+ 0.001953125
189
+ ],
190
+ [
191
+ 0.12158203125,
192
+ 0.005859375,
193
+ 0.9375,
194
+ 1.0,
195
+ -0.0009765625,
196
+ -0.0400390625,
197
+ -0.0029296875,
198
+ 1.0,
199
+ 0.001953125
200
+ ],
201
+ [
202
+ 0.125,
203
+ 0.0068359375,
204
+ 0.953125,
205
+ 1.0,
206
+ -0.0078125,
207
+ -0.0419921875,
208
+ -0.003173828125,
209
+ 1.0,
210
+ 0.0
211
+ ],
212
+ [
213
+ 0.1201171875,
214
+ 0.013671875,
215
+ 0.9609375,
216
+ 0.99609375,
217
+ 0.00244140625,
218
+ -0.035400390625,
219
+ -0.005859375,
220
+ 1.0,
221
+ -0.00177001953125
222
+ ],
223
+ [
224
+ 0.11572265625,
225
+ 0.013671875,
226
+ 0.98046875,
227
+ 1.0,
228
+ 0.00390625,
229
+ -0.0361328125,
230
+ 0.0,
231
+ 1.0078125,
232
+ 0.001953125
233
+ ],
234
+ [
235
+ 0.1201171875,
236
+ 0.015625,
237
+ 0.9921875,
238
+ 1.0,
239
+ -0.0029296875,
240
+ -0.0390625,
241
+ -0.001953125,
242
+ 1.0,
243
+ -0.0029296875
244
+ ],
245
+ [
246
+ 0.11865234375,
247
+ 0.01171875,
248
+ 1.0078125,
249
+ 1.0,
250
+ 0.0078125,
251
+ -0.037109375,
252
+ -0.0029296875,
253
+ 1.0,
254
+ -0.00390625
255
+ ],
256
+ [
257
+ 0.115234375,
258
+ 0.013671875,
259
+ 1.0078125,
260
+ 1.0078125,
261
+ -0.0009765625,
262
+ -0.03515625,
263
+ 0.00244140625,
264
+ 1.0,
265
+ -0.00146484375
266
+ ],
267
+ [
268
+ 0.109375,
269
+ 0.01611328125,
270
+ 1.0234375,
271
+ 1.0,
272
+ 0.0,
273
+ -0.03125,
274
+ -0.0003662109375,
275
+ 1.0,
276
+ 0.0
277
+ ],
278
+ [
279
+ 0.1064453125,
280
+ 0.013671875,
281
+ 1.0390625,
282
+ 1.0,
283
+ 0.0,
284
+ -0.03369140625,
285
+ -0.0006103515625,
286
+ 1.0,
287
+ -0.001708984375
288
+ ],
289
+ [
290
+ 0.1025390625,
291
+ 0.013671875,
292
+ 1.0546875,
293
+ 1.0,
294
+ -0.00091552734375,
295
+ -0.033203125,
296
+ -0.001953125,
297
+ 1.0,
298
+ 0.00244140625
299
+ ],
300
+ [
301
+ 0.09765625,
302
+ 0.013671875,
303
+ 1.078125,
304
+ 1.0,
305
+ -0.0029296875,
306
+ -0.03125,
307
+ -0.00146484375,
308
+ 1.0,
309
+ 0.003173828125
310
+ ],
311
+ [
312
+ 0.09228515625,
313
+ 0.0146484375,
314
+ 1.0859375,
315
+ 1.0,
316
+ 0.001708984375,
317
+ -0.029296875,
318
+ -0.001953125,
319
+ 1.0,
320
+ 0.001953125
321
+ ],
322
+ [
323
+ 0.083984375,
324
+ 0.009765625,
325
+ 1.1171875,
326
+ 1.0,
327
+ 0.00048828125,
328
+ -0.02734375,
329
+ -0.00048828125,
330
+ 1.0,
331
+ 0.00341796875
332
+ ],
333
+ [
334
+ 0.083984375,
335
+ 0.007171630859375,
336
+ 1.125,
337
+ 0.9921875,
338
+ 0.001953125,
339
+ -0.03125,
340
+ -0.00390625,
341
+ 1.0,
342
+ 0.0068359375
343
+ ],
344
+ [
345
+ 0.07421875,
346
+ 0.005859375,
347
+ 1.15625,
348
+ 1.0,
349
+ -0.0009765625,
350
+ -0.0234375,
351
+ 0.0009765625,
352
+ 1.0,
353
+ 0.00579833984375
354
+ ],
355
+ [
356
+ 0.0703125,
357
+ 0.00390625,
358
+ 1.1796875,
359
+ 1.0,
360
+ 0.0,
361
+ -0.021484375,
362
+ 0.0,
363
+ 1.0,
364
+ 0.00390625
365
+ ],
366
+ [
367
+ 0.064453125,
368
+ 0.005126953125,
369
+ 1.203125,
370
+ 1.0,
371
+ -0.0029296875,
372
+ -0.021484375,
373
+ -0.0009765625,
374
+ 1.0,
375
+ 0.0029296875
376
+ ],
377
+ [
378
+ 0.0615234375,
379
+ 0.009033203125,
380
+ 1.21875,
381
+ 1.0,
382
+ -0.002197265625,
383
+ -0.017578125,
384
+ 0.0009765625,
385
+ 1.0,
386
+ 0.004150390625
387
+ ],
388
+ [
389
+ 0.05615234375,
390
+ 0.01220703125,
391
+ 1.2421875,
392
+ 1.0,
393
+ -0.005859375,
394
+ -0.017578125,
395
+ 0.001953125,
396
+ 1.0,
397
+ 0.00390625
398
+ ],
399
+ [
400
+ 0.0498046875,
401
+ 0.013671875,
402
+ 1.265625,
403
+ 1.0,
404
+ -0.001953125,
405
+ -0.0177001953125,
406
+ 0.001953125,
407
+ 0.99609375,
408
+ 0.001953125
409
+ ],
410
+ [
411
+ 0.0458984375,
412
+ 0.01318359375,
413
+ 1.28125,
414
+ 1.0,
415
+ 0.0009765625,
416
+ -0.015625,
417
+ -0.001953125,
418
+ 1.0078125,
419
+ 0.00341796875
420
+ ],
421
+ [
422
+ 0.04296875,
423
+ 0.01318359375,
424
+ 1.3046875,
425
+ 1.0078125,
426
+ -0.00244140625,
427
+ -0.0087890625,
428
+ -0.001953125,
429
+ 1.0,
430
+ 0.001953125
431
+ ],
432
+ [
433
+ 0.0322265625,
434
+ 0.009033203125,
435
+ 1.328125,
436
+ 1.0078125,
437
+ -0.00146484375,
438
+ -0.01171875,
439
+ 0.0,
440
+ 1.0,
441
+ 0.001953125
442
+ ],
443
+ [
444
+ 0.02734375,
445
+ 0.0067138671875,
446
+ 1.34375,
447
+ 1.0078125,
448
+ -0.001953125,
449
+ -0.005859375,
450
+ 0.0,
451
+ 1.0,
452
+ 0.00390625
453
+ ],
454
+ [
455
+ 0.0166015625,
456
+ 0.0048828125,
457
+ 1.375,
458
+ 1.0078125,
459
+ -0.00390625,
460
+ -0.00390625,
461
+ 0.0,
462
+ 1.0078125,
463
+ 0.00830078125
464
+ ],
465
+ [
466
+ 0.015625,
467
+ 0.00146484375,
468
+ 1.390625,
469
+ 1.0078125,
470
+ -0.00341796875,
471
+ -0.0009765625,
472
+ 0.001953125,
473
+ 1.0,
474
+ 0.00732421875
475
+ ],
476
+ [
477
+ 0.013671875,
478
+ 0.00244140625,
479
+ 1.4140625,
480
+ 1.0078125,
481
+ -0.00146484375,
482
+ -0.001953125,
483
+ 0.00048828125,
484
+ 1.0078125,
485
+ 0.0068359375
486
+ ],
487
+ [
488
+ 0.007568359375,
489
+ 0.0048828125,
490
+ 1.453125,
491
+ 1.0078125,
492
+ -0.00390625,
493
+ 0.0,
494
+ 0.0078125,
495
+ 1.0,
496
+ 0.0068359375
497
+ ],
498
+ [
499
+ 0.009765625,
500
+ -0.00390625,
501
+ 1.46875,
502
+ 1.0,
503
+ -0.01171875,
504
+ -0.004150390625,
505
+ 0.009765625,
506
+ 1.0,
507
+ 0.01171875
508
+ ],
509
+ [
510
+ 0.006103515625,
511
+ 0.01171875,
512
+ 1.5,
513
+ 1.0,
514
+ -0.00341796875,
515
+ 0.001953125,
516
+ 0.001220703125,
517
+ 1.0,
518
+ 0.00390625
519
+ ],
520
+ [
521
+ 0.006103515625,
522
+ 0.00732421875,
523
+ 1.515625,
524
+ 1.0,
525
+ -0.001708984375,
526
+ 0.0,
527
+ 0.001953125,
528
+ 1.0078125,
529
+ 0.0009765625
530
+ ],
531
+ [
532
+ 0.00390625,
533
+ 0.0078125,
534
+ 1.546875,
535
+ 1.0,
536
+ -0.00146484375,
537
+ -0.0009765625,
538
+ 0.0,
539
+ 1.0,
540
+ 0.001953125
541
+ ],
542
+ [
543
+ 0.003173828125,
544
+ 0.0107421875,
545
+ 1.5625,
546
+ 1.0,
547
+ -0.001953125,
548
+ 0.004150390625,
549
+ 0.00048828125,
550
+ 1.0,
551
+ 0.00537109375
552
+ ],
553
+ [
554
+ 0.0,
555
+ 0.00390625,
556
+ 1.578125,
557
+ 1.0,
558
+ -0.005859375,
559
+ 0.0,
560
+ 0.00390625,
561
+ 1.0,
562
+ 0.0
563
+ ],
564
+ [
565
+ 0.00244140625,
566
+ 0.0087890625,
567
+ 1.609375,
568
+ 1.0,
569
+ -0.001953125,
570
+ 0.0029296875,
571
+ 0.001953125,
572
+ 1.0,
573
+ 0.0029296875
574
+ ],
575
+ [
576
+ 0.001953125,
577
+ 0.0107421875,
578
+ 1.625,
579
+ 1.0,
580
+ 0.00146484375,
581
+ 0.0078125,
582
+ -0.001953125,
583
+ 1.0078125,
584
+ 0.00341796875
585
+ ],
586
+ [
587
+ 0.00244140625,
588
+ 0.01019287109375,
589
+ 1.6484375,
590
+ 1.0,
591
+ -0.0010986328125,
592
+ 0.001953125,
593
+ 0.0029296875,
594
+ 1.0078125,
595
+ 0.001953125
596
+ ],
597
+ [
598
+ 0.001953125,
599
+ 0.01171875,
600
+ 1.65625,
601
+ 1.0,
602
+ -0.0023193359375,
603
+ 0.001220703125,
604
+ 0.0009765625,
605
+ 1.0078125,
606
+ 0.0029296875
607
+ ],
608
+ [
609
+ 0.0035400390625,
610
+ 0.0078125,
611
+ 1.6875,
612
+ 1.0078125,
613
+ -0.0048828125,
614
+ -0.001953125,
615
+ 0.0,
616
+ 1.0,
617
+ -0.00390625
618
+ ],
619
+ [
620
+ 0.00244140625,
621
+ 0.0107421875,
622
+ 1.703125,
623
+ 1.0,
624
+ -0.0048828125,
625
+ -0.0029296875,
626
+ 0.001953125,
627
+ 1.0,
628
+ -0.005859375
629
+ ],
630
+ [
631
+ 0.001220703125,
632
+ 0.01171875,
633
+ 1.71875,
634
+ 1.0,
635
+ 0.0001220703125,
636
+ 0.0029296875,
637
+ 0.00146484375,
638
+ 1.0078125,
639
+ 0.001953125
640
+ ],
641
+ [
642
+ 0.0048828125,
643
+ 0.0087890625,
644
+ 1.734375,
645
+ 1.0,
646
+ -0.000244140625,
647
+ 0.00390625,
648
+ 0.0,
649
+ 1.0078125,
650
+ 0.0
651
+ ],
652
+ [
653
+ 0.0008544921875,
654
+ 0.01171875,
655
+ 1.7578125,
656
+ 1.0,
657
+ 0.001953125,
658
+ -0.00048828125,
659
+ 0.00390625,
660
+ 1.0,
661
+ -0.0009765625
662
+ ]
663
+ ],
664
  "shape": [
665
  60,
666
  9
667
  ],
668
+ "dtype": "torch.bfloat16",
669
  "raw_action_dim": 9,
670
+ "action_mode": "inverse_dynamics",
671
+ "domain_id": 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  }
assets/edge_action_id_av_1_output.png CHANGED

Git LFS Details

  • SHA256: 3c3d345dea7271769ebc592ca5ac816281eb381ad97330e087e928440fe20d41
  • Pointer size: 131 Bytes
  • Size of remote file: 158 kB

Git LFS Details

  • SHA256: 26cb6961a3749685388f7adcfe1b03e5ed5cadf9d51446b2b263720e2aa013ce
  • Pointer size: 131 Bytes
  • Size of remote file: 115 kB
assets/edge_i2v_output.mp4 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8f7669e47e99133cbe4e6a8c5b878a69789718465a53849286ae0a8206455b08
3
- size 23350935
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:184a1cf43d8de6361a1c823818144bd95c4bdaaed3615b772e36f212c0f5977b
3
+ size 7105138