dfa1d43f2e
Note that this does require rerunning the `process_data.py` scripts in the example folders so that the dill-files are updated.
12 lines
No EOL
242 B
Python
12 lines
No EOL
242 B
Python
from trajectron.model.dynamics import Dynamic
|
|
|
|
|
|
class Linear(Dynamic):
|
|
def init_constants(self):
|
|
pass
|
|
|
|
def integrate_samples(self, v, x):
|
|
return v
|
|
|
|
def integrate_distribution(self, v_dist, x):
|
|
return v_dist |