Skip to content

Commit 5024d50

Browse files
committed
[chore] pass hooks
1 parent b3b95f3 commit 5024d50

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

source/en/user_guide/internmanip/quick_start/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ chmod +x install.sh
244244
```bash
245245
./install.sh --all
246246
```
247-
> 💡 Tips:
247+
> 💡 Tips:
248248
> Before installing genmanip, please ensure that Anaconda and Isaac Sim 4.5.0 are properly set up on your system. You can download the standalone version from [👉 Download Isaac Sim 4.5.0 (RC36)](https://download.isaacsim.omniverse.nvidia.com/isaac-sim-standalone%404.5.0-rc.36%2Brelease.19112.f59b3005.gl.linux-x86_64.release.zip)
249-
>
249+
>
250250
> After downloading, extract the archive to a suitable directory (e.g., ~/tools/isaac-sim-4.5.0). You should set the path to your local Isaac Sim installation during running `install.sh`.
251251
252252

@@ -549,4 +549,4 @@ When compiling C++ components (e.g., `building ManiSkill2_real2sim`), you might
549549
- Step 4: Export the Library Path. Make sure the compiler can find your locally installed shared libraries:
550550
```bash
551551
export LD_LIBRARY_PATH=$HOME/local/lib:$LD_LIBRARY_PATH
552-
```
552+
```

source/en/user_guide/internmanip/tutorials/environment.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ eval_cfg = EvalCfg(
9595
## 3. I/O Specifications: Environment Outputs and Action Data Formats
9696

9797
### 3.1 when robote_type is **franka**
98-
98+
9999
**Observation Structure**
100-
100+
101101
```python
102102
observations: List[Dict] = [
103103
{
@@ -138,7 +138,7 @@ observations: List[Dict] = [
138138
]
139139
```
140140

141-
**Action Space Specifications**
141+
**Action Space Specifications**
142142
Agents must output `List[Union[List[float], dict]] = [action_1, action_2 , ...]` of the same length as the input observations.
143143
```python
144144
actions: List[Union[List[float], dict]] = [
@@ -169,13 +169,13 @@ List[float] # (9,) or (13,) -> panda or robotiq
169169
'gripper_action': Union[List[float], int], # (2,) or (6,) -> panda or robotiq || -1 or 1 -> open or close
170170
}
171171
```
172-
173-
---
174-
172+
173+
---
174+
175175
### 3.2 when robote_type is **aloha_split**
176-
176+
177177
**Observation Structure**
178-
178+
179179
```python
180180
observations: List[Dict] = [
181181
{
@@ -217,7 +217,7 @@ observations: List[Dict] = [
217217
]
218218
```
219219

220-
**Action Space Specifications**
220+
**Action Space Specifications**
221221
Agents must output `List[dict] = [action_1, action_2 , ...]` of the same length as the input observations.
222222
```python
223223
actions: List[dict] = [
@@ -249,5 +249,5 @@ The `action_x` supports any of the following formats:
249249
'right_gripper_action': Union[List[float], int], # (2,)|| -1 or 1 -> open or close
250250
}
251251
```
252-
252+
253253
**None Handling Protocol**: If observation element is `None` or invalid value, corresponding action must be `[]`.

0 commit comments

Comments
 (0)