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

This repo is a scam #14

Closed
VladislavZavadskyy opened this issue Sep 19, 2018 · 4 comments
Closed

This repo is a scam #14

VladislavZavadskyy opened this issue Sep 19, 2018 · 4 comments

Comments

@VladislavZavadskyy
Copy link

Don't waste your time dealing with the code, cause I did it for you.
I've made an input-label collage. As you can see the network learns to blur the (slightly blurred and filtered) labels passed to it as input.
io

@VladislavZavadskyy
Copy link
Author

Model itself looks like this

class PRN(nn.Module):
    def __init__(self,node_count,coeff):
        super(PRN, self).__init__()
        self.flatten   = Flatten()
        self.height    = coeff*28
        self.width     = coeff*18
        self.dens1     = nn.Linear(self.height*self.width*17, node_count)
        self.bneck     = nn.Linear(node_count, node_count)
        self.dens2     = nn.Linear(node_count, self.height*self.width*17)
        self.drop      = nn.Dropout()
        self.add       = Add()
        self.softmax   = nn.Softmax(dim=1)

    def forward(self, x):
        res = self.flatten(x)
        out = self.drop(F.relu(self.dens1(res)))
        out = self.drop(F.relu(self.bneck(out)))
        out = F.relu(self.dens2(out))
        out = self.add(out,res)
        out = self.softmax(out)
        out = out.view(out.size()[0],self.height, self.width, 17)

        return out

@mkocabas
Copy link
Collaborator

Hey @VladislavZavadskyy,

Could you clearly describe your problem instead of making a groundless judgment? This repo isn't a full pipeline of the things that we introduced in our recent paper, just a demo of the main contribution to help people to understand the idea. If you can state your issue in a concise way, maybe we can guide you to correct resources.

Thanks,

@VladislavZavadskyy
Copy link
Author

Your main contribution is 3-layer perceptron trained on ground truth labels. With results existing only as numbers in the paper and "the rest of the network" being unavailable due to "some license problems" it's clear enough for me.
Thanks for trying though.

@sjiang17
Copy link

@VladislavZavadskyy Hi, have you tried what is it like for input heatmaps with multiple peaks?

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