Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
rcnn
Commits
ef307906
Commit
ef307906
authored
Mar 14, 2014
by
Ross Girshick
Browse files
add copyright notices in files
parent
8abd6f35
Changes
23
Hide whitespace changes
Inline
Side-by-side
utils/to_rcnn_model.m
deleted
100644 → 0
View file @
8abd6f35
function rcnn_model = to_rcnn_model()
load cachedir/convnet-selective-search/caffe2_warp_context16_ft_context16_lr10x/trainval_2007_vs_test_2007_layer_fc6_finetuned_1_repro/pos_gt_neg_0.3_svm_C_0.00100_w1_2/2007/rcnn_model.mat;
rcnn_model.detectors.training_opts.cache_name = 'voc_2007_finetuned_1_caffe2_warp_context16_lr10x';
rcnn_model.cache_name = 'voc_2007_finetuned_1_caffe2_warp_context16_lr10x';
load cachedir/convnet-selective-search/caffe2_warp_context16_ft_context16_lr10x/trainval_2007_vs_test_2007_layer_fc7_finetuned_1/pos_gt_neg_0.3_svm_C_0.00100_w1_2/2007/models_final.mat;
rcnn_model.detectors.training_opts.feat_norm_mean = models{1}.opts.feat_norm_mean;
W = cat(2, cellfun(@(x) x.w, models, 'UniformOutput', false));
W = cat(2, W{:});
B = cat(2, cellfun(@(x) x.b, models, 'UniformOutput', false));
B = cat(2, B{:});
rcnn_model.detectors.W = W;
rcnn_model.detectors.B = B;
rcnn_model.detectors.training_opts.layer = 7;
vis/pool5-explorer/pool5_explorer.m
View file @
ef307906
function
pool5_explorer
(
imdb
,
cache_name
)
% AUTORIGHTS
% ---------------------------------------------------------
% Copyright (c) 2014, Ross Girshick
%
% This file is part of the R-CNN code and is available
% under the terms of the Simplified BSD License provided in
% LICENSE. Please retain this notice and LICENSE if you use
% this file (or any portion of it) in your project.
% ---------------------------------------------------------
conf
=
rcnn_config
(
'sub_dir'
,
imdb
.
name
);
...
...
vis/pool5-explorer/pool5_explorer_build_index.m
View file @
ef307906
function
pool5_explorer_build_index
(
imdb
,
cache_name
)
% AUTORIGHTS
% ---------------------------------------------------------
% Copyright (c) 2014, Ross Girshick
%
% This file is part of the R-CNN code and is available
% under the terms of the Simplified BSD License provided in
% LICENSE. Please retain this notice and LICENSE if you use
% this file (or any portion of it) in your project.
% ---------------------------------------------------------
% index.imdb_name
% index.images
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment