-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install waymo devkit * Create dataset_specific folders for waymo dataset * Implement functions for waymo * More method implementations * Format agent data * Drop agents with only one detection for waymo * More waymo map implementation * Refactor and add parallelization to waymo data loading * Add name check for waymo dataset * Refactor cache_map * Implement traffic light status extraction from waymo * Revert accidental change * Add tqdm to extract_vectorized function * Iterate to get the max/min point in waymo map * Set origin shifting to be 0 * Remove shallow copy * Update * Remove commented code and add linear interpolation * Refactor waymo data loading * Refactor waymo_dataset implementation * Fix major bugs * More debugging * Add interpolation and remove hard-coded value * Fix interpolation and first/last timesteps * Fix interpolation * Update agent data extraction * Fix first/last_timestep * remove unnecessary lines * Lots of quality of life improvements in preparation for merging (formatting, a bit of refactoring and speedups, parallelism for maps, etc). Remaining big todo is fixing map element boundaries... * Small formatting post-merge. * Initial solution for Waymo boundaries. * Saving work quickly to try something else. * We'll take it. Just remaining is the connectivity fix and then we can call it. * Traffic light saving done. * Small comment fix. * Fixing lane connectivity, will evaluate it later with improved visualizations. * Removing TODO comment. * Lessened the number of hops in the map_api_example. * Updating version, README, and DATASETS with Waymo info. * Adding newline. --------- Co-authored-by: songgua7 <[email protected]> Co-authored-by: Boris Ivanovic <[email protected]> Co-authored-by: Boris Ivanovic <[email protected]>
- Loading branch information
1 parent
5a0567b
commit 860908a
Showing
13 changed files
with
1,010 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = trajdata | ||
version = 1.3.0 | ||
version = 1.3.1 | ||
author = Boris Ivanovic | ||
author_email = [email protected] | ||
description = A unified interface to many trajectory forecasting datasets. | ||
|
@@ -48,3 +48,7 @@ nusc = | |
lyft = | ||
protobuf==3.19.4 | ||
l5kit==1.5.0 | ||
waymo = | ||
tensorflow==2.11.0 | ||
waymo-open-dataset-tf-2-11-0 | ||
intervaltree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .waymo_dataset import WaymoDataset |
Oops, something went wrong.