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

Update densenet.md #2634

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion chapter_convolutional-modern/densenet.md
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ applying DenseNet may require more memory-efficient implementations that may inc
## Exercises

1. Why do we use average pooling rather than max-pooling in the transition layer?
1. One of the advantages mentioned in the DenseNet paper is that its model parameters are smaller than those of ResNet. Why is this the case?
1. One of the advantages mentioned in the DenseNet paper is that its model parameters are fewer than those of ResNet. Why is this the case?
1. One problem for which DenseNet has been criticized is its high memory consumption.
1. Is this really the case? Try to change the input shape to $224\times 224$ to compare the actual GPU memory consumption empirically.
1. Can you think of an alternative means of reducing the memory consumption? How would you need to change the framework?
Expand Down
Loading