Skip to content
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

How can I verify the policy? #6

Open
kimyg119 opened this issue Mar 5, 2025 · 3 comments
Open

How can I verify the policy? #6

kimyg119 opened this issue Mar 5, 2025 · 3 comments

Comments

@kimyg119
Copy link

kimyg119 commented Mar 5, 2025

Hello, thanks for reading my issue.

Now I'm running imitation learning myself with example you provided, and as far as I know, there will be a checkpoint after learning is done. How can I check if it is working well on isaac sim?

@xshenhan
Copy link
Collaborator

xshenhan commented Mar 6, 2025

Hi, I've updated the eval code, a pretrained policy and some instructions in ./re3sim/eval.md. You can have a try!

@VictoriYang
Copy link

Hi ~ A class called FrankaTableMultiItemPickAndPlaceForEnv used in scripts/generate_test_cases.py doesn't exist in this code repo:
from real2sim2real.tasks.multi_item_pick_and_place import ( FrankaTableMultiItemPickAndPlaceForEnv, )

@xshenhan
Copy link
Collaborator

Hi. Maybe you can just remove the import like this and change the config yaml file to the existing one. I'll have a test now and will fix the inconsistency soon.

From:

from real2sim2real.tasks.multi_item_pick_and_place import (
    FrankaTableMultiItemPickAndPlaceForEnv,
)
from real2sim2real.randomize.item_pose_random import random_place_items


env.reset()
task: FrankaTableMultiItemPickAndPlaceForEnv = list(env.runner.current_tasks.values())[
    0
]

To:

from real2sim2real.randomize.item_pose_random import random_place_items


env.reset()
task = list(env.runner.current_tasks.values())[
    0
]

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

3 participants