diff --git a/switch_inference/README.md b/switch_inference/README.md index cc0508a9610969cdd9584b03b35c0615c7db12a2..2026ff3cd2ff9c80c119239da50d8b08951f1e5f 100644 --- a/switch_inference/README.md +++ b/switch_inference/README.md @@ -1,28 +1,31 @@ # switch_inference 数据格式说明 -本目录整理自源数据集: +本目录包含 2 条第一视角 prompt switch 推理数据,覆盖上一版 30 条 magic action 样本。每条样本由一张输入图像、一个相机动作轨迹和一份包含 switch 前后 prompt 的 JSON 文件组成。 -`https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs` +## 数据点 -该数据用于 prompt switch 推理评测。每条样本由一张输入图像、一个相机动作轨迹和一份包含 switch 前后 prompt 的 JSON 文件组成。数据只包含推理输入,不包含生成视频、训练输出或训练产物。 +| case_id | 场景 | switch 前 | switch 后 | +| --- | --- | --- | --- | +| `custom_00_court_present_painting` | 欧洲风格宫廷大厅 | 第一视角在宫廷中行走 | 掏出画作并双手献上 | +| `custom_01_seaside_jump_swim` | 海边面向大海 | 第一视角在海边散步 | 跳入水中并向前游泳 | ## 目录结构 ```text switch_inference/ - images/ # 去重后的输入图像,共 6 张 - actions/ # 每个 case 一条 camera trajectory,共 30 个 .npy - prompts/ # 每个 case 一份 prompt JSON,共 30 个 - source_metadata/ # 源数据的摘要、来源和原始 prompt pair + images/ # 输入图像,共 2 张,均为 AI 生成后裁剪到 1280x704 + actions/ # 每个 case 一条 camera trajectory,共 2 个 .npy + prompts/ # 每个 case 一份 prompt JSON,共 2 个 + source_metadata/ # 图像生成 prompt、轨迹生成说明和构建摘要 manifest.jsonl # 逐行 JSON manifest,推荐程序读取 manifest.csv # CSV 版本 manifest,方便人工查看 - dataset_info.json # 本次整理后的全局信息 + dataset_info.json # 全局信息 README.md # 本说明文档 ``` -## 样本字段 +## Manifest 字段 -`manifest.jsonl` 每一行对应一个 case,关键字段如下: +`manifest.jsonl` 每一行对应一个 case: | 字段 | 含义 | | --- | --- | @@ -30,22 +33,20 @@ switch_inference/ | `image_path` | 输入图像路径,相对 `switch_inference/` | | `action_path` | 相机动作轨迹路径,相对 `switch_inference/` | | `prompt_path` | prompt JSON 路径,相对 `switch_inference/` | -| `scene_index` | 源场景编号 | | `action_label` | switch 后动作标签 | | `switch_frame` | prompt 切换帧,当前为 160 | -| `seed` | 源样本使用的随机种子 | | `prompt_before_en` / `prompt_before_zh` | switch 前 prompt | | `prompt_after_en` / `prompt_after_zh` | switch 后 prompt | ## Prompt JSON -`prompts/.json` 包含完整 prompt 信息: +`prompts/.json` 包含完整 prompt 和调度信息: ```json { - "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", + "case_id": "custom_00_court_present_painting", + "image_path": "images/scene_00_court.png", + "action_path": "actions/custom_00_court_present_painting_action.npy", "action_type": "camera_trajectory", "switch_frame": 160, "prompt_before": {"en": "...", "zh": "..."}, @@ -57,45 +58,23 @@ switch_inference/ } ``` -其中 `prompt_before` 是 switch 前的普通第一人称运动描述,`prompt_after` 是 switch 后动作描述。当前数据中每条视频目标长度为 320 帧,`switch_frame=160` 表示第 160 帧开始使用 `prompt_after`。 - ## Action 文件 -`actions/*.npy` 是相机动作轨迹,格式为 NumPy NPY: +`actions/*.npy` 是程序生成的第一视角相机轨迹: - `dtype`: `float32` - `shape`: `[321, 4, 4]` - 含义:每帧相机位姿矩阵;321 个 pose 对应 320 帧生成视频加初始 pose。 +- 宫廷样本:前半段平稳向前行走,后半段放慢并轻微俯视/前倾,模拟取出并献上画作。 +- 海边样本:前半段向海边行走,后半段向前入水、下沉到近水面高度并带轻微游泳摆动。 -读取示例: - -```python -import json -import numpy as np - -with open("switch_inference/manifest.jsonl", "r", encoding="utf-8") as f: - sample = json.loads(next(f)) - -image_path = "switch_inference/" + sample["image_path"] -action = np.load("switch_inference/" + sample["action_path"]) - -with open("switch_inference/" + sample["prompt_path"], "r", encoding="utf-8") as f: - prompt = json.load(f) - -prompt_before = prompt["prompt_before"]["en"] -prompt_after = prompt["prompt_after"]["en"] -switch_frame = prompt["switch_frame"] -``` +数据本身不绑定 fps;如果推理配置使用 16 fps,则 320 帧约为 20 秒,`switch_frame=160` 对应约第 10 秒。 ## 数据规模 -- case 数量:30 -- 输入图像:6 -- 动作标签:`blizzard_staff`、`fireball`、`jump`、`lightning_orb`、`summon_horse` -- 每类动作样本数:6 +- case 数量:2 +- 输入图像:2 - 图像尺寸:`1280 x 704` +- 每条目标帧数:320 +- switch frame:160 - 视角:first-person POV - -## 来源和校验 - -`dataset_info.json` 记录整理时间、源数据 URL、样本数量、文件 SHA256 摘要等信息。`source_metadata/` 保留源数据摘要和原始 prompt pair,便于追溯。 diff --git a/switch_inference/actions/custom_00_court_present_painting_action.npy b/switch_inference/actions/custom_00_court_present_painting_action.npy new file mode 100644 index 0000000000000000000000000000000000000000..f5c59efade3ccae492ec1f89ce9f97b39d7a1c65 --- /dev/null +++ b/switch_inference/actions/custom_00_court_present_painting_action.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b832826cbb2a7467b308fb1d68c07f39f03f4ee34ed0ee8ed3971e9bfe972d8 +size 20624 diff --git a/switch_inference/actions/custom_01_seaside_jump_swim_action.npy b/switch_inference/actions/custom_01_seaside_jump_swim_action.npy new file mode 100644 index 0000000000000000000000000000000000000000..4e366a0b137b02680b5bf95287fe67cd70567287 --- /dev/null +++ b/switch_inference/actions/custom_01_seaside_jump_swim_action.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d3853551281b4b01b88b121eddfef34c6a69cb591bda4a8aefa7a841131cf4f +size 20624 diff --git a/switch_inference/actions/ps_00_act_demo0_npy_00_action.npy b/switch_inference/actions/ps_00_act_demo0_npy_00_action.npy deleted file mode 100644 index 2b574537bf04aa250d7c85106219a2861eab6977..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_00_act_demo0_npy_00_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b116bc301551d199388c4b6388779045c16799df9fbdb2e73f093733345b50b -size 20672 diff --git a/switch_inference/actions/ps_01_act_demo0_npy_01_action.npy b/switch_inference/actions/ps_01_act_demo0_npy_01_action.npy deleted file mode 100644 index 5a7b26a3f72e4ab3fda5a0732a31271771cf29ff..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_01_act_demo0_npy_01_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:01bc3b67f079c59ad7a0a7d279d2955fd27f67f3e727f8d272402a9e3f1f5b85 -size 20672 diff --git a/switch_inference/actions/ps_02_act_demo0_npy_02_action.npy b/switch_inference/actions/ps_02_act_demo0_npy_02_action.npy deleted file mode 100644 index bb4b34fd9fcc3b89b2e74d9489dc87696dfb3c21..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_02_act_demo0_npy_02_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2951a263b835a3908309d30b9599786abfd82a8b1633da9f6ffb18cecf0e5221 -size 20672 diff --git a/switch_inference/actions/ps_03_act_demo0_npy_03_action.npy b/switch_inference/actions/ps_03_act_demo0_npy_03_action.npy deleted file mode 100644 index 9d8f5ebe5ad46eb7ab2fe71fefc38db35818402f..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_03_act_demo0_npy_03_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:971532afca6b64bb305e1dc5e60ea2447d487dfaa69c17a383510722377a6166 -size 20672 diff --git a/switch_inference/actions/ps_04_act_demo0_npy_04_action.npy b/switch_inference/actions/ps_04_act_demo0_npy_04_action.npy deleted file mode 100644 index df6bf58ebdcbb037d63100b8bce13691016e1cbd..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_04_act_demo0_npy_04_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e8f18338c7cda05822b93d72436d36dfe9df77cc6634cb801bc2f72ba6517c4 -size 20672 diff --git a/switch_inference/actions/ps_05_act_demo1_npy_05_action.npy b/switch_inference/actions/ps_05_act_demo1_npy_05_action.npy deleted file mode 100644 index 91367ea1cd8c0c1d09f223128fe0ed4651c872c7..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_05_act_demo1_npy_05_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:648720c9c9d3eab6c6bd22055eaaef2586e37d4d2d26de5f6ad788a2621fd5ba -size 20672 diff --git a/switch_inference/actions/ps_06_act_demo1_npy_06_action.npy b/switch_inference/actions/ps_06_act_demo1_npy_06_action.npy deleted file mode 100644 index 687de5f28d43aa3247304df80b118848079886e1..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_06_act_demo1_npy_06_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3be0ddb618d322ea14495459fe9db4c4b18ff730262d611e3eaeef1738db8d7e -size 20672 diff --git a/switch_inference/actions/ps_07_act_demo1_npy_07_action.npy b/switch_inference/actions/ps_07_act_demo1_npy_07_action.npy deleted file mode 100644 index 58061091ea6331f6b6c9426db3543c133ab26c9f..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_07_act_demo1_npy_07_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bb62a7ac4eee0efecadbad03b3209685a5f7c1556fca567c1166d56ddc5d9066 -size 20672 diff --git a/switch_inference/actions/ps_08_act_demo1_npy_08_action.npy b/switch_inference/actions/ps_08_act_demo1_npy_08_action.npy deleted file mode 100644 index 04b500f2d9fc2064895ab48e695c4fab21aa5ea1..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_08_act_demo1_npy_08_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7177c5de237dac7854570c38628d1d564e00df7c56166351e9e50f4a17da6a7 -size 20672 diff --git a/switch_inference/actions/ps_09_act_demo1_npy_09_action.npy b/switch_inference/actions/ps_09_act_demo1_npy_09_action.npy deleted file mode 100644 index ba7928d609e5e7e6981263fb44bc37d562d69ed7..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_09_act_demo1_npy_09_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2db878671e5a5922d512673ec2eaa5b273665e0a7519063366c25e7e8b8d16f5 -size 20672 diff --git a/switch_inference/actions/ps_10_act_demo2_npy_10_action.npy b/switch_inference/actions/ps_10_act_demo2_npy_10_action.npy deleted file mode 100644 index f8b5421d95f2672b27ba1c294539a82efc86e7ae..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_10_act_demo2_npy_10_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7be42f840970cf32974ef9b079c81ade5a43aa1131b9299747b88ab350bfbe57 -size 20672 diff --git a/switch_inference/actions/ps_11_act_demo2_npy_11_action.npy b/switch_inference/actions/ps_11_act_demo2_npy_11_action.npy deleted file mode 100644 index 603e5e02b353c8c07b43f043886dbe6e84135c8c..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_11_act_demo2_npy_11_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a7d3bd54d4256d698dd6e9a4735f6b720b8646be8efad591e7a66a9cdd901e8c -size 20672 diff --git a/switch_inference/actions/ps_12_act_demo2_npy_12_action.npy b/switch_inference/actions/ps_12_act_demo2_npy_12_action.npy deleted file mode 100644 index 3a74ca9ac75d7bc082dde2e6690a36665f41cde3..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_12_act_demo2_npy_12_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe1cf18ceb31a58efea53c97a8de55c287df1e7833d80e2838073bfb20e39db8 -size 20672 diff --git a/switch_inference/actions/ps_13_act_demo2_npy_13_action.npy b/switch_inference/actions/ps_13_act_demo2_npy_13_action.npy deleted file mode 100644 index 852466732bd7f99460aba24be12ece5f2e6959cf..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_13_act_demo2_npy_13_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:844cb7236223d68ad66fce7e65ecefc18a21c5ea886453e6741264832b23ca82 -size 20672 diff --git a/switch_inference/actions/ps_14_act_demo2_npy_14_action.npy b/switch_inference/actions/ps_14_act_demo2_npy_14_action.npy deleted file mode 100644 index 1f8f6f349e0e780f899238a3f0e307724ebb6702..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_14_act_demo2_npy_14_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7eacc3f1a19f3c7c8db16f3fc3223a2eca94a047d504663ad0ba371538d0add2 -size 20672 diff --git a/switch_inference/actions/ps_15_act_demo0_npy_15_action.npy b/switch_inference/actions/ps_15_act_demo0_npy_15_action.npy deleted file mode 100644 index 251bfadd1aee4145401863d57d2b398e7a8d9717..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_15_act_demo0_npy_15_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e6418edbe57c810a5cb0675bfb1e9c84842ace86cd1bea5170129ae792e2266 -size 20672 diff --git a/switch_inference/actions/ps_16_act_demo0_npy_16_action.npy b/switch_inference/actions/ps_16_act_demo0_npy_16_action.npy deleted file mode 100644 index b745929c0600b40871263768a647fd41de1f45ee..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_16_act_demo0_npy_16_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d620063aad255d548b7e50a44d86684749511c98b788cfcb2906a1278755cae0 -size 20672 diff --git a/switch_inference/actions/ps_17_act_demo0_npy_17_action.npy b/switch_inference/actions/ps_17_act_demo0_npy_17_action.npy deleted file mode 100644 index a6f06966d320c3feec67a7e7aafe3a53636a037b..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_17_act_demo0_npy_17_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ca2127a67f792c10e81f75dffec3f2f3f55d47b2036a1b75543dfbaa81bbf1a7 -size 20672 diff --git a/switch_inference/actions/ps_18_act_demo0_npy_18_action.npy b/switch_inference/actions/ps_18_act_demo0_npy_18_action.npy deleted file mode 100644 index 3cae3dc7930806f491902b43ee35a658067202d6..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_18_act_demo0_npy_18_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f33bc956dd1a651c18fb69f62adcb14c7b35240d36b1c7762ab99e5a164f451 -size 20672 diff --git a/switch_inference/actions/ps_19_act_demo0_npy_19_action.npy b/switch_inference/actions/ps_19_act_demo0_npy_19_action.npy deleted file mode 100644 index 14d0b948213fb18b27519e5e82bd8f498a7f8471..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_19_act_demo0_npy_19_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e17f7e387a81b068cec6fcc975c483454cd70ea1c1919977e8f5982445f44c87 -size 20672 diff --git a/switch_inference/actions/ps_20_act_demo1_npy_20_action.npy b/switch_inference/actions/ps_20_act_demo1_npy_20_action.npy deleted file mode 100644 index 55fe54a1fdbab64370b82680b3cf64dd02289f0b..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_20_act_demo1_npy_20_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d50223bd926539f53beb9aad94846eee5cc897faebff7fe1cfdaac865e487a33 -size 20672 diff --git a/switch_inference/actions/ps_21_act_demo1_npy_21_action.npy b/switch_inference/actions/ps_21_act_demo1_npy_21_action.npy deleted file mode 100644 index b117c8c7a81b6cc20cfdcbf98d4e02f8bb0bff0a..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_21_act_demo1_npy_21_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e33aeab81a09f49f352dd6a4a3df3344140d9bae83415f366a3f3da348c31c7 -size 20672 diff --git a/switch_inference/actions/ps_22_act_demo1_npy_22_action.npy b/switch_inference/actions/ps_22_act_demo1_npy_22_action.npy deleted file mode 100644 index 5d7dfdecbb53eccf4659d83cabef01fd03e45643..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_22_act_demo1_npy_22_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:39fec00a065c88d2b52e351c5153e8a851ddb18b896c4e33c14103df4fccf62b -size 20672 diff --git a/switch_inference/actions/ps_23_act_demo1_npy_23_action.npy b/switch_inference/actions/ps_23_act_demo1_npy_23_action.npy deleted file mode 100644 index 496d1e1f4498b1fae9b335240fb0ae01281d798e..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_23_act_demo1_npy_23_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6608ea952b36e34a18d1f3a91511a602a02c1836ae48937fecafdf389adf0ae1 -size 20672 diff --git a/switch_inference/actions/ps_24_act_demo1_npy_24_action.npy b/switch_inference/actions/ps_24_act_demo1_npy_24_action.npy deleted file mode 100644 index d51ec2a2d18daffafb07f7f590c7415889fa6442..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_24_act_demo1_npy_24_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3d61394888f70611fd8f3e0790ae6caa8f552c26d2e58f73ac29d347d479147c -size 20672 diff --git a/switch_inference/actions/ps_25_act_demo2_npy_25_action.npy b/switch_inference/actions/ps_25_act_demo2_npy_25_action.npy deleted file mode 100644 index ac7926a00d611e55fe571ea207d9b4d95b6f4d68..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_25_act_demo2_npy_25_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:91a06b24e1a29fc8cc73fe0ee4f7a58f62a25fa8e8887a701fffb23dbc00e3a2 -size 20672 diff --git a/switch_inference/actions/ps_26_act_demo2_npy_26_action.npy b/switch_inference/actions/ps_26_act_demo2_npy_26_action.npy deleted file mode 100644 index c51e1c2447468c3700386f6dbe188c48b3976470..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_26_act_demo2_npy_26_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cdb14c616626707a383d641d72a35ff5ea1f5b9a69face367826c657afefc39f -size 20672 diff --git a/switch_inference/actions/ps_27_act_demo2_npy_27_action.npy b/switch_inference/actions/ps_27_act_demo2_npy_27_action.npy deleted file mode 100644 index acc590b7000d29ebf3298613f68c1e1950987819..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_27_act_demo2_npy_27_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:89f0b1ad1314bfd3a0b251735db5914c20ca04d0a612b983aba2e283acf7247b -size 20672 diff --git a/switch_inference/actions/ps_28_act_demo2_npy_28_action.npy b/switch_inference/actions/ps_28_act_demo2_npy_28_action.npy deleted file mode 100644 index ce99f7c9d5df235423b3356dbf4c9476c40470d8..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_28_act_demo2_npy_28_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:edfbf96b25b3c02faf89a134c3ab0ebae0abe5bf6e4c4fef9ab09b19aeb88c52 -size 20672 diff --git a/switch_inference/actions/ps_29_act_demo2_npy_29_action.npy b/switch_inference/actions/ps_29_act_demo2_npy_29_action.npy deleted file mode 100644 index 5f0e91f9c03d3b33b4a8e4d653e55267b8b5e433..0000000000000000000000000000000000000000 --- a/switch_inference/actions/ps_29_act_demo2_npy_29_action.npy +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6c32853475d00ea4ead5085743778d3d691a5198a515388c5b3377308c431c22 -size 20672 diff --git a/switch_inference/dataset_info.json b/switch_inference/dataset_info.json index c6fe70a9145ffbee4ca24a03f45430ce0723c7fd..9191ed0ebf11e5c8ac227010653656d7903310a4 100644 --- a/switch_inference/dataset_info.json +++ b/switch_inference/dataset_info.json @@ -1,9 +1,8 @@ { "dataset_name": "switch_inference", - "source_url": "https://huggingface.co/datasets/Andyson/lingbot/tree/main/prompt-switch/2026-05-25_magic_prompt_switch_training_free_inputs", - "created_at": "2026-06-02T09:27:30.599675+00:00", - "case_count": 30, - "scene_count": 6, + "created_at": "2026-06-02T10:55:31.438436+00:00", + "case_count": 2, + "scene_count": 2, "frames_per_video": 320, "switch_frame": 160, "image_size": [ @@ -12,11 +11,8 @@ ], "perspective": "first-person POV", "action_distribution": { - "blizzard_staff": 6, - "fireball": 6, - "jump": 6, - "lightning_orb": 6, - "summon_horse": 6 + "present_painting": 1, + "swim_into_sea": 1 }, "action_format": { "file_format": "npy", @@ -27,11 +23,5 @@ 4 ] }, - "files": { - "manifest_jsonl": "manifest.jsonl", - "manifest_csv": "manifest.csv", - "images_dir": "images/", - "actions_dir": "actions/", - "prompts_dir": "prompts/" - } + "overwrite_note": "This two-case dataset intentionally overwrites the previous 30-case switch_inference upload." } diff --git a/switch_inference/images/scene_00.png b/switch_inference/images/scene_00.png deleted file mode 100644 index 8125756c818d402eef48994540b31aed3806022b..0000000000000000000000000000000000000000 --- a/switch_inference/images/scene_00.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115 -size 1363191 diff --git a/switch_inference/images/scene_00_court.png b/switch_inference/images/scene_00_court.png new file mode 100644 index 0000000000000000000000000000000000000000..39dd66c31d86d1b039972c26a8a1076284368479 --- /dev/null +++ b/switch_inference/images/scene_00_court.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42bab7dd00b61e85dae3332c7fb439d5cfaac62306e526c0c33e317e53229b6 +size 2361980 diff --git a/switch_inference/images/scene_01.png b/switch_inference/images/scene_01.png deleted file mode 100644 index 0dc7b3450d8300ef4b9fd0054d062e93693d4e9d..0000000000000000000000000000000000000000 --- a/switch_inference/images/scene_01.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e -size 1496871 diff --git a/switch_inference/images/scene_01_seaside.png b/switch_inference/images/scene_01_seaside.png new file mode 100644 index 0000000000000000000000000000000000000000..7e7d4635b6a76386119604f277d00fd0a0a49011 --- /dev/null +++ b/switch_inference/images/scene_01_seaside.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18266fdd1804fddf097b45aac7e7d36727ff39befa4c82432fa92b2cad393c16 +size 2009230 diff --git a/switch_inference/images/scene_02.png b/switch_inference/images/scene_02.png deleted file mode 100644 index fdf4a3363626a56372674e5cddce1b1ff7956690..0000000000000000000000000000000000000000 --- a/switch_inference/images/scene_02.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479 -size 1741709 diff --git a/switch_inference/images/scene_03.png b/switch_inference/images/scene_03.png deleted file mode 100644 index 894c579298cee93bf6191102e9b0ec1eccb48a57..0000000000000000000000000000000000000000 --- a/switch_inference/images/scene_03.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4 -size 1372305 diff --git a/switch_inference/images/scene_04.png b/switch_inference/images/scene_04.png deleted file mode 100644 index e02325ad4007c713e3227630db4c2587c9715377..0000000000000000000000000000000000000000 --- a/switch_inference/images/scene_04.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e -size 1489302 diff --git a/switch_inference/images/scene_05.png b/switch_inference/images/scene_05.png deleted file mode 100644 index b31219a4568a28ba46dcd9e2070c8a2cdd262e98..0000000000000000000000000000000000000000 --- a/switch_inference/images/scene_05.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842 -size 1982342 diff --git a/switch_inference/manifest.csv b/switch_inference/manifest.csv index 7b7fa8cf750ffd2e0cff9d151402dbc03e94f6c5..f927a17f57bc65f84d8bd3252387615c31343c9b 100644 --- a/switch_inference/manifest.csv +++ b/switch_inference/manifest.csv @@ -1,31 +1,3 @@ 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 -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,a8175ce15b7c1a4123e3aedf4f38a98df540306114ae0fe9fd8a2d80a85290e4 -ps_01_act_demo0_npy_01,images/scene_00.png,actions/ps_01_act_demo0_npy_01_action.npy,prompts/ps_01_act_demo0_npy_01.json,0,blizzard_staff,160,20260526,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115,01bc3b67f079c59ad7a0a7d279d2955fd27f67f3e727f8d272402a9e3f1f5b85,ba705a2efadf518b9162924ef9028059a00389caf01a08e826cc1152e9bc20fc -ps_02_act_demo0_npy_02,images/scene_00.png,actions/ps_02_act_demo0_npy_02_action.npy,prompts/ps_02_act_demo0_npy_02.json,0,lightning_orb,160,20260527,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115,2951a263b835a3908309d30b9599786abfd82a8b1633da9f6ffb18cecf0e5221,75f2b45afdef9ca573f70a629ec725a75029e7e5aeb89b7ce3460b12403db333 -ps_03_act_demo0_npy_03,images/scene_00.png,actions/ps_03_act_demo0_npy_03_action.npy,prompts/ps_03_act_demo0_npy_03.json,0,jump,160,20260528,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115,971532afca6b64bb305e1dc5e60ea2447d487dfaa69c17a383510722377a6166,419a42b4105136ade4c3a286ae83f546ed034b76ea1cd988ce6cd0dbaf937a04 -ps_04_act_demo0_npy_04,images/scene_00.png,actions/ps_04_act_demo0_npy_04_action.npy,prompts/ps_04_act_demo0_npy_04.json,0,summon_horse,160,20260529,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115,9e8f18338c7cda05822b93d72436d36dfe9df77cc6634cb801bc2f72ba6517c4,cffeea464913fec857f44d633b7efe7948ebbc331f939183a69a5a27e1b07083 -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,a044bd1ec91c7e2369873e49b48e31df52e07e4ff33fd71b2c7ab4124619ce07 -ps_06_act_demo1_npy_06,images/scene_01.png,actions/ps_06_act_demo1_npy_06_action.npy,prompts/ps_06_act_demo1_npy_06.json,1,blizzard_staff,160,20260531,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e,3be0ddb618d322ea14495459fe9db4c4b18ff730262d611e3eaeef1738db8d7e,22bb7f753b5565eddac8206db5fee9ed1017dda38843b9900baf59a38f1b200b -ps_07_act_demo1_npy_07,images/scene_01.png,actions/ps_07_act_demo1_npy_07_action.npy,prompts/ps_07_act_demo1_npy_07.json,1,lightning_orb,160,20260532,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e,bb62a7ac4eee0efecadbad03b3209685a5f7c1556fca567c1166d56ddc5d9066,90d4d4178ec00d15cf643643f99c76165ea919bf84a958ded07173411f52a189 -ps_08_act_demo1_npy_08,images/scene_01.png,actions/ps_08_act_demo1_npy_08_action.npy,prompts/ps_08_act_demo1_npy_08.json,1,jump,160,20260533,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e,d7177c5de237dac7854570c38628d1d564e00df7c56166351e9e50f4a17da6a7,29d4d73de11d91bf727e27a71a2cd8d89f075fc92236de5556f8ab3b23140416 -ps_09_act_demo1_npy_09,images/scene_01.png,actions/ps_09_act_demo1_npy_09_action.npy,prompts/ps_09_act_demo1_npy_09.json,1,summon_horse,160,20260534,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e,2db878671e5a5922d512673ec2eaa5b273665e0a7519063366c25e7e8b8d16f5,20074fa6d2594f1b22b854ed39ce505f2602e6c9d573d347816b7af4f8a6cb2b -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,9171a677dc02c47d08d6473b6d488fb98a2b774f3a036a99691c7e8b04f0578b -ps_11_act_demo2_npy_11,images/scene_02.png,actions/ps_11_act_demo2_npy_11_action.npy,prompts/ps_11_act_demo2_npy_11.json,2,blizzard_staff,160,20260536,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479,a7d3bd54d4256d698dd6e9a4735f6b720b8646be8efad591e7a66a9cdd901e8c,7a8437082638ccd2779a864aa8f2b5c6c7012e156c5d090f683d49261b551942 -ps_12_act_demo2_npy_12,images/scene_02.png,actions/ps_12_act_demo2_npy_12_action.npy,prompts/ps_12_act_demo2_npy_12.json,2,lightning_orb,160,20260537,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479,fe1cf18ceb31a58efea53c97a8de55c287df1e7833d80e2838073bfb20e39db8,3b199d3ff650d72f720017cfb5be4235cdceb8ed5a4bacfe562d708283e5e7f7 -ps_13_act_demo2_npy_13,images/scene_02.png,actions/ps_13_act_demo2_npy_13_action.npy,prompts/ps_13_act_demo2_npy_13.json,2,jump,160,20260538,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479,844cb7236223d68ad66fce7e65ecefc18a21c5ea886453e6741264832b23ca82,f2e0ee1feb0fd9db2fca18d663d288f5380e37e468df7e0b3d116ab46fed266d -ps_14_act_demo2_npy_14,images/scene_02.png,actions/ps_14_act_demo2_npy_14_action.npy,prompts/ps_14_act_demo2_npy_14.json,2,summon_horse,160,20260539,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479,7eacc3f1a19f3c7c8db16f3fc3223a2eca94a047d504663ad0ba371538d0add2,8f4921c0a96d81b7f0f8b6f8899a382fc76d32da6b17c74dada13423c1d460c2 -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,284c4de2eaecb65156a048988f10e7dbe0014ce2426bc96e222268a406e31955 -ps_16_act_demo0_npy_16,images/scene_03.png,actions/ps_16_act_demo0_npy_16_action.npy,prompts/ps_16_act_demo0_npy_16.json,3,blizzard_staff,160,20260541,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4,d620063aad255d548b7e50a44d86684749511c98b788cfcb2906a1278755cae0,5daa823f7da6e9ca19c930e1f0546643acc677fd160cde8f9d942a698dbfcba7 -ps_17_act_demo0_npy_17,images/scene_03.png,actions/ps_17_act_demo0_npy_17_action.npy,prompts/ps_17_act_demo0_npy_17.json,3,lightning_orb,160,20260542,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4,ca2127a67f792c10e81f75dffec3f2f3f55d47b2036a1b75543dfbaa81bbf1a7,4b5a6dad83db4571075f04aaafae6cca67e00d8df6afc0f107753155e83f728f -ps_18_act_demo0_npy_18,images/scene_03.png,actions/ps_18_act_demo0_npy_18_action.npy,prompts/ps_18_act_demo0_npy_18.json,3,jump,160,20260543,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4,7f33bc956dd1a651c18fb69f62adcb14c7b35240d36b1c7762ab99e5a164f451,f222637d1681dd7167cc59d1af4541e6eb1cc0addd87dbb8a10f37dc3f433bfa -ps_19_act_demo0_npy_19,images/scene_03.png,actions/ps_19_act_demo0_npy_19_action.npy,prompts/ps_19_act_demo0_npy_19.json,3,summon_horse,160,20260544,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4,e17f7e387a81b068cec6fcc975c483454cd70ea1c1919977e8f5982445f44c87,2db0d31b7cb4b7269636dfdf778838ce526485b13077437f82f77c85b4b01617 -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,d6625c152ea33242b81731c47609ebf598b3aa1ee56c883d03ed3db49c08705e -ps_21_act_demo1_npy_21,images/scene_04.png,actions/ps_21_act_demo1_npy_21_action.npy,prompts/ps_21_act_demo1_npy_21.json,4,blizzard_staff,160,20260546,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e,6e33aeab81a09f49f352dd6a4a3df3344140d9bae83415f366a3f3da348c31c7,de885176a271bf02331f58dc487e2b021b208e30b7f6f59846dd32f5ec2a00b2 -ps_22_act_demo1_npy_22,images/scene_04.png,actions/ps_22_act_demo1_npy_22_action.npy,prompts/ps_22_act_demo1_npy_22.json,4,lightning_orb,160,20260547,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e,39fec00a065c88d2b52e351c5153e8a851ddb18b896c4e33c14103df4fccf62b,4aa034673590691e71da1cbba5a0e066431e8e0cb8d317b17aa0dd78d744c244 -ps_23_act_demo1_npy_23,images/scene_04.png,actions/ps_23_act_demo1_npy_23_action.npy,prompts/ps_23_act_demo1_npy_23.json,4,jump,160,20260548,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e,6608ea952b36e34a18d1f3a91511a602a02c1836ae48937fecafdf389adf0ae1,8c7c5fa046430e44d2a422e2dd0ab10c919df37b99eab2220ff555a417f94b49 -ps_24_act_demo1_npy_24,images/scene_04.png,actions/ps_24_act_demo1_npy_24_action.npy,prompts/ps_24_act_demo1_npy_24.json,4,summon_horse,160,20260549,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e,3d61394888f70611fd8f3e0790ae6caa8f552c26d2e58f73ac29d347d479147c,8a5a383431a8e8966db9062c62dcec2cd822f78b8032fbf4fd3aade1be3c153a -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,adbe302a7fd2c40384ddb8116087a7646343db72575603b31cb78a4cb605dcce -ps_26_act_demo2_npy_26,images/scene_05.png,actions/ps_26_act_demo2_npy_26_action.npy,prompts/ps_26_act_demo2_npy_26.json,5,blizzard_staff,160,20260551,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842,cdb14c616626707a383d641d72a35ff5ea1f5b9a69face367826c657afefc39f,60d9fe549205fca83dac2b8ca824320ce18867328637f217f96d5f886e2d60b1 -ps_27_act_demo2_npy_27,images/scene_05.png,actions/ps_27_act_demo2_npy_27_action.npy,prompts/ps_27_act_demo2_npy_27.json,5,lightning_orb,160,20260552,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842,89f0b1ad1314bfd3a0b251735db5914c20ca04d0a612b983aba2e283acf7247b,66ca2f11e9b1b74228382777265c78e9ee4b0d849ffd733a0ba778feb9a247cc -ps_28_act_demo2_npy_28,images/scene_05.png,actions/ps_28_act_demo2_npy_28_action.npy,prompts/ps_28_act_demo2_npy_28.json,5,jump,160,20260553,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842,edfbf96b25b3c02faf89a134c3ab0ebae0abe5bf6e4c4fef9ab09b19aeb88c52,7cb54ebc2166c602178e799d56dd3e1d5ee745e445e567b73bc58c47f6e94cae -ps_29_act_demo2_npy_29,images/scene_05.png,actions/ps_29_act_demo2_npy_29_action.npy,prompts/ps_29_act_demo2_npy_29.json,5,summon_horse,160,20260554,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842,6c32853475d00ea4ead5085743778d3d691a5198a515388c5b3377308c431c22,33f7182a2aa165ce311ed84d5898b6c562aa660083733a4aeee98784058e3900 +custom_00_court_present_painting,images/scene_00_court.png,actions/custom_00_court_present_painting_action.npy,prompts/custom_00_court_present_painting.json,0,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,bd32231ae8f72f560d24f0d94b5b9d8d289fba9d6c08d5037f44de7e9b50b435 +custom_01_seaside_jump_swim,images/scene_01_seaside.png,actions/custom_01_seaside_jump_swim_action.npy,prompts/custom_01_seaside_jump_swim.json,1,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,81808155f57ccfdaedec2bd4605bf1d2922df06344eadd2685c7f31d94574ef2 diff --git a/switch_inference/manifest.jsonl b/switch_inference/manifest.jsonl index 5144382b6b6d337fb7c09ef26da921fda096a626..b60a06d93d4c5676e9bcadfd550998595b389bf3 100644 --- a/switch_inference/manifest.jsonl +++ b/switch_inference/manifest.jsonl @@ -1,30 +1,2 @@ -{"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": "a8175ce15b7c1a4123e3aedf4f38a98df540306114ae0fe9fd8a2d80a85290e4"} -{"case_id": "ps_01_act_demo0_npy_01", "image_path": "images/scene_00.png", "action_path": "actions/ps_01_act_demo0_npy_01_action.npy", "prompt_path": "prompts/ps_01_act_demo0_npy_01.json", "scene_index": 0, "action_label": "blizzard_staff", "switch_frame": 160, "seed": 20260526, "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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", "action_sha256": "01bc3b67f079c59ad7a0a7d279d2955fd27f67f3e727f8d272402a9e3f1f5b85", "prompt_sha256": "ba705a2efadf518b9162924ef9028059a00389caf01a08e826cc1152e9bc20fc"} -{"case_id": "ps_02_act_demo0_npy_02", "image_path": "images/scene_00.png", "action_path": "actions/ps_02_act_demo0_npy_02_action.npy", "prompt_path": "prompts/ps_02_act_demo0_npy_02.json", "scene_index": 0, "action_label": "lightning_orb", "switch_frame": 160, "seed": 20260527, "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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", "action_sha256": "2951a263b835a3908309d30b9599786abfd82a8b1633da9f6ffb18cecf0e5221", "prompt_sha256": "75f2b45afdef9ca573f70a629ec725a75029e7e5aeb89b7ce3460b12403db333"} -{"case_id": "ps_03_act_demo0_npy_03", "image_path": "images/scene_00.png", "action_path": "actions/ps_03_act_demo0_npy_03_action.npy", "prompt_path": "prompts/ps_03_act_demo0_npy_03.json", "scene_index": 0, "action_label": "jump", "switch_frame": 160, "seed": 20260528, "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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", "action_sha256": "971532afca6b64bb305e1dc5e60ea2447d487dfaa69c17a383510722377a6166", "prompt_sha256": "419a42b4105136ade4c3a286ae83f546ed034b76ea1cd988ce6cd0dbaf937a04"} -{"case_id": "ps_04_act_demo0_npy_04", "image_path": "images/scene_00.png", "action_path": "actions/ps_04_act_demo0_npy_04_action.npy", "prompt_path": "prompts/ps_04_act_demo0_npy_04.json", "scene_index": 0, "action_label": "summon_horse", "switch_frame": 160, "seed": 20260529, "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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", "action_sha256": "9e8f18338c7cda05822b93d72436d36dfe9df77cc6634cb801bc2f72ba6517c4", "prompt_sha256": "cffeea464913fec857f44d633b7efe7948ebbc331f939183a69a5a27e1b07083"} -{"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": "a044bd1ec91c7e2369873e49b48e31df52e07e4ff33fd71b2c7ab4124619ce07"} -{"case_id": "ps_06_act_demo1_npy_06", "image_path": "images/scene_01.png", "action_path": "actions/ps_06_act_demo1_npy_06_action.npy", "prompt_path": "prompts/ps_06_act_demo1_npy_06.json", "scene_index": 1, "action_label": "blizzard_staff", "switch_frame": 160, "seed": 20260531, "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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", "action_sha256": "3be0ddb618d322ea14495459fe9db4c4b18ff730262d611e3eaeef1738db8d7e", "prompt_sha256": "22bb7f753b5565eddac8206db5fee9ed1017dda38843b9900baf59a38f1b200b"} -{"case_id": "ps_07_act_demo1_npy_07", "image_path": "images/scene_01.png", "action_path": "actions/ps_07_act_demo1_npy_07_action.npy", "prompt_path": "prompts/ps_07_act_demo1_npy_07.json", "scene_index": 1, "action_label": "lightning_orb", "switch_frame": 160, "seed": 20260532, "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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", "action_sha256": "bb62a7ac4eee0efecadbad03b3209685a5f7c1556fca567c1166d56ddc5d9066", "prompt_sha256": "90d4d4178ec00d15cf643643f99c76165ea919bf84a958ded07173411f52a189"} -{"case_id": "ps_08_act_demo1_npy_08", "image_path": "images/scene_01.png", "action_path": "actions/ps_08_act_demo1_npy_08_action.npy", "prompt_path": "prompts/ps_08_act_demo1_npy_08.json", "scene_index": 1, "action_label": "jump", "switch_frame": 160, "seed": 20260533, "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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", "action_sha256": "d7177c5de237dac7854570c38628d1d564e00df7c56166351e9e50f4a17da6a7", "prompt_sha256": "29d4d73de11d91bf727e27a71a2cd8d89f075fc92236de5556f8ab3b23140416"} -{"case_id": "ps_09_act_demo1_npy_09", "image_path": "images/scene_01.png", "action_path": "actions/ps_09_act_demo1_npy_09_action.npy", "prompt_path": "prompts/ps_09_act_demo1_npy_09.json", "scene_index": 1, "action_label": "summon_horse", "switch_frame": 160, "seed": 20260534, "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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", "action_sha256": "2db878671e5a5922d512673ec2eaa5b273665e0a7519063366c25e7e8b8d16f5", "prompt_sha256": "20074fa6d2594f1b22b854ed39ce505f2602e6c9d573d347816b7af4f8a6cb2b"} -{"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": "9171a677dc02c47d08d6473b6d488fb98a2b774f3a036a99691c7e8b04f0578b"} -{"case_id": "ps_11_act_demo2_npy_11", "image_path": "images/scene_02.png", "action_path": "actions/ps_11_act_demo2_npy_11_action.npy", "prompt_path": "prompts/ps_11_act_demo2_npy_11.json", "scene_index": 2, "action_label": "blizzard_staff", "switch_frame": 160, "seed": 20260536, "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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", "action_sha256": "a7d3bd54d4256d698dd6e9a4735f6b720b8646be8efad591e7a66a9cdd901e8c", "prompt_sha256": "7a8437082638ccd2779a864aa8f2b5c6c7012e156c5d090f683d49261b551942"} -{"case_id": "ps_12_act_demo2_npy_12", "image_path": "images/scene_02.png", "action_path": "actions/ps_12_act_demo2_npy_12_action.npy", "prompt_path": "prompts/ps_12_act_demo2_npy_12.json", "scene_index": 2, "action_label": "lightning_orb", "switch_frame": 160, "seed": 20260537, "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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", "action_sha256": "fe1cf18ceb31a58efea53c97a8de55c287df1e7833d80e2838073bfb20e39db8", "prompt_sha256": "3b199d3ff650d72f720017cfb5be4235cdceb8ed5a4bacfe562d708283e5e7f7"} -{"case_id": "ps_13_act_demo2_npy_13", "image_path": "images/scene_02.png", "action_path": "actions/ps_13_act_demo2_npy_13_action.npy", "prompt_path": "prompts/ps_13_act_demo2_npy_13.json", "scene_index": 2, "action_label": "jump", "switch_frame": 160, "seed": 20260538, "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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", "action_sha256": "844cb7236223d68ad66fce7e65ecefc18a21c5ea886453e6741264832b23ca82", "prompt_sha256": "f2e0ee1feb0fd9db2fca18d663d288f5380e37e468df7e0b3d116ab46fed266d"} -{"case_id": "ps_14_act_demo2_npy_14", "image_path": "images/scene_02.png", "action_path": "actions/ps_14_act_demo2_npy_14_action.npy", "prompt_path": "prompts/ps_14_act_demo2_npy_14.json", "scene_index": 2, "action_label": "summon_horse", "switch_frame": 160, "seed": 20260539, "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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", "action_sha256": "7eacc3f1a19f3c7c8db16f3fc3223a2eca94a047d504663ad0ba371538d0add2", "prompt_sha256": "8f4921c0a96d81b7f0f8b6f8899a382fc76d32da6b17c74dada13423c1d460c2"} -{"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": "284c4de2eaecb65156a048988f10e7dbe0014ce2426bc96e222268a406e31955"} -{"case_id": "ps_16_act_demo0_npy_16", "image_path": "images/scene_03.png", "action_path": "actions/ps_16_act_demo0_npy_16_action.npy", "prompt_path": "prompts/ps_16_act_demo0_npy_16.json", "scene_index": 3, "action_label": "blizzard_staff", "switch_frame": 160, "seed": 20260541, "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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", "action_sha256": "d620063aad255d548b7e50a44d86684749511c98b788cfcb2906a1278755cae0", "prompt_sha256": "5daa823f7da6e9ca19c930e1f0546643acc677fd160cde8f9d942a698dbfcba7"} -{"case_id": "ps_17_act_demo0_npy_17", "image_path": "images/scene_03.png", "action_path": "actions/ps_17_act_demo0_npy_17_action.npy", "prompt_path": "prompts/ps_17_act_demo0_npy_17.json", "scene_index": 3, "action_label": "lightning_orb", "switch_frame": 160, "seed": 20260542, "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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", "action_sha256": "ca2127a67f792c10e81f75dffec3f2f3f55d47b2036a1b75543dfbaa81bbf1a7", "prompt_sha256": "4b5a6dad83db4571075f04aaafae6cca67e00d8df6afc0f107753155e83f728f"} -{"case_id": "ps_18_act_demo0_npy_18", "image_path": "images/scene_03.png", "action_path": "actions/ps_18_act_demo0_npy_18_action.npy", "prompt_path": "prompts/ps_18_act_demo0_npy_18.json", "scene_index": 3, "action_label": "jump", "switch_frame": 160, "seed": 20260543, "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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", "action_sha256": "7f33bc956dd1a651c18fb69f62adcb14c7b35240d36b1c7762ab99e5a164f451", "prompt_sha256": "f222637d1681dd7167cc59d1af4541e6eb1cc0addd87dbb8a10f37dc3f433bfa"} -{"case_id": "ps_19_act_demo0_npy_19", "image_path": "images/scene_03.png", "action_path": "actions/ps_19_act_demo0_npy_19_action.npy", "prompt_path": "prompts/ps_19_act_demo0_npy_19.json", "scene_index": 3, "action_label": "summon_horse", "switch_frame": 160, "seed": 20260544, "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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", "action_sha256": "e17f7e387a81b068cec6fcc975c483454cd70ea1c1919977e8f5982445f44c87", "prompt_sha256": "2db0d31b7cb4b7269636dfdf778838ce526485b13077437f82f77c85b4b01617"} -{"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": "d6625c152ea33242b81731c47609ebf598b3aa1ee56c883d03ed3db49c08705e"} -{"case_id": "ps_21_act_demo1_npy_21", "image_path": "images/scene_04.png", "action_path": "actions/ps_21_act_demo1_npy_21_action.npy", "prompt_path": "prompts/ps_21_act_demo1_npy_21.json", "scene_index": 4, "action_label": "blizzard_staff", "switch_frame": 160, "seed": 20260546, "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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", "action_sha256": "6e33aeab81a09f49f352dd6a4a3df3344140d9bae83415f366a3f3da348c31c7", "prompt_sha256": "de885176a271bf02331f58dc487e2b021b208e30b7f6f59846dd32f5ec2a00b2"} -{"case_id": "ps_22_act_demo1_npy_22", "image_path": "images/scene_04.png", "action_path": "actions/ps_22_act_demo1_npy_22_action.npy", "prompt_path": "prompts/ps_22_act_demo1_npy_22.json", "scene_index": 4, "action_label": "lightning_orb", "switch_frame": 160, "seed": 20260547, "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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", "action_sha256": "39fec00a065c88d2b52e351c5153e8a851ddb18b896c4e33c14103df4fccf62b", "prompt_sha256": "4aa034673590691e71da1cbba5a0e066431e8e0cb8d317b17aa0dd78d744c244"} -{"case_id": "ps_23_act_demo1_npy_23", "image_path": "images/scene_04.png", "action_path": "actions/ps_23_act_demo1_npy_23_action.npy", "prompt_path": "prompts/ps_23_act_demo1_npy_23.json", "scene_index": 4, "action_label": "jump", "switch_frame": 160, "seed": 20260548, "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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", "action_sha256": "6608ea952b36e34a18d1f3a91511a602a02c1836ae48937fecafdf389adf0ae1", "prompt_sha256": "8c7c5fa046430e44d2a422e2dd0ab10c919df37b99eab2220ff555a417f94b49"} -{"case_id": "ps_24_act_demo1_npy_24", "image_path": "images/scene_04.png", "action_path": "actions/ps_24_act_demo1_npy_24_action.npy", "prompt_path": "prompts/ps_24_act_demo1_npy_24.json", "scene_index": 4, "action_label": "summon_horse", "switch_frame": 160, "seed": 20260549, "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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", "action_sha256": "3d61394888f70611fd8f3e0790ae6caa8f552c26d2e58f73ac29d347d479147c", "prompt_sha256": "8a5a383431a8e8966db9062c62dcec2cd822f78b8032fbf4fd3aade1be3c153a"} -{"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": "adbe302a7fd2c40384ddb8116087a7646343db72575603b31cb78a4cb605dcce"} -{"case_id": "ps_26_act_demo2_npy_26", "image_path": "images/scene_05.png", "action_path": "actions/ps_26_act_demo2_npy_26_action.npy", "prompt_path": "prompts/ps_26_act_demo2_npy_26.json", "scene_index": 5, "action_label": "blizzard_staff", "switch_frame": 160, "seed": 20260551, "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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", "action_sha256": "cdb14c616626707a383d641d72a35ff5ea1f5b9a69face367826c657afefc39f", "prompt_sha256": "60d9fe549205fca83dac2b8ca824320ce18867328637f217f96d5f886e2d60b1"} -{"case_id": "ps_27_act_demo2_npy_27", "image_path": "images/scene_05.png", "action_path": "actions/ps_27_act_demo2_npy_27_action.npy", "prompt_path": "prompts/ps_27_act_demo2_npy_27.json", "scene_index": 5, "action_label": "lightning_orb", "switch_frame": 160, "seed": 20260552, "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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", "action_sha256": "89f0b1ad1314bfd3a0b251735db5914c20ca04d0a612b983aba2e283acf7247b", "prompt_sha256": "66ca2f11e9b1b74228382777265c78e9ee4b0d849ffd733a0ba778feb9a247cc"} -{"case_id": "ps_28_act_demo2_npy_28", "image_path": "images/scene_05.png", "action_path": "actions/ps_28_act_demo2_npy_28_action.npy", "prompt_path": "prompts/ps_28_act_demo2_npy_28.json", "scene_index": 5, "action_label": "jump", "switch_frame": 160, "seed": 20260553, "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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", "action_sha256": "edfbf96b25b3c02faf89a134c3ab0ebae0abe5bf6e4c4fef9ab09b19aeb88c52", "prompt_sha256": "7cb54ebc2166c602178e799d56dd3e1d5ee745e445e567b73bc58c47f6e94cae"} -{"case_id": "ps_29_act_demo2_npy_29", "image_path": "images/scene_05.png", "action_path": "actions/ps_29_act_demo2_npy_29_action.npy", "prompt_path": "prompts/ps_29_act_demo2_npy_29.json", "scene_index": 5, "action_label": "summon_horse", "switch_frame": 160, "seed": 20260554, "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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_after_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", "action_sha256": "6c32853475d00ea4ead5085743778d3d691a5198a515388c5b3377308c431c22", "prompt_sha256": "33f7182a2aa165ce311ed84d5898b6c562aa660083733a4aeee98784058e3900"} +{"case_id": "custom_00_court_present_painting", "image_path": "images/scene_00_court.png", "action_path": "actions/custom_00_court_present_painting_action.npy", "prompt_path": "prompts/custom_00_court_present_painting.json", "scene_index": 0, "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": "bd32231ae8f72f560d24f0d94b5b9d8d289fba9d6c08d5037f44de7e9b50b435"} +{"case_id": "custom_01_seaside_jump_swim", "image_path": "images/scene_01_seaside.png", "action_path": "actions/custom_01_seaside_jump_swim_action.npy", "prompt_path": "prompts/custom_01_seaside_jump_swim.json", "scene_index": 1, "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": "81808155f57ccfdaedec2bd4605bf1d2922df06344eadd2685c7f31d94574ef2"} diff --git a/switch_inference/prompts/custom_00_court_present_painting.json b/switch_inference/prompts/custom_00_court_present_painting.json new file mode 100644 index 0000000000000000000000000000000000000000..c30135ba533bf8e641fc6b6d6eec751bc4336fc3 --- /dev/null +++ b/switch_inference/prompts/custom_00_court_present_painting.json @@ -0,0 +1,45 @@ +{ + "case_id": "custom_00_court_present_painting", + "scene_index": 0, + "action_label": "present_painting", + "seed": 2026060201, + "switch_frame": 160, + "image_path": "images/scene_00_court.png", + "action_path": "actions/custom_00_court_present_painting_action.npy", + "action_type": "camera_trajectory", + "action_format": { + "file_format": "npy", + "dtype": "float32", + "shape": [ + 321, + 4, + 4 + ], + "description": "Per-frame first-person camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." + }, + "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.", + "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.", + "zh": "仍在同一宫廷大厅的第一人称视角中,我放慢脚步,从画夹中取出一幅装裱画作,双手向前把画作献给宫廷,镜头运动保持连续。" + }, + "prompt_schedule": [ + { + "frame_start": 0, + "frame_end": 159, + "prompt_key": "prompt_before" + }, + { + "frame_start": 160, + "frame_end": 319, + "prompt_key": "prompt_after" + } + ], + "source": { + "image_source": "OpenAI built-in image generation", + "trajectory_source": "procedural first-person camera path", + "image_generation_prompt_summary": "first-person European royal court palace hall, gloved hands, no painting visible yet" + } +} diff --git a/switch_inference/prompts/custom_01_seaside_jump_swim.json b/switch_inference/prompts/custom_01_seaside_jump_swim.json new file mode 100644 index 0000000000000000000000000000000000000000..d668fc8df98e67af78d04776b5070a7e4277e640 --- /dev/null +++ b/switch_inference/prompts/custom_01_seaside_jump_swim.json @@ -0,0 +1,45 @@ +{ + "case_id": "custom_01_seaside_jump_swim", + "scene_index": 1, + "action_label": "swim_into_sea", + "seed": 2026060202, + "switch_frame": 160, + "image_path": "images/scene_01_seaside.png", + "action_path": "actions/custom_01_seaside_jump_swim_action.npy", + "action_type": "camera_trajectory", + "action_format": { + "file_format": "npy", + "dtype": "float32", + "shape": [ + 321, + 4, + 4 + ], + "description": "Per-frame first-person camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." + }, + "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.", + "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.", + "zh": "仍在同一海边的第一人称视角中,我向前迈步跳入清澈海水,激起水花,随后朝开阔大海向前游泳,画面边缘可见手臂划动,镜头保持连续。" + }, + "prompt_schedule": [ + { + "frame_start": 0, + "frame_end": 159, + "prompt_key": "prompt_before" + }, + { + "frame_start": 160, + "frame_end": 319, + "prompt_key": "prompt_after" + } + ], + "source": { + "image_source": "OpenAI built-in image generation", + "trajectory_source": "procedural first-person camera path", + "image_generation_prompt_summary": "first-person seaside walking toward open ocean, hands visible, no swimming yet" + } +} diff --git a/switch_inference/prompts/ps_00_act_demo0_npy_00.json b/switch_inference/prompts/ps_00_act_demo0_npy_00.json deleted file mode 100644 index 0c26898cabbc87b2a7436a6ebce65a1ff3a460e6..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_00_act_demo0_npy_00.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_00_act_demo0_npy_00", - "scene_index": 0, - "action_label": "fireball", - "seed": 20260525, - "switch_frame": 160, - "image_path": "images/scene_00.png", - "action_path": "actions/ps_00_act_demo0_npy_00_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "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.", - "zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_00_act_demo0_npy_00_pose.npy", - "input_image_path": "inputs/scenes/scene_00.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_01_act_demo0_npy_01.json b/switch_inference/prompts/ps_01_act_demo0_npy_01.json deleted file mode 100644 index ca6ce6073e40fe9f45a41181b17225dbfbe8a057..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_01_act_demo0_npy_01.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_01_act_demo0_npy_01", - "scene_index": 0, - "action_label": "blizzard_staff", - "seed": 20260526, - "switch_frame": 160, - "image_path": "images/scene_00.png", - "action_path": "actions/ps_01_act_demo0_npy_01_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_01_act_demo0_npy_01_pose.npy", - "input_image_path": "inputs/scenes/scene_00.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_02_act_demo0_npy_02.json b/switch_inference/prompts/ps_02_act_demo0_npy_02.json deleted file mode 100644 index 38d38c24b7a65247a563908d15e7f96e878e54af..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_02_act_demo0_npy_02.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_02_act_demo0_npy_02", - "scene_index": 0, - "action_label": "lightning_orb", - "seed": 20260527, - "switch_frame": 160, - "image_path": "images/scene_00.png", - "action_path": "actions/ps_02_act_demo0_npy_02_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_02_act_demo0_npy_02_pose.npy", - "input_image_path": "inputs/scenes/scene_00.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_03_act_demo0_npy_03.json b/switch_inference/prompts/ps_03_act_demo0_npy_03.json deleted file mode 100644 index c85127ea915f2cad62e90fb66787bfcc8e9813af..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_03_act_demo0_npy_03.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_03_act_demo0_npy_03", - "scene_index": 0, - "action_label": "jump", - "seed": 20260528, - "switch_frame": 160, - "image_path": "images/scene_00.png", - "action_path": "actions/ps_03_act_demo0_npy_03_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_03_act_demo0_npy_03_pose.npy", - "input_image_path": "inputs/scenes/scene_00.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_04_act_demo0_npy_04.json b/switch_inference/prompts/ps_04_act_demo0_npy_04.json deleted file mode 100644 index ecb4fe941ebd0ec93c2dcdcc448873be9c39f3ae..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_04_act_demo0_npy_04.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_04_act_demo0_npy_04", - "scene_index": 0, - "action_label": "summon_horse", - "seed": 20260529, - "switch_frame": 160, - "image_path": "images/scene_00.png", - "action_path": "actions/ps_04_act_demo0_npy_04_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_04_act_demo0_npy_04_pose.npy", - "input_image_path": "inputs/scenes/scene_00.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_05_act_demo1_npy_05.json b/switch_inference/prompts/ps_05_act_demo1_npy_05.json deleted file mode 100644 index 341550412598f60f708421448f5323c61fd468ed..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_05_act_demo1_npy_05.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_05_act_demo1_npy_05", - "scene_index": 1, - "action_label": "fireball", - "seed": 20260530, - "switch_frame": 160, - "image_path": "images/scene_01.png", - "action_path": "actions/ps_05_act_demo1_npy_05_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "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.", - "zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_05_act_demo1_npy_05_pose.npy", - "input_image_path": "inputs/scenes/scene_01.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_06_act_demo1_npy_06.json b/switch_inference/prompts/ps_06_act_demo1_npy_06.json deleted file mode 100644 index 5109a7c6dbabbfba4b757c41e8d8a6c0ecac3d59..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_06_act_demo1_npy_06.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_06_act_demo1_npy_06", - "scene_index": 1, - "action_label": "blizzard_staff", - "seed": 20260531, - "switch_frame": 160, - "image_path": "images/scene_01.png", - "action_path": "actions/ps_06_act_demo1_npy_06_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_06_act_demo1_npy_06_pose.npy", - "input_image_path": "inputs/scenes/scene_01.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_07_act_demo1_npy_07.json b/switch_inference/prompts/ps_07_act_demo1_npy_07.json deleted file mode 100644 index d2a82be213909b61f27650ae97f4dd25e49585c9..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_07_act_demo1_npy_07.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_07_act_demo1_npy_07", - "scene_index": 1, - "action_label": "lightning_orb", - "seed": 20260532, - "switch_frame": 160, - "image_path": "images/scene_01.png", - "action_path": "actions/ps_07_act_demo1_npy_07_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_07_act_demo1_npy_07_pose.npy", - "input_image_path": "inputs/scenes/scene_01.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_08_act_demo1_npy_08.json b/switch_inference/prompts/ps_08_act_demo1_npy_08.json deleted file mode 100644 index 0367889931d174691a43f317ca61dd5308f950bc..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_08_act_demo1_npy_08.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_08_act_demo1_npy_08", - "scene_index": 1, - "action_label": "jump", - "seed": 20260533, - "switch_frame": 160, - "image_path": "images/scene_01.png", - "action_path": "actions/ps_08_act_demo1_npy_08_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_08_act_demo1_npy_08_pose.npy", - "input_image_path": "inputs/scenes/scene_01.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_09_act_demo1_npy_09.json b/switch_inference/prompts/ps_09_act_demo1_npy_09.json deleted file mode 100644 index 9f36cf6b581e789522c84c304527f93bfb3a4944..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_09_act_demo1_npy_09.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_09_act_demo1_npy_09", - "scene_index": 1, - "action_label": "summon_horse", - "seed": 20260534, - "switch_frame": 160, - "image_path": "images/scene_01.png", - "action_path": "actions/ps_09_act_demo1_npy_09_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_09_act_demo1_npy_09_pose.npy", - "input_image_path": "inputs/scenes/scene_01.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_10_act_demo2_npy_10.json b/switch_inference/prompts/ps_10_act_demo2_npy_10.json deleted file mode 100644 index 03d383ac148c13db6c4bccee44a90ff535f86c49..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_10_act_demo2_npy_10.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_10_act_demo2_npy_10", - "scene_index": 2, - "action_label": "fireball", - "seed": 20260535, - "switch_frame": 160, - "image_path": "images/scene_02.png", - "action_path": "actions/ps_10_act_demo2_npy_10_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "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.", - "zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_10_act_demo2_npy_10_pose.npy", - "input_image_path": "inputs/scenes/scene_02.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_11_act_demo2_npy_11.json b/switch_inference/prompts/ps_11_act_demo2_npy_11.json deleted file mode 100644 index 375c5e3a1bee839a857ed5e2d86816b23a642fa8..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_11_act_demo2_npy_11.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_11_act_demo2_npy_11", - "scene_index": 2, - "action_label": "blizzard_staff", - "seed": 20260536, - "switch_frame": 160, - "image_path": "images/scene_02.png", - "action_path": "actions/ps_11_act_demo2_npy_11_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_11_act_demo2_npy_11_pose.npy", - "input_image_path": "inputs/scenes/scene_02.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_12_act_demo2_npy_12.json b/switch_inference/prompts/ps_12_act_demo2_npy_12.json deleted file mode 100644 index 37ab600abf1e2d248ae47e94ec00424b82133c46..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_12_act_demo2_npy_12.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_12_act_demo2_npy_12", - "scene_index": 2, - "action_label": "lightning_orb", - "seed": 20260537, - "switch_frame": 160, - "image_path": "images/scene_02.png", - "action_path": "actions/ps_12_act_demo2_npy_12_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_12_act_demo2_npy_12_pose.npy", - "input_image_path": "inputs/scenes/scene_02.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_13_act_demo2_npy_13.json b/switch_inference/prompts/ps_13_act_demo2_npy_13.json deleted file mode 100644 index 759515257d5722fcb2e3b7902820feffd9f6d5f2..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_13_act_demo2_npy_13.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_13_act_demo2_npy_13", - "scene_index": 2, - "action_label": "jump", - "seed": 20260538, - "switch_frame": 160, - "image_path": "images/scene_02.png", - "action_path": "actions/ps_13_act_demo2_npy_13_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_13_act_demo2_npy_13_pose.npy", - "input_image_path": "inputs/scenes/scene_02.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_14_act_demo2_npy_14.json b/switch_inference/prompts/ps_14_act_demo2_npy_14.json deleted file mode 100644 index 92426286339e78591f3be2c74baf51ddf8ec5dc3..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_14_act_demo2_npy_14.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_14_act_demo2_npy_14", - "scene_index": 2, - "action_label": "summon_horse", - "seed": 20260539, - "switch_frame": 160, - "image_path": "images/scene_02.png", - "action_path": "actions/ps_14_act_demo2_npy_14_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_14_act_demo2_npy_14_pose.npy", - "input_image_path": "inputs/scenes/scene_02.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_15_act_demo0_npy_15.json b/switch_inference/prompts/ps_15_act_demo0_npy_15.json deleted file mode 100644 index 5f6c0997747dc9c6668a32143dbe2e5eecc2edf8..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_15_act_demo0_npy_15.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_15_act_demo0_npy_15", - "scene_index": 3, - "action_label": "fireball", - "seed": 20260540, - "switch_frame": 160, - "image_path": "images/scene_03.png", - "action_path": "actions/ps_15_act_demo0_npy_15_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "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.", - "zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_15_act_demo0_npy_15_pose.npy", - "input_image_path": "inputs/scenes/scene_03.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_16_act_demo0_npy_16.json b/switch_inference/prompts/ps_16_act_demo0_npy_16.json deleted file mode 100644 index eaecb8df476b09a8370089a3583ef3ae0a774764..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_16_act_demo0_npy_16.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_16_act_demo0_npy_16", - "scene_index": 3, - "action_label": "blizzard_staff", - "seed": 20260541, - "switch_frame": 160, - "image_path": "images/scene_03.png", - "action_path": "actions/ps_16_act_demo0_npy_16_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_16_act_demo0_npy_16_pose.npy", - "input_image_path": "inputs/scenes/scene_03.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_17_act_demo0_npy_17.json b/switch_inference/prompts/ps_17_act_demo0_npy_17.json deleted file mode 100644 index 3906a4156836c5706750d3c0e4d6289d7de66218..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_17_act_demo0_npy_17.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_17_act_demo0_npy_17", - "scene_index": 3, - "action_label": "lightning_orb", - "seed": 20260542, - "switch_frame": 160, - "image_path": "images/scene_03.png", - "action_path": "actions/ps_17_act_demo0_npy_17_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_17_act_demo0_npy_17_pose.npy", - "input_image_path": "inputs/scenes/scene_03.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_18_act_demo0_npy_18.json b/switch_inference/prompts/ps_18_act_demo0_npy_18.json deleted file mode 100644 index d98675345b43907fd0c57359525b66c3269694e8..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_18_act_demo0_npy_18.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_18_act_demo0_npy_18", - "scene_index": 3, - "action_label": "jump", - "seed": 20260543, - "switch_frame": 160, - "image_path": "images/scene_03.png", - "action_path": "actions/ps_18_act_demo0_npy_18_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_18_act_demo0_npy_18_pose.npy", - "input_image_path": "inputs/scenes/scene_03.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_19_act_demo0_npy_19.json b/switch_inference/prompts/ps_19_act_demo0_npy_19.json deleted file mode 100644 index c40fadadea5d18fbc672f65e4c4bbdcbe9138121..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_19_act_demo0_npy_19.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_19_act_demo0_npy_19", - "scene_index": 3, - "action_label": "summon_horse", - "seed": 20260544, - "switch_frame": 160, - "image_path": "images/scene_03.png", - "action_path": "actions/ps_19_act_demo0_npy_19_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_19_act_demo0_npy_19_pose.npy", - "input_image_path": "inputs/scenes/scene_03.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_20_act_demo1_npy_20.json b/switch_inference/prompts/ps_20_act_demo1_npy_20.json deleted file mode 100644 index eb8291fb7cdfd614df137c7589e23256826d36dd..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_20_act_demo1_npy_20.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_20_act_demo1_npy_20", - "scene_index": 4, - "action_label": "fireball", - "seed": 20260545, - "switch_frame": 160, - "image_path": "images/scene_04.png", - "action_path": "actions/ps_20_act_demo1_npy_20_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "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.", - "zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_20_act_demo1_npy_20_pose.npy", - "input_image_path": "inputs/scenes/scene_04.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_21_act_demo1_npy_21.json b/switch_inference/prompts/ps_21_act_demo1_npy_21.json deleted file mode 100644 index 699b9adbd97d61bcd5479a8fe7402908ab971af6..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_21_act_demo1_npy_21.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_21_act_demo1_npy_21", - "scene_index": 4, - "action_label": "blizzard_staff", - "seed": 20260546, - "switch_frame": 160, - "image_path": "images/scene_04.png", - "action_path": "actions/ps_21_act_demo1_npy_21_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_21_act_demo1_npy_21_pose.npy", - "input_image_path": "inputs/scenes/scene_04.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_22_act_demo1_npy_22.json b/switch_inference/prompts/ps_22_act_demo1_npy_22.json deleted file mode 100644 index 060648bc52253d33860461c2f21ea7e482f47be6..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_22_act_demo1_npy_22.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_22_act_demo1_npy_22", - "scene_index": 4, - "action_label": "lightning_orb", - "seed": 20260547, - "switch_frame": 160, - "image_path": "images/scene_04.png", - "action_path": "actions/ps_22_act_demo1_npy_22_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_22_act_demo1_npy_22_pose.npy", - "input_image_path": "inputs/scenes/scene_04.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_23_act_demo1_npy_23.json b/switch_inference/prompts/ps_23_act_demo1_npy_23.json deleted file mode 100644 index 9563369222d8f7c2931d8c288d83c2eaf5af3b8d..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_23_act_demo1_npy_23.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_23_act_demo1_npy_23", - "scene_index": 4, - "action_label": "jump", - "seed": 20260548, - "switch_frame": 160, - "image_path": "images/scene_04.png", - "action_path": "actions/ps_23_act_demo1_npy_23_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_23_act_demo1_npy_23_pose.npy", - "input_image_path": "inputs/scenes/scene_04.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_24_act_demo1_npy_24.json b/switch_inference/prompts/ps_24_act_demo1_npy_24.json deleted file mode 100644 index 557811b2388c3c5fbbd6d2eb955fdaf7889bd97a..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_24_act_demo1_npy_24.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_24_act_demo1_npy_24", - "scene_index": 4, - "action_label": "summon_horse", - "seed": 20260549, - "switch_frame": 160, - "image_path": "images/scene_04.png", - "action_path": "actions/ps_24_act_demo1_npy_24_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_24_act_demo1_npy_24_pose.npy", - "input_image_path": "inputs/scenes/scene_04.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_25_act_demo2_npy_25.json b/switch_inference/prompts/ps_25_act_demo2_npy_25.json deleted file mode 100644 index 0b879ce027e9de7a6d8c3de63fa6bc031ee2ded2..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_25_act_demo2_npy_25.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_25_act_demo2_npy_25", - "scene_index": 5, - "action_label": "fireball", - "seed": 20260550, - "switch_frame": 160, - "image_path": "images/scene_05.png", - "action_path": "actions/ps_25_act_demo2_npy_25_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "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.", - "zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_25_act_demo2_npy_25_pose.npy", - "input_image_path": "inputs/scenes/scene_05.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_26_act_demo2_npy_26.json b/switch_inference/prompts/ps_26_act_demo2_npy_26.json deleted file mode 100644 index 9eb0f0812e9d306cae3358ed1af8731fbb4ae1ef..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_26_act_demo2_npy_26.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_26_act_demo2_npy_26", - "scene_index": 5, - "action_label": "blizzard_staff", - "seed": 20260551, - "switch_frame": 160, - "image_path": "images/scene_05.png", - "action_path": "actions/ps_26_act_demo2_npy_26_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_26_act_demo2_npy_26_pose.npy", - "input_image_path": "inputs/scenes/scene_05.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_27_act_demo2_npy_27.json b/switch_inference/prompts/ps_27_act_demo2_npy_27.json deleted file mode 100644 index c21425e6596c959caf0f2d3ea6c991e1f2654d72..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_27_act_demo2_npy_27.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_27_act_demo2_npy_27", - "scene_index": 5, - "action_label": "lightning_orb", - "seed": 20260552, - "switch_frame": 160, - "image_path": "images/scene_05.png", - "action_path": "actions/ps_27_act_demo2_npy_27_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_27_act_demo2_npy_27_pose.npy", - "input_image_path": "inputs/scenes/scene_05.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_28_act_demo2_npy_28.json b/switch_inference/prompts/ps_28_act_demo2_npy_28.json deleted file mode 100644 index 25b53e8583bfe7adf9b8abbad76b9c6d2c54659f..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_28_act_demo2_npy_28.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_28_act_demo2_npy_28", - "scene_index": 5, - "action_label": "jump", - "seed": 20260553, - "switch_frame": 160, - "image_path": "images/scene_05.png", - "action_path": "actions/ps_28_act_demo2_npy_28_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_28_act_demo2_npy_28_pose.npy", - "input_image_path": "inputs/scenes/scene_05.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/prompts/ps_29_act_demo2_npy_29.json b/switch_inference/prompts/ps_29_act_demo2_npy_29.json deleted file mode 100644 index c5d5c4f1c37500f578d7eba07026f07fd8673340..0000000000000000000000000000000000000000 --- a/switch_inference/prompts/ps_29_act_demo2_npy_29.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "case_id": "ps_29_act_demo2_npy_29", - "scene_index": 5, - "action_label": "summon_horse", - "seed": 20260554, - "switch_frame": 160, - "image_path": "images/scene_05.png", - "action_path": "actions/ps_29_act_demo2_npy_29_action.npy", - "action_type": "camera_trajectory", - "action_format": { - "file_format": "npy", - "dtype": "float32", - "shape": [ - 321, - 4, - 4 - ], - "description": "Per-frame camera pose trajectory. The 321 poses correspond to 320 generated frames plus the initial pose." - }, - "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.", - "zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。" - }, - "prompt_after": { - "en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。" - }, - "prompt_schedule": [ - { - "frame_start": 0, - "frame_end": 159, - "prompt_key": "prompt_before" - }, - { - "frame_start": 160, - "frame_end": 319, - "prompt_key": "prompt_after" - } - ], - "source_schedule": { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_29_act_demo2_npy_29_pose.npy", - "input_image_path": "inputs/scenes/scene_05.png", - "switch_kind": "act" - } -} diff --git a/switch_inference/source_metadata/README.md b/switch_inference/source_metadata/README.md deleted file mode 100644 index 339962d3888a3846f30841dac5f5f899a265164a..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/README.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -license: other -task_categories: -- text-to-video -language: -- en -- zh -pretty_name: First-Person Magic Action Prompt Switch Inputs ---- - -# First-Person Magic Action Prompt Switch Inputs - -This folder contains the input data for the training-free SANA-WM prompt-switch evaluation run `2026-05-25_magic_prompt_switch_training_free`. - -- `images/`: 6 generated first-person POV seed images, resized to 1280x704 to match SANA-WM's default 704x1280 video crop ratio. -- `prompts/`: per-scene first-person normal-motion prompts in English and Chinese. -- `prompt_pairs/prompt_pairs.jsonl`: 30 prompt-switch pairs with first-person prompt A and prompt B. -- `prompt_schedules/`: per-case JSON schedule files used by the local runner. -- `camera_trajectories/`: 30 generated `(321, 4, 4)` NumPy camera trajectories. -- `metadata/`: schema, schedule registry, source provenance, and summary files. - -The 30 cases are balanced across five action labels: fireball, blizzard_staff, lightning_orb, jump, and summon_horse. Prompt A describes calm first-person motion; prompt B introduces the action in the second half. This upload contains input data only, not generated videos and not training artifacts. diff --git a/switch_inference/source_metadata/generated_cases.json b/switch_inference/source_metadata/generated_cases.json new file mode 100644 index 0000000000000000000000000000000000000000..4a4ee6a1c98e7fa89f44d09ab035d296bc82c234 --- /dev/null +++ b/switch_inference/source_metadata/generated_cases.json @@ -0,0 +1,51 @@ +{ + "created_at": "2026-06-02T10:55:31.438436+00:00", + "image_mode": "OpenAI built-in image generation", + "trajectory_mode": "procedural first-person camera paths", + "image_sources": { + "custom_00_court_present_painting": { + "generated_image_path": "/lustre/fsw/portfolios/nvr/users/shyang/.codex/generated_images/019e8795-7d66-7170-abb6-b22856486fdc/ig_0f92efa54c57a3cb016a1eb55f0744819985d3df1f7e13d4f7.png", + "generated_image_size": [ + 1690, + 931 + ], + "resized_image_path": "images/scene_00_court.png", + "resized_image_size": [ + 1280, + 704 + ], + "image_generation_prompt_summary": "first-person European royal court palace hall, gloved hands, no painting visible yet" + }, + "custom_01_seaside_jump_swim": { + "generated_image_path": "/lustre/fsw/portfolios/nvr/users/shyang/.codex/generated_images/019e8795-7d66-7170-abb6-b22856486fdc/ig_0f92efa54c57a3cb016a1eb5948ce08199a89875fc371c3259.png", + "generated_image_size": [ + 1691, + 930 + ], + "resized_image_path": "images/scene_01_seaside.png", + "resized_image_size": [ + 1280, + 704 + ], + "image_generation_prompt_summary": "first-person seaside walking toward open ocean, hands visible, no swimming yet" + } + }, + "cases": [ + { + "case_id": "custom_00_court_present_painting", + "action_label": "present_painting", + "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": "仍在同一宫廷大厅的第一人称视角中,我放慢脚步,从画夹中取出一幅装裱画作,双手向前把画作献给宫廷,镜头运动保持连续。" + }, + { + "case_id": "custom_01_seaside_jump_swim", + "action_label": "swim_into_sea", + "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": "仍在同一海边的第一人称视角中,我向前迈步跳入清澈海水,激起水花,随后朝开阔大海向前游泳,画面边缘可见手臂划动,镜头保持连续。" + } + ] +} diff --git a/switch_inference/source_metadata/metadata__dataset_summary.json b/switch_inference/source_metadata/metadata__dataset_summary.json deleted file mode 100644 index d4a56872c5faac7752c25e0e9e93932b80792754..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/metadata__dataset_summary.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "action_distribution": { - "blizzard_staff": 6, - "fireball": 6, - "jump": 6, - "lightning_orb": 6, - "summon_horse": 6 - }, - "case_count": 30, - "contains_camera_trajectories": true, - "contains_training_outputs": false, - "contains_videos": false, - "created_at": "2026-05-25T12:03:08.278187+00:00", - "dataset_name": "first_person_magic_action_prompt_switch_inputs", - "frames_per_video": 320, - "image_size": [ - 1280, - 704 - ], - "perspective": "first-person POV", - "scene_count": 6, - "source_run": "2026-05-25_magic_prompt_switch_training_free", - "switch_frame": 160 -} diff --git a/switch_inference/source_metadata/metadata__magic_case_metadata.json b/switch_inference/source_metadata/metadata__magic_case_metadata.json deleted file mode 100644 index 28be5eb19f207ab6cb1796d96f959c377bc5f4c4..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/metadata__magic_case_metadata.json +++ /dev/null @@ -1,334 +0,0 @@ -{ - "cases": [ - { - "action_label": "fireball", - "camera_source_path": "inputs/npy_pose/ps_00_act_demo0_npy_00_pose.npy", - "case_id": "ps_00_act_demo0_npy_00", - "pose_path": "npy_pose/ps_00_act_demo0_npy_00_pose.npy", - "role_en": "alchemist", - "role_zh": "炼金术师", - "scene_index": 0, - "scene_slug": "first_person_alchemist_lab", - "smoke_member": true - }, - { - "action_label": "blizzard_staff", - "camera_source_path": "inputs/npy_pose/ps_01_act_demo0_npy_01_pose.npy", - "case_id": "ps_01_act_demo0_npy_01", - "pose_path": "npy_pose/ps_01_act_demo0_npy_01_pose.npy", - "role_en": "alchemist", - "role_zh": "炼金术师", - "scene_index": 0, - "scene_slug": "first_person_alchemist_lab", - "smoke_member": true - }, - { - "action_label": "lightning_orb", - "camera_source_path": "inputs/npy_pose/ps_02_act_demo0_npy_02_pose.npy", - "case_id": "ps_02_act_demo0_npy_02", - "pose_path": "npy_pose/ps_02_act_demo0_npy_02_pose.npy", - "role_en": "alchemist", - "role_zh": "炼金术师", - "scene_index": 0, - "scene_slug": "first_person_alchemist_lab", - "smoke_member": true - }, - { - "action_label": "jump", - "camera_source_path": "inputs/npy_pose/ps_03_act_demo0_npy_03_pose.npy", - "case_id": "ps_03_act_demo0_npy_03", - "pose_path": "npy_pose/ps_03_act_demo0_npy_03_pose.npy", - "role_en": "alchemist", - "role_zh": "炼金术师", - "scene_index": 0, - "scene_slug": "first_person_alchemist_lab", - "smoke_member": true - }, - { - "action_label": "summon_horse", - "camera_source_path": "inputs/npy_pose/ps_04_act_demo0_npy_04_pose.npy", - "case_id": "ps_04_act_demo0_npy_04", - "pose_path": "npy_pose/ps_04_act_demo0_npy_04_pose.npy", - "role_en": "alchemist", - "role_zh": "炼金术师", - "scene_index": 0, - "scene_slug": "first_person_alchemist_lab", - "smoke_member": true - }, - { - "action_label": "fireball", - "camera_source_path": "inputs/npy_pose/ps_05_act_demo1_npy_05_pose.npy", - "case_id": "ps_05_act_demo1_npy_05", - "pose_path": "npy_pose/ps_05_act_demo1_npy_05_pose.npy", - "role_en": "witch", - "role_zh": "女巫", - "scene_index": 1, - "scene_slug": "first_person_witch_hut", - "smoke_member": false - }, - { - "action_label": "blizzard_staff", - "camera_source_path": "inputs/npy_pose/ps_06_act_demo1_npy_06_pose.npy", - "case_id": "ps_06_act_demo1_npy_06", - "pose_path": "npy_pose/ps_06_act_demo1_npy_06_pose.npy", - "role_en": "witch", - "role_zh": "女巫", - "scene_index": 1, - "scene_slug": "first_person_witch_hut", - "smoke_member": false - }, - { - "action_label": "lightning_orb", - "camera_source_path": "inputs/npy_pose/ps_07_act_demo1_npy_07_pose.npy", - "case_id": "ps_07_act_demo1_npy_07", - "pose_path": "npy_pose/ps_07_act_demo1_npy_07_pose.npy", - "role_en": "witch", - "role_zh": "女巫", - "scene_index": 1, - "scene_slug": "first_person_witch_hut", - "smoke_member": false - }, - { - "action_label": "jump", - "camera_source_path": "inputs/npy_pose/ps_08_act_demo1_npy_08_pose.npy", - "case_id": "ps_08_act_demo1_npy_08", - "pose_path": "npy_pose/ps_08_act_demo1_npy_08_pose.npy", - "role_en": "witch", - "role_zh": "女巫", - "scene_index": 1, - "scene_slug": "first_person_witch_hut", - "smoke_member": false - }, - { - "action_label": "summon_horse", - "camera_source_path": "inputs/npy_pose/ps_09_act_demo1_npy_09_pose.npy", - "case_id": "ps_09_act_demo1_npy_09", - "pose_path": "npy_pose/ps_09_act_demo1_npy_09_pose.npy", - "role_en": "witch", - "role_zh": "女巫", - "scene_index": 1, - "scene_slug": "first_person_witch_hut", - "smoke_member": false - }, - { - "action_label": "fireball", - "camera_source_path": "inputs/npy_pose/ps_10_act_demo2_npy_10_pose.npy", - "case_id": "ps_10_act_demo2_npy_10", - "pose_path": "npy_pose/ps_10_act_demo2_npy_10_pose.npy", - "role_en": "robed wizard", - "role_zh": "披袍巫师", - "scene_index": 2, - "scene_slug": "first_person_forest_wizard", - "smoke_member": false - }, - { - "action_label": "blizzard_staff", - "camera_source_path": "inputs/npy_pose/ps_11_act_demo2_npy_11_pose.npy", - "case_id": "ps_11_act_demo2_npy_11", - "pose_path": "npy_pose/ps_11_act_demo2_npy_11_pose.npy", - "role_en": "robed wizard", - "role_zh": "披袍巫师", - "scene_index": 2, - "scene_slug": "first_person_forest_wizard", - "smoke_member": false - }, - { - "action_label": "lightning_orb", - "camera_source_path": "inputs/npy_pose/ps_12_act_demo2_npy_12_pose.npy", - "case_id": "ps_12_act_demo2_npy_12", - "pose_path": "npy_pose/ps_12_act_demo2_npy_12_pose.npy", - "role_en": "robed wizard", - "role_zh": "披袍巫师", - "scene_index": 2, - "scene_slug": "first_person_forest_wizard", - "smoke_member": false - }, - { - "action_label": "jump", - "camera_source_path": "inputs/npy_pose/ps_13_act_demo2_npy_13_pose.npy", - "case_id": "ps_13_act_demo2_npy_13", - "pose_path": "npy_pose/ps_13_act_demo2_npy_13_pose.npy", - "role_en": "robed wizard", - "role_zh": "披袍巫师", - "scene_index": 2, - "scene_slug": "first_person_forest_wizard", - "smoke_member": false - }, - { - "action_label": "summon_horse", - "camera_source_path": "inputs/npy_pose/ps_14_act_demo2_npy_14_pose.npy", - "case_id": "ps_14_act_demo2_npy_14", - "pose_path": "npy_pose/ps_14_act_demo2_npy_14_pose.npy", - "role_en": "robed wizard", - "role_zh": "披袍巫师", - "scene_index": 2, - "scene_slug": "first_person_forest_wizard", - "smoke_member": false - }, - { - "action_label": "fireball", - "camera_source_path": "inputs/npy_pose/ps_15_act_demo0_npy_15_pose.npy", - "case_id": "ps_15_act_demo0_npy_15", - "pose_path": "npy_pose/ps_15_act_demo0_npy_15_pose.npy", - "role_en": "battle mage", - "role_zh": "战斗法师", - "scene_index": 3, - "scene_slug": "first_person_battlement_mage", - "smoke_member": false - }, - { - "action_label": "blizzard_staff", - "camera_source_path": "inputs/npy_pose/ps_16_act_demo0_npy_16_pose.npy", - "case_id": "ps_16_act_demo0_npy_16", - "pose_path": "npy_pose/ps_16_act_demo0_npy_16_pose.npy", - "role_en": "battle mage", - "role_zh": "战斗法师", - "scene_index": 3, - "scene_slug": "first_person_battlement_mage", - "smoke_member": false - }, - { - "action_label": "lightning_orb", - "camera_source_path": "inputs/npy_pose/ps_17_act_demo0_npy_17_pose.npy", - "case_id": "ps_17_act_demo0_npy_17", - "pose_path": "npy_pose/ps_17_act_demo0_npy_17_pose.npy", - "role_en": "battle mage", - "role_zh": "战斗法师", - "scene_index": 3, - "scene_slug": "first_person_battlement_mage", - "smoke_member": false - }, - { - "action_label": "jump", - "camera_source_path": "inputs/npy_pose/ps_18_act_demo0_npy_18_pose.npy", - "case_id": "ps_18_act_demo0_npy_18", - "pose_path": "npy_pose/ps_18_act_demo0_npy_18_pose.npy", - "role_en": "battle mage", - "role_zh": "战斗法师", - "scene_index": 3, - "scene_slug": "first_person_battlement_mage", - "smoke_member": false - }, - { - "action_label": "summon_horse", - "camera_source_path": "inputs/npy_pose/ps_19_act_demo0_npy_19_pose.npy", - "case_id": "ps_19_act_demo0_npy_19", - "pose_path": "npy_pose/ps_19_act_demo0_npy_19_pose.npy", - "role_en": "battle mage", - "role_zh": "战斗法师", - "scene_index": 3, - "scene_slug": "first_person_battlement_mage", - "smoke_member": false - }, - { - "action_label": "fireball", - "camera_source_path": "inputs/npy_pose/ps_20_act_demo1_npy_20_pose.npy", - "case_id": "ps_20_act_demo1_npy_20", - "pose_path": "npy_pose/ps_20_act_demo1_npy_20_pose.npy", - "role_en": "apprentice sorcerer", - "role_zh": "术士学徒", - "scene_index": 4, - "scene_slug": "first_person_tower_sorcerer", - "smoke_member": false - }, - { - "action_label": "blizzard_staff", - "camera_source_path": "inputs/npy_pose/ps_21_act_demo1_npy_21_pose.npy", - "case_id": "ps_21_act_demo1_npy_21", - "pose_path": "npy_pose/ps_21_act_demo1_npy_21_pose.npy", - "role_en": "apprentice sorcerer", - "role_zh": "术士学徒", - "scene_index": 4, - "scene_slug": "first_person_tower_sorcerer", - "smoke_member": false - }, - { - "action_label": "lightning_orb", - "camera_source_path": "inputs/npy_pose/ps_22_act_demo1_npy_22_pose.npy", - "case_id": "ps_22_act_demo1_npy_22", - "pose_path": "npy_pose/ps_22_act_demo1_npy_22_pose.npy", - "role_en": "apprentice sorcerer", - "role_zh": "术士学徒", - "scene_index": 4, - "scene_slug": "first_person_tower_sorcerer", - "smoke_member": false - }, - { - "action_label": "jump", - "camera_source_path": "inputs/npy_pose/ps_23_act_demo1_npy_23_pose.npy", - "case_id": "ps_23_act_demo1_npy_23", - "pose_path": "npy_pose/ps_23_act_demo1_npy_23_pose.npy", - "role_en": "apprentice sorcerer", - "role_zh": "术士学徒", - "scene_index": 4, - "scene_slug": "first_person_tower_sorcerer", - "smoke_member": false - }, - { - "action_label": "summon_horse", - "camera_source_path": "inputs/npy_pose/ps_24_act_demo1_npy_24_pose.npy", - "case_id": "ps_24_act_demo1_npy_24", - "pose_path": "npy_pose/ps_24_act_demo1_npy_24_pose.npy", - "role_en": "apprentice sorcerer", - "role_zh": "术士学徒", - "scene_index": 4, - "scene_slug": "first_person_tower_sorcerer", - "smoke_member": false - }, - { - "action_label": "fireball", - "camera_source_path": "inputs/npy_pose/ps_25_act_demo2_npy_25_pose.npy", - "case_id": "ps_25_act_demo2_npy_25", - "pose_path": "npy_pose/ps_25_act_demo2_npy_25_pose.npy", - "role_en": "shaman", - "role_zh": "萨满", - "scene_index": 5, - "scene_slug": "first_person_snow_shaman", - "smoke_member": false - }, - { - "action_label": "blizzard_staff", - "camera_source_path": "inputs/npy_pose/ps_26_act_demo2_npy_26_pose.npy", - "case_id": "ps_26_act_demo2_npy_26", - "pose_path": "npy_pose/ps_26_act_demo2_npy_26_pose.npy", - "role_en": "shaman", - "role_zh": "萨满", - "scene_index": 5, - "scene_slug": "first_person_snow_shaman", - "smoke_member": false - }, - { - "action_label": "lightning_orb", - "camera_source_path": "inputs/npy_pose/ps_27_act_demo2_npy_27_pose.npy", - "case_id": "ps_27_act_demo2_npy_27", - "pose_path": "npy_pose/ps_27_act_demo2_npy_27_pose.npy", - "role_en": "shaman", - "role_zh": "萨满", - "scene_index": 5, - "scene_slug": "first_person_snow_shaman", - "smoke_member": false - }, - { - "action_label": "jump", - "camera_source_path": "inputs/npy_pose/ps_28_act_demo2_npy_28_pose.npy", - "case_id": "ps_28_act_demo2_npy_28", - "pose_path": "npy_pose/ps_28_act_demo2_npy_28_pose.npy", - "role_en": "shaman", - "role_zh": "萨满", - "scene_index": 5, - "scene_slug": "first_person_snow_shaman", - "smoke_member": false - }, - { - "action_label": "summon_horse", - "camera_source_path": "inputs/npy_pose/ps_29_act_demo2_npy_29_pose.npy", - "case_id": "ps_29_act_demo2_npy_29", - "pose_path": "npy_pose/ps_29_act_demo2_npy_29_pose.npy", - "role_en": "shaman", - "role_zh": "萨满", - "scene_index": 5, - "scene_slug": "first_person_snow_shaman", - "smoke_member": false - } - ] -} diff --git a/switch_inference/source_metadata/metadata__prompt_schedule.schema.json b/switch_inference/source_metadata/metadata__prompt_schedule.schema.json deleted file mode 100644 index 5fea73ac31d787b77f602847d3e67850d03e74b6..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/metadata__prompt_schedule.schema.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "additionalProperties": false, - "properties": { - "camera_source_kind": { - "enum": [ - "action_dsl", - "npy_pose" - ], - "type": "string" - }, - "camera_source_path": { - "pattern": "^inputs/(action_dsl|npy_pose)/.+\\.(txt|npy)$", - "type": "string" - }, - "camera_source_sha256": { - "pattern": "^[0-9a-f]{64}$", - "type": "string" - }, - "case_id": { - "pattern": "^ps_(?P\\d{2})_(?Pbgw|obj|act)_demo(?P[0-2])_(?Pdsl|npy)_(?P\\d{2})$", - "type": "string" - }, - "input_image_path": { - "pattern": "^inputs/scenes/[A-Za-z0-9_.-]+\\.(png|jpg|jpeg|webp)$", - "type": "string" - }, - "input_image_sha256": { - "pattern": "^[0-9a-f]{64}$", - "type": "string" - }, - "prompt_a_en": { - "minLength": 1, - "type": "string" - }, - "prompt_a_zh": { - "minLength": 1, - "type": "string" - }, - "prompt_b_en": { - "minLength": 1, - "type": "string" - }, - "prompt_b_zh": { - "minLength": 1, - "type": "string" - }, - "seed": { - "minimum": 0, - "type": "integer" - }, - "switch_frame": { - "minimum": 1, - "type": "integer" - }, - "switch_kind": { - "enum": [ - "bgw", - "obj", - "act" - ], - "type": "string" - } - }, - "required": [ - "case_id", - "switch_kind", - "input_image_path", - "input_image_sha256", - "camera_source_kind", - "camera_source_path", - "camera_source_sha256", - "prompt_a_en", - "prompt_a_zh", - "prompt_b_en", - "prompt_b_zh", - "switch_frame", - "seed" - ], - "type": "object" -} diff --git a/switch_inference/source_metadata/metadata__prompt_schedules.json b/switch_inference/source_metadata/metadata__prompt_schedules.json deleted file mode 100644 index e30ac0a8ee586d679f49b86ab03b69130811119c..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/metadata__prompt_schedules.json +++ /dev/null @@ -1,457 +0,0 @@ -{ - "case_family": "first_person_magic_action_prompt_switch", - "cases": [ - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_00_act_demo0_npy_00_pose.npy", - "camera_source_sha256": "6b116bc301551d199388c4b6388779045c16799df9fbdb2e73f093733345b50b", - "case_id": "ps_00_act_demo0_npy_00", - "input_image_path": "inputs/scenes/scene_00.png", - "input_image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", - "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", - "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", - "seed": 20260525, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_01_act_demo0_npy_01_pose.npy", - "camera_source_sha256": "01bc3b67f079c59ad7a0a7d279d2955fd27f67f3e727f8d272402a9e3f1f5b85", - "case_id": "ps_01_act_demo0_npy_01", - "input_image_path": "inputs/scenes/scene_00.png", - "input_image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", - "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", - "seed": 20260526, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_02_act_demo0_npy_02_pose.npy", - "camera_source_sha256": "2951a263b835a3908309d30b9599786abfd82a8b1633da9f6ffb18cecf0e5221", - "case_id": "ps_02_act_demo0_npy_02", - "input_image_path": "inputs/scenes/scene_00.png", - "input_image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", - "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", - "seed": 20260527, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_03_act_demo0_npy_03_pose.npy", - "camera_source_sha256": "971532afca6b64bb305e1dc5e60ea2447d487dfaa69c17a383510722377a6166", - "case_id": "ps_03_act_demo0_npy_03", - "input_image_path": "inputs/scenes/scene_00.png", - "input_image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", - "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", - "seed": 20260528, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_04_act_demo0_npy_04_pose.npy", - "camera_source_sha256": "9e8f18338c7cda05822b93d72436d36dfe9df77cc6634cb801bc2f72ba6517c4", - "case_id": "ps_04_act_demo0_npy_04", - "input_image_path": "inputs/scenes/scene_00.png", - "input_image_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", - "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", - "seed": 20260529, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_05_act_demo1_npy_05_pose.npy", - "camera_source_sha256": "648720c9c9d3eab6c6bd22055eaaef2586e37d4d2d26de5f6ad788a2621fd5ba", - "case_id": "ps_05_act_demo1_npy_05", - "input_image_path": "inputs/scenes/scene_01.png", - "input_image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", - "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", - "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", - "seed": 20260530, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_06_act_demo1_npy_06_pose.npy", - "camera_source_sha256": "3be0ddb618d322ea14495459fe9db4c4b18ff730262d611e3eaeef1738db8d7e", - "case_id": "ps_06_act_demo1_npy_06", - "input_image_path": "inputs/scenes/scene_01.png", - "input_image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", - "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", - "seed": 20260531, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_07_act_demo1_npy_07_pose.npy", - "camera_source_sha256": "bb62a7ac4eee0efecadbad03b3209685a5f7c1556fca567c1166d56ddc5d9066", - "case_id": "ps_07_act_demo1_npy_07", - "input_image_path": "inputs/scenes/scene_01.png", - "input_image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", - "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", - "seed": 20260532, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_08_act_demo1_npy_08_pose.npy", - "camera_source_sha256": "d7177c5de237dac7854570c38628d1d564e00df7c56166351e9e50f4a17da6a7", - "case_id": "ps_08_act_demo1_npy_08", - "input_image_path": "inputs/scenes/scene_01.png", - "input_image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", - "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", - "seed": 20260533, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_09_act_demo1_npy_09_pose.npy", - "camera_source_sha256": "2db878671e5a5922d512673ec2eaa5b273665e0a7519063366c25e7e8b8d16f5", - "case_id": "ps_09_act_demo1_npy_09", - "input_image_path": "inputs/scenes/scene_01.png", - "input_image_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", - "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", - "seed": 20260534, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_10_act_demo2_npy_10_pose.npy", - "camera_source_sha256": "7be42f840970cf32974ef9b079c81ade5a43aa1131b9299747b88ab350bfbe57", - "case_id": "ps_10_act_demo2_npy_10", - "input_image_path": "inputs/scenes/scene_02.png", - "input_image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", - "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", - "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", - "seed": 20260535, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_11_act_demo2_npy_11_pose.npy", - "camera_source_sha256": "a7d3bd54d4256d698dd6e9a4735f6b720b8646be8efad591e7a66a9cdd901e8c", - "case_id": "ps_11_act_demo2_npy_11", - "input_image_path": "inputs/scenes/scene_02.png", - "input_image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", - "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", - "seed": 20260536, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_12_act_demo2_npy_12_pose.npy", - "camera_source_sha256": "fe1cf18ceb31a58efea53c97a8de55c287df1e7833d80e2838073bfb20e39db8", - "case_id": "ps_12_act_demo2_npy_12", - "input_image_path": "inputs/scenes/scene_02.png", - "input_image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", - "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", - "seed": 20260537, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_13_act_demo2_npy_13_pose.npy", - "camera_source_sha256": "844cb7236223d68ad66fce7e65ecefc18a21c5ea886453e6741264832b23ca82", - "case_id": "ps_13_act_demo2_npy_13", - "input_image_path": "inputs/scenes/scene_02.png", - "input_image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", - "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", - "seed": 20260538, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_14_act_demo2_npy_14_pose.npy", - "camera_source_sha256": "7eacc3f1a19f3c7c8db16f3fc3223a2eca94a047d504663ad0ba371538d0add2", - "case_id": "ps_14_act_demo2_npy_14", - "input_image_path": "inputs/scenes/scene_02.png", - "input_image_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", - "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", - "seed": 20260539, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_15_act_demo0_npy_15_pose.npy", - "camera_source_sha256": "2e6418edbe57c810a5cb0675bfb1e9c84842ace86cd1bea5170129ae792e2266", - "case_id": "ps_15_act_demo0_npy_15", - "input_image_path": "inputs/scenes/scene_03.png", - "input_image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", - "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", - "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", - "seed": 20260540, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_16_act_demo0_npy_16_pose.npy", - "camera_source_sha256": "d620063aad255d548b7e50a44d86684749511c98b788cfcb2906a1278755cae0", - "case_id": "ps_16_act_demo0_npy_16", - "input_image_path": "inputs/scenes/scene_03.png", - "input_image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", - "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", - "seed": 20260541, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_17_act_demo0_npy_17_pose.npy", - "camera_source_sha256": "ca2127a67f792c10e81f75dffec3f2f3f55d47b2036a1b75543dfbaa81bbf1a7", - "case_id": "ps_17_act_demo0_npy_17", - "input_image_path": "inputs/scenes/scene_03.png", - "input_image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", - "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", - "seed": 20260542, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_18_act_demo0_npy_18_pose.npy", - "camera_source_sha256": "7f33bc956dd1a651c18fb69f62adcb14c7b35240d36b1c7762ab99e5a164f451", - "case_id": "ps_18_act_demo0_npy_18", - "input_image_path": "inputs/scenes/scene_03.png", - "input_image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", - "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", - "seed": 20260543, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_19_act_demo0_npy_19_pose.npy", - "camera_source_sha256": "e17f7e387a81b068cec6fcc975c483454cd70ea1c1919977e8f5982445f44c87", - "case_id": "ps_19_act_demo0_npy_19", - "input_image_path": "inputs/scenes/scene_03.png", - "input_image_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", - "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", - "seed": 20260544, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_20_act_demo1_npy_20_pose.npy", - "camera_source_sha256": "d50223bd926539f53beb9aad94846eee5cc897faebff7fe1cfdaac865e487a33", - "case_id": "ps_20_act_demo1_npy_20", - "input_image_path": "inputs/scenes/scene_04.png", - "input_image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", - "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", - "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", - "seed": 20260545, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_21_act_demo1_npy_21_pose.npy", - "camera_source_sha256": "6e33aeab81a09f49f352dd6a4a3df3344140d9bae83415f366a3f3da348c31c7", - "case_id": "ps_21_act_demo1_npy_21", - "input_image_path": "inputs/scenes/scene_04.png", - "input_image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", - "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", - "seed": 20260546, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_22_act_demo1_npy_22_pose.npy", - "camera_source_sha256": "39fec00a065c88d2b52e351c5153e8a851ddb18b896c4e33c14103df4fccf62b", - "case_id": "ps_22_act_demo1_npy_22", - "input_image_path": "inputs/scenes/scene_04.png", - "input_image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", - "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", - "seed": 20260547, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_23_act_demo1_npy_23_pose.npy", - "camera_source_sha256": "6608ea952b36e34a18d1f3a91511a602a02c1836ae48937fecafdf389adf0ae1", - "case_id": "ps_23_act_demo1_npy_23", - "input_image_path": "inputs/scenes/scene_04.png", - "input_image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", - "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", - "seed": 20260548, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_24_act_demo1_npy_24_pose.npy", - "camera_source_sha256": "3d61394888f70611fd8f3e0790ae6caa8f552c26d2e58f73ac29d347d479147c", - "case_id": "ps_24_act_demo1_npy_24", - "input_image_path": "inputs/scenes/scene_04.png", - "input_image_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", - "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", - "seed": 20260549, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_25_act_demo2_npy_25_pose.npy", - "camera_source_sha256": "91a06b24e1a29fc8cc73fe0ee4f7a58f62a25fa8e8887a701fffb23dbc00e3a2", - "case_id": "ps_25_act_demo2_npy_25", - "input_image_path": "inputs/scenes/scene_05.png", - "input_image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", - "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", - "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", - "seed": 20260550, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_26_act_demo2_npy_26_pose.npy", - "camera_source_sha256": "cdb14c616626707a383d641d72a35ff5ea1f5b9a69face367826c657afefc39f", - "case_id": "ps_26_act_demo2_npy_26", - "input_image_path": "inputs/scenes/scene_05.png", - "input_image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", - "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", - "seed": 20260551, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_27_act_demo2_npy_27_pose.npy", - "camera_source_sha256": "89f0b1ad1314bfd3a0b251735db5914c20ca04d0a612b983aba2e283acf7247b", - "case_id": "ps_27_act_demo2_npy_27", - "input_image_path": "inputs/scenes/scene_05.png", - "input_image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", - "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", - "seed": 20260552, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_28_act_demo2_npy_28_pose.npy", - "camera_source_sha256": "edfbf96b25b3c02faf89a134c3ab0ebae0abe5bf6e4c4fef9ab09b19aeb88c52", - "case_id": "ps_28_act_demo2_npy_28", - "input_image_path": "inputs/scenes/scene_05.png", - "input_image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", - "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", - "seed": 20260553, - "switch_frame": 160, - "switch_kind": "act" - }, - { - "camera_source_kind": "npy_pose", - "camera_source_path": "inputs/npy_pose/ps_29_act_demo2_npy_29_pose.npy", - "camera_source_sha256": "6c32853475d00ea4ead5085743778d3d691a5198a515388c5b3377308c431c22", - "case_id": "ps_29_act_demo2_npy_29", - "input_image_path": "inputs/scenes/scene_05.png", - "input_image_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", - "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", - "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", - "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", - "seed": 20260554, - "switch_frame": 160, - "switch_kind": "act" - } - ], - "schedule_dir": "inputs/prompt_schedule", - "schema_path": "inputs/prompt_schedule.schema.json" -} diff --git a/switch_inference/source_metadata/metadata__sources.json b/switch_inference/source_metadata/metadata__sources.json deleted file mode 100644 index 3510a8b796a2d456440272edf639218ccda23e0e..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/metadata__sources.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "assets": [ - { - "generated_image_path": "inputs/source_assets/first_person_source_00.png", - "local_scene_path": "inputs/scenes/scene_00.png", - "resized_size": [ - 1280, - 704 - ], - "role_en": "alchemist", - "role_zh": "炼金术师", - "scene_index": 0, - "scene_sha256": "42b85769e55531cd24afb4551b0afef1f8be8ad9ecdcff8bcb40fb7e734cd115", - "scene_slug": "first_person_alchemist_lab", - "source": "OpenAI image generation, image-to-image style variant from first-person fantasy reference prompts" - }, - { - "generated_image_path": "inputs/source_assets/first_person_source_01.png", - "local_scene_path": "inputs/scenes/scene_01.png", - "resized_size": [ - 1280, - 704 - ], - "role_en": "witch", - "role_zh": "女巫", - "scene_index": 1, - "scene_sha256": "a53d48f6b6ff06dbb2382c86c82ed9ab9212b5a0d5637e854ad6a8cf7c3b493e", - "scene_slug": "first_person_witch_hut", - "source": "OpenAI image generation, image-to-image style variant from first-person fantasy reference prompts" - }, - { - "generated_image_path": "inputs/source_assets/first_person_source_02.png", - "local_scene_path": "inputs/scenes/scene_02.png", - "resized_size": [ - 1280, - 704 - ], - "role_en": "robed wizard", - "role_zh": "披袍巫师", - "scene_index": 2, - "scene_sha256": "d2cbf38ef05d74e7474457641ffb2337736346d7052bffccd04184a4c4cd7479", - "scene_slug": "first_person_forest_wizard", - "source": "OpenAI image generation, image-to-image style variant from first-person fantasy reference prompts" - }, - { - "generated_image_path": "inputs/source_assets/first_person_source_03.png", - "local_scene_path": "inputs/scenes/scene_03.png", - "resized_size": [ - 1280, - 704 - ], - "role_en": "battle mage", - "role_zh": "战斗法师", - "scene_index": 3, - "scene_sha256": "4f8fcc97d8c48754c3f7c4f0dc85815321cdc52daba1b85dcf2db9a59701cef4", - "scene_slug": "first_person_battlement_mage", - "source": "OpenAI image generation, image-to-image style variant from first-person fantasy reference prompts" - }, - { - "generated_image_path": "inputs/source_assets/first_person_source_04.png", - "local_scene_path": "inputs/scenes/scene_04.png", - "resized_size": [ - 1280, - 704 - ], - "role_en": "apprentice sorcerer", - "role_zh": "术士学徒", - "scene_index": 4, - "scene_sha256": "6fefce17fc8b5106b683a964f8177e4c093cd40b3c60880b8c1e67604b06455e", - "scene_slug": "first_person_tower_sorcerer", - "source": "OpenAI image generation, image-to-image style variant from first-person fantasy reference prompts" - }, - { - "generated_image_path": "inputs/source_assets/first_person_source_05.png", - "local_scene_path": "inputs/scenes/scene_05.png", - "resized_size": [ - 1280, - 704 - ], - "role_en": "shaman", - "role_zh": "萨满", - "scene_index": 5, - "scene_sha256": "bf3fee1f032e2c22011151d0cf7010c74e4a53352e114bb4799a4c38cc287842", - "scene_slug": "first_person_snow_shaman", - "source": "OpenAI image generation, image-to-image style variant from first-person fantasy reference prompts" - } - ], - "source": "generated first-person image-to-image inputs" -} diff --git a/switch_inference/source_metadata/prompt_pairs__prompt_pairs.csv b/switch_inference/source_metadata/prompt_pairs__prompt_pairs.csv deleted file mode 100644 index dc08e2e4881b94c630dc10f2250aef048321b7bb..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/prompt_pairs__prompt_pairs.csv +++ /dev/null @@ -1,31 +0,0 @@ -case_id,scene_index,action_label,image_path,camera_trajectory_path,prompt_a_en,prompt_a_zh,prompt_b_en,prompt_b_zh,switch_frame,seed -ps_00_act_demo0_npy_00,0,fireball,images/scene_00.png,camera_trajectories/ps_00_act_demo0_npy_00_pose.npy,"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.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,160,20260525 -ps_01_act_demo0_npy_01,0,blizzard_staff,images/scene_00.png,camera_trajectories/ps_01_act_demo0_npy_01_pose.npy,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,160,20260526 -ps_02_act_demo0_npy_02,0,lightning_orb,images/scene_00.png,camera_trajectories/ps_02_act_demo0_npy_02_pose.npy,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,160,20260527 -ps_03_act_demo0_npy_03,0,jump,images/scene_00.png,camera_trajectories/ps_03_act_demo0_npy_03_pose.npy,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,160,20260528 -ps_04_act_demo0_npy_04,0,summon_horse,images/scene_00.png,camera_trajectories/ps_04_act_demo0_npy_04_pose.npy,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,160,20260529 -ps_05_act_demo1_npy_05,1,fireball,images/scene_01.png,camera_trajectories/ps_05_act_demo1_npy_05_pose.npy,"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.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,160,20260530 -ps_06_act_demo1_npy_06,1,blizzard_staff,images/scene_01.png,camera_trajectories/ps_06_act_demo1_npy_06_pose.npy,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,160,20260531 -ps_07_act_demo1_npy_07,1,lightning_orb,images/scene_01.png,camera_trajectories/ps_07_act_demo1_npy_07_pose.npy,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,160,20260532 -ps_08_act_demo1_npy_08,1,jump,images/scene_01.png,camera_trajectories/ps_08_act_demo1_npy_08_pose.npy,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,160,20260533 -ps_09_act_demo1_npy_09,1,summon_horse,images/scene_01.png,camera_trajectories/ps_09_act_demo1_npy_09_pose.npy,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,160,20260534 -ps_10_act_demo2_npy_10,2,fireball,images/scene_02.png,camera_trajectories/ps_10_act_demo2_npy_10_pose.npy,"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.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,160,20260535 -ps_11_act_demo2_npy_11,2,blizzard_staff,images/scene_02.png,camera_trajectories/ps_11_act_demo2_npy_11_pose.npy,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,160,20260536 -ps_12_act_demo2_npy_12,2,lightning_orb,images/scene_02.png,camera_trajectories/ps_12_act_demo2_npy_12_pose.npy,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,160,20260537 -ps_13_act_demo2_npy_13,2,jump,images/scene_02.png,camera_trajectories/ps_13_act_demo2_npy_13_pose.npy,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,160,20260538 -ps_14_act_demo2_npy_14,2,summon_horse,images/scene_02.png,camera_trajectories/ps_14_act_demo2_npy_14_pose.npy,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,160,20260539 -ps_15_act_demo0_npy_15,3,fireball,images/scene_03.png,camera_trajectories/ps_15_act_demo0_npy_15_pose.npy,"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.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,160,20260540 -ps_16_act_demo0_npy_16,3,blizzard_staff,images/scene_03.png,camera_trajectories/ps_16_act_demo0_npy_16_pose.npy,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,160,20260541 -ps_17_act_demo0_npy_17,3,lightning_orb,images/scene_03.png,camera_trajectories/ps_17_act_demo0_npy_17_pose.npy,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,160,20260542 -ps_18_act_demo0_npy_18,3,jump,images/scene_03.png,camera_trajectories/ps_18_act_demo0_npy_18_pose.npy,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,160,20260543 -ps_19_act_demo0_npy_19,3,summon_horse,images/scene_03.png,camera_trajectories/ps_19_act_demo0_npy_19_pose.npy,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,160,20260544 -ps_20_act_demo1_npy_20,4,fireball,images/scene_04.png,camera_trajectories/ps_20_act_demo1_npy_20_pose.npy,"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.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,160,20260545 -ps_21_act_demo1_npy_21,4,blizzard_staff,images/scene_04.png,camera_trajectories/ps_21_act_demo1_npy_21_pose.npy,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,160,20260546 -ps_22_act_demo1_npy_22,4,lightning_orb,images/scene_04.png,camera_trajectories/ps_22_act_demo1_npy_22_pose.npy,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,160,20260547 -ps_23_act_demo1_npy_23,4,jump,images/scene_04.png,camera_trajectories/ps_23_act_demo1_npy_23_pose.npy,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,160,20260548 -ps_24_act_demo1_npy_24,4,summon_horse,images/scene_04.png,camera_trajectories/ps_24_act_demo1_npy_24_pose.npy,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,160,20260549 -ps_25_act_demo2_npy_25,5,fireball,images/scene_05.png,camera_trajectories/ps_25_act_demo2_npy_25_pose.npy,"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.",仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。,160,20260550 -ps_26_act_demo2_npy_26,5,blizzard_staff,images/scene_05.png,camera_trajectories/ps_26_act_demo2_npy_26_pose.npy,"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 lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.",仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。,160,20260551 -ps_27_act_demo2_npy_27,5,lightning_orb,images/scene_05.png,camera_trajectories/ps_27_act_demo2_npy_27_pose.npy,"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 form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.",仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。,160,20260552 -ps_28_act_demo2_npy_28,5,jump,images/scene_05.png,camera_trajectories/ps_28_act_demo2_npy_28_pose.npy,"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 bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.",仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。,160,20260553 -ps_29_act_demo2_npy_29,5,summon_horse,images/scene_05.png,camera_trajectories/ps_29_act_demo2_npy_29_pose.npy,"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 draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.",仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。,160,20260554 diff --git a/switch_inference/source_metadata/prompt_pairs__prompt_pairs.jsonl b/switch_inference/source_metadata/prompt_pairs__prompt_pairs.jsonl deleted file mode 100644 index b220c14fd37490bb0e880677b20b95bed1ad5370..0000000000000000000000000000000000000000 --- a/switch_inference/source_metadata/prompt_pairs__prompt_pairs.jsonl +++ /dev/null @@ -1,30 +0,0 @@ -{"action_label": "fireball", "camera_trajectory_path": "camera_trajectories/ps_00_act_demo0_npy_00_pose.npy", "case_id": "ps_00_act_demo0_npy_00", "image_path": "images/scene_00.png", "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "scene_index": 0, "seed": 20260525, "switch_frame": 160} -{"action_label": "blizzard_staff", "camera_trajectory_path": "camera_trajectories/ps_01_act_demo0_npy_01_pose.npy", "case_id": "ps_01_act_demo0_npy_01", "image_path": "images/scene_00.png", "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "scene_index": 0, "seed": 20260526, "switch_frame": 160} -{"action_label": "lightning_orb", "camera_trajectory_path": "camera_trajectories/ps_02_act_demo0_npy_02_pose.npy", "case_id": "ps_02_act_demo0_npy_02", "image_path": "images/scene_00.png", "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "scene_index": 0, "seed": 20260527, "switch_frame": 160} -{"action_label": "jump", "camera_trajectory_path": "camera_trajectories/ps_03_act_demo0_npy_03_pose.npy", "case_id": "ps_03_act_demo0_npy_03", "image_path": "images/scene_00.png", "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "scene_index": 0, "seed": 20260528, "switch_frame": 160} -{"action_label": "summon_horse", "camera_trajectory_path": "camera_trajectories/ps_04_act_demo0_npy_04_pose.npy", "case_id": "ps_04_act_demo0_npy_04", "image_path": "images/scene_00.png", "prompt_a_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_a_zh": "我是炼金术师,以第一人称视角在温暖的石质实验室中平静移动,周围有玻璃器皿、黄铜仪器和木质工作台,我的手套和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "scene_index": 0, "seed": 20260529, "switch_frame": 160} -{"action_label": "fireball", "camera_trajectory_path": "camera_trajectories/ps_05_act_demo1_npy_05_pose.npy", "case_id": "ps_05_act_demo1_npy_05", "image_path": "images/scene_01.png", "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "scene_index": 1, "seed": 20260530, "switch_frame": 160} -{"action_label": "blizzard_staff", "camera_trajectory_path": "camera_trajectories/ps_06_act_demo1_npy_06_pose.npy", "case_id": "ps_06_act_demo1_npy_06", "image_path": "images/scene_01.png", "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "scene_index": 1, "seed": 20260531, "switch_frame": 160} -{"action_label": "lightning_orb", "camera_trajectory_path": "camera_trajectories/ps_07_act_demo1_npy_07_pose.npy", "case_id": "ps_07_act_demo1_npy_07", "image_path": "images/scene_01.png", "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "scene_index": 1, "seed": 20260532, "switch_frame": 160} -{"action_label": "jump", "camera_trajectory_path": "camera_trajectories/ps_08_act_demo1_npy_08_pose.npy", "case_id": "ps_08_act_demo1_npy_08", "image_path": "images/scene_01.png", "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "scene_index": 1, "seed": 20260533, "switch_frame": 160} -{"action_label": "summon_horse", "camera_trajectory_path": "camera_trajectories/ps_09_act_demo1_npy_09_pose.npy", "case_id": "ps_09_act_demo1_npy_09", "image_path": "images/scene_01.png", "prompt_a_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_a_zh": "我是女巫,以第一人称视角在月光照进的木屋中平静移动,身边有翻开的法术书、蜡烛、悬挂草药、罐子架和歪斜窗户,我的双手和袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "scene_index": 1, "seed": 20260534, "switch_frame": 160} -{"action_label": "fireball", "camera_trajectory_path": "camera_trajectories/ps_10_act_demo2_npy_10_pose.npy", "case_id": "ps_10_act_demo2_npy_10", "image_path": "images/scene_02.png", "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "scene_index": 2, "seed": 20260535, "switch_frame": 160} -{"action_label": "blizzard_staff", "camera_trajectory_path": "camera_trajectories/ps_11_act_demo2_npy_11_pose.npy", "case_id": "ps_11_act_demo2_npy_11", "image_path": "images/scene_02.png", "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "scene_index": 2, "seed": 20260536, "switch_frame": 160} -{"action_label": "lightning_orb", "camera_trajectory_path": "camera_trajectories/ps_12_act_demo2_npy_12_pose.npy", "case_id": "ps_12_act_demo2_npy_12", "image_path": "images/scene_02.png", "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "scene_index": 2, "seed": 20260537, "switch_frame": 160} -{"action_label": "jump", "camera_trajectory_path": "camera_trajectories/ps_13_act_demo2_npy_13_pose.npy", "case_id": "ps_13_act_demo2_npy_13", "image_path": "images/scene_02.png", "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "scene_index": 2, "seed": 20260538, "switch_frame": 160} -{"action_label": "summon_horse", "camera_trajectory_path": "camera_trajectories/ps_14_act_demo2_npy_14_pose.npy", "case_id": "ps_14_act_demo2_npy_14", "image_path": "images/scene_02.png", "prompt_a_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_a_zh": "我是披袍巫师,以第一人称视角平静穿过薄雾弥漫的魔法森林空地,画面边缘能看到我手持的雕刻木杖,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "scene_index": 2, "seed": 20260539, "switch_frame": 160} -{"action_label": "fireball", "camera_trajectory_path": "camera_trajectories/ps_15_act_demo0_npy_15_pose.npy", "case_id": "ps_15_act_demo0_npy_15", "image_path": "images/scene_03.png", "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "scene_index": 3, "seed": 20260540, "switch_frame": 160} -{"action_label": "blizzard_staff", "camera_trajectory_path": "camera_trajectories/ps_16_act_demo0_npy_16_pose.npy", "case_id": "ps_16_act_demo0_npy_16", "image_path": "images/scene_03.png", "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "scene_index": 3, "seed": 20260541, "switch_frame": 160} -{"action_label": "lightning_orb", "camera_trajectory_path": "camera_trajectories/ps_17_act_demo0_npy_17_pose.npy", "case_id": "ps_17_act_demo0_npy_17", "image_path": "images/scene_03.png", "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "scene_index": 3, "seed": 20260542, "switch_frame": 160} -{"action_label": "jump", "camera_trajectory_path": "camera_trajectories/ps_18_act_demo0_npy_18_pose.npy", "case_id": "ps_18_act_demo0_npy_18", "image_path": "images/scene_03.png", "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "scene_index": 3, "seed": 20260543, "switch_frame": 160} -{"action_label": "summon_horse", "camera_trajectory_path": "camera_trajectories/ps_19_act_demo0_npy_19_pose.npy", "case_id": "ps_19_act_demo0_npy_19", "image_path": "images/scene_03.png", "prompt_a_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_a_zh": "我是战斗法师,以第一人称视角在黄昏的城堡雉堞上平静行走,右下前景能看到我握着法杖,山谷和远山在前方,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "scene_index": 3, "seed": 20260544, "switch_frame": 160} -{"action_label": "fireball", "camera_trajectory_path": "camera_trajectories/ps_20_act_demo1_npy_20_pose.npy", "case_id": "ps_20_act_demo1_npy_20", "image_path": "images/scene_04.png", "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "scene_index": 4, "seed": 20260545, "switch_frame": 160} -{"action_label": "blizzard_staff", "camera_trajectory_path": "camera_trajectories/ps_21_act_demo1_npy_21_pose.npy", "case_id": "ps_21_act_demo1_npy_21", "image_path": "images/scene_04.png", "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "scene_index": 4, "seed": 20260546, "switch_frame": 160} -{"action_label": "lightning_orb", "camera_trajectory_path": "camera_trajectories/ps_22_act_demo1_npy_22_pose.npy", "case_id": "ps_22_act_demo1_npy_22", "image_path": "images/scene_04.png", "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "scene_index": 4, "seed": 20260547, "switch_frame": 160} -{"action_label": "jump", "camera_trajectory_path": "camera_trajectories/ps_23_act_demo1_npy_23_pose.npy", "case_id": "ps_23_act_demo1_npy_23", "image_path": "images/scene_04.png", "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "scene_index": 4, "seed": 20260548, "switch_frame": 160} -{"action_label": "summon_horse", "camera_trajectory_path": "camera_trajectories/ps_24_act_demo1_npy_24_pose.npy", "case_id": "ps_24_act_demo1_npy_24", "image_path": "images/scene_04.png", "prompt_a_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_a_zh": "我是术士学徒,以第一人称视角在圆形高塔图书馆中平静移动,附近有卷轴、书架、星盘和高拱窗,我的双手和长袍袖口可见,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "scene_index": 4, "seed": 20260549, "switch_frame": 160} -{"action_label": "fireball", "camera_trajectory_path": "camera_trajectories/ps_25_act_demo2_npy_25_pose.npy", "case_id": "ps_25_act_demo2_npy_25", "image_path": "images/scene_05.png", "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", "prompt_b_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_b_zh": "仍在同一场景的第一人称视角中,我向前抬手释放明亮的橙色火球,旋转火焰在我面前出现,镜头运动保持连续。", "scene_index": 5, "seed": 20260550, "switch_frame": 160} -{"action_label": "blizzard_staff", "camera_trajectory_path": "camera_trajectories/ps_26_act_demo2_npy_26_pose.npy", "case_id": "ps_26_act_demo2_npy_26", "image_path": "images/scene_05.png", "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I lift my staff overhead and conjure a swirling blizzard, with snow and icy wind spreading forward without a scene cut.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我将法杖举过头顶并召唤旋转的暴风雪,雪花和冰冷气流向前扩散,没有场景切换。", "scene_index": 5, "seed": 20260551, "switch_frame": 160} -{"action_label": "lightning_orb", "camera_trajectory_path": "camera_trajectories/ps_27_act_demo2_npy_27_pose.npy", "case_id": "ps_27_act_demo2_npy_27", "image_path": "images/scene_05.png", "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I form a crackling blue-white lightning orb between my hands and launch it forward, preserving the same camera path and environment.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在双手之间凝聚噼啪作响的蓝白色闪电球并向前发射,保持同一镜头路径和环境。", "scene_index": 5, "seed": 20260552, "switch_frame": 160} -{"action_label": "jump", "camera_trajectory_path": "camera_trajectories/ps_28_act_demo2_npy_28_pose.npy", "case_id": "ps_28_act_demo2_npy_28", "image_path": "images/scene_05.png", "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I bend my knees and jump upward, my hands and robe sleeves lifting with the motion before landing back into the continuous shot.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我屈膝向上跳起,双手和长袍袖口随动作抬升,然后在连续镜头中落回地面。", "scene_index": 5, "seed": 20260553, "switch_frame": 160} -{"action_label": "summon_horse", "camera_trajectory_path": "camera_trajectories/ps_29_act_demo2_npy_29_pose.npy", "case_id": "ps_29_act_demo2_npy_29", "image_path": "images/scene_05.png", "prompt_a_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_a_zh": "我是萨满,以第一人称视角在积雪仪式空地边缘平静移动,前景可见毛皮袖口、手套和雕刻短杖,前方是石阵和松林,没有魔法特效。", "prompt_b_en": "Still in first-person view in the same scene, I draw a glowing circle ahead and summon a spectral horse beside the path, with the horse materializing smoothly during the second half.", "prompt_b_zh": "仍在同一场景的第一人称视角中,我在前方画出发光圆阵并在道路旁召唤一匹幽灵马,马匹在后半段平滑显现。", "scene_index": 5, "seed": 20260554, "switch_frame": 160} diff --git a/switch_inference/source_metadata/trajectory_notes.md b/switch_inference/source_metadata/trajectory_notes.md new file mode 100644 index 0000000000000000000000000000000000000000..ff85c6c96e837e3b6c47ccc783e5978d3edf2fc2 --- /dev/null +++ b/switch_inference/source_metadata/trajectory_notes.md @@ -0,0 +1,5 @@ +# camera trajectory 说明 + +- 两条轨迹均为程序生成的第一视角 camera pose,格式为 `[321, 4, 4]` float32 NPY。 +- 宫廷轨迹前半段模拟走路的轻微 bobbing,后半段减速并轻微俯视/前倾,用于配合献上画作。 +- 海边轨迹前半段向海面行走,后半段加入向前入水、下沉和游泳阶段的轻微高度/roll/yaw 摆动。