Giter Club home page Giter Club logo

multiwienernet's People

Contributors

kyrollosyanny avatar monakhova avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

multiwienernet's Issues

include the "hydra3.jpg" in the data

Hi, I want to reproduce the "FISTA" result included in the "common" folder. But the sample data "hydra.jpg" is not included in the data folder. Could you update it so I can make the demo work?

Thanks.

Wrong order of arguments / keyword arguments

Hello,
in unet.py you create ConvBlock-objects with (for example) this call:
self.conv1 = ConvBlock(n_channel_in, 32, residual, activation)

But the constructor of ConvBlock is __init__(self, in_channels, out_channels, dropout=False, norm='batch', residual=True, activation='leakyrelu', transpose=False), resulting in self.dropout being assigned to residual and self.norm being set to activation.

You probably wanted to call it like this:
self.conv1 = ConvBlock(n_channel_in, 32, residual=residual, activation=activation) and so on.

Minimal example:

class ConvBlock():
    def __init__(self, in_channels, out_channels, dropout=False, norm='batch',
                 residual=True, activation='leakyrelu', transpose=False):
        self.dropout = dropout
        self.residual = residual
        self.activation = activation
        self.transpose = transpose
        self.norm = norm
    
    def printme(self):
        print('Dropout: ', self.dropout)
        print('Residual: ', self.residual)
        print('Activation: ', self.activation)
        print('Transpose: ', self.transpose)
        print('Norm: ', self.norm)

residual = True
activation = 'relu'
c = ConvBlock(32, 64, residual, activation)
c.printme()
"""Dropout:  True
Residual:  True
Activation:  leakyrelu
Transpose:  False
Norm:  relu
"""

c2 = ConvBlock(32, 64, residual=residual, activation=activation)
c2.printme()
"""
Dropout:  False
Residual:  True
Activation:  relu
Transpose:  False
Norm:  batch
"""

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.