Skip to content

declare-lab/nora

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

NORA: Neural Orchestration for Robotics Autonomy.

Training code and more examples will be released soon.

Getting Started For Inference

To get started with loading and running Nora for inference, we provide a lightweight interface that with minimal dependencies.

cd inference
pip install -r requirements.txt

For example, to load Nora for zero-shot instruction following in the BridgeData V2 environments with a WidowX robot:

# Load VLA
from inference.nora import Nora
nora = Nora(device='cuda')

# Get Inputs
image: Image.Image = camera(...)
instruction: str = <INSTRUCTION>
# Predict Action (7-DoF; un-normalize for BridgeData V2)
actions = nora.inference(
    image=image,  # Dummy image
    instruction=instruction,
    unnorm_key='bridge_orig'  # Optional, specify if needed
)
# Execute...
robot.act(action, ...)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages