Evaluates offline-to-online finetuning of model-based reinforcement learning world models on continuous control and visuomotor tasks. It probes the model's ability to adapt to seen and unseen task variations with limited online interactions while mitigating extrapolation errors via uncertainty regularization. Use when the user wants to benchmark on D4RL, xArm, Quadruped Locomotion, Real xArm, or asks about evaluating this task. Reports Success rate (%).
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill fowm-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Fowm Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-fowm-eval)More formats (shields.io, HTML) on the badges page.
---
name: fowm-eval
description: Evaluates offline-to-online finetuning of model-based reinforcement learning world models on continuous control and visuomotor tasks. It probes the model's ability to adapt to seen and unseen task variations with limited online interactions while mitigating extrapolation errors via uncertainty regularization. Use when the user wants to benchmark on D4RL, xArm, Quadruped Locomotion, Real xArm, or asks about evaluating this task. Reports Success rate (%).
metadata:
skill_kind: dataset_eval
source_arxiv: 2310.16029
bibtex_key: feng2023fowm
confidence: high
---
# fowm-eval
> Finetuning Offline World Models in the Real World — Feng et al. (2023) (arXiv:2310.16029, 2023)
## What this evaluates
Evaluates offline-to-online finetuning of model-based reinforcement learning world models on continuous control and visuomotor tasks. It probes the model's ability to adapt to seen and unseen task variations with limited online interactions while mitigating extrapolation errors via uncertainty regularization.
## Datasets
- **D4RL** — total ?; splits: Hopper (medium) (-1), Hopper (medium-replay) (-1), AntMaze (medium-play) (-1), AntMaze (medium-diverse) (-1)
- **xArm** — total ?; splits: push (-1), pick (-1)
- **Quadruped Locomotion** — total ?; splits: Walk (-1)
- **Real xArm** — total ?; splits: reach (-1), pick (-1), kitchen (-1)
## Metrics
- `Success rate (%)` **(primary)** — range: percent
- Percentage of trials where the robot successfully completes the task goal (e.g., reaching a target, lifting an object above a threshold, or placing a pot in a sink).
- `Normalized return` — range: other
- D4RL-style normalized cumulative reward, scaled to a [0, 100] range based on random and expert baselines, or raw cumulative reward for quadruped tasks.
## Input / output format
**Input**: 224x224 RGB images from a static third-person camera, robot proprioceptive state, and task goal/target coordinates.
**Output**: Positional control commands for the robot's end-effector.
## Scoring recipe
```python
def compute_success_rate(success_flags, num_trials):
return sum(success_flags) / num_trials * 100
def compute_normalized_return(reward, env_min, env_max):
return (reward - env_min) / (env_max - env_min) * 100
```
## Common pitfalls
- Confusing 'medium' and 'medium-replay' dataset variations for xArm tasks, which have different data generation sources.
- Real-world tasks use manually designed detectors for success and sparse, noisy rewards, which differs from the dense rewards in simulation.
- Failing to report both zero-shot (offline) and post-finetuning (online) performance, as the paper emphasizes the offline-to-online transition.
## Evidence (verbatim from paper)
> Success rate (xArm) and normalized return (D4RL and quadruped) of methods before and after online finetuning. See Appendix B for task explanations. Mean of 5 seeds.
## Citation
```bibtex
@misc{feng2023fowm,
title={Finetuning Offline World Models in the Real World},
author={Feng et al. (2023)},
year={2023},
note={arXiv:2310.16029}
}
```
- arXiv: 2310.16029
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!