# limits
**Repository Path**: mirrors_pantor/limits
## Basic Information
- **Project Name**: limits
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: inline-power
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-07-15
- **Last Updated**: 2026-05-10
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Learning Robot Trajectories subject to Kinematic Joint Constraints
[](https://www.ieee-icra.org/)
[](https://arxiv.org/abs/2011.00563)
[](https://pypi.python.org/pypi/klimits/)
[](https://pypi.python.org/pypi/klimits)
[](https://github.com/translearn/limits/issues/)
[](https://pypi.python.org/pypi/klimits/)
The aim of this package is to enable learning of robot trajectories without without exceeding limits on the position, velocity, acceleration and jerk of each robot joint.
Movements are generated by mapping the predictions of a neural network to safely executable joint accelerations. \
This package provides the code to compute the range of safely executable joint accelerations.
## Installation
The package can be installed by running
pip install klimits
## Trajectory generation [](https://colab.research.google.com/github/translearn/notebooks/blob/main/klimits_demo.ipynb)
To generate a random trajectory with limited jerk, acceleration, velocity and position run
python -m klimits.test_trajectory_generation
Several parameters can be adjusted to modify the generated trajectory. E.g:
python -m klimits.test_trajectory_generation --time_step=0.1 --pos_limits='[[-2.96705972839, 2.96705972839], [-2.09439510239, 2.09439510239]]' --vel_limits='[[-1.71042266695, 1.71042266695], [-1.71042266695, 1.71042266695]]' --acc_limits='[[-15, 15], [-7.5, 7.5]]' --plot_joint='[1, 0]' --pos_limit_factor=0.9 --vel_limit_factor=0.8 --acc_limit_factor=0.7 --jerk_limit_factor=0.6 --trajectory_duration=20 --plot_safe_acc_limits
Run
python -m klimits.test_trajectory_generation --help
for further details on the optional arguments.