allenai / MolmoPoint-Vid-4B

huggingface.co
Total runs: 1.5K
24-hour runs: 0
7-day runs: 326
30-day runs: 1.3K
Model's Last Updated: March 31 2026
video-text-to-text

Introduction of MolmoPoint-Vid-4B

Model Details of MolmoPoint-Vid-4B

MolmoPoint-Vid-4B

MolmoPoint-Vid-4B is a fully-open VLM developed by the Allen Institute for AI (Ai2) that is specialized for video pointing. It points using grounding tokens instead of text coodinates, see our paper for details. This model is only trained for video pointing, see MolmoPoint-8B for a generalist model.

Note the huggingface MolmoPoint model does not support training, see our github repo for the training code.

Quick links:

Quick Start
Setup Conda Environment
conda create --name transformers4571 python=3.11
conda activate transformers4571
pip install transformers==4.57.1
pip install torch pillow einops torchvision accelerate decord2
Inference

We recommend running MolmoPoint with logits_processor=model.build_logit_processor_from_inputs(model_inputs) to enforce points tokens are generated in a valid way.

In MolmoPoint, instead of coordinates points will be generated as a series of special tokens, decoding the tokens back into points requires some additional metadata from the preprocessor. The metadata is returned by the preprocessor using the return_pointing_metadata flag. Then model.extract_video_points does the decoding, it returns a list of (timestamps, object_id, pixel_x, pixel_y) output points.

Video Pointing Example:
video_path = "https://storage.googleapis.com/oe-training-public/demo_videos/many_penguins.mp4"
video_messages = [
    {
        "role": "user",
        "content": [
            dict(type="text", text="Point to the penguins"),
            dict(type="video", video=video_path),
        ]
    }
]

inputs = processor.apply_chat_template(
    video_messages,
    tokenize=True,
    add_generation_prompt=True,
    return_tensors="pt",
    return_dict=True,
    padding=True,
    return_pointing_metadata=True
)

inputs = {k: v.to("cuda") for k, v in inputs.items()}

with torch.inference_mode(), torch.autocast("cuda", dtype=torch.bfloat16):
    output = model.generate(
        **inputs,
        logits_processor=model.build_logit_processor_from_inputs(inputs)
        max_new_tokens=200
    )

generated_tokens = output[:, inputs['input_ids'].size(1):]
generated_text = processor.post_process_image_text_to_text(generated_tokens, skip_special_tokens=False, clean_up_tokenization_spaces=False)[0]
points = model.extract_video_points(
    generated_text,
    metadata["token_pooling"],
    metadata["subpatch_mapping"],
    metadata["timestamps"],
    metadata["video_size"]
)

# points as a list of [object_id, image_num, x, y]
print(points)
# expected:
[[  1.           9.         188.86666667 177.65925926]
 [  2.          15.5        197.66666667 288.35555556]
 [  3.          17.         153.26666667 327.7037037 ]
 [  4.          23.5         46.6        406.87407407]
 [  5.          23.5         91.         406.87407407]
 [  6.          23.5        135.53333333 438.4       ]
 [  7.          23.5        233.26666667 477.98518519]
 [  8.          25.         184.33333333 280.2962963 ]
 [  9.          25.         268.86666667 232.88888889]
 [ 10.          27.         171.         335.76296296]
 [ 11.          30.         193.26666667 304.        ]
 [ 12.          32.          64.33333333 201.36296296]
 [ 13.          32.         202.2        414.6962963 ]
 [ 14.          38.5        184.33333333 383.17037037]
 [ 15.          40.5        335.53333333  82.84444444]
 [ 16.          40.5        117.66666667 201.36296296]
 [ 17.          40.5         95.53333333 501.68888889]
 [ 18.          47.         259.93333333 304.        ]
 [ 19.          47.         153.26666667 501.68888889]]
License and Use

This model is licensed under Apache 2.0. It is intended for research and educational use in accordance with Ai2’s Responsible Use Guidelines. This model is trained on third party datasets that are subject to academic and non-commercial research use only. Please review the sources to determine if this model is appropriate for your use case.

Runs of allenai MolmoPoint-Vid-4B on huggingface.co

1.5K
Total runs
0
24-hour runs
350
3-day runs
326
7-day runs
1.3K
30-day runs

More Information About MolmoPoint-Vid-4B huggingface.co Model

More MolmoPoint-Vid-4B license Visit here:

https://choosealicense.com/licenses/apache-2.0

