Tweak to have more trajectories to train from
This commit is contained in:
parent
71eadbeecf
commit
8db0f2cf6c
2 changed files with 5 additions and 5 deletions
|
@ -5,9 +5,9 @@
|
|||
"learning_rate": 0.01,
|
||||
"min_learning_rate": 1e-05,
|
||||
"learning_decay_rate": 0.9999,
|
||||
"prediction_horizon": 50,
|
||||
"minimum_history_length": 10,
|
||||
"maximum_history_length": 80,
|
||||
"prediction_horizon": 30,
|
||||
"minimum_history_length": 5,
|
||||
"maximum_history_length": 50,
|
||||
"map_encoder": {
|
||||
"PEDESTRIAN": {
|
||||
"heading_state_index": [2, 3],
|
||||
|
@ -74,7 +74,7 @@
|
|||
"dynamic": {
|
||||
"PEDESTRIAN": {
|
||||
"name": "SingleIntegrator",
|
||||
"distribution": false,
|
||||
"distribution": true,
|
||||
"limits": {}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -145,7 +145,7 @@ def process_data(src_dir: Path, dst_dir: Path, name: str, smooth_tracks: bool, c
|
|||
print(max_frame_nr)
|
||||
|
||||
# separate call so cursor is kept during multiple loops
|
||||
seed(123)
|
||||
# seed(123)
|
||||
shuffle(tracks)
|
||||
|
||||
dt1 = RollingAverage()
|
||||
|
|
Loading…
Reference in a new issue