Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot act 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…
Open-weight model · Robotics
act-finetuned-base-modify-hold-pos
by Hayato Nakamura Tron-Hayato/act-finetuned-base-modify-hold-pos
Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates.
Runs On
What it takes to serve act-finetuned-base-modify-hold-pos (52M parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.
| Precision | Weights | Memory needed | Cheapest setup | Per hour | Also fits |
|---|---|---|---|---|---|
| 16-bit | 0.1 GB | 0.1 GB | 1x MI300X (192 GB) Vultr |
$1.85 | 1x H100 $1.99 · 1x MI325X $2.00 |
| 8-bit | 0.1 GB | 0.1 GB | 1x MI300X (192 GB) Vultr |
$1.85 | 1x H100 $1.99 · 1x MI325X $2.00 |
| 4-bit | 0.0 GB | 0.0 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 Hayato Nakamura, published under apache-2.0, revision 869eeec7dd4e.
Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot act 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…
Read Hayato Nakamura's full model card
Model Card for act
Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates.
This policy has been trained and pushed to the Hub using LeRobot.
Learn how to train and run it in the LeRobot act guide, or browse the full documentation.
Model Details
- License: apache-2.0
- Robot type:
so_follower - Cameras:
front,wrist
Inputs & Outputs
The policy consumes these observation features and produces these action features.
Inputs
| Feature | Type | Shape |
|---|---|---|
observation.state |
STATE | (6,) |
observation.images.front |
VISUAL | (3, 480, 640) |
observation.images.wrist |
VISUAL | (3, 480, 640) |
Outputs
| Feature | Type | Shape |
|---|---|---|
action |
ACTION | (6,) |
Training Dataset
- Repository: Tron-Hayato/record-act-finetuned-base-modify-hold-pos
- Episodes: 84
- Frames: 36300
- Frame rate: 30 FPS
- Task(s): "Grab the object"
Training Configuration
| Setting | Value |
|---|---|
| Training steps | 5000 |
| Batch size | 8 |
| Optimizer | adamw |
| Learning rate | 1e-05 |
| Seed | 1000 |
| LeRobot version | 0.6.1 |
How to Get Started with the Model
New to LeRobot? These guides cover the full workflow:
- Install LeRobot — set up the
lerobotpackage. - Hardware setup — assemble, wire, and calibrate your robot and cameras.
- Record data & train a policy — the end-to-end imitation-learning walkthrough.
- CLI cheat-sheet — quick reference for the
lerobot-*commands.
The short version to run and train this policy:
Run the policy on your robot
lerobot-rollout \
--strategy.type=base \
--robot.type=so_follower \
--robot.port=<your_robot_port> \
--robot.cameras="{ <camera_1>: {type: opencv, index_or_path: <index_or_path>, width: 640, height: 480, fps: 30}, <camera_2>: {type: opencv, index_or_path: <index_or_path>, width: 640, height: 480, fps: 30}}" \
--policy.path=Tron-Hayato/act-finetuned-base-modify-hold-pos \
--task="Grab the object" \
--duration=60
Replace the remaining <...> placeholders with your own values: --robot.port and the camera names/indices are specific to your machine, and the camera names must match the observation keys this policy was trained on.
When --strategy.type=base is used the script doesn't record the episodes. Skipping duration will make the policy run indefinitely. For more information look at rollout documentation.
Train your own policy
lerobot-train \
--dataset.repo_id=${HF_USER}/<dataset> \
--policy.type=act \
--output_dir=outputs/train/<policy_repo_id> \
--job_name=lerobot_training \
--policy.device=cuda \
--policy.repo_id=${HF_USER}/<policy_repo_id> \
--wandb.enable=true
Writes checkpoints to outputs/train/<policy_repo_id>/checkpoints/.
Evaluation
No evaluation results have been provided for this policy yet.
Citation
If you use this policy, please cite the method linked in the description above, along with LeRobot:
@misc{cadene2024lerobot,
author = {Cadene, Remi and Alibert, Simon and Soare, Alexander and Gallouedec, Quentin and Zouitine, Adil and Palma, Steven and Kooijmans, Pepijn and Aractingi, Michel and Shukor, Mustafa and Aubakirova, Dana and Russi, Martino and Capuano, Francesco and Pascal, Caroline and Choghari, Jade and Moss, Jess and Wolf, Thomas},
title = {LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch},
howpublished = "\url{https://github.com/huggingface/lerobot}",
year = {2024}
}
Identity and Version
- Repository
- Tron-Hayato/act-finetuned-base-modify-hold-pos
- Publisher
- Hayato Nakamura
- Task
- Robotics
- Modality
- Control
- Library
- lerobot
- Parameters
- 52M parameters
- Languages
- act
- Revision
- 869eeec7dd4e3745bfed558432367471db73960d
- First published
- 2026-09-18
- Last updated
- 2026-09-18
Files and Weights
9 files, 206.7 MB in total. The weights are 3 files totalling 206.7 MB in safetensors.
Every file
| File | Type | Size | SHA-256 |
|---|---|---|---|
| model.safetensors | Weights | 206.7 MB | a7c45d75927b |
| policy_postprocessor_step_0_unnormalizer_processor.safetensors | Weights | 7.6 KB | 625b08b56879 |
| policy_preprocessor_step_3_normalizer_processor.safetensors | Weights | 7.6 KB | f7c07cbcaeef |
| config.json | Configuration | 1.7 KB | — |
| policy_postprocessor.json | Configuration | 660 B | — |
| policy_preprocessor.json | Configuration | 1.3 KB | — |
| train_config.json | Configuration | 6.2 KB | — |
| README.md | Documentation | 5.7 KB | — |
| .gitattributes | Repository | 1.5 KB | — |
License and Download
- License
- apache-2.0
- Access
- Open weights, no gate
- Download size
- 206.7 MB
Released by Hayato Nakamura through its official repository on Hugging Face. Read the license.
Built From
- Described by arXiv:2304.13705
- Trained on (disclosed) Tron-Hayato/record-act-finetuned-base-modify-hold-pos
Memory Requirements
| Precision | Weights in memory |
|---|---|
| As published | 206.7 MB |
| 16-bit | 0.1 GB |
| 8-bit | 0.1 GB |
| 4-bit | 0.0 GB |
Weights only, from the published parameter count; the key-value cache and runtime add to this.
Questions About act-finetuned-base-modify-hold-pos
How much GPU memory does act-finetuned-base-modify-hold-pos need?
About 0.1 GB at 16-bit and 0 GB at 4-bit: the weights (52M parameters) plus a working margin. A long context needs more.
What is the cheapest GPU to run act-finetuned-base-modify-hold-pos 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 act-finetuned-base-modify-hold-pos commercially?
Yes. act-finetuned-base-modify-hold-pos 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
An ACT (Action Chunking Transformer) imitation-learning policy trained on an SO-ARM101 follower arm equipped with an AmazingHand dexterous hand, performing a cube pick-up task. - 20 teleoperated demonstrations, 18,538 frames, 30 fps - The cube was recorded at 4 different table positions, 5 episodes each, to cover positional variation shoulderpan.pos, shoulderlift.pos, elbowflex.pos, wristflex.pos, wristroll.pos, gripper.pos Requires an environment matching this project (a customized lerobot that includes the soamazinghand robot definition): 1. --task must match the training singletask string exactly 2. Camera names and index order must match training 3. The robot must already be calibrated…
Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot act 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…
Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates. This policy has been trained and pushed to the Hub using LeRobot. Learn how to train and run it in the LeRobot act 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…
Action Chunking Transformer Policy (as per Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware) trained for the AlohaTransferCube environment from gym-aloha. See the LeRobot library (particularly the evaluation script) for instructions on how to load and evaluate this model. Trained with LeRobot@3c0a209. The model was trained using LeRobot's training script and with the alohasimtransfercubehuman dataset, using this command: The training curves may be found at https://wandb.ai/aliberts/lerobot/runs/720l37xb. The current model corresponds to the checkpoint at 80k steps. This took about 1h45 to train on an Nvida A100. The model was evaluated on the AlohaTransferCube task from…
Action Chunking with Transformers (ACT) is an imitation-learning method that predicts short action chunks instead of single steps. It learns from teleoperated data and often achieves high success rates. 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.
