Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Add fine-tuning tutorial #601

Merged
merged 2 commits into from
May 10, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
reflect comment
  • Loading branch information
yuyu2172 committed May 10, 2018
commit 36a53e802c620c1a46de87a33a6a3043aa1ef4ce
2 changes: 1 addition & 1 deletion docs/source/tutorial/link.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Finally, this is a complete example using SSD300.
# the number of classes in VOC is different from 50
dst = SSD300(n_fg_class=50)
# initialized weights
dst(np.zeros((1, 3, 300, 300)).astype(np.float32))
dst(np.zeros((1, 3, dst.insize, dst.insize), dtype=np.float32))

# the method described above
ignore_names = get_shape_mismatch_names(src, dst)
Expand Down