MolmoPoint-Vid-4B huggingface.co

MolmoPoint-Vid-4B huggingface.co is an AI model on huggingface.co that provides MolmoPoint-Vid-4B's model effect (), which can be used instantly with this allenai MolmoPoint-Vid-4B model. huggingface.co supports a free trial of the MolmoPoint-Vid-4B model, and also provides paid use of the MolmoPoint-Vid-4B. Support call MolmoPoint-Vid-4B model through api, including Node.js, Python, http.

MolmoPoint-Vid-4B huggingface.co Url

https://huggingface.co/allenai/MolmoPoint-Vid-4B

allenai MolmoPoint-Vid-4B online free

MolmoPoint-Vid-4B huggingface.co is an online trial and call api platform, which integrates MolmoPoint-Vid-4B's modeling effects, including api services, and provides a free online trial of MolmoPoint-Vid-4B, you can try MolmoPoint-Vid-4B online for free by clicking the link below.

allenai MolmoPoint-Vid-4B online free url in huggingface.co:

https://huggingface.co/allenai/MolmoPoint-Vid-4B

MolmoPoint-Vid-4B install

MolmoPoint-Vid-4B is an open source model from GitHub that offers a free installation service, and any user can find MolmoPoint-Vid-4B on GitHub to install. At the same time, huggingface.co provides the effect of MolmoPoint-Vid-4B install, users can directly use MolmoPoint-Vid-4B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

MolmoPoint-Vid-4B install url in huggingface.co:

https://huggingface.co/allenai/MolmoPoint-Vid-4B

Url of MolmoPoint-Vid-4B

MolmoPoint-Vid-4B huggingface.co Url

Provider of MolmoPoint-Vid-4B huggingface.co

allenai
ORGANIZATIONS

Other API from allenai

huggingface.co

Total runs: 1.1M
Run Growth: 355.2K
Growth Rate: 33.34%
Updated:December 04 2024
huggingface.co

Total runs: 146.4K
Run Growth: 19.3K
Growth Rate: 13.21%
Updated:July 28 2025
huggingface.co

Total runs: 136.2K
Run Growth: -2.6K
Growth Rate: -1.93%
Updated:January 23 2026
huggingface.co

Total runs: 114.5K
Run Growth: -141.3K
Growth Rate: -123.42%
Updated:January 23 2026
huggingface.co

Total runs: 100.0K
Run Growth: 37.8K
Growth Rate: 37.79%
Updated:January 23 2026
huggingface.co

Total runs: 55.7K
Run Growth: 53.5K
Growth Rate: 95.99%
Updated:October 10 2025
huggingface.co

Total runs: 38.2K
Run Growth: 10.4K
Growth Rate: 27.18%
Updated:August 15 2024
huggingface.co

Total runs: 21.6K
Run Growth: 4.8K
Growth Rate: 22.37%
Updated:October 18 2023
huggingface.co

Total runs: 11.5K
Run Growth: 7.5K
Growth Rate: 65.13%
Updated:May 23 2026
huggingface.co

Total runs: 7.2K
Run Growth: 1.3K
Growth Rate: 18.08%
Updated:April 11 2026
huggingface.co

Total runs: 5.1K
Run Growth: 1.2K
Growth Rate: 23.17%
Updated:December 04 2024
huggingface.co

Total runs: 4.5K
Run Growth: -22.2K
Growth Rate: -497.07%
Updated:June 23 2026
huggingface.co

Total runs: 4.4K
Run Growth: -1.2K
Growth Rate: -27.97%
Updated:July 17 2024
huggingface.co

Total runs: 3.9K
Run Growth: -788
Growth Rate: -20.07%
Updated:March 19 2026
huggingface.co

Total runs: 3.9K
Run Growth: -341
Growth Rate: -8.79%
Updated:June 23 2026
huggingface.co

Total runs: 3.3K
Run Growth: -998
Growth Rate: -30.33%
Updated:July 17 2024
huggingface.co

Total runs: 3.0K
Run Growth: 3.0K
Growth Rate: 100.00%
Updated:June 23 2026
huggingface.co

Total runs: 2.6K
Run Growth: -3.3K
Growth Rate: -127.96%
Updated:May 21 2026
huggingface.co

Total runs: 2.0K
Run Growth: -2.4K
Growth Rate: -119.11%
Updated:October 09 2025
huggingface.co

Total runs: 1.7K
Run Growth: -390
Growth Rate: -22.47%
Updated:April 11 2026