-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added DCVNet and Configurable Dataloader (#272)
* Updated config README.md * update requirements.txt * updated requirements.txt * update requirements.txt * added pre-commit.ci * update pre-commit config * revert pre-commit configs * update isort version * Added dataset registry * bugfix: circular dependency elative import error * Added datasets to DATASET REGISTRY * added multiple dataset config support * validated datasets * Fix: incorrect crop_size for prediction * pre-commit fixes * Sync main branch to dev (#286) * Fix Linting Pre-Commit failure (#271) * Updated config README.md * update requirements.txt * updated requirements.txt * update requirements.txt * added pre-commit.ci * update pre-commit config * revert pre-commit configs * update isort version * Update README.md * added DCVNet (#279) * added DCVNet Backbone * [WIP] DCVNet Decoder * updated cost volume filtering modules * added matryoshka dilated cost volume * [WIP] DCVNet Model * added dcvnet forward pass * Sync main branch to dev (#286) (#287) * Fix Linting Pre-Commit failure (#271) * Updated config README.md * update requirements.txt * updated requirements.txt * update requirements.txt * added pre-commit.ci * update pre-commit config * revert pre-commit configs * update isort version * Update README.md * fixed DCVNet forward pass * Refactor Residual Encoder and RAFT Backbone * refactored cost volume filter * added flow offset logits loss * Refactored trainer, loss function and base_dataset to handle multiple params * added flow to bilinear interpolated weights support * update trainer * updated configs and tools * updated trainer * updated trainer * update training configs with flow_offsets * update training configs with flow_offsets * updated dcvnet config * updated dcvnet config, trainer and loss funtionn args * updated base trainer * bugfix: offset cross entropy * bugfix: offset cross entropy * updated trainer to validate last epoch * updated trainer * bugfix: offset loss in training * bugfix: offset params config * Added DCVNet Backbone unit tests and Refactored RAFT Small backbone * Added docstring and unittest for Dilated Cost Volume * fix NaN values in ground truth * added unit tests and docstring for dcvnet * Added decoder unit tests * added utils unit tests * added docstring for offset common methods * added unit tests and docs for DCVNet Loss * fixed raft configs and forward pass * updated unit test * fixed formatting * fix Predictor read images * fix formatting * added eval script in tools * fixed evaluate script * added DCVNet checkpoint download links * fix formatting * Sync with main (#298) * Fix Linting Pre-Commit failure (#271) * Updated config README.md * update requirements.txt * updated requirements.txt * update requirements.txt * added pre-commit.ci * update pre-commit config * revert pre-commit configs * update isort version * Update README.md * fix matplotlib github runner * fix dependency github runner * fix dependency github runner * resolve dependencies * removed mkl dependency
- Loading branch information
Showing
79 changed files
with
3,992 additions
and
799 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
NAME: DCVNet | ||
ENCODER: | ||
NAME: DCVNetBackbone | ||
IN_CHANNELS: 3 | ||
OUT_CHANNELS: 256 | ||
NORM: instance | ||
P_DROPOUT: 0.0 | ||
LAYER_CONFIG: [64, 96, 128] | ||
SIMILARITY: | ||
NAME: MatryoshkaDilatedCostVolumeList | ||
NUM_GROUPS: 1 | ||
MAX_DISPLACEMENT: 4 | ||
ENCODER_OUTPUT_STRIDES: [2, 8] | ||
DILATIONS: [[1],[1, 2, 3, 5, 9, 16]] | ||
NORMALIZE_FEAT_L2: False | ||
USE_RELU: False | ||
DECODER: | ||
NAME: DCVDilatedFlowStackFilterDecoder | ||
FEAT_STRIDES: [2, 8] | ||
DILATIONS: [[1],[1, 2, 3, 5, 9, 16]] | ||
COST_VOLUME_FILTER: | ||
NAME: DCVFilterGroupConvStemJoint | ||
NUM_GROUPS: 1 | ||
HIDDEN_DIM: 96 | ||
FEAT_IN_PLANES: 128 | ||
OUT_CHANNELS: 567 | ||
USE_FILTER_RESIDUAL: True | ||
USE_GROUP_CONV_STEM: True | ||
NORM: none | ||
UNET: | ||
NAME: UNetBase | ||
NUM_GROUPS: 1 | ||
IN_CHANNELS: 695 | ||
HIDDEN_DIM: 96 | ||
OUT_CHANNELS: 96 | ||
NORM: none | ||
BOTTLE_NECK: | ||
NAME: ASPPConv2D | ||
IN_CHANNELS: 192 | ||
HIDDEN_DIM: 192 | ||
OUT_CHANNELS: 192 | ||
DILATIONS: [2, 4, 8] | ||
NUM_GROUPS: 1 | ||
NORM: none |
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
Oops, something went wrong.