-
Notifications
You must be signed in to change notification settings - Fork 19
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
Quadruped Config and Envs for Standing #88
base: master
Are you sure you want to change the base?
Conversation
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.
Looking good. Try make format
and make static-checks
@@ -96,7 +96,7 @@ def learn(self, num_learning_iterations: int, init_at_random_ep_len: bool = Fals | |||
# initialize writer | |||
if self.log_dir is not None and self.writer is None: | |||
wandb.init( | |||
project="XBot", | |||
project="Quadruped Try", |
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.
remove
@@ -0,0 +1,886 @@ | |||
import os |
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.
sim/envs/base/quadruped_env.py
dim=1, | ||
) | ||
|
||
# #Added from humanoids |
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.
remove if unused
}, | ||
} | ||
|
||
# <limit effort="24" velocity="30" lower="-6.28" upper="6.28"/> for quad |
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.
remove
# p_gains | ||
@classmethod | ||
def stiffness(cls) -> Dict[str, float]: | ||
return {"Elbow_Pitch": 20, "Shoulder_Pitch": 20, "Hip_Pitch": 20, "Knee_Pitch": 20} # 20 for quad |
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.
format
No description provided.