shyang commited on
Commit ·
e09e5dd
1
Parent(s): fe66047
Restore original six switch cases and keep new POV cases
Browse files- switch_inference/README.md +26 -8
- switch_inference/actions/ps_00_act_demo0_npy_00_action.npy +3 -0
- switch_inference/actions/ps_05_act_demo1_npy_05_action.npy +3 -0
- switch_inference/actions/ps_10_act_demo2_npy_10_action.npy +3 -0
- switch_inference/actions/ps_15_act_demo0_npy_15_action.npy +3 -0
- switch_inference/actions/ps_20_act_demo1_npy_20_action.npy +3 -0
- switch_inference/actions/ps_25_act_demo2_npy_25_action.npy +3 -0
- switch_inference/dataset_info.json +42 -4
- switch_inference/images/scene_00.png +3 -0
- switch_inference/images/scene_01.png +3 -0
- switch_inference/images/scene_02.png +3 -0
- switch_inference/images/scene_03.png +3 -0
- switch_inference/images/scene_04.png +3 -0
- switch_inference/images/scene_05.png +3 -0
- switch_inference/images/{scene_00_court.png → scene_06_court.png} +0 -0
- switch_inference/images/{scene_01_seaside.png → scene_07_seaside.png} +0 -0
- switch_inference/manifest.csv +8 -2
- switch_inference/manifest.jsonl +8 -2
- switch_inference/prompts/custom_00_court_present_painting.json +2 -2
- switch_inference/prompts/custom_01_seaside_jump_swim.json +2 -2
- switch_inference/prompts/ps_00_act_demo0_npy_00.json +45 -0
- switch_inference/prompts/ps_05_act_demo1_npy_05.json +45 -0
- switch_inference/prompts/ps_10_act_demo2_npy_10.json +45 -0
- switch_inference/prompts/ps_15_act_demo0_npy_15.json +45 -0
- switch_inference/prompts/ps_20_act_demo1_npy_20.json +45 -0
- switch_inference/prompts/ps_25_act_demo2_npy_25.json +45 -0
- switch_inference/source_metadata/generated_cases.json +60 -3
switch_inference/README.md
CHANGED
|
@@ -1,9 +1,26 @@
|
|
| 1 |
# switch_inference 数据格式说明
|
| 2 |
|
| 3 |
-
本目录包含
|
| 4 |
|
| 5 |
## 数据点
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
| case_id | 场景 | switch 前 | switch 后 |
|
| 8 |
| --- | --- | --- | --- |
|
| 9 |
| `custom_00_court_present_painting` | 欧洲风格宫廷大厅 | 第一视角在宫廷中行走 | 掏出画作并双手献上 |
|
|
@@ -13,10 +30,10 @@
|
|
| 13 |
|
| 14 |
```text
|
| 15 |
switch_inference/
|
| 16 |
-
images/ # 输入图像,共
|
| 17 |
-
actions/ # 每个 case 一条 camera trajectory,共
|
| 18 |
-
prompts/ # 每个 case 一份 prompt JSON,共
|
| 19 |
-
source_metadata/ # 图像生成 prompt、轨迹生成说明和构建摘要
|
| 20 |
manifest.jsonl # 逐行 JSON manifest,推荐程序读取
|
| 21 |
manifest.csv # CSV 版本 manifest,方便人工查看
|
| 22 |
dataset_info.json # 全局信息
|
|
@@ -45,7 +62,7 @@ switch_inference/
|
|
| 45 |
```json
|
| 46 |
{
|
| 47 |
"case_id": "custom_00_court_present_painting",
|
| 48 |
-
"image_path": "images/
|
| 49 |
"action_path": "actions/custom_00_court_present_painting_action.npy",
|
| 50 |
"action_type": "camera_trajectory",
|
| 51 |
"switch_frame": 160,
|
|
@@ -65,6 +82,7 @@ switch_inference/
|
|
| 65 |
- `dtype`: `float32`
|
| 66 |
- `shape`: `[321, 4, 4]`
|
| 67 |
- 含义:每帧相机位姿矩阵;321 个 pose 对应 320 帧生成视频加初始 pose。
|
|
|
|
| 68 |
- 宫廷样本:前半段平稳向前行走,后半段放慢并轻微俯视/前倾,模拟取出并献上画作。
|
| 69 |
- 海边样本:前半段向海边行走,后半段向前入水、下沉到近水面高度并带轻微游泳摆动。
|
| 70 |
|
|
@@ -72,8 +90,8 @@ switch_inference/
|
|
| 72 |
|
| 73 |
## 数据规模
|
| 74 |
|
| 75 |
-
- case 数量:2
|
| 76 |
-
- 输入图像:
|
| 77 |
- 图像尺寸:`1280 x 704`
|
| 78 |
- 每条目标帧数:320
|
| 79 |
- switch frame:160
|
|
|
|
| 1 |
# switch_inference 数据格式说明
|
| 2 |
|
| 3 |
+
本目录包含 8 条第一视角 prompt switch 推理数据:原始数据中每个输入场景保留 1 条代表样本,共 6 条;再追加 2 条新设计样本。每条样本由一张输入图像、一个相机动作轨迹和一份包含 switch 前后 prompt 的 JSON 文件组成。
|
| 4 |
|
| 5 |
## 数据点
|
| 6 |
|
| 7 |
+
### 原始 6 条
|
| 8 |
+
|
| 9 |
+
原始 6 条按源数据每个 `scene_index` 的第一条 prompt-switch case 保留,来源为:
|
| 10 |
+
|
| 11 |
+
`https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs`
|
| 12 |
+
|
| 13 |
+
| case_id | 场景 | action_label |
|
| 14 |
+
| --- | --- | --- |
|
| 15 |
+
| `ps_00_act_demo0_npy_00` | 原始 scene 0 | `fireball` |
|
| 16 |
+
| `ps_05_act_demo1_npy_05` | 原始 scene 1 | `fireball` |
|
| 17 |
+
| `ps_10_act_demo2_npy_10` | 原始 scene 2 | `fireball` |
|
| 18 |
+
| `ps_15_act_demo0_npy_15` | 原始 scene 3 | `fireball` |
|
| 19 |
+
| `ps_20_act_demo1_npy_20` | 原始 scene 4 | `fireball` |
|
| 20 |
+
| `ps_25_act_demo2_npy_25` | 原始 scene 5 | `fireball` |
|
| 21 |
+
|
| 22 |
+
### 新增 2 条
|
| 23 |
+
|
| 24 |
| case_id | 场景 | switch 前 | switch 后 |
|
| 25 |
| --- | --- | --- | --- |
|
| 26 |
| `custom_00_court_present_painting` | 欧洲风格宫廷大厅 | 第一视角在宫廷中行走 | 掏出画作并双手献上 |
|
|
|
|
| 30 |
|
| 31 |
```text
|
| 32 |
switch_inference/
|
| 33 |
+
images/ # 输入图像,共 8 张
|
| 34 |
+
actions/ # 每个 case 一条 camera trajectory,共 8 个 .npy
|
| 35 |
+
prompts/ # 每个 case 一份 prompt JSON,共 8 个
|
| 36 |
+
source_metadata/ # 原始选择、图像生成 prompt、轨迹生成说明和构建摘要
|
| 37 |
manifest.jsonl # 逐行 JSON manifest,推荐程序读取
|
| 38 |
manifest.csv # CSV 版本 manifest,方便人工查看
|
| 39 |
dataset_info.json # 全局信息
|
|
|
|
| 62 |
```json
|
| 63 |
{
|
| 64 |
"case_id": "custom_00_court_present_painting",
|
| 65 |
+
"image_path": "images/scene_06_court.png",
|
| 66 |
"action_path": "actions/custom_00_court_present_painting_action.npy",
|
| 67 |
"action_type": "camera_trajectory",
|
| 68 |
"switch_frame": 160,
|
|
|
|
| 82 |
- `dtype`: `float32`
|
| 83 |
- `shape`: `[321, 4, 4]`
|
| 84 |
- 含义:每帧相机位姿矩阵;321 个 pose 对应 320 帧生成视频加初始 pose。
|
| 85 |
+
- 原始 6 条:保留源数据对应的 camera trajectory。
|
| 86 |
- 宫廷样本:前半段平稳向前行走,后半段放慢并轻微俯视/前倾,模拟取出并献上画作。
|
| 87 |
- 海边样本:前半段向海边行走,后半段向前入水、下沉到近水面高度并带轻微游泳摆动。
|
| 88 |
|
|
|
|
| 90 |
|
| 91 |
## 数据规模
|
| 92 |
|
| 93 |
+
- case 数量:8(原始 6 条 + 新增 2 条)
|
| 94 |
+
- 输入图像:8
|
| 95 |
- 图像尺寸:`1280 x 704`
|
| 96 |
- 每条目标帧数:320
|
| 97 |
- switch frame:160
|
switch_inference/actions/ps_00_act_demo0_npy_00_action.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b116bc301551d199388c4b6388779045c16799df9fbdb2e73f093733345b50b
|
| 3 |
+
size 20672
|
switch_inference/actions/ps_05_act_demo1_npy_05_action.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:648720c9c9d3eab6c6bd22055eaaef2586e37d4d2d26de5f6ad788a2621fd5ba
|
| 3 |
+
size 20672
|
switch_inference/actions/ps_10_act_demo2_npy_10_action.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7be42f840970cf32974ef9b079c81ade5a43aa1131b9299747b88ab350bfbe57
|
| 3 |
+
size 20672
|
switch_inference/actions/ps_15_act_demo0_npy_15_action.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e6418edbe57c810a5cb0675bfb1e9c84842ace86cd1bea5170129ae792e2266
|
| 3 |
+
size 20672
|
switch_inference/actions/ps_20_act_demo1_npy_20_action.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d50223bd926539f53beb9aad94846eee5cc897faebff7fe1cfdaac865e487a33
|
| 3 |
+
size 20672
|
switch_inference/actions/ps_25_act_demo2_npy_25_action.npy
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91a06b24e1a29fc8cc73fe0ee4f7a58f62a25fa8e8887a701fffb23dbc00e3a2
|
| 3 |
+
size 20672
|
switch_inference/dataset_info.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"dataset_name": "switch_inference",
|
| 3 |
-
"created_at": "2026-06-
|
| 4 |
-
"case_count":
|
| 5 |
-
"scene_count":
|
| 6 |
"frames_per_video": 320,
|
| 7 |
"switch_frame": 160,
|
| 8 |
"image_size": [
|
|
@@ -11,6 +11,7 @@
|
|
| 11 |
],
|
| 12 |
"perspective": "first-person POV",
|
| 13 |
"action_distribution": {
|
|
|
|
| 14 |
"present_painting": 1,
|
| 15 |
"swim_into_sea": 1
|
| 16 |
},
|
|
@@ -23,5 +24,42 @@
|
|
| 23 |
4
|
| 24 |
]
|
| 25 |
},
|
| 26 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"dataset_name": "switch_inference",
|
| 3 |
+
"created_at": "2026-06-02T17:05:29.994273+00:00",
|
| 4 |
+
"case_count": 8,
|
| 5 |
+
"scene_count": 8,
|
| 6 |
"frames_per_video": 320,
|
| 7 |
"switch_frame": 160,
|
| 8 |
"image_size": [
|
|
|
|
| 11 |
],
|
| 12 |
"perspective": "first-person POV",
|
| 13 |
"action_distribution": {
|
| 14 |
+
"fireball": 6,
|
| 15 |
"present_painting": 1,
|
| 16 |
"swim_into_sea": 1
|
| 17 |
},
|
|
|
|
| 24 |
4
|
| 25 |
]
|
| 26 |
},
|
| 27 |
+
"original_source_url": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 28 |
+
"original_cases": [
|
| 29 |
+
{
|
| 30 |
+
"case_id": "ps_00_act_demo0_npy_00",
|
| 31 |
+
"scene_index": 0,
|
| 32 |
+
"action_label": "fireball"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"case_id": "ps_05_act_demo1_npy_05",
|
| 36 |
+
"scene_index": 1,
|
| 37 |
+
"action_label": "fireball"
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"case_id": "ps_10_act_demo2_npy_10",
|
| 41 |
+
"scene_index": 2,
|
| 42 |
+
"action_label": "fireball"
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"case_id": "ps_15_act_demo0_npy_15",
|
| 46 |
+
"scene_index": 3,
|
| 47 |
+
"action_label": "fireball"
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"case_id": "ps_20_act_demo1_npy_20",
|
| 51 |
+
"scene_index": 4,
|
| 52 |
+
"action_label": "fireball"
|
| 53 |
+
},
|
| 54 |
+
{
|
| 55 |
+
"case_id": "ps_25_act_demo2_npy_25",
|
| 56 |
+
"scene_index": 5,
|
| 57 |
+
"action_label": "fireball"
|
| 58 |
+
}
|
| 59 |
+
],
|
| 60 |
+
"new_cases": [
|
| 61 |
+
"custom_00_court_present_painting",
|
| 62 |
+
"custom_01_seaside_jump_swim"
|
| 63 |
+
],
|
| 64 |
+
"overwrite_note": "This eight-case dataset intentionally overwrites the previous two-case switch_inference upload."
|
| 65 |
}
|
switch_inference/images/scene_00.png
ADDED
|
Git LFS Details
|
switch_inference/images/scene_01.png
ADDED
|
Git LFS Details
|
switch_inference/images/scene_02.png
ADDED
|
Git LFS Details
|
switch_inference/images/scene_03.png
ADDED
|
Git LFS Details
|
switch_inference/images/scene_04.png
ADDED
|
Git LFS Details
|
switch_inference/images/scene_05.png
ADDED
|
Git LFS Details
|
switch_inference/images/{scene_00_court.png → scene_06_court.png}
RENAMED
|
File without changes
|
switch_inference/images/{scene_01_seaside.png → scene_07_seaside.png}
RENAMED
|
File without changes
|
switch_inference/manifest.csv
CHANGED
|
@@ -1,3 +1,9 @@
|
|
| 1 |
case_id,image_path,action_path,prompt_path,scene_index,action_label,switch_frame,seed,prompt_before_en,prompt_before_zh,prompt_after_en,prompt_after_zh,image_sha256,action_sha256,prompt_sha256
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
case_id,image_path,action_path,prompt_path,scene_index,action_label,switch_frame,seed,prompt_before_en,prompt_before_zh,prompt_after_en,prompt_after_zh,image_sha256,action_sha256,prompt_sha256
|
| 2 |
+
ps_00_act_demo0_npy_00,images/scene_00.png,actions/ps_00_act_demo0_npy_00_action.npy,prompts/ps_00_act_demo0_npy_00.json,0,fireball,160,20260525,"I am an alchemist in a warm stone laboratory, calmly moving in first-person view among glass vessels, brass instruments, and a wooden workbench, with my gloved hands and robe sleeves visible and no magical effects.",我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。,"Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115,6b116bc301551d199388c4b6388779045c16799df9fbdb2e73f093733345b50b,aa4d3e7f4e526b66fffcc4dd37e2b43e1d633ca4bb4ffec73f78aa0964b56e2c
|
| 3 |
+
ps_05_act_demo1_npy_05,images/scene_01.png,actions/ps_05_act_demo1_npy_05_action.npy,prompts/ps_05_act_demo1_npy_05.json,1,fireball,160,20260530,"I am a witch inside a moonlit wooden hut, calmly moving in first-person view near an open spellbook, candles, hanging herbs, shelves of jars, and a crooked window, with my hands and sleeves visible and no magical effects.",我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。,"Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e,648720c9c9d3eab6c6bd22055eaaef2586e37d4d2d26de5f6ad788a2621fd5ba,10d8a44f1c740b3810a5f3e5faab6358589fd4733b1f02e1fe1ec684fa176100
|
| 4 |
+
ps_10_act_demo2_npy_10,images/scene_02.png,actions/ps_10_act_demo2_npy_10_action.npy,prompts/ps_10_act_demo2_npy_10.json,2,fireball,160,20260535,"I am a robed wizard walking calmly through a misty enchanted forest clearing in first-person view, holding a carved wooden staff at the edge of frame, with no magical effects.",我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。,"Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479,7be42f840970cf32974ef9b079c81ade5a43aa1131b9299747b88ab350bfbe57,b44c23250a6b0fd9c822b7b5bde22f78287055101bf77ef68715cbd574b0b66e
|
| 5 |
+
ps_15_act_demo0_npy_15,images/scene_03.png,actions/ps_15_act_demo0_npy_15_action.npy,prompts/ps_15_act_demo0_npy_15.json,3,fireball,160,20260540,"I am a battle mage calmly walking along castle battlements at dusk in first-person view, holding a staff near the lower-right foreground while the valley and mountains stay ahead, with no magical effects.",我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。,"Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4,2e6418edbe57c810a5cb0675bfb1e9c84842ace86cd1bea5170129ae792e2266,44a476a9c50b02e22d062acf923f5ec511c1abb7339cc71e0f3a3ed55bfeeb3b
|
| 6 |
+
ps_20_act_demo1_npy_20,images/scene_04.png,actions/ps_20_act_demo1_npy_20_action.npy,prompts/ps_20_act_demo1_npy_20.json,4,fireball,160,20260545,"I am an apprentice sorcerer inside a circular tower library, calmly moving in first-person view near scrolls, bookshelves, an astrolabe, and tall arched windows, with my hands and robe sleeves visible and no magical effects.",我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。,"Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e,d50223bd926539f53beb9aad94846eee5cc897faebff7fe1cfdaac865e487a33,2d39209a96366208b1879826a07486b01104551543cc687c3b3bcf05f0a293b2
|
| 7 |
+
ps_25_act_demo2_npy_25,images/scene_05.png,actions/ps_25_act_demo2_npy_25_action.npy,prompts/ps_25_act_demo2_npy_25.json,5,fireball,160,20260550,"I am a shaman at the edge of a snowy ritual clearing, calmly moving in first-person view with fur sleeves, gloved hands, and a carved wand visible, facing stone markers and pine trees with no magical effects.",我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。,"Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842,91a06b24e1a29fc8cc73fe0ee4f7a58f62a25fa8e8887a701fffb23dbc00e3a2,a174706d5104ba2f13f8c3e8331d6cc2d4029e4d34231f7dc1a14ec5b5f82702
|
| 8 |
+
custom_00_court_present_painting,images/scene_06_court.png,actions/custom_00_court_present_painting_action.npy,prompts/custom_00_court_present_painting.json,6,present_painting,160,2026060201,"I am walking calmly in first-person view through an elegant European royal court hall, with white gloved hands and embroidered sleeves visible, polished marble floor, gilded decor, chandeliers, velvet curtains, and a presentation area ahead. No object is presented yet.",我以第一人称视角在优雅的欧洲宫廷大厅中平静行走,画面下方可见白色手套和绣花袖口,前方有抛光大理石地面、镀金装饰、枝形吊灯、天鹅绒帘幕和献礼区域,此时还没有献上物品。,"Still in first-person view in the same court hall, I slow my steps, reach into a portfolio, pull out a framed painting, and present it forward with both hands toward the royal court, while the camera motion remains continuous.",仍在同一宫廷大���的第一人称视角中,我放慢脚步,从画夹中取出一幅装裱画作,双手向前把画作献给宫廷,镜头运动保持连续。,a42bab7dd00b61e85dae3332c7fb439d5cfaac62306e526c0c33e317e53229b6,9b832826cbb2a7467b308fb1d68c07f39f03f4ee34ed0ee8ed3971e9bfe972d8,5cbd2f54eda435fa9ef1342e271e4e7dfcc4c807f8b532f4f0f838619cead74b
|
| 9 |
+
custom_01_seaside_jump_swim,images/scene_07_seaside.png,actions/custom_01_seaside_jump_swim_action.npy,prompts/custom_01_seaside_jump_swim.json,7,swim_into_sea,160,2026060202,"I am walking calmly in first-person view along a rocky seaside path facing the open ocean, with my hands visible near the lower edge, clear blue water ahead, gentle waves, and a bright coastal horizon. I have not entered the water yet.",我以第一人称视角沿着海边岩石小路平静散步,面向开阔大海,画面下方可见双手,前方是清澈蓝色海水、轻柔海浪和明亮海岸线,此时还没有入水。,"Still in first-person view at the same seaside, I step forward, jump into the clear water, create a splash, then swim forward toward the open sea with my arms moving at the edges of the frame, while the shot stays continuous.",仍在同一海边的第一人称视角中,我向前迈步跳入清澈海水,激起水花,随后朝开阔大海向前游泳,画面边缘可见手臂划动,镜头保持连续。,18266fdd1804fddf097b45aac7e7d36727ff39befa4c82432fa92b2cad393c16,0d3853551281b4b01b88b121eddfef34c6a69cb591bda4a8aefa7a841131cf4f,dce21bb3b7508ce01c6ac569d54a7cd37419d9d3798aa7fbfc71ef79fa6120cc
|
switch_inference/manifest.jsonl
CHANGED
|
@@ -1,2 +1,8 @@
|
|
| 1 |
-
{"case_id": "
|
| 2 |
-
{"case_id": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"case_id": "ps_00_act_demo0_npy_00", "image_path": "images/scene_00.png", "action_path": "actions/ps_00_act_demo0_npy_00_action.npy", "prompt_path": "prompts/ps_00_act_demo0_npy_00.json", "scene_index": 0, "action_label": "fireball", "switch_frame": 160, "seed": 20260525, "prompt_before_en": "I am an alchemist in a warm stone laboratory, calmly moving in first-person view among glass vessels, brass instruments, and a wooden workbench, with my gloved hands and robe sleeves visible and no magical effects.", "prompt_before_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", "prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", "action_sha256": "6b116bc301551d199388c4b6388779045c16799df9fbdb2e73f093733345b50b", "prompt_sha256": "aa4d3e7f4e526b66fffcc4dd37e2b43e1d633ca4bb4ffec73f78aa0964b56e2c"}
|
| 2 |
+
{"case_id": "ps_05_act_demo1_npy_05", "image_path": "images/scene_01.png", "action_path": "actions/ps_05_act_demo1_npy_05_action.npy", "prompt_path": "prompts/ps_05_act_demo1_npy_05.json", "scene_index": 1, "action_label": "fireball", "switch_frame": 160, "seed": 20260530, "prompt_before_en": "I am a witch inside a moonlit wooden hut, calmly moving in first-person view near an open spellbook, candles, hanging herbs, shelves of jars, and a crooked window, with my hands and sleeves visible and no magical effects.", "prompt_before_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法���书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", "prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", "action_sha256": "648720c9c9d3eab6c6bd22055eaaef2586e37d4d2d26de5f6ad788a2621fd5ba", "prompt_sha256": "10d8a44f1c740b3810a5f3e5faab6358589fd4733b1f02e1fe1ec684fa176100"}
|
| 3 |
+
{"case_id": "ps_10_act_demo2_npy_10", "image_path": "images/scene_02.png", "action_path": "actions/ps_10_act_demo2_npy_10_action.npy", "prompt_path": "prompts/ps_10_act_demo2_npy_10.json", "scene_index": 2, "action_label": "fireball", "switch_frame": 160, "seed": 20260535, "prompt_before_en": "I am a robed wizard walking calmly through a misty enchanted forest clearing in first-person view, holding a carved wooden staff at the edge of frame, with no magical effects.", "prompt_before_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", "prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", "action_sha256": "7be42f840970cf32974ef9b079c81ade5a43aa1131b9299747b88ab350bfbe57", "prompt_sha256": "b44c23250a6b0fd9c822b7b5bde22f78287055101bf77ef68715cbd574b0b66e"}
|
| 4 |
+
{"case_id": "ps_15_act_demo0_npy_15", "image_path": "images/scene_03.png", "action_path": "actions/ps_15_act_demo0_npy_15_action.npy", "prompt_path": "prompts/ps_15_act_demo0_npy_15.json", "scene_index": 3, "action_label": "fireball", "switch_frame": 160, "seed": 20260540, "prompt_before_en": "I am a battle mage calmly walking along castle battlements at dusk in first-person view, holding a staff near the lower-right foreground while the valley and mountains stay ahead, with no magical effects.", "prompt_before_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", "prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", "action_sha256": "2e6418edbe57c810a5cb0675bfb1e9c84842ace86cd1bea5170129ae792e2266", "prompt_sha256": "44a476a9c50b02e22d062acf923f5ec511c1abb7339cc71e0f3a3ed55bfeeb3b"}
|
| 5 |
+
{"case_id": "ps_20_act_demo1_npy_20", "image_path": "images/scene_04.png", "action_path": "actions/ps_20_act_demo1_npy_20_action.npy", "prompt_path": "prompts/ps_20_act_demo1_npy_20.json", "scene_index": 4, "action_label": "fireball", "switch_frame": 160, "seed": 20260545, "prompt_before_en": "I am an apprentice sorcerer inside a circular tower library, calmly moving in first-person view near scrolls, bookshelves, an astrolabe, and tall arched windows, with my hands and robe sleeves visible and no magical effects.", "prompt_before_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", "prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", "action_sha256": "d50223bd926539f53beb9aad94846eee5cc897faebff7fe1cfdaac865e487a33", "prompt_sha256": "2d39209a96366208b1879826a07486b01104551543cc687c3b3bcf05f0a293b2"}
|
| 6 |
+
{"case_id": "ps_25_act_demo2_npy_25", "image_path": "images/scene_05.png", "action_path": "actions/ps_25_act_demo2_npy_25_action.npy", "prompt_path": "prompts/ps_25_act_demo2_npy_25.json", "scene_index": 5, "action_label": "fireball", "switch_frame": 160, "seed": 20260550, "prompt_before_en": "I am a shaman at the edge of a snowy ritual clearing, calmly moving in first-person view with fur sleeves, gloved hands, and a carved wand visible, facing stone markers and pine trees with no magical effects.", "prompt_before_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", "prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", "action_sha256": "91a06b24e1a29fc8cc73fe0ee4f7a58f62a25fa8e8887a701fffb23dbc00e3a2", "prompt_sha256": "a174706d5104ba2f13f8c3e8331d6cc2d4029e4d34231f7dc1a14ec5b5f82702"}
|
| 7 |
+
{"case_id": "custom_00_court_present_painting", "image_path": "images/scene_06_court.png", "action_path": "actions/custom_00_court_present_painting_action.npy", "prompt_path": "prompts/custom_00_court_present_painting.json", "scene_index": 6, "action_label": "present_painting", "switch_frame": 160, "seed": 2026060201, "prompt_before_en": "I am walking calmly in first-person view through an elegant European royal court hall, with white gloved hands and embroidered sleeves visible, polished marble floor, gilded decor, chandeliers, velvet curtains, and a presentation area ahead. No object is presented yet.", "prompt_before_zh": "我以第一人称视角在优雅的欧洲宫廷大厅中平静行走,画面下方可见白色手套和绣花袖口,前方有抛光大理石地面、镀金装饰、枝形吊灯、天鹅绒帘幕和献礼区域,此时还没有献上物品。", "prompt_after_en": "Still in first-person view in the same court hall, I slow my steps, reach into a portfolio, pull out a framed painting, and present it forward with both hands toward the royal court, while the camera motion remains continuous.", "prompt_after_zh": "仍在同一宫廷大厅的第一人称视角中,我放慢脚步,从画夹中取出一幅装裱画作,双手向前把画作献给宫廷,镜头运动保持连续。", "image_sha256": "a42bab7dd00b61e85dae3332c7fb439d5cfaac62306e526c0c33e317e53229b6", "action_sha256": "9b832826cbb2a7467b308fb1d68c07f39f03f4ee34ed0ee8ed3971e9bfe972d8", "prompt_sha256": "5cbd2f54eda435fa9ef1342e271e4e7dfcc4c807f8b532f4f0f838619cead74b"}
|
| 8 |
+
{"case_id": "custom_01_seaside_jump_swim", "image_path": "images/scene_07_seaside.png", "action_path": "actions/custom_01_seaside_jump_swim_action.npy", "prompt_path": "prompts/custom_01_seaside_jump_swim.json", "scene_index": 7, "action_label": "swim_into_sea", "switch_frame": 160, "seed": 2026060202, "prompt_before_en": "I am walking calmly in first-person view along a rocky seaside path facing the open ocean, with my hands visible near the lower edge, clear blue water ahead, gentle waves, and a bright coastal horizon. I have not entered the water yet.", "prompt_before_zh": "我以第一人称视角沿着海边岩石小路平静散步,面向开阔大海,画面下方可见双手,前方是清澈蓝色海水、轻柔海浪和明亮海岸线,此时还没有入水。", "prompt_after_en": "Still in first-person view at the same seaside, I step forward, jump into the clear water, create a splash, then swim forward toward the open sea with my arms moving at the edges of the frame, while the shot stays continuous.", "prompt_after_zh": "仍在同一海边的第一人称视角中,我向前迈步跳入清澈海水,激起水花,随后朝开阔大海向前游泳,画面边缘可见手臂划动,镜头保持连续。", "image_sha256": "18266fdd1804fddf097b45aac7e7d36727ff39befa4c82432fa92b2cad393c16", "action_sha256": "0d3853551281b4b01b88b121eddfef34c6a69cb591bda4a8aefa7a841131cf4f", "prompt_sha256": "dce21bb3b7508ce01c6ac569d54a7cd37419d9d3798aa7fbfc71ef79fa6120cc"}
|
switch_inference/prompts/custom_00_court_present_painting.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"case_id": "custom_00_court_present_painting",
|
| 3 |
-
"scene_index":
|
| 4 |
"action_label": "present_painting",
|
| 5 |
"seed": 2026060201,
|
| 6 |
"switch_frame": 160,
|
| 7 |
-
"image_path": "images/
|
| 8 |
"action_path": "actions/custom_00_court_present_painting_action.npy",
|
| 9 |
"action_type": "camera_trajectory",
|
| 10 |
"action_format": {
|
|
|
|
| 1 |
{
|
| 2 |
"case_id": "custom_00_court_present_painting",
|
| 3 |
+
"scene_index": 6,
|
| 4 |
"action_label": "present_painting",
|
| 5 |
"seed": 2026060201,
|
| 6 |
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_06_court.png",
|
| 8 |
"action_path": "actions/custom_00_court_present_painting_action.npy",
|
| 9 |
"action_type": "camera_trajectory",
|
| 10 |
"action_format": {
|
switch_inference/prompts/custom_01_seaside_jump_swim.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"case_id": "custom_01_seaside_jump_swim",
|
| 3 |
-
"scene_index":
|
| 4 |
"action_label": "swim_into_sea",
|
| 5 |
"seed": 2026060202,
|
| 6 |
"switch_frame": 160,
|
| 7 |
-
"image_path": "images/
|
| 8 |
"action_path": "actions/custom_01_seaside_jump_swim_action.npy",
|
| 9 |
"action_type": "camera_trajectory",
|
| 10 |
"action_format": {
|
|
|
|
| 1 |
{
|
| 2 |
"case_id": "custom_01_seaside_jump_swim",
|
| 3 |
+
"scene_index": 7,
|
| 4 |
"action_label": "swim_into_sea",
|
| 5 |
"seed": 2026060202,
|
| 6 |
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_07_seaside.png",
|
| 8 |
"action_path": "actions/custom_01_seaside_jump_swim_action.npy",
|
| 9 |
"action_type": "camera_trajectory",
|
| 10 |
"action_format": {
|
switch_inference/prompts/ps_00_act_demo0_npy_00.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"case_id": "ps_00_act_demo0_npy_00",
|
| 3 |
+
"scene_index": 0,
|
| 4 |
+
"action_label": "fireball",
|
| 5 |
+
"seed": 20260525,
|
| 6 |
+
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_00.png",
|
| 8 |
+
"action_path": "actions/ps_00_act_demo0_npy_00_action.npy",
|
| 9 |
+
"action_type": "camera_trajectory",
|
| 10 |
+
"action_format": {
|
| 11 |
+
"file_format": "npy",
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"shape": [
|
| 14 |
+
321,
|
| 15 |
+
4,
|
| 16 |
+
4
|
| 17 |
+
],
|
| 18 |
+
"description": "Original source camera trajectory. The 321 poses correspond to 320 generated frames plus the initial pose."
|
| 19 |
+
},
|
| 20 |
+
"prompt_before": {
|
| 21 |
+
"en": "I am an alchemist in a warm stone laboratory, calmly moving in first-person view among glass vessels, brass instruments, and a wooden workbench, with my gloved hands and robe sleeves visible and no magical effects.",
|
| 22 |
+
"zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。"
|
| 23 |
+
},
|
| 24 |
+
"prompt_after": {
|
| 25 |
+
"en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 26 |
+
"zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 27 |
+
},
|
| 28 |
+
"prompt_schedule": [
|
| 29 |
+
{
|
| 30 |
+
"frame_start": 0,
|
| 31 |
+
"frame_end": 159,
|
| 32 |
+
"prompt_key": "prompt_before"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"frame_start": 160,
|
| 36 |
+
"frame_end": 319,
|
| 37 |
+
"prompt_key": "prompt_after"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"source": {
|
| 41 |
+
"image_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 42 |
+
"trajectory_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 43 |
+
"selection_note": "Kept as one representative original data point for this source scene."
|
| 44 |
+
}
|
| 45 |
+
}
|
switch_inference/prompts/ps_05_act_demo1_npy_05.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"case_id": "ps_05_act_demo1_npy_05",
|
| 3 |
+
"scene_index": 1,
|
| 4 |
+
"action_label": "fireball",
|
| 5 |
+
"seed": 20260530,
|
| 6 |
+
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_01.png",
|
| 8 |
+
"action_path": "actions/ps_05_act_demo1_npy_05_action.npy",
|
| 9 |
+
"action_type": "camera_trajectory",
|
| 10 |
+
"action_format": {
|
| 11 |
+
"file_format": "npy",
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"shape": [
|
| 14 |
+
321,
|
| 15 |
+
4,
|
| 16 |
+
4
|
| 17 |
+
],
|
| 18 |
+
"description": "Original source camera trajectory. The 321 poses correspond to 320 generated frames plus the initial pose."
|
| 19 |
+
},
|
| 20 |
+
"prompt_before": {
|
| 21 |
+
"en": "I am a witch inside a moonlit wooden hut, calmly moving in first-person view near an open spellbook, candles, hanging herbs, shelves of jars, and a crooked window, with my hands and sleeves visible and no magical effects.",
|
| 22 |
+
"zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。"
|
| 23 |
+
},
|
| 24 |
+
"prompt_after": {
|
| 25 |
+
"en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 26 |
+
"zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 27 |
+
},
|
| 28 |
+
"prompt_schedule": [
|
| 29 |
+
{
|
| 30 |
+
"frame_start": 0,
|
| 31 |
+
"frame_end": 159,
|
| 32 |
+
"prompt_key": "prompt_before"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"frame_start": 160,
|
| 36 |
+
"frame_end": 319,
|
| 37 |
+
"prompt_key": "prompt_after"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"source": {
|
| 41 |
+
"image_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 42 |
+
"trajectory_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 43 |
+
"selection_note": "Kept as one representative original data point for this source scene."
|
| 44 |
+
}
|
| 45 |
+
}
|
switch_inference/prompts/ps_10_act_demo2_npy_10.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"case_id": "ps_10_act_demo2_npy_10",
|
| 3 |
+
"scene_index": 2,
|
| 4 |
+
"action_label": "fireball",
|
| 5 |
+
"seed": 20260535,
|
| 6 |
+
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_02.png",
|
| 8 |
+
"action_path": "actions/ps_10_act_demo2_npy_10_action.npy",
|
| 9 |
+
"action_type": "camera_trajectory",
|
| 10 |
+
"action_format": {
|
| 11 |
+
"file_format": "npy",
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"shape": [
|
| 14 |
+
321,
|
| 15 |
+
4,
|
| 16 |
+
4
|
| 17 |
+
],
|
| 18 |
+
"description": "Original source camera trajectory. The 321 poses correspond to 320 generated frames plus the initial pose."
|
| 19 |
+
},
|
| 20 |
+
"prompt_before": {
|
| 21 |
+
"en": "I am a robed wizard walking calmly through a misty enchanted forest clearing in first-person view, holding a carved wooden staff at the edge of frame, with no magical effects.",
|
| 22 |
+
"zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。"
|
| 23 |
+
},
|
| 24 |
+
"prompt_after": {
|
| 25 |
+
"en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 26 |
+
"zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 27 |
+
},
|
| 28 |
+
"prompt_schedule": [
|
| 29 |
+
{
|
| 30 |
+
"frame_start": 0,
|
| 31 |
+
"frame_end": 159,
|
| 32 |
+
"prompt_key": "prompt_before"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"frame_start": 160,
|
| 36 |
+
"frame_end": 319,
|
| 37 |
+
"prompt_key": "prompt_after"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"source": {
|
| 41 |
+
"image_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 42 |
+
"trajectory_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 43 |
+
"selection_note": "Kept as one representative original data point for this source scene."
|
| 44 |
+
}
|
| 45 |
+
}
|
switch_inference/prompts/ps_15_act_demo0_npy_15.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"case_id": "ps_15_act_demo0_npy_15",
|
| 3 |
+
"scene_index": 3,
|
| 4 |
+
"action_label": "fireball",
|
| 5 |
+
"seed": 20260540,
|
| 6 |
+
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_03.png",
|
| 8 |
+
"action_path": "actions/ps_15_act_demo0_npy_15_action.npy",
|
| 9 |
+
"action_type": "camera_trajectory",
|
| 10 |
+
"action_format": {
|
| 11 |
+
"file_format": "npy",
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"shape": [
|
| 14 |
+
321,
|
| 15 |
+
4,
|
| 16 |
+
4
|
| 17 |
+
],
|
| 18 |
+
"description": "Original source camera trajectory. The 321 poses correspond to 320 generated frames plus the initial pose."
|
| 19 |
+
},
|
| 20 |
+
"prompt_before": {
|
| 21 |
+
"en": "I am a battle mage calmly walking along castle battlements at dusk in first-person view, holding a staff near the lower-right foreground while the valley and mountains stay ahead, with no magical effects.",
|
| 22 |
+
"zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。"
|
| 23 |
+
},
|
| 24 |
+
"prompt_after": {
|
| 25 |
+
"en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 26 |
+
"zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 27 |
+
},
|
| 28 |
+
"prompt_schedule": [
|
| 29 |
+
{
|
| 30 |
+
"frame_start": 0,
|
| 31 |
+
"frame_end": 159,
|
| 32 |
+
"prompt_key": "prompt_before"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"frame_start": 160,
|
| 36 |
+
"frame_end": 319,
|
| 37 |
+
"prompt_key": "prompt_after"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"source": {
|
| 41 |
+
"image_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 42 |
+
"trajectory_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 43 |
+
"selection_note": "Kept as one representative original data point for this source scene."
|
| 44 |
+
}
|
| 45 |
+
}
|
switch_inference/prompts/ps_20_act_demo1_npy_20.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"case_id": "ps_20_act_demo1_npy_20",
|
| 3 |
+
"scene_index": 4,
|
| 4 |
+
"action_label": "fireball",
|
| 5 |
+
"seed": 20260545,
|
| 6 |
+
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_04.png",
|
| 8 |
+
"action_path": "actions/ps_20_act_demo1_npy_20_action.npy",
|
| 9 |
+
"action_type": "camera_trajectory",
|
| 10 |
+
"action_format": {
|
| 11 |
+
"file_format": "npy",
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"shape": [
|
| 14 |
+
321,
|
| 15 |
+
4,
|
| 16 |
+
4
|
| 17 |
+
],
|
| 18 |
+
"description": "Original source camera trajectory. The 321 poses correspond to 320 generated frames plus the initial pose."
|
| 19 |
+
},
|
| 20 |
+
"prompt_before": {
|
| 21 |
+
"en": "I am an apprentice sorcerer inside a circular tower library, calmly moving in first-person view near scrolls, bookshelves, an astrolabe, and tall arched windows, with my hands and robe sleeves visible and no magical effects.",
|
| 22 |
+
"zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。"
|
| 23 |
+
},
|
| 24 |
+
"prompt_after": {
|
| 25 |
+
"en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 26 |
+
"zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 27 |
+
},
|
| 28 |
+
"prompt_schedule": [
|
| 29 |
+
{
|
| 30 |
+
"frame_start": 0,
|
| 31 |
+
"frame_end": 159,
|
| 32 |
+
"prompt_key": "prompt_before"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"frame_start": 160,
|
| 36 |
+
"frame_end": 319,
|
| 37 |
+
"prompt_key": "prompt_after"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"source": {
|
| 41 |
+
"image_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 42 |
+
"trajectory_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 43 |
+
"selection_note": "Kept as one representative original data point for this source scene."
|
| 44 |
+
}
|
| 45 |
+
}
|
switch_inference/prompts/ps_25_act_demo2_npy_25.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"case_id": "ps_25_act_demo2_npy_25",
|
| 3 |
+
"scene_index": 5,
|
| 4 |
+
"action_label": "fireball",
|
| 5 |
+
"seed": 20260550,
|
| 6 |
+
"switch_frame": 160,
|
| 7 |
+
"image_path": "images/scene_05.png",
|
| 8 |
+
"action_path": "actions/ps_25_act_demo2_npy_25_action.npy",
|
| 9 |
+
"action_type": "camera_trajectory",
|
| 10 |
+
"action_format": {
|
| 11 |
+
"file_format": "npy",
|
| 12 |
+
"dtype": "float32",
|
| 13 |
+
"shape": [
|
| 14 |
+
321,
|
| 15 |
+
4,
|
| 16 |
+
4
|
| 17 |
+
],
|
| 18 |
+
"description": "Original source camera trajectory. The 321 poses correspond to 320 generated frames plus the initial pose."
|
| 19 |
+
},
|
| 20 |
+
"prompt_before": {
|
| 21 |
+
"en": "I am a shaman at the edge of a snowy ritual clearing, calmly moving in first-person view with fur sleeves, gloved hands, and a carved wand visible, facing stone markers and pine trees with no magical effects.",
|
| 22 |
+
"zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。"
|
| 23 |
+
},
|
| 24 |
+
"prompt_after": {
|
| 25 |
+
"en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 26 |
+
"zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 27 |
+
},
|
| 28 |
+
"prompt_schedule": [
|
| 29 |
+
{
|
| 30 |
+
"frame_start": 0,
|
| 31 |
+
"frame_end": 159,
|
| 32 |
+
"prompt_key": "prompt_before"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"frame_start": 160,
|
| 36 |
+
"frame_end": 319,
|
| 37 |
+
"prompt_key": "prompt_after"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"source": {
|
| 41 |
+
"image_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 42 |
+
"trajectory_source": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 43 |
+
"selection_note": "Kept as one representative original data point for this source scene."
|
| 44 |
+
}
|
| 45 |
+
}
|
switch_inference/source_metadata/generated_cases.json
CHANGED
|
@@ -1,5 +1,14 @@
|
|
| 1 |
{
|
| 2 |
-
"created_at": "2026-06-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
"image_mode": "OpenAI built-in image generation",
|
| 4 |
"trajectory_mode": "procedural first-person camera paths",
|
| 5 |
"image_sources": {
|
|
@@ -9,7 +18,7 @@
|
|
| 9 |
1690,
|
| 10 |
931
|
| 11 |
],
|
| 12 |
-
"resized_image_path": "images/
|
| 13 |
"resized_image_size": [
|
| 14 |
1280,
|
| 15 |
704
|
|
@@ -22,7 +31,7 @@
|
|
| 22 |
1691,
|
| 23 |
930
|
| 24 |
],
|
| 25 |
-
"resized_image_path": "images/
|
| 26 |
"resized_image_size": [
|
| 27 |
1280,
|
| 28 |
704
|
|
@@ -31,6 +40,54 @@
|
|
| 31 |
}
|
| 32 |
},
|
| 33 |
"cases": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
{
|
| 35 |
"case_id": "custom_00_court_present_painting",
|
| 36 |
"action_label": "present_painting",
|
|
|
|
| 1 |
{
|
| 2 |
+
"created_at": "2026-06-02T17:05:29.994273+00:00",
|
| 3 |
+
"original_source_url": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs",
|
| 4 |
+
"original_case_selection": [
|
| 5 |
+
"ps_00_act_demo0_npy_00",
|
| 6 |
+
"ps_05_act_demo1_npy_05",
|
| 7 |
+
"ps_10_act_demo2_npy_10",
|
| 8 |
+
"ps_15_act_demo0_npy_15",
|
| 9 |
+
"ps_20_act_demo1_npy_20",
|
| 10 |
+
"ps_25_act_demo2_npy_25"
|
| 11 |
+
],
|
| 12 |
"image_mode": "OpenAI built-in image generation",
|
| 13 |
"trajectory_mode": "procedural first-person camera paths",
|
| 14 |
"image_sources": {
|
|
|
|
| 18 |
1690,
|
| 19 |
931
|
| 20 |
],
|
| 21 |
+
"resized_image_path": "images/scene_06_court.png",
|
| 22 |
"resized_image_size": [
|
| 23 |
1280,
|
| 24 |
704
|
|
|
|
| 31 |
1691,
|
| 32 |
930
|
| 33 |
],
|
| 34 |
+
"resized_image_path": "images/scene_07_seaside.png",
|
| 35 |
"resized_image_size": [
|
| 36 |
1280,
|
| 37 |
704
|
|
|
|
| 40 |
}
|
| 41 |
},
|
| 42 |
"cases": [
|
| 43 |
+
{
|
| 44 |
+
"case_id": "ps_00_act_demo0_npy_00",
|
| 45 |
+
"action_label": "fireball",
|
| 46 |
+
"prompt_before_en": "I am an alchemist in a warm stone laboratory, calmly moving in first-person view among glass vessels, brass instruments, and a wooden workbench, with my gloved hands and robe sleeves visible and no magical effects.",
|
| 47 |
+
"prompt_before_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。",
|
| 48 |
+
"prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 49 |
+
"prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"case_id": "ps_05_act_demo1_npy_05",
|
| 53 |
+
"action_label": "fireball",
|
| 54 |
+
"prompt_before_en": "I am a witch inside a moonlit wooden hut, calmly moving in first-person view near an open spellbook, candles, hanging herbs, shelves of jars, and a crooked window, with my hands and sleeves visible and no magical effects.",
|
| 55 |
+
"prompt_before_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。",
|
| 56 |
+
"prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 57 |
+
"prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"case_id": "ps_10_act_demo2_npy_10",
|
| 61 |
+
"action_label": "fireball",
|
| 62 |
+
"prompt_before_en": "I am a robed wizard walking calmly through a misty enchanted forest clearing in first-person view, holding a carved wooden staff at the edge of frame, with no magical effects.",
|
| 63 |
+
"prompt_before_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。",
|
| 64 |
+
"prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 65 |
+
"prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"case_id": "ps_15_act_demo0_npy_15",
|
| 69 |
+
"action_label": "fireball",
|
| 70 |
+
"prompt_before_en": "I am a battle mage calmly walking along castle battlements at dusk in first-person view, holding a staff near the lower-right foreground while the valley and mountains stay ahead, with no magical effects.",
|
| 71 |
+
"prompt_before_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。",
|
| 72 |
+
"prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 73 |
+
"prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"case_id": "ps_20_act_demo1_npy_20",
|
| 77 |
+
"action_label": "fireball",
|
| 78 |
+
"prompt_before_en": "I am an apprentice sorcerer inside a circular tower library, calmly moving in first-person view near scrolls, bookshelves, an astrolabe, and tall arched windows, with my hands and robe sleeves visible and no magical effects.",
|
| 79 |
+
"prompt_before_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。",
|
| 80 |
+
"prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 81 |
+
"prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"case_id": "ps_25_act_demo2_npy_25",
|
| 85 |
+
"action_label": "fireball",
|
| 86 |
+
"prompt_before_en": "I am a shaman at the edge of a snowy ritual clearing, calmly moving in first-person view with fur sleeves, gloved hands, and a carved wand visible, facing stone markers and pine trees with no magical effects.",
|
| 87 |
+
"prompt_before_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。",
|
| 88 |
+
"prompt_after_en": "Still in first-person view in the same scene, I raise my hand forward and release a bright orange fireball, with swirling flames appearing in front of me while the camera motion remains continuous.",
|
| 89 |
+
"prompt_after_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。"
|
| 90 |
+
},
|
| 91 |
{
|
| 92 |
"case_id": "custom_00_court_present_painting",
|
| 93 |
"action_label": "present_painting",
|