-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a20dffd
commit a5959a4
Showing
5 changed files
with
35 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Data | ||
|
||
### Generate training data | ||
- Please refer to [link](../README.md). | ||
### Donload testing data | ||
- The following two testing datasets can be download. | ||
- [Sim](https://dsr-net.cs.columbia.edu/download/data/sim_test_data.zip): 400 sequences, generated in pybullet. | ||
- [Real](https://dsr-net.cs.columbia.edu/download/data/real_test_data.zip): 150 sequences, with full annotations. | ||
- Unzip `real_test_data.zip` and `sim_test_data.zip` in this folder. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
# Object Models | ||
|
||
### Object meshes are used for data generation in simulation. | ||
- Download object meshes: [shapenet](https://dsr-net.cs.columbia.edu/download/object_models/shapenet.zip) and [ycb](https://dsr-net.cs.columbia.edu/download/object_models/ycb.zip). | ||
- Unzip `shapenet.zip` and `ycb.zip` in this folder. |
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,9 @@ | ||
# Pretrained Models | ||
|
||
### The following pretrained models are provided: | ||
- [dsr](dsr.pth): DSR-Net introduced in the paper. (without real data finetuning) | ||
- [dsr_ft](dsr_ft.pth): DSR-Net introduced in the paper. (with real data finetuning) | ||
- [single](single.pth): It does not use any history aggregation. | ||
- [nowarp](nowarp.pth): It does not warp the representation before aggregation. | ||
- [gtwarp](gtwarp.pth): It warps the representation with ground truth motion (i.e., performance oracle) | ||
- [3dflow](3dflow.pth): It predicts per-voxel scene flow for the entire 3D volume. |