Files
SpotMicroESP32-Leika/simulation/train.py
T
Rune Harlyk fb9313913d 🤖 Adds plane
2025-10-10 22:05:27 +02:00

16 lines
302 B
Python

from simulation.environment import QuadrupedEnv
from training.trainer import Trainer
import resources as resources
render = True
def main():
env = QuadrupedEnv(resources.getDataPath() + "/spot.urdf")
trainer = Trainer(env, render)
trainer.train()
if __name__ == "__main__":
main()