Add Diffusers user guide for Cosmos3 Edge

#52
.gitattributes CHANGED
@@ -51,3 +51,4 @@ assets/edge_i2v_output.mp4 filter=lfs diff=lfs merge=lfs -text
51
  assets/edge_action_fd_umi_2chunk_output.mp4 filter=lfs diff=lfs merge=lfs -text
52
  assets/edge_action_id_av_0_output.png filter=lfs diff=lfs merge=lfs -text
53
  assets/edge_action_id_av_1_output.png filter=lfs diff=lfs merge=lfs -text
 
 
51
  assets/edge_action_fd_umi_2chunk_output.mp4 filter=lfs diff=lfs merge=lfs -text
52
  assets/edge_action_id_av_0_output.png filter=lfs diff=lfs merge=lfs -text
53
  assets/edge_action_id_av_1_output.png filter=lfs diff=lfs merge=lfs -text
54
+ assets/diffusers_outputs/edge_i2v_diffusers.mp4 filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -174,6 +174,7 @@ Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated sys
174
  - [vLLM-Omni](https://github.com/vllm-project/vllm-omni)
175
  - [vLLM](https://github.com/vllm-project/vllm)
176
  - [PyTorch](https://github.com/nvidia/cosmos3)
 
177
 
178
  **Supported Hardware Microarchitecture Compatibility:**
179
 
@@ -737,6 +738,234 @@ Example outputs:
737
 
738
  <img width="1280" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_action_id_av_1_output.png">
739
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  ### vLLM
741
 
742
  #### Container
 
174
  - [vLLM-Omni](https://github.com/vllm-project/vllm-omni)
175
  - [vLLM](https://github.com/vllm-project/vllm)
176
  - [PyTorch](https://github.com/nvidia/cosmos3)
177
+ - [Hugging Face Diffusers](https://github.com/huggingface/diffusers)
178
 
179
  **Supported Hardware Microarchitecture Compatibility:**
180
 
 
738
 
739
  <img width="1280" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/edge_action_id_av_1_output.png">
740
 
741
+ ### Diffusers
742
+
743
+ Cosmos3-Edge is supported in the Hugging Face Diffusers library through [`Cosmos3OmniPipeline`](https://huggingface.co/docs/diffusers/main/en/api/pipelines/cosmos3). The pipeline supports image-to-video generation and action-conditioned forward and inverse dynamics.
744
+
745
+ #### Container
746
+
747
+ To install Diffusers with `Cosmos3OmniPipeline`:
748
+
749
+ ```bash
750
+ uv venv --python 3.12 --seed --managed-python
751
+ source .venv/bin/activate
752
+ uv pip install \
753
+ "diffusers @ git+https://github.com/huggingface/diffusers.git" \
754
+ accelerate \
755
+ av \
756
+ cosmos_guardrail \
757
+ huggingface_hub \
758
+ imageio \
759
+ imageio-ffmpeg \
760
+ torch \
761
+ torchvision \
762
+ transformers
763
+ ```
764
+
765
+ #### Examples
766
+
767
+ The examples use the inputs in this repository's `assets/` directory. Run them from the model repository root.
768
+
769
+ ##### Image to video generation
770
+
771
+ ```python
772
+ import json
773
+ from pathlib import Path
774
+
775
+ import torch
776
+ from diffusers import Cosmos3OmniPipeline
777
+ from diffusers.schedulers.scheduling_unipc_multistep import UniPCMultistepScheduler
778
+ from diffusers.utils import export_to_video, load_image
779
+
780
+ # Read the JSON-upsampled positive and negative prompts.
781
+ json_prompt = json.loads(Path("assets/example_i2v_prompt.json").read_text())
782
+ negative_prompt = json.loads(Path("assets/negative_prompt.json").read_text())
783
+
784
+ pipe = Cosmos3OmniPipeline.from_pretrained(
785
+ "nvidia/Cosmos3-Edge",
786
+ torch_dtype=torch.bfloat16,
787
+ enable_safety_checker=True,
788
+ )
789
+ pipe.to("cuda")
790
+ pipe.scheduler = UniPCMultistepScheduler.from_config(
791
+ pipe.scheduler.config, flow_shift=3.0, use_karras_sigmas=False
792
+ )
793
+
794
+ result = pipe(
795
+ prompt=json.dumps(json_prompt),
796
+ negative_prompt=json.dumps(negative_prompt),
797
+ image=load_image("assets/example_i2v_input.jpg"),
798
+ num_frames=121,
799
+ height=480,
800
+ width=832,
801
+ fps=24.0,
802
+ num_inference_steps=50,
803
+ guidance_scale=5.0,
804
+ generator=torch.Generator(device="cuda").manual_seed(0),
805
+ add_resolution_template=False,
806
+ add_duration_template=False,
807
+ )
808
+
809
+ output_path = Path("assets/diffusers_outputs/edge_i2v_diffusers.mp4")
810
+ output_path.parent.mkdir(parents=True, exist_ok=True)
811
+ # macro_block_size=1 preserves the requested 832x480 resolution.
812
+ export_to_video(result.video, str(output_path), fps=24, macro_block_size=1)
813
+ print(f"Saved video to {output_path}")
814
+ ```
815
+
816
+ Example output:
817
+
818
+ <video controls width="832" height="480" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/diffusers_outputs/edge_i2v_diffusers.mp4"></video>
819
+
820
+ ---
821
+
822
+ ##### Action generation
823
+
824
+ The forward-dynamics example uses UMI robotics action trajectories, and the inverse-dynamics examples use autonomous-vehicle (AV) action trajectories. The pipeline's `CosmosActionCondition` groups the action task, embodiment, action chunk, and conditioning image or video. Unlike the image-to-video example, action prompts are plain task descriptions and should not be prompt-upsampled.
825
+
826
+ ###### Action forward dynamics
827
+
828
+ This two-chunk UMI rollout conditions the first chunk on `assets/example_action_fd_umi_first_frame.png`, then conditions each subsequent chunk on the final generated frame of the previous chunk. Dropping each chunk's conditioning frame produces a stitched 32-frame rollout.
829
+
830
+ ```python
831
+ import json
832
+ from pathlib import Path
833
+
834
+ import torch
835
+ from diffusers import Cosmos3OmniPipeline, CosmosActionCondition
836
+ from diffusers.schedulers.scheduling_unipc_multistep import UniPCMultistepScheduler
837
+ from diffusers.utils import export_to_video, load_image
838
+
839
+ action_spec = json.loads(Path("assets/example_action_fd_umi_action_chunks.json").read_text())
840
+ output_dir = Path("assets/diffusers_outputs")
841
+ output_dir.mkdir(parents=True, exist_ok=True)
842
+
843
+ pipe = Cosmos3OmniPipeline.from_pretrained(
844
+ "nvidia/Cosmos3-Edge",
845
+ torch_dtype=torch.bfloat16,
846
+ enable_safety_checker=True,
847
+ )
848
+ pipe.to("cuda")
849
+ pipe.scheduler = UniPCMultistepScheduler.from_config(
850
+ pipe.scheduler.config, flow_shift=10.0, use_karras_sigmas=False
851
+ )
852
+
853
+ prompt = action_spec.get("prompt", "mouse arrangement")
854
+ fps = int(action_spec.get("fps", 20))
855
+ chunk_size = int(action_spec.get("action_chunk_size", 16))
856
+ current_frame = load_image("assets/example_action_fd_umi_first_frame.png")
857
+ stitched_frames = []
858
+ chunk_paths = []
859
+
860
+ for chunk_idx, action_chunk in enumerate(action_spec["action_chunks"]):
861
+ result = pipe(
862
+ prompt=prompt,
863
+ action=CosmosActionCondition(
864
+ mode="forward_dynamics",
865
+ chunk_size=chunk_size,
866
+ domain_name=action_spec.get("domain_name", "umi"),
867
+ resolution_tier=int(action_spec.get("image_size", 256)),
868
+ raw_actions=torch.tensor(action_chunk, dtype=torch.float32),
869
+ image=current_frame,
870
+ view_point=action_spec.get("view_point", "ego_view"),
871
+ ),
872
+ fps=fps,
873
+ num_inference_steps=30,
874
+ guidance_scale=1.0,
875
+ generator=torch.Generator(device="cuda").manual_seed(chunk_idx),
876
+ use_system_prompt=False,
877
+ )
878
+
879
+ chunk_path = output_dir / f"edge_action_fd_diffusers_chunk_{chunk_idx:02d}.mp4"
880
+ export_to_video(result.video, str(chunk_path), fps=fps, macro_block_size=1)
881
+ chunk_paths.append(chunk_path)
882
+ stitched_frames.extend(result.video[1:])
883
+ current_frame = result.video[-1]
884
+
885
+ stitched_path = output_dir / "edge_action_fd_umi_2chunk_diffusers.mp4"
886
+ export_to_video(stitched_frames, str(stitched_path), fps=fps, macro_block_size=1)
887
+ print("Generated chunk videos:", chunk_paths)
888
+ print("Saved stitched rollout:", stitched_path)
889
+ ```
890
+
891
+ Example output:
892
+
893
+ <video controls width="256" height="256" src="https://huggingface.co/nvidia/Cosmos3-Edge/resolve/main/assets/diffusers_outputs/edge_action_fd_umi_2chunk_diffusers.mp4"></video>
894
+
895
+ ###### Action inverse dynamics
896
+
897
+ This example predicts the 60-step, 9-D AV action sequence that connects each 61-frame conditioning video. It writes one JSON output per input video.
898
+
899
+ ```python
900
+ import json
901
+ from pathlib import Path
902
+
903
+ import torch
904
+ from diffusers import Cosmos3OmniPipeline, CosmosActionCondition
905
+ from diffusers.schedulers.scheduling_unipc_multistep import UniPCMultistepScheduler
906
+ from diffusers.utils import load_video
907
+
908
+ input_videos = {
909
+ "av_inverse_0": Path("assets/example_action_id_av_0_input.mp4"),
910
+ "av_inverse_1": Path("assets/example_action_id_av_1_input.mp4"),
911
+ }
912
+ output_dir = Path("assets/diffusers_outputs")
913
+ output_dir.mkdir(parents=True, exist_ok=True)
914
+
915
+ pipe = Cosmos3OmniPipeline.from_pretrained(
916
+ "nvidia/Cosmos3-Edge",
917
+ torch_dtype=torch.bfloat16,
918
+ enable_safety_checker=True,
919
+ )
920
+ pipe.to("cuda")
921
+ pipe.scheduler = UniPCMultistepScheduler.from_config(
922
+ pipe.scheduler.config, flow_shift=10.0, use_karras_sigmas=False
923
+ )
924
+
925
+ for name, video_path in input_videos.items():
926
+ result = pipe(
927
+ prompt="You are an autonomous vehicle planning system.",
928
+ action=CosmosActionCondition(
929
+ mode="inverse_dynamics",
930
+ chunk_size=60,
931
+ domain_name="av",
932
+ resolution_tier=480,
933
+ video=load_video(str(video_path)),
934
+ view_point="ego_view",
935
+ ),
936
+ fps=10,
937
+ num_inference_steps=30,
938
+ guidance_scale=1.0,
939
+ generator=torch.Generator(device="cuda").manual_seed(0),
940
+ use_system_prompt=False,
941
+ )
942
+ if result.action is None:
943
+ raise RuntimeError(f"{name} did not return an action tensor")
944
+
945
+ action = result.action[0].cpu()
946
+ output_path = output_dir / f"edge_action_id_{name}_diffusers.json"
947
+ output_path.write_text(
948
+ json.dumps(
949
+ {
950
+ "data": action.tolist(),
951
+ "shape": list(action.shape),
952
+ "dtype": str(action.dtype),
953
+ "raw_action_dim": 9,
954
+ "action_mode": "inverse_dynamics",
955
+ "domain_id": 1,
956
+ },
957
+ indent=2,
958
+ )
959
+ + "\n"
960
+ )
961
+ print(f"Saved predicted action to {output_path}; shape={tuple(action.shape)}")
962
+ ```
963
+
964
+ Example outputs:
965
+
966
+ - [av_inverse_0 predicted action JSON](https://huggingface.co/nvidia/Cosmos3-Edge/blob/main/assets/diffusers_outputs/edge_action_id_av_inverse_0_diffusers.json)
967
+ - [av_inverse_1 predicted action JSON](https://huggingface.co/nvidia/Cosmos3-Edge/blob/main/assets/diffusers_outputs/edge_action_id_av_inverse_1_diffusers.json)
968
+
969
  ### vLLM
970
 
971
  #### Container
assets/diffusers_outputs/edge_action_fd_diffusers_chunk_00.mp4 ADDED
Binary file (15.1 kB). View file
 
assets/diffusers_outputs/edge_action_fd_diffusers_chunk_01.mp4 ADDED
Binary file (13.4 kB). View file
 
assets/diffusers_outputs/edge_action_fd_umi_2chunk_diffusers.mp4 ADDED
Binary file (24 kB). View file
 
assets/diffusers_outputs/edge_action_id_av_inverse_0_diffusers.json ADDED
@@ -0,0 +1,672 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ [
4
+ 0.00390625,
5
+ -0.00390625,
6
+ 0.04296875,
7
+ 1.0,
8
+ -0.0001220703125,
9
+ 0.001953125,
10
+ -0.0029296875,
11
+ 1.0078125,
12
+ -0.001953125
13
+ ],
14
+ [
15
+ -0.00390625,
16
+ -0.0048828125,
17
+ 0.01953125,
18
+ 1.0,
19
+ 0.0013427734375,
20
+ -0.0029296875,
21
+ -0.00146484375,
22
+ 1.0,
23
+ 0.00048828125
24
+ ],
25
+ [
26
+ -0.001953125,
27
+ 0.00390625,
28
+ 0.0166015625,
29
+ 1.0078125,
30
+ 0.001953125,
31
+ -0.00048828125,
32
+ 0.0009765625,
33
+ 1.0078125,
34
+ 0.001953125
35
+ ],
36
+ [
37
+ -0.0078125,
38
+ -0.0029296875,
39
+ 0.0126953125,
40
+ 1.0,
41
+ -0.00146484375,
42
+ 0.00390625,
43
+ 0.00048828125,
44
+ 1.0,
45
+ 0.0048828125
46
+ ],
47
+ [
48
+ -0.0009765625,
49
+ -0.00048828125,
50
+ 0.00341796875,
51
+ 1.0078125,
52
+ 0.00146484375,
53
+ 0.001953125,
54
+ 0.0,
55
+ 1.0078125,
56
+ 0.001953125
57
+ ],
58
+ [
59
+ 0.001953125,
60
+ -0.0029296875,
61
+ 0.0087890625,
62
+ 1.0,
63
+ -0.0010986328125,
64
+ 0.0,
65
+ -0.00146484375,
66
+ 1.0078125,
67
+ 0.00048828125
68
+ ],
69
+ [
70
+ 0.0,
71
+ -0.0078125,
72
+ 0.0048828125,
73
+ 1.0078125,
74
+ -0.00146484375,
75
+ -0.001953125,
76
+ 0.00048828125,
77
+ 1.0078125,
78
+ 0.00390625
79
+ ],
80
+ [
81
+ -0.00341796875,
82
+ 0.001953125,
83
+ 0.0048828125,
84
+ 1.0078125,
85
+ 0.0,
86
+ 0.0,
87
+ -0.00390625,
88
+ 1.0078125,
89
+ -0.00048828125
90
+ ],
91
+ [
92
+ -0.0029296875,
93
+ -0.00146484375,
94
+ 0.0,
95
+ 1.0,
96
+ -0.0029296875,
97
+ 0.0,
98
+ -0.005859375,
99
+ 1.0078125,
100
+ -0.00042724609375
101
+ ],
102
+ [
103
+ -0.0048828125,
104
+ 0.0,
105
+ 0.0078125,
106
+ 1.0,
107
+ -0.0009765625,
108
+ -0.0029296875,
109
+ -0.0029296875,
110
+ 1.015625,
111
+ -0.00390625
112
+ ],
113
+ [
114
+ -0.0009765625,
115
+ -0.00390625,
116
+ 0.00390625,
117
+ 1.0,
118
+ -0.001953125,
119
+ -0.0009765625,
120
+ -0.00048828125,
121
+ 1.0078125,
122
+ 0.00390625
123
+ ],
124
+ [
125
+ -0.0009765625,
126
+ -0.001953125,
127
+ 0.0048828125,
128
+ 1.0078125,
129
+ -0.00018310546875,
130
+ -0.0009765625,
131
+ 0.0009765625,
132
+ 1.0078125,
133
+ -0.0009765625
134
+ ],
135
+ [
136
+ -0.00390625,
137
+ -0.000244140625,
138
+ 0.009765625,
139
+ 1.0,
140
+ -0.0009765625,
141
+ -0.0009765625,
142
+ -0.0003662109375,
143
+ 1.0,
144
+ 0.0009765625
145
+ ],
146
+ [
147
+ -0.001953125,
148
+ 0.0,
149
+ 0.0224609375,
150
+ 1.0078125,
151
+ -0.00201416015625,
152
+ -0.00048828125,
153
+ 0.0,
154
+ 1.0078125,
155
+ 0.001953125
156
+ ],
157
+ [
158
+ 0.001953125,
159
+ -0.00390625,
160
+ 0.021484375,
161
+ 1.0,
162
+ 0.00048828125,
163
+ -0.0008544921875,
164
+ 0.001953125,
165
+ 1.0,
166
+ -0.0009765625
167
+ ],
168
+ [
169
+ 0.001953125,
170
+ -0.0029296875,
171
+ 0.025390625,
172
+ 1.0078125,
173
+ 0.00390625,
174
+ -0.0009765625,
175
+ -0.0048828125,
176
+ 1.0,
177
+ 0.0
178
+ ],
179
+ [
180
+ -0.00390625,
181
+ 0.001953125,
182
+ 0.041015625,
183
+ 1.0,
184
+ 0.0,
185
+ -0.000732421875,
186
+ 0.0,
187
+ 1.0078125,
188
+ 0.0
189
+ ],
190
+ [
191
+ 0.00048828125,
192
+ 0.001953125,
193
+ 0.05078125,
194
+ 1.0078125,
195
+ -0.005859375,
196
+ -0.00390625,
197
+ 0.002685546875,
198
+ 1.0078125,
199
+ 0.005859375
200
+ ],
201
+ [
202
+ -0.0009765625,
203
+ 0.001953125,
204
+ 0.054931640625,
205
+ 1.0,
206
+ -0.00390625,
207
+ -0.001953125,
208
+ 0.00390625,
209
+ 1.0078125,
210
+ 0.00341796875
211
+ ],
212
+ [
213
+ -0.0078125,
214
+ -0.0018310546875,
215
+ 0.064453125,
216
+ 0.99609375,
217
+ -0.00390625,
218
+ 0.0,
219
+ -0.001953125,
220
+ 1.0078125,
221
+ 0.0014495849609375
222
+ ],
223
+ [
224
+ -0.00146484375,
225
+ -0.00390625,
226
+ 0.076171875,
227
+ 1.0,
228
+ -0.0010986328125,
229
+ -0.0029296875,
230
+ 0.0048828125,
231
+ 1.0078125,
232
+ 0.001953125
233
+ ],
234
+ [
235
+ -0.00048828125,
236
+ -0.001953125,
237
+ 0.09033203125,
238
+ 1.0,
239
+ 0.00146484375,
240
+ -0.00146484375,
241
+ -0.00390625,
242
+ 1.0078125,
243
+ -0.0054931640625
244
+ ],
245
+ [
246
+ -0.0009765625,
247
+ 0.0,
248
+ 0.103515625,
249
+ 1.0,
250
+ 0.00048828125,
251
+ 0.0001220703125,
252
+ -0.0009765625,
253
+ 1.015625,
254
+ -0.00146484375
255
+ ],
256
+ [
257
+ -0.00244140625,
258
+ -0.00390625,
259
+ 0.111328125,
260
+ 1.0,
261
+ -0.0078125,
262
+ -0.005859375,
263
+ -0.0013427734375,
264
+ 1.0078125,
265
+ -0.0078125
266
+ ],
267
+ [
268
+ 0.001953125,
269
+ 0.00244140625,
270
+ 0.119140625,
271
+ 1.0,
272
+ -0.0009765625,
273
+ -0.0001220703125,
274
+ -0.001953125,
275
+ 1.0078125,
276
+ 0.0
277
+ ],
278
+ [
279
+ -0.001708984375,
280
+ 0.0009765625,
281
+ 0.12451171875,
282
+ 1.0,
283
+ -0.001708984375,
284
+ 0.00146484375,
285
+ 0.0,
286
+ 1.0,
287
+ 0.0009765625
288
+ ],
289
+ [
290
+ 0.0,
291
+ -0.0009765625,
292
+ 0.1337890625,
293
+ 0.9921875,
294
+ -0.00390625,
295
+ -0.00390625,
296
+ 0.005859375,
297
+ 1.015625,
298
+ 0.0
299
+ ],
300
+ [
301
+ -0.0029296875,
302
+ 0.00390625,
303
+ 0.142578125,
304
+ 1.0,
305
+ 0.0009765625,
306
+ -0.0009765625,
307
+ -0.001953125,
308
+ 1.0,
309
+ -0.0009765625
310
+ ],
311
+ [
312
+ -0.001953125,
313
+ 0.0,
314
+ 0.154296875,
315
+ 1.0,
316
+ 0.0,
317
+ 0.0,
318
+ 0.00341796875,
319
+ 1.0078125,
320
+ 0.000732421875
321
+ ],
322
+ [
323
+ 0.0,
324
+ -0.0009765625,
325
+ 0.1640625,
326
+ 1.0,
327
+ 0.0,
328
+ -0.0015869140625,
329
+ 0.0,
330
+ 1.0,
331
+ -0.001953125
332
+ ],
333
+ [
334
+ 0.0009765625,
335
+ 0.002593994140625,
336
+ 0.173828125,
337
+ 1.0078125,
338
+ -0.0009765625,
339
+ 0.0,
340
+ 0.0006103515625,
341
+ 1.0078125,
342
+ 0.0
343
+ ],
344
+ [
345
+ -0.001953125,
346
+ -0.001953125,
347
+ 0.181640625,
348
+ 1.0,
349
+ -0.0009765625,
350
+ 0.0,
351
+ 0.001953125,
352
+ 1.0078125,
353
+ -0.001953125
354
+ ],
355
+ [
356
+ 0.0,
357
+ 0.00146484375,
358
+ 0.189453125,
359
+ 1.0,
360
+ -0.00048828125,
361
+ -0.0048828125,
362
+ -0.001953125,
363
+ 1.0078125,
364
+ -0.0009765625
365
+ ],
366
+ [
367
+ 0.00244140625,
368
+ 0.00244140625,
369
+ 0.1962890625,
370
+ 1.0,
371
+ 0.0,
372
+ -0.0006103515625,
373
+ 0.0,
374
+ 1.0078125,
375
+ 0.0
376
+ ],
377
+ [
378
+ 0.0,
379
+ 0.001708984375,
380
+ 0.19921875,
381
+ 1.0,
382
+ 0.0009765625,
383
+ -0.00390625,
384
+ 0.001953125,
385
+ 1.0078125,
386
+ -0.001953125
387
+ ],
388
+ [
389
+ 0.005859375,
390
+ 0.001953125,
391
+ 0.21484375,
392
+ 1.0078125,
393
+ 0.0009765625,
394
+ -0.001953125,
395
+ 0.001953125,
396
+ 1.0078125,
397
+ -0.00390625
398
+ ],
399
+ [
400
+ 0.0078125,
401
+ 0.0029296875,
402
+ 0.208984375,
403
+ 1.0,
404
+ -0.0009765625,
405
+ -0.005859375,
406
+ 0.00146484375,
407
+ 1.0078125,
408
+ -0.001953125
409
+ ],
410
+ [
411
+ 0.00872802734375,
412
+ 0.001953125,
413
+ 0.21875,
414
+ 1.0,
415
+ 0.0009765625,
416
+ -0.0045166015625,
417
+ 0.0009765625,
418
+ 1.0078125,
419
+ -0.0006103515625
420
+ ],
421
+ [
422
+ 0.013671875,
423
+ 0.0009765625,
424
+ 0.22265625,
425
+ 1.0,
426
+ -0.00139617919921875,
427
+ -0.0048828125,
428
+ 0.00390625,
429
+ 1.0,
430
+ -0.00170135498046875
431
+ ],
432
+ [
433
+ 0.012451171875,
434
+ -0.000244140625,
435
+ 0.232421875,
436
+ 1.0,
437
+ 0.000244140625,
438
+ -0.007568359375,
439
+ -0.0029296875,
440
+ 1.0078125,
441
+ 0.000244140625
442
+ ],
443
+ [
444
+ 0.0126953125,
445
+ 0.001953125,
446
+ 0.2451171875,
447
+ 1.0,
448
+ 0.001953125,
449
+ -0.0078125,
450
+ 0.0,
451
+ 1.0078125,
452
+ 0.001953125
453
+ ],
454
+ [
455
+ 0.013671875,
456
+ 0.0009765625,
457
+ 0.259765625,
458
+ 1.0078125,
459
+ 0.00390625,
460
+ -0.0079345703125,
461
+ 0.001953125,
462
+ 1.0078125,
463
+ 0.001953125
464
+ ],
465
+ [
466
+ 0.013671875,
467
+ 0.001953125,
468
+ 0.265625,
469
+ 1.0078125,
470
+ 0.0,
471
+ -0.0078125,
472
+ 0.003662109375,
473
+ 1.0078125,
474
+ 0.001953125
475
+ ],
476
+ [
477
+ 0.017578125,
478
+ 0.0029296875,
479
+ 0.26953125,
480
+ 1.0,
481
+ 0.00103759765625,
482
+ -0.009765625,
483
+ 0.00146484375,
484
+ 1.0078125,
485
+ -0.000732421875
486
+ ],
487
+ [
488
+ 0.015625,
489
+ 0.005859375,
490
+ 0.28125,
491
+ 1.0,
492
+ 0.0029296875,
493
+ -0.0048828125,
494
+ -0.00146484375,
495
+ 1.0,
496
+ 0.0
497
+ ],
498
+ [
499
+ 0.015625,
500
+ 0.00390625,
501
+ 0.30078125,
502
+ 1.0,
503
+ -0.00390625,
504
+ -0.009765625,
505
+ 0.001953125,
506
+ 1.0,
507
+ 0.00390625
508
+ ],
509
+ [
510
+ 0.01806640625,
511
+ 0.0029296875,
512
+ 0.30078125,
513
+ 1.0,
514
+ 0.0009765625,
515
+ -0.0078125,
516
+ -0.0009765625,
517
+ 1.0078125,
518
+ 0.00048828125
519
+ ],
520
+ [
521
+ 0.015625,
522
+ 0.0029296875,
523
+ 0.314453125,
524
+ 1.0,
525
+ -0.00048828125,
526
+ -0.0048828125,
527
+ 0.0,
528
+ 1.0,
529
+ 0.001220703125
530
+ ],
531
+ [
532
+ 0.015625,
533
+ 0.0029296875,
534
+ 0.32421875,
535
+ 1.0,
536
+ 0.0,
537
+ -0.009765625,
538
+ -0.00125885009765625,
539
+ 1.0078125,
540
+ 0.0009765625
541
+ ],
542
+ [
543
+ 0.0146484375,
544
+ 0.004150390625,
545
+ 0.34375,
546
+ 1.0,
547
+ -0.0001220703125,
548
+ -0.009765625,
549
+ -0.001953125,
550
+ 1.0078125,
551
+ -0.00390625
552
+ ],
553
+ [
554
+ 0.0167236328125,
555
+ 0.0029296875,
556
+ 0.3515625,
557
+ 1.0,
558
+ 0.001953125,
559
+ -0.0078125,
560
+ -0.00048828125,
561
+ 1.0,
562
+ 0.0009765625
563
+ ],
564
+ [
565
+ 0.013671875,
566
+ 0.00390625,
567
+ 0.359375,
568
+ 1.0,
569
+ 0.0009765625,
570
+ -0.0087890625,
571
+ 0.0,
572
+ 1.0,
573
+ 0.0
574
+ ],
575
+ [
576
+ 0.013671875,
577
+ 0.00341796875,
578
+ 0.376953125,
579
+ 1.0,
580
+ 0.0,
581
+ -0.0052490234375,
582
+ 0.00390625,
583
+ 1.0078125,
584
+ 0.0
585
+ ],
586
+ [
587
+ 0.01953125,
588
+ 0.00390625,
589
+ 0.38671875,
590
+ 1.0,
591
+ 0.00390625,
592
+ -0.0078125,
593
+ 0.0006103515625,
594
+ 1.0078125,
595
+ -0.0009765625
596
+ ],
597
+ [
598
+ 0.0126953125,
599
+ 0.005859375,
600
+ 0.40234375,
601
+ 1.0,
602
+ 0.0025634765625,
603
+ -0.00634765625,
604
+ 0.0009765625,
605
+ 1.0078125,
606
+ -0.00390625
607
+ ],
608
+ [
609
+ 0.0162353515625,
610
+ 0.005859375,
611
+ 0.404296875,
612
+ 1.0,
613
+ 0.00341796875,
614
+ -0.0087890625,
615
+ -0.00146484375,
616
+ 1.0,
617
+ -0.0010986328125
618
+ ],
619
+ [
620
+ 0.017578125,
621
+ 0.00439453125,
622
+ 0.41796875,
623
+ 1.0,
624
+ 0.0029296875,
625
+ -0.005859375,
626
+ -0.001953125,
627
+ 1.0,
628
+ -0.0029296875
629
+ ],
630
+ [
631
+ 0.0185546875,
632
+ 0.0054931640625,
633
+ 0.421875,
634
+ 1.0,
635
+ 0.001953125,
636
+ -0.00341796875,
637
+ -0.000732421875,
638
+ 1.0078125,
639
+ -0.001953125
640
+ ],
641
+ [
642
+ 0.017578125,
643
+ 0.00048828125,
644
+ 0.42578125,
645
+ 1.0,
646
+ 0.001953125,
647
+ -0.0048828125,
648
+ 0.0,
649
+ 1.0078125,
650
+ -0.00390625
651
+ ],
652
+ [
653
+ 0.013671875,
654
+ 0.0078125,
655
+ 0.45703125,
656
+ 1.0,
657
+ 0.00390625,
658
+ -0.0078125,
659
+ 0.00146484375,
660
+ 1.0078125,
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/diffusers_outputs/edge_action_id_av_inverse_1_diffusers.json ADDED
@@ -0,0 +1,672 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ [
4
+ 0.05859375,
5
+ 0.0029296875,
6
+ 1.125,
7
+ 1.015625,
8
+ 0.001220703125,
9
+ -0.02001953125,
10
+ -0.00390625,
11
+ 1.0078125,
12
+ 0.0009765625
13
+ ],
14
+ [
15
+ 0.072265625,
16
+ -0.0029296875,
17
+ 1.1171875,
18
+ 1.0078125,
19
+ 0.002197265625,
20
+ -0.0234375,
21
+ 0.00244140625,
22
+ 1.015625,
23
+ 0.0009765625
24
+ ],
25
+ [
26
+ 0.0712890625,
27
+ -0.01171875,
28
+ 1.078125,
29
+ 1.0,
30
+ -0.005859375,
31
+ -0.0234375,
32
+ -0.0009765625,
33
+ 1.015625,
34
+ 0.0078125
35
+ ],
36
+ [
37
+ 0.08984375,
38
+ -0.017578125,
39
+ 1.0625,
40
+ 1.015625,
41
+ -0.00341796875,
42
+ -0.03515625,
43
+ 0.00244140625,
44
+ 1.015625,
45
+ 0.007080078125
46
+ ],
47
+ [
48
+ 0.08935546875,
49
+ -0.015625,
50
+ 1.046875,
51
+ 1.0078125,
52
+ 0.0,
53
+ -0.0302734375,
54
+ 0.0,
55
+ 1.0078125,
56
+ 0.009765625
57
+ ],
58
+ [
59
+ 0.09375,
60
+ -0.0087890625,
61
+ 1.03125,
62
+ 1.0078125,
63
+ -0.001953125,
64
+ -0.0341796875,
65
+ -0.00048828125,
66
+ 1.0078125,
67
+ 0.00390625
68
+ ],
69
+ [
70
+ 0.099609375,
71
+ 0.0,
72
+ 1.015625,
73
+ 1.0078125,
74
+ -0.000732421875,
75
+ -0.037109375,
76
+ 0.0029296875,
77
+ 1.0078125,
78
+ -0.005859375
79
+ ],
80
+ [
81
+ 0.11181640625,
82
+ 0.017578125,
83
+ 1.0078125,
84
+ 1.0078125,
85
+ 0.00390625,
86
+ -0.033203125,
87
+ -0.005859375,
88
+ 1.0078125,
89
+ -0.00390625
90
+ ],
91
+ [
92
+ 0.1220703125,
93
+ 0.01904296875,
94
+ 1.015625,
95
+ 1.0078125,
96
+ 0.0009765625,
97
+ -0.0400390625,
98
+ -0.0048828125,
99
+ 1.0078125,
100
+ -0.00439453125
101
+ ],
102
+ [
103
+ 0.125,
104
+ 0.017578125,
105
+ 1.0,
106
+ 1.0,
107
+ 0.00341796875,
108
+ -0.041015625,
109
+ -0.001953125,
110
+ 1.0078125,
111
+ -0.0078125
112
+ ],
113
+ [
114
+ 0.12451171875,
115
+ 0.0107421875,
116
+ 0.98828125,
117
+ 1.0,
118
+ 0.000244140625,
119
+ -0.04443359375,
120
+ 0.001953125,
121
+ 1.0078125,
122
+ 0.0
123
+ ],
124
+ [
125
+ 0.126953125,
126
+ 0.005859375,
127
+ 0.9921875,
128
+ 1.0078125,
129
+ -0.00115966796875,
130
+ -0.04296875,
131
+ 0.001953125,
132
+ 1.0078125,
133
+ 0.001953125
134
+ ],
135
+ [
136
+ 0.12890625,
137
+ 0.010986328125,
138
+ 0.984375,
139
+ 1.0,
140
+ 0.0029296875,
141
+ -0.044189453125,
142
+ -0.00091552734375,
143
+ 1.0078125,
144
+ 0.001953125
145
+ ],
146
+ [
147
+ 0.1337890625,
148
+ 0.013671875,
149
+ 0.98828125,
150
+ 1.0078125,
151
+ 0.003387451171875,
152
+ -0.046875,
153
+ -0.00390625,
154
+ 1.0,
155
+ 0.001953125
156
+ ],
157
+ [
158
+ 0.1328125,
159
+ 0.01171875,
160
+ 0.98828125,
161
+ 1.0078125,
162
+ 0.00244140625,
163
+ -0.044189453125,
164
+ 0.0,
165
+ 1.0078125,
166
+ -0.00341796875
167
+ ],
168
+ [
169
+ 0.123046875,
170
+ 0.0078125,
171
+ 0.984375,
172
+ 1.0078125,
173
+ 0.001953125,
174
+ -0.041015625,
175
+ -0.0009765625,
176
+ 1.0,
177
+ -0.003173828125
178
+ ],
179
+ [
180
+ 0.126953125,
181
+ 0.013671875,
182
+ 1.0,
183
+ 1.0078125,
184
+ 0.001953125,
185
+ -0.041015625,
186
+ 0.0009765625,
187
+ 1.0,
188
+ 0.0
189
+ ],
190
+ [
191
+ 0.125,
192
+ 0.01171875,
193
+ 1.015625,
194
+ 1.0078125,
195
+ -0.001953125,
196
+ -0.04443359375,
197
+ 0.001220703125,
198
+ 1.0078125,
199
+ 0.005859375
200
+ ],
201
+ [
202
+ 0.12890625,
203
+ 0.013671875,
204
+ 1.0234375,
205
+ 1.0078125,
206
+ 0.00390625,
207
+ -0.04052734375,
208
+ -0.001953125,
209
+ 1.0078125,
210
+ 0.00244140625
211
+ ],
212
+ [
213
+ 0.12109375,
214
+ 0.02099609375,
215
+ 1.03125,
216
+ 1.0078125,
217
+ 0.0029296875,
218
+ -0.0419921875,
219
+ 0.0,
220
+ 1.0078125,
221
+ 0.001800537109375
222
+ ],
223
+ [
224
+ 0.1220703125,
225
+ 0.021484375,
226
+ 1.0546875,
227
+ 1.0078125,
228
+ 0.0030059814453125,
229
+ -0.037841796875,
230
+ 0.00390625,
231
+ 1.0078125,
232
+ 0.0
233
+ ],
234
+ [
235
+ 0.1259765625,
236
+ 0.017578125,
237
+ 1.0703125,
238
+ 1.0,
239
+ 0.004638671875,
240
+ -0.0361328125,
241
+ -0.00390625,
242
+ 1.0078125,
243
+ -0.0048828125
244
+ ],
245
+ [
246
+ 0.1220703125,
247
+ 0.0224609375,
248
+ 1.09375,
249
+ 1.0,
250
+ 0.0029296875,
251
+ -0.036376953125,
252
+ -0.0048828125,
253
+ 1.0078125,
254
+ -0.00048828125
255
+ ],
256
+ [
257
+ 0.1162109375,
258
+ 0.0205078125,
259
+ 1.1015625,
260
+ 1.0078125,
261
+ 0.0,
262
+ -0.0390625,
263
+ -0.00445556640625,
264
+ 1.0078125,
265
+ -0.005859375
266
+ ],
267
+ [
268
+ 0.11279296875,
269
+ 0.02001953125,
270
+ 1.125,
271
+ 1.0,
272
+ 0.0029296875,
273
+ -0.03466796875,
274
+ -0.00390625,
275
+ 1.0078125,
276
+ -0.001953125
277
+ ],
278
+ [
279
+ 0.107421875,
280
+ 0.0205078125,
281
+ 1.1328125,
282
+ 1.0078125,
283
+ -0.0009765625,
284
+ -0.033203125,
285
+ -0.001953125,
286
+ 1.0078125,
287
+ -0.0009765625
288
+ ],
289
+ [
290
+ 0.10546875,
291
+ 0.0185546875,
292
+ 1.140625,
293
+ 1.0,
294
+ -0.0009765625,
295
+ -0.03125,
296
+ 0.0048828125,
297
+ 1.0078125,
298
+ -0.001953125
299
+ ],
300
+ [
301
+ 0.1025390625,
302
+ 0.021484375,
303
+ 1.171875,
304
+ 1.0078125,
305
+ 0.0,
306
+ -0.03076171875,
307
+ -0.001953125,
308
+ 1.0,
309
+ 0.0
310
+ ],
311
+ [
312
+ 0.09765625,
313
+ 0.01904296875,
314
+ 1.1875,
315
+ 1.0078125,
316
+ -0.001953125,
317
+ -0.03125,
318
+ -0.00146484375,
319
+ 1.015625,
320
+ 0.004638671875
321
+ ],
322
+ [
323
+ 0.087890625,
324
+ 0.021484375,
325
+ 1.21875,
326
+ 1.0078125,
327
+ 0.00390625,
328
+ -0.03076171875,
329
+ -0.001953125,
330
+ 1.0,
331
+ 0.001953125
332
+ ],
333
+ [
334
+ 0.08447265625,
335
+ 0.0155029296875,
336
+ 1.234375,
337
+ 1.0078125,
338
+ -0.00244140625,
339
+ -0.029296875,
340
+ -0.0009765625,
341
+ 1.0078125,
342
+ -0.001953125
343
+ ],
344
+ [
345
+ 0.07421875,
346
+ 0.01171875,
347
+ 1.265625,
348
+ 1.0,
349
+ -0.00439453125,
350
+ -0.025390625,
351
+ -0.001953125,
352
+ 1.0078125,
353
+ 0.0
354
+ ],
355
+ [
356
+ 0.06640625,
357
+ 0.01318359375,
358
+ 1.2734375,
359
+ 1.0078125,
360
+ 0.001708984375,
361
+ -0.025390625,
362
+ -0.001953125,
363
+ 1.0,
364
+ 0.0025634765625
365
+ ],
366
+ [
367
+ 0.0654296875,
368
+ 0.0126953125,
369
+ 1.3046875,
370
+ 1.0078125,
371
+ 0.0,
372
+ -0.0198974609375,
373
+ 0.001953125,
374
+ 1.0078125,
375
+ 0.0029296875
376
+ ],
377
+ [
378
+ 0.0625,
379
+ 0.013671875,
380
+ 1.3359375,
381
+ 1.015625,
382
+ 0.0009765625,
383
+ -0.0205078125,
384
+ 0.00390625,
385
+ 1.0,
386
+ 0.00146484375
387
+ ],
388
+ [
389
+ 0.0625,
390
+ 0.013671875,
391
+ 1.34375,
392
+ 1.0078125,
393
+ 0.0,
394
+ -0.013671875,
395
+ 0.00390625,
396
+ 1.015625,
397
+ 0.0
398
+ ],
399
+ [
400
+ 0.048828125,
401
+ 0.0244140625,
402
+ 1.3828125,
403
+ 1.0078125,
404
+ -0.0009765625,
405
+ -0.0166015625,
406
+ 0.00146484375,
407
+ 1.0078125,
408
+ 0.0
409
+ ],
410
+ [
411
+ 0.04736328125,
412
+ 0.01953125,
413
+ 1.390625,
414
+ 1.0078125,
415
+ 0.001953125,
416
+ -0.013427734375,
417
+ -0.0009765625,
418
+ 1.0078125,
419
+ 0.001708984375
420
+ ],
421
+ [
422
+ 0.04296875,
423
+ 0.0224609375,
424
+ 1.4140625,
425
+ 1.0078125,
426
+ 0.002532958984375,
427
+ -0.01220703125,
428
+ 0.0,
429
+ 1.0078125,
430
+ 0.00286865234375
431
+ ],
432
+ [
433
+ 0.03515625,
434
+ 0.019287109375,
435
+ 1.4375,
436
+ 1.0078125,
437
+ 0.001708984375,
438
+ -0.010009765625,
439
+ -0.0048828125,
440
+ 1.0078125,
441
+ 0.003662109375
442
+ ],
443
+ [
444
+ 0.02685546875,
445
+ 0.015625,
446
+ 1.46875,
447
+ 1.015625,
448
+ 0.0,
449
+ -0.0078125,
450
+ 0.0,
451
+ 1.0078125,
452
+ 0.0048828125
453
+ ],
454
+ [
455
+ 0.017578125,
456
+ 0.01025390625,
457
+ 1.484375,
458
+ 1.0078125,
459
+ 0.0,
460
+ -0.0057373046875,
461
+ 0.001953125,
462
+ 1.0078125,
463
+ 0.00439453125
464
+ ],
465
+ [
466
+ 0.0166015625,
467
+ 0.0078125,
468
+ 1.5,
469
+ 1.0078125,
470
+ -0.001953125,
471
+ -0.001953125,
472
+ 0.002685546875,
473
+ 1.0078125,
474
+ 0.00390625
475
+ ],
476
+ [
477
+ 0.015625,
478
+ 0.01171875,
479
+ 1.5390625,
480
+ 1.0078125,
481
+ 0.00384521484375,
482
+ -0.00390625,
483
+ 0.0032958984375,
484
+ 1.0078125,
485
+ 0.00341796875
486
+ ],
487
+ [
488
+ 0.01171875,
489
+ 0.01513671875,
490
+ 1.5703125,
491
+ 1.015625,
492
+ -0.0009765625,
493
+ 0.001953125,
494
+ -0.00439453125,
495
+ 1.015625,
496
+ 0.001953125
497
+ ],
498
+ [
499
+ 0.001953125,
500
+ 0.01171875,
501
+ 1.5859375,
502
+ 1.015625,
503
+ 0.001953125,
504
+ -0.005859375,
505
+ -0.00390625,
506
+ 1.0078125,
507
+ 0.0
508
+ ],
509
+ [
510
+ 0.00341796875,
511
+ 0.0205078125,
512
+ 1.609375,
513
+ 1.0078125,
514
+ 0.001953125,
515
+ 0.001953125,
516
+ 0.001953125,
517
+ 1.0078125,
518
+ 0.0006103515625
519
+ ],
520
+ [
521
+ 0.00390625,
522
+ 0.021484375,
523
+ 1.640625,
524
+ 1.0078125,
525
+ 0.001953125,
526
+ -0.0009765625,
527
+ 0.0,
528
+ 1.0078125,
529
+ 0.0009765625
530
+ ],
531
+ [
532
+ 0.00146484375,
533
+ 0.019287109375,
534
+ 1.6640625,
535
+ 1.015625,
536
+ 0.0,
537
+ 0.005859375,
538
+ -0.00115966796875,
539
+ 1.0078125,
540
+ 0.0029296875
541
+ ],
542
+ [
543
+ 0.0,
544
+ 0.01904296875,
545
+ 1.6796875,
546
+ 1.015625,
547
+ 0.0,
548
+ 0.0,
549
+ 0.0,
550
+ 1.015625,
551
+ 0.0
552
+ ],
553
+ [
554
+ -0.001953125,
555
+ 0.017578125,
556
+ 1.7109375,
557
+ 1.0078125,
558
+ 0.00048828125,
559
+ 0.001953125,
560
+ 0.0029296875,
561
+ 1.0078125,
562
+ 0.0009765625
563
+ ],
564
+ [
565
+ 0.0,
566
+ 0.015625,
567
+ 1.7265625,
568
+ 1.0078125,
569
+ -0.00048828125,
570
+ 0.0009765625,
571
+ 0.001953125,
572
+ 1.0078125,
573
+ 0.00244140625
574
+ ],
575
+ [
576
+ 0.0,
577
+ 0.021240234375,
578
+ 1.7421875,
579
+ 1.0,
580
+ -0.001953125,
581
+ 0.0,
582
+ 0.00390625,
583
+ 1.0078125,
584
+ -0.0009765625
585
+ ],
586
+ [
587
+ 0.0,
588
+ 0.0205078125,
589
+ 1.765625,
590
+ 1.015625,
591
+ -0.000732421875,
592
+ 0.001953125,
593
+ 0.0013427734375,
594
+ 1.015625,
595
+ 0.00390625
596
+ ],
597
+ [
598
+ -0.0048828125,
599
+ 0.0224609375,
600
+ 1.78125,
601
+ 1.015625,
602
+ -0.000518798828125,
603
+ 0.00244140625,
604
+ 0.0078125,
605
+ 1.015625,
606
+ -0.001953125
607
+ ],
608
+ [
609
+ 0.00311279296875,
610
+ 0.021484375,
611
+ 1.8046875,
612
+ 1.015625,
613
+ 0.00146484375,
614
+ -0.0009765625,
615
+ 0.0,
616
+ 1.015625,
617
+ -0.0006103515625
618
+ ],
619
+ [
620
+ 0.001953125,
621
+ 0.021240234375,
622
+ 1.828125,
623
+ 1.0078125,
624
+ 0.001953125,
625
+ 0.0,
626
+ 0.0,
627
+ 1.015625,
628
+ 0.000732421875
629
+ ],
630
+ [
631
+ 0.00390625,
632
+ 0.021728515625,
633
+ 1.8359375,
634
+ 1.0078125,
635
+ -0.0009765625,
636
+ 0.00146484375,
637
+ 0.0009765625,
638
+ 1.015625,
639
+ -0.00390625
640
+ ],
641
+ [
642
+ 0.0029296875,
643
+ 0.01953125,
644
+ 1.84375,
645
+ 1.0078125,
646
+ 0.0078125,
647
+ -0.001953125,
648
+ -0.0029296875,
649
+ 1.0078125,
650
+ -0.0078125
651
+ ],
652
+ [
653
+ 0.001953125,
654
+ 0.01953125,
655
+ 1.8515625,
656
+ 1.0,
657
+ 0.001953125,
658
+ 0.0029296875,
659
+ 0.005859375,
660
+ 1.015625,
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/diffusers_outputs/edge_i2v_diffusers.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:560e28f9d880b071e04e12c9dd2c214134bb5c159045e322317e515a448276dd
3
+ size 1181482