SAVRN
Search Contact SAVRN

Open-weight model · Robotics

SmolVLA-Base-0.45B

by Mithilesh Nakade Man1103/SmolVLA-Base-0.45B

This repository contains weights or code derived from the SmolVLA foundational architecture developed by Hugging Face and the LeRobot Authors. This is SmolVLA-Base model cloned from Hugginface "lerobot/smolvlabase" repository.

Parameters450M
Context
Weights1.8 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads

Runs On

What it takes to serve SmolVLA-Base-0.45B (450M 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 0.9 GB 1.1 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 0.5 GB 0.5 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 0.2 GB 0.3 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 Mithilesh Nakade, published under apache-2.0, revision 778c091c085a.

This repository contains weights or code derived from the SmolVLA foundational architecture developed by Hugging Face and the LeRobot Authors. This is SmolVLA-Base model cloned from Hugginface "lerobot/smolvlabase" repository. This was createed for ready-to-use custom model for easy inference during Hackathon challenge.

Read Mithilesh Nakade's full model card

License & Attribution

This repository contains weights or code derived from the SmolVLA foundational architecture developed by Hugging Face and the LeRobot Authors.

  • License: Distributed under the https://apache.org.
  • Original Model Base: https://huggingface.co/lerobot/smolvla_base
  • Copyright Notice: Copyright 2025-2026 Hugging Face & The LeRobot Authors.
  • Research paper introducing this model: https://arxiv.org/pdf/2506.01844

This is SmolVLA-Base model cloned from Hugginface "lerobot/smolvla_base" repository. This was createed for ready-to-use custom model for easy inference during Hackathon challenge.

Script to load model from HuggingFace:

from lerobot.policies.smolvla.modeling_smolvla import SmolVLAPolicy
from lerobot.policies.factory import make_pre_post_processors
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

# Switch this to your custom Hugging Face model repository or local directory path
my_custom_model_id = "Man1103/SmolVLA-Base-0.45B"

# 2. Load Model instance skeleton onto device
model = SmolVLAPolicy.from_pretrained(my_custom_model_id).to(device)

print("Model successfully loaded!")

Script for loading model specific preprocess and postprocess assets:

# 3. Initialize pre/post-processors using your loaded model config 
preprocess, postprocess = make_pre_post_processors(
    policy_cfg=model.config,      # Passes the structural configuration matrix
    pretrained_path=my_custom_model_id # Resolves dataset statistics from your repository
)

print("Model successfully initialized!")

Script to perform random sample inference:

import numpy as np
import pandas as pd
from PIL import Image
import torch
import torchvision.transforms.functional as TF

# 1. Create a dummy image frame (RGB, 256x256 as specified by the model's expected shape)
mock_image = Image.fromarray(np.random.randint(0, 255, (256, 256, 3), dtype=np.uint8))
mock_instruction = "Grasp the red block and place it in the tray."
mock_robot_state = torch.zeros((1, 6)) # Example: 6-DoF robot arm state

# 2. Build the observation map using the EXACT keys the model is looking for
observation_frame = {
    "observation.images.camera1": mock_image,
    "observation.images.camera2": mock_image,
    "observation.images.camera3": mock_image,
    "observation.state": mock_robot_state,
    "task": mock_instruction
}

# 3. Process and format
processed_observation = preprocess(observation_frame)

# 4. Push tensors to the GPU, add batch dimensions, and convert PIL Images
for key, value in processed_observation.items():
    if isinstance(value, Image.Image):
        # Convert to tensor (C, H, W) and add batch dimension -> (1, C, H, W)
        tensor_val = TF.to_tensor(value).to(device)
        processed_observation[key] = tensor_val.unsqueeze(0)
    elif isinstance(value, torch.Tensor):
        # Ensure tensor values have a batch dimension at index 0
        if value.ndim == 1:
            processed_observation[key] = value.unsqueeze(0).to(device)
        elif value.ndim == 2 and key == "observation.state":
            # State is already (1, 6), keep it or make sure it handles batching correctly
            processed_observation[key] = value.to(device)
        else:
            processed_observation[key] = value.to(device)

# 5. Execute VLA Policy Inference
model.eval()
with torch.no_grad():
    print("Predicting action sequence with batched streams...")
    predicted_action = model.select_action(processed_observation)
    final_robot_commands = postprocess(predicted_action)

# 6. Output Result
print("\n--- INFERENCE SUCCESS ---")
print("Predicted Robot Action Matrix shape:", final_robot_commands.shape)
print(f"Final robot command: {final_robot_commands}")

Identity and Version

Repository
Man1103/SmolVLA-Base-0.45B
Publisher
Mithilesh Nakade
Task
Robotics
Modality
Control
Library
Not stated by the source
Parameters
450M parameters
Languages
en
Revision
778c091c085a32a09415e574181c48de6373b97a
First published
2026-09-18
Last updated
2026-09-18

Files and Weights

6 files, 1.8 GB in total. The weights are 1 file totalling 1.8 GB in safetensors.

Weights1 file · 1.8 GB
Configuration3 files · 4.9 KB
Documentation1 file · 4.2 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights1.8 GB 414df7fb6cf6
config.jsonConfiguration2.5 KB
policy_postprocessor.jsonConfiguration574 B
policy_preprocessor.jsonConfiguration1.8 KB
README.mdDocumentation4.2 KB
.gitattributesRepository1.5 KB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
1.8 GB
Download from Mithilesh Nakade

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

Built From

Memory Requirements

PrecisionWeights in memory
As published1.8 GB
16-bit0.9 GB
8-bit0.5 GB
4-bit0.2 GB

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

Questions About SmolVLA-Base-0.45B

How much GPU memory does SmolVLA-Base-0.45B need?

About 1.1 GB at 16-bit and 0.3 GB at 4-bit: the weights (450M parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run SmolVLA-Base-0.45B 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 SmolVLA-Base-0.45B commercially?

Yes. SmolVLA-Base-0.45B is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

Similar Models

Model · Robotics

smolvla_base

LeRobot

SmolVLA is a compact, efficient Vision-Language-Action (VLA) model designed for affordable robotics, trainable on a single GPU and deployable on consumer hardware, while matching the performance of much larger VLAs through community-driven data. Original paper: (SmolVLA: A Vision-Language-Action Model for Affordable and Efficient Robotics)[https://arxiv.org/abs/2506.01844] For full installation details (including optional video dependencies such as ffmpeg for torchcodec), see the official documentation: https://huggingface.co/docs/lerobot/installation If you’re training / fine-tuning, you typically call forward(...) to get a loss and then: - -policy.chunksize=... - -policy.nactionsteps=...…

Open weights apache-2.0 450M parameters lerobot

Model · Robotics

smolvla_libero

LeRobot

SmolVLA is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware. This policy has been trained and pushed to the Hub using LeRobot. See the full documentation at LeRobot Docs. For a complete walkthrough, see the training guide. Below is the short version on how to train and run inference/eval: Writes checkpoints to outputs/train/ /checkpoints/. Prefix the dataset repo with eval\ and supply --policy.path pointing to a local or hub checkpoint.

Open weights apache-2.0 450M parameters lerobot

Model · Robotics

smolvla_robotwin

LeRobot

SmolVLA is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware. This policy has been trained and pushed to the Hub using LeRobot. See the full documentation at LeRobot Docs. For a complete walkthrough, see the training guide. Below is the short version on how to train and run inference/eval: Writes checkpoints to outputs/train/ /checkpoints/. Prefix the dataset repo with eval\ and supply --policy.path pointing to a local or hub checkpoint.

Open weights apache-2.0 450M parameters lerobot

SmolVLA is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot smolvla guide, or browse the full documentation. The policy consumes these observation features and produces these action features. Inputs Outputs New to LeRobot? These guides cover the full workflow: - Install LeRobot — set up the lerobot package. - Hardware setup — assemble, wire, and calibrate your robot and cameras. - Record data & train a policy — the end-to-end imitation-learning walkthrough. - CLI…

Open weights apache-2.0 450M parameters lerobot

Model · Robotics

thali_smolvla

Prashant Thakur

lerobot/smolvlabase fine-tuned on Prashant-77/thaliall (1050 scripted-expert episodes, 7 skills, language-conditioned, 3 cameras). Camera keys are renamed at train and inference time: overhead → camera1, wrista → camera2, wristb → camera3 (--renamemap; runtime/executors.py applies the same map). Checkpoints in this repo. Root = 20 000 total steps. step14000/ = the best per-skill checkpoint (14 000 steps at batch 16 on a T4; the last 6 000 steps ran at batch 4 with a fresh optimizer on a smaller GPU and lost ground). Policy-only success per skill from task-consistent start states, 20 held-out seeds (eval/skilleval.py --kind smolvla): The scripted expert reaches 9/10 on the full task; the…

Open weights apache-2.0 450M parameters lerobot

SmolVLA is a compact, efficient vision-language-action model that achieves competitive performance at reduced computational costs and can be deployed on consumer-grade hardware. This policy has been trained and pushed to the Hub using LeRobot. See the full documentation at LeRobot Docs. For a complete walkthrough, see the training guide. Below is the short version on how to train and run inference/eval: Writes checkpoints to outputs/train/ /checkpoints/. Prefix the dataset repo with eval\ and supply --policy.path pointing to a local or hub checkpoint.

Open weights apache-2.0 450M parameters lerobot