-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【Hackathon4 No.168】Add gupnet implementation #333
Open
Xiaolong-RRL
wants to merge
17
commits into
PaddlePaddle:develop
Choose a base branch
from
Xiaolong-RRL:my-cool-stuff
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
f9a5697
add gupnet implementation
Xiaolong-RRL d72f163
fix code style
Xiaolong-RRL 3eee82d
fix kitti_gupnet* code style
Xiaolong-RRL 3cfb902
fix kitti_gupnet.py code style
Xiaolong-RRL 0ec43e0
fix code style with yapf-0.26.0
Xiaolong-RRL e0632bc
fix code style
Xiaolong-RRL 8fbeaa2
fix bug
Xiaolong-RRL f6731cc
fix code style
Xiaolong-RRL 4809c49
fix bug
Xiaolong-RRL 7383449
fix bug
Xiaolong-RRL 182f1d0
Delete .gitignore
Xiaolong-RRL 6e9938d
fix gitignore
Xiaolong-RRL 2444cd6
fix gupnet code
Xiaolong-RRL 6475a75
fix paddle3d/models/detection/__init__.py
Xiaolong-RRL 21bb707
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle3D in…
Xiaolong-RRL d611cac
update gupnet config
Xiaolong-RRL 6e635f3
add gupnet
Xiaolong-RRL File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
batch_size: 32 | ||
epochs: 140 | ||
|
||
train_dataset: | ||
type: GUPKittiMonoDataset | ||
dataset_root: /root/kitti | ||
use_3d_center: True | ||
class_name: ['Pedestrian', 'Car', 'Cyclist'] | ||
resolution: [1280, 384] | ||
random_flip: 0.5 | ||
random_crop: 0.5 | ||
scale: 0.4 | ||
shift: 0.1 | ||
mode: train | ||
|
||
val_dataset: | ||
type: GUPKittiMonoDataset | ||
dataset_root: /root/kitti | ||
use_3d_center: True | ||
class_name: ['Pedestrian', 'Car', 'Cyclist'] | ||
resolution: [1280, 384] | ||
random_flip: 0.5 | ||
random_crop: 0.5 | ||
scale: 0.4 | ||
shift: 0.1 | ||
mode: val | ||
|
||
optimizer: | ||
type: Adam | ||
Xiaolong-RRL marked this conversation as resolved.
Show resolved
Hide resolved
|
||
weight_decay: 0.00001 | ||
|
||
lr_scheduler: | ||
type: CosineWarmupMultiStepDecayByEpoch | ||
warmup_steps: 5 | ||
learning_rate: 0.00125 | ||
milestones: [90, 120] | ||
decay_rate: 0.1 | ||
start_lr: 0.00001 | ||
|
||
model: | ||
type: GUPNET | ||
backbone: | ||
type: GUP_DLA34 | ||
down_ratio: 4 | ||
pretrained: ./checkpoint_root/dla34-ba72cf86_paddle_new.pdparams | ||
head: | ||
type: GUPNETPredictor | ||
head_conv: 256 | ||
threshold: 0.2 | ||
stat_epoch_nums: 5 | ||
max_epoch: 140 | ||
train_datasets_length: 3712 |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
数据处理以transforms的方式展示出来,形式为
transforms:
- type:
- type:
- type: