-
Notifications
You must be signed in to change notification settings - Fork 20
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
Migrate RT1 to mbodied-agents #6
base: main
Are you sure you want to change the base?
Conversation
@@ -64,32 +64,32 @@ class Pose6D(Motion): | |||
|
|||
x: float = MotionField( | |||
default_factory=lambda: 0.0, | |||
bounds=[-1, 1], | |||
bounds=None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these bounds changed to None
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sebbyjp asked me to make them None
from mbodied_agents.types.controls import Motion | ||
|
||
|
||
class MotorAgent(ABC): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's call it MotionAgent. Also rename the directory.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initially it was MotionAgent. @sebbyjp suggested MotorAgent
@@ -0,0 +1,187 @@ | |||
from collections import OrderedDict |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the common MbodiAI header above. Also for other new files.
bacecb7
to
012a519
Compare
Added Bare Minimum Requirements for
rt1
Description
This update introduces the bare minimum requirements for
rt1
. The current implementation includes a dummy sample to test the network functionality. The training part is not included in this update.Summary:
rt1
.Related Issue
If there are related issues or tasks, they are listed below. If there are none, this section may be omitted.
Related Issue:
How Has This Been Tested?
The changes have been verified by running a dummy sample to ensure the network functionality works as expected.
Testing:
Checklist