Instructions to use aabyaneh/lingbot-va-lift_new with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use aabyaneh/lingbot-va-lift_new with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("aabyaneh/lingbot-va-lift_new", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Wan2.2
How to use aabyaneh/lingbot-va-lift_new with Wan2.2:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
LingBot-VA โ lift_new (real-world Franka)
LingBot-VA (Wan2.2-TI2V-5B backbone + bolt-on action head) fine-tuned on George's
real-world lift_new Franka dataset (single-arm teleop, 10 Hz, 2ร 256ร256 cameras,
7-dim action: delta-eef xyz + zero rotation + binary gripper).
This is the Phase-2 lift_new_base recipe: adapted from the robot-co-pretrained
lingbot-va-base init.
Contents
Each subfolder is a diffusers-format transformer checkpoint (transformer/):
| Subfolder | Training step |
|---|---|
step_600/ |
600 |
step_800/ |
800 (latest) |
What's included: only the trained transformer (shared Wan blocks + action head). The VAE and UMT5 text encoder are not included โ load them from the base
Wan-AI/Wan2.2-TI2V-5Bmodel. These weights are the only trained component.
Notes / provenance
- Effective batch 80 (world_size ร batch_size ร grad_accum), lr 1e-5, constant schedule.
- The
lift_newdataset presents one video-latent clip per episode (90 train / 10 val), so these steps correspond to a large number of epochs over a small set โ treat val / sim-eval as the stopping signal rather than train loss. - These are the surviving
lift_newcheckpoints (steps 200/400 were later overwritten on the training node by an unrelated run before archival).
Usage (sketch)
from wan_va.train import load_transformer
transformer = load_transformer("step_800/transformer", attn_mode="flex")
# pair with the Wan2.2-TI2V-5B VAE + UMT5 text encoder
- Downloads last month
- -
Model tree for aabyaneh/lingbot-va-lift_new
Base model
Wan-AI/Wan2.2-TI2V-5B-Diffusers