Skip to content
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

pretrained model #1

Open
suguliwei opened this issue Jan 25, 2018 · 4 comments
Open

pretrained model #1

suguliwei opened this issue Jan 25, 2018 · 4 comments

Comments

@suguliwei
Copy link

Can you share the pretraind model of imagenet?That will be a lot helpful for me! Thanks!

@rog93
Copy link
Owner

rog93 commented Jan 26, 2018

@suguliwei sorry, I will not, but I can share some of my training details here, my solver.proto is like below:
lr_policy: "multistep"
stepvalue: 300000
stepvalue: 600000
stepvalue: 900000
base_lr: 0.045
momentum: 0.9
max_iter: 1000000
weight_decay: 4e-5
gamma: 0.1
solver_type: SGD
batch_size: 128
And I use Inception augmentation as well.
You can try to train you own model.

@chunniunai220ml
Copy link

@RuiminChen can you explain why you take multistep policy?just according to test?and how to understand the stepvalue?
what is the Inception augmentation?can you provide some informaion?mean=[128.0],scale=0.0078????and some others ???

@rog93
Copy link
Owner

rog93 commented Feb 4, 2018

@chunniunai220ml
1.why multistep policy?
just personal experience.
2.how to understand the stepvalue?
ImageNet Classfication training set has about 1280k images,300k iteration (128 batchsize) ≈ 30 epochs
3.Inception augmentation means ImageNet data augmentation strategy proposed by InceptionV1,you can get more details here: https://arxiv.org/abs/1409.4842
4.BGR mean values [103.94,116.78,123.68] are subtracted and scale=0.017 is used as std values for image preprocessing.
Hope these helpful for you.

@chunniunai220ml
Copy link

@RuiminChen thanks for you reply timely.
I have read the paper,and I want to know the data augmentation how important it is.
the paper set resize_ratio:8-100%,aspect_ratio:[3/4,4/3],and distortions refer a paper,it also use random interpolation,have you done all of these measures in data layer?
more importantly,you add these data augmentation in caffe layer or python layer or some other ways?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants