deep_racer_framework
deep_racer_framework copied to clipboard
This framework makes it easier to create and maintain reward functions for AWS DeepRacer, so you spend more time on machine learning rather than writing lots of Python code! It provides geometry funct...
Results
1
deep_racer_framework issues
Sort by
recently updated
recently updated
newest added
def get_distance_between_points(first, second): (x1, y1) = first (x2, y2) = second x_diff = x2 - x1 y_diff = y2 - y1 return math.sqrt(x_diff * x_diff + y_diff * y_diff) #wrong...