-
Notifications
You must be signed in to change notification settings - Fork 515
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
How to remove one fully connected layer? #6
Comments
size_list and num_list should have same size, change the line above to
would fix the error |
looks like u are using Python 3? or matplotlib 2.0
there're some problems there
python 2 and matplotlib 1.4 should have no problem.
sorry that i don't have time to look into details at this moment
…On Mar 9, 2017 17:08, "Laurynas Tumosa" ***@***.***> wrote:
[image: convnet_fig]
<https://cloud.githubusercontent.com/assets/7099082/23777621/e79dcc38-052d-11e7-9ee7-df7995a37788.png>
Thanks! However, now I am getting a huge gap between conv and fully
connected layers and no directed links between convolutional layers.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AG7ZuhACwFemZd2dUSiQgDBe6efBtN3qks5rkKKRgaJpZM4MYzCJ>
.
|
Thank you, downgrading the matplotlib fixed the connections. Could you tell me what parameter controls the distance between fully connected and hidden layers? That huge gap remained and doesn't look very good |
@laur1s actually I'm not able to generate the huge gap you've shown , if i set
if you still have the problem you might play with |
I only have one fully connected layer in my conv net. However, when I try to remove it from list
num_list = [1, 500]
I getadd_layer(patches, colors, size=size_list[ind], num=num_show_list[ind], IndexError: list index out of range
How do I solve this problem?The text was updated successfully, but these errors were encountered: