Robotics
Transformers
lap
vision-language-action
embodied-ai
manipulation
vla
robot-learning
multimodal
Instructions to use lihzha/LAP-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lihzha/LAP-3B with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("lihzha/LAP-3B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
fix typo
Browse files
README.md
CHANGED
|
@@ -36,13 +36,13 @@ pip install -U huggingface_hub
|
|
| 36 |
Download the checkpoint to the expected directory:
|
| 37 |
|
| 38 |
```bash
|
| 39 |
-
hf download lihzha/LAP-3B --local-dir ./
|
| 40 |
```
|
| 41 |
|
| 42 |
After downloading, the checkpoint will be located at:
|
| 43 |
|
| 44 |
```
|
| 45 |
-
./
|
| 46 |
```
|
| 47 |
|
| 48 |
This matches the default path expected by the LAP codebase.
|
|
@@ -56,7 +56,7 @@ from huggingface_hub import snapshot_download
|
|
| 56 |
|
| 57 |
snapshot_download(
|
| 58 |
repo_id="lihzha/LAP-3B",
|
| 59 |
-
local_dir="./
|
| 60 |
)
|
| 61 |
```
|
| 62 |
|
|
|
|
| 36 |
Download the checkpoint to the expected directory:
|
| 37 |
|
| 38 |
```bash
|
| 39 |
+
hf download lihzha/LAP-3B --local-dir ./checkpoints/lap
|
| 40 |
```
|
| 41 |
|
| 42 |
After downloading, the checkpoint will be located at:
|
| 43 |
|
| 44 |
```
|
| 45 |
+
./checkpoints/lap
|
| 46 |
```
|
| 47 |
|
| 48 |
This matches the default path expected by the LAP codebase.
|
|
|
|
| 56 |
|
| 57 |
snapshot_download(
|
| 58 |
repo_id="lihzha/LAP-3B",
|
| 59 |
+
local_dir="./checkpoints/lap"
|
| 60 |
)
|
| 61 |
```
|
| 62 |
|