Skip to content

Commit 9468c5c

Browse files
committed
lowercase
1 parent 7617a11 commit 9468c5c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/source/tutorials/human_demo.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ Launch RecordHuman on the headset and perform the task you want to demonstrate.
3535
Step 3: Convert to LeRobot format
3636
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3737

38-
Use ``RecordHuman_to_lerobot.py`` to convert the recorded data into a LeRobot dataset that OpenTau can train on.
38+
Use ``recordhuman_to_lerobot.py`` to convert the recorded data into a LeRobot dataset that OpenTau can train on.
3939

4040
**Basic usage:**
4141

4242
.. code-block:: bash
4343
44-
python -m opentau.scripts.RecordHuman_to_lerobot \
44+
python -m opentau.scripts.recordhuman_to_lerobot \
4545
--video recording.mp4 \
4646
--poses recording.json \
4747
--output ./datasets/my_vr_dataset \
@@ -51,7 +51,7 @@ Use ``RecordHuman_to_lerobot.py`` to convert the recorded data into a LeRobot da
5151

5252
.. code-block:: bash
5353
54-
python -m opentau.scripts.RecordHuman_to_lerobot \
54+
python -m opentau.scripts.recordhuman_to_lerobot \
5555
--video recording.mp4 \
5656
--poses recording.json \
5757
--output ./datasets/my_vr_dataset \
@@ -62,7 +62,7 @@ Use ``RecordHuman_to_lerobot.py`` to convert the recorded data into a LeRobot da
6262

6363
.. code-block:: bash
6464
65-
python -m opentau.scripts.RecordHuman_to_lerobot \
65+
python -m opentau.scripts.recordhuman_to_lerobot \
6666
--video recording.mp4 \
6767
--poses recording.json \
6868
--output ./datasets/my_vr_dataset \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ select = ["E4", "E7", "E9", "F", "I", "N", "B", "C4", "SIM"]
169169
# Server must implement gRPC interface with PascalCase method names
170170
"src/opentau/scripts/grpc/server.py" = ["N802"]
171171
# Uppercase names for rotation matrices follow standard math convention
172-
"src/opentau/scripts/RecordHuman_to_lerobot.py" = ["N803", "N806"]
172+
"src/opentau/scripts/recordhuman_to_lerobot.py" = ["N803", "N806"]
173173

174174
[tool.bandit]
175175
exclude_dirs = [

src/opentau/scripts/RecordHuman_to_lerobot.py renamed to src/opentau/scripts/recordhuman_to_lerobot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
Optionally generates a skeleton overlay video with --overlay.
2929
3030
Example:
31-
python src/opentau/scripts/RecordHuman_to_lerobot.py \\
31+
python src/opentau/scripts/recordhuman_to_lerobot.py \\
3232
--video recording.mp4 --poses recording.json \\
3333
--output ./my_dataset --prompt "Pick up the snack bag"
3434
3535
# With overlay video
36-
python src/opentau/scripts/RecordHuman_to_lerobot.py \\
36+
python src/opentau/scripts/recordhuman_to_lerobot.py \\
3737
--video recording.mp4 --poses recording.json \\
3838
--output ./my_dataset --prompt "Pick up the snack bag" \\
3939
--overlay overlay.mp4

0 commit comments

Comments
 (0)