Skip to content

draccus parsing issue #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
mqp2259 opened this issue May 2, 2025 · 1 comment
Open

draccus parsing issue #32

mqp2259 opened this issue May 2, 2025 · 1 comment

Comments

@mqp2259
Copy link

mqp2259 commented May 2, 2025

We encountered this issue when we tried to evaluate a trained policy.

Image

Anyone can help with it?

@shantanuparab-tr
Copy link
Collaborator

In the same location as the policy.path in your case outputs/train/act_task_pickup/checkpoints/000200/pretrained_model you will have a file config.json. Currently this file might look like this

    "n_obs_steps": 1,
    "normalization_mapping": {
        "VISUAL": "MEAN_STD",
        "STATE": "MEAN_STD",
        "ACTION": "MEAN_STD"
    },

The key-value pair type: act will be missing. If you manually add this entry you should be able to fix the above problem.

    "type": "act",
    "n_obs_steps": 1,
    "normalization_mapping": {
        "VISUAL": "MEAN_STD",
        "STATE": "MEAN_STD",
        "ACTION": "MEAN_STD"
    },

We will be coming up with a solution for this soon. This is a quick fix for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants