🤖 Adds initial sim structure

This commit is contained in:
Rune Harlyk
2024-08-09 22:27:48 +02:00
committed by Rune Harlyk
parent 2face72aee
commit 33e7fac74c
23 changed files with 798 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from simulation.environment import QuadrupedEnv
from training.trainer import Trainer
import resources as resources
def main():
env = QuadrupedEnv(resources.getDataPath() + "/spot.urdf")
trainer = Trainer(env)
trainer.train()
if __name__ == "__main__":
main()