SAVRN
Search Contact SAVRN

Open-weight model · Robotics

GraspMolmo

by Ai2 allenai/GraspMolmo

[[Paper]](https://arxiv.org/pdf/2505.13441) [[arXiv]](https://arxiv.org/abs/2505.13441) [[Project Website]](https://abhaybd.github.io/GraspMolmo/) [[Data]](https://huggingface.co/datasets/allenai/PRISM) GraspMolmo is a generalizable open-vocabulary…

Parameters8B
Context4,096
Weights32.1 GB
Licensemit
AccessOpen weights
Monthly Downloads2.6k

Runs On

What it takes to serve GraspMolmo (8B parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 16.0 GB 19.3 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 8.0 GB 9.6 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 4.0 GB 4.8 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By Ai2, published under mit, revision 9aa184d698ff.

[[Paper]](https://arxiv.org/pdf/2505.13441) [[arXiv]](https://arxiv.org/abs/2505.13441) [[Project Website]](https://abhaybd.github.io/GraspMolmo/) [[Data]](https://huggingface.co/datasets/allenai/PRISM) GraspMolmo is a generalizable open-vocabulary task-oriented grasping (TOG) model for robotic manipulation. Given an image and a task to complete (e.g. "Pour me some tea"), GraspMolmo will point to the most appropriate grasp location, which can then be matched to the closest stable grasp. Running the above code could result in the following output: To predict a grasp point and match it to one of the candidate grasps, refer to the GraspMolmo class. First, install graspmolmo with and then…

Read Ai2's full model card

[Paper] [arXiv] [Project Website] [Data]

GraspMolmo is a generalizable open-vocabulary task-oriented grasping (TOG) model for robotic manipulation. Given an image and a task to complete (e.g. "Pour me some tea"), GraspMolmo will point to the most appropriate grasp location, which can then be matched to the closest stable grasp.

Code Sample

from PIL import Image
from transformers import AutoModelForCausalLM, AutoProcessor, GenerationConfig

img = Image.open("<path_to_image>")
task = "Pour coffee from the blue mug."

processor = AutoProcessor.from_pretrained("allenai/GraspMolmo", torch_dtype="auto", device_map="auto", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("allenai/GraspMolmo", torch_dtype="auto", device_map="auto", trust_remote_code=True)

prompt = f"Point to the grasp that would accomplish the following task: {task}"
inputs = processor.process(images=img, text=prompt, return_tensors="pt")
inputs = {k: v.to(model.device).unsqueeze(0) for k, v in inputs.items()}

output = model.generate_from_batch(inputs, GenerationConfig(max_new_tokens=256, stop_strings="<|endoftext|>"), tokenizer=processor.tokenizer)
generated_tokens = output[0, inputs["input_ids"].size(1):]
generated_text = processor.tokenizer.decode(generated_tokens, skip_special_tokens=True)
print(generated_text)

Running the above code could result in the following output:

In order to accomplish the task "Pour coffee from the blue mug.", the optimal grasp is described as follows: "The grasp is on the middle handle of the blue mug, with fingers grasping the sides of the handle.".

<point x="28.6" y="20.7" alt="Where to grasp the object">Where to grasp the object</point>

Grasp Inference

To predict a grasp point and match it to one of the candidate grasps, refer to the GraspMolmo class. First, install graspmolmo with

pip install "git+https://github.com/abhaybd/GraspMolmo.git#egg=graspmolmo[infer]"

and then inference can be run as follows:

from graspmolmo.inference.grasp_predictor import GraspMolmo

task = "..."
rgb, depth = get_image()
camera_intrinsics = np.array(...)

point_cloud = backproject(rgb, depth, camera_intrinsics)
# grasps are in the camera reference frame
grasps = predict_grasps(point_cloud)  # Using your favorite grasp predictor (e.g. M2T2)

gm = GraspMolmo()
idx = gm.pred_grasp(rgb, point_cloud, task, grasps)

print(f"Predicted grasp: {grasps[idx]}")

Configuration

Architecture
MolmoForCausalLM
Context length (tokens)
4,096
Layers
28
Hidden size
3,584
Feed-forward size
37,888
Attention heads
28
Key/value heads
4
Vocabulary size
152,064
RoPE base
1e+06
Stored precision
float32
Model type
molmo

Identity and Version

Repository
allenai/GraspMolmo
Publisher
Ai2
Task
Robotics
Modality
Control
Library
Not stated by the source
Parameters
8B parameters
Languages
en
Revision
9aa184d698ffc41382524875f0c585e7499c62f5
First published
2025-06-04
Last updated
2026-05-05

Files and Weights

24 files, 32.1 GB in total. The weights are 7 files totalling 32.1 GB in safetensors.

Weights7 files · 32.1 GB
Configuration11 files · 179.0 KB
Tokenizer4 files · 16.0 MB
Documentation1 file · 2.9 KB
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model-00001-of-00007.safetensorsWeights5.0 GB d66b3cef2153
model-00002-of-00007.safetensorsWeights4.8 GB 8c497b343a41
model-00003-of-00007.safetensorsWeights4.7 GB 185e849c7de7
model-00004-of-00007.safetensorsWeights4.7 GB d320ad1cdaa0
model-00005-of-00007.safetensorsWeights4.7 GB f46f5768491c
model-00006-of-00007.safetensorsWeights4.5 GB bea1f2da30c1
model-00007-of-00007.safetensorsWeights3.8 GB 279f80978cae
added_tokens.jsonConfiguration14.3 KB
config.jsonConfiguration1.8 KB
config_molmo.pyConfiguration5.6 KB
generation_config.jsonConfiguration69 B
image_preprocessing_molmo.pyConfiguration23.0 KB
model.safetensors.index.jsonConfiguration57.7 KB
modeling_molmo.pyConfiguration57.5 KB
preprocessing_molmo.pyConfiguration6.4 KB
preprocessor_config.jsonConfiguration496 B
processor_config.jsonConfiguration121 B
special_tokens_map.jsonConfiguration12.0 KB
README.mdDocumentation2.9 KB
.gitattributesRepository1.6 KB
merges.txtTokenizer1.7 MB
tokenizer.jsonTokenizer11.5 MB 6248048a8315
tokenizer_config.jsonTokenizer92.3 KB
vocab.jsonTokenizer2.8 MB

License and Download

License
mit
Access
Open weights, no gate
Download size
32.1 GB
Download from Ai2

Released by Ai2 through its official repository on Hugging Face. Read the license.

Built From

  • Derived from allenai/Molmo-7B-D-0924
  • Described by arXiv:2505.13441
  • Trained on (disclosed) allenai/PRISM

Memory Requirements

PrecisionWeights in memory
As published32.1 GB
16-bit16.0 GB
8-bit8.0 GB
4-bit4.0 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About GraspMolmo

How much GPU memory does GraspMolmo need?

About 19.3 GB at 16-bit and 4.8 GB at 4-bit: the weights (8B parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run GraspMolmo on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use GraspMolmo commercially?

Yes. GraspMolmo is released under MIT License. The MIT License is a short permissive license. It permits commercial use, modification and redistribution, provided the copyright notice and permission notice are included.

What is GraspMolmo's context length?

4,096 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Robotics

openvla-7b

OpenVLA Collaboration

OpenVLA 7B (openvla-7b) is an open vision-language-action model trained on 970K robot manipulation episodes from the Open X-Embodiment dataset. The model takes language instructions and camera images as input and generates robot actions. It supports controlling multiple robots out-of-the-box, and can be quickly adapted for new robot domains via (parameter-efficient) fine-tuning. All OpenVLA checkpoints, as well as our training codebase are released under an MIT License. For full details, please read our paper and see our project page. OpenVLA models take a language instruction and a camera image of a robot workspace as input, and predict (normalized) robot actions consisting of 7-DoF…

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Spatial, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Object, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Goal, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Long (also called LIBERO-10), as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters transformers

Model · Robotics

openvla-oft-libero

Jiaming Tang

This repository contains the OpenVLA-OFT checkpoint for LIBERO-Spatial, as described in Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success. OpenVLA-OFT significantly improves upon the base OpenVLA model by incorporating optimized fine-tuning techniques. See here for other OpenVLA-OFT checkpoints: https://huggingface.co/moojink?searchmodels=oft This example demonstrates generating an action chunk using a pretrained OpenVLA-OFT checkpoint. Ensure you have set up the conda environment as described in the GitHub README.

Open weights mit 7.5B parameters 2,048 tokens transformers