Giter Site home page Giter Site logo

dni's Introduction

dni's People

Contributors

xinntao 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  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  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

dni's Issues

day2night datasets

Thank you for sharing your awesome work.
I was very impressed by vividness of day to night example. According to Sec 4.2 of your paper, the translation algorithm base on CycleGAN or Pix2Pix, right? Could you tell me which datasets did you use?

Hi, Can I ask how to do fine-tune when you train GanEffect.

Hi, Can I ask how to do fine-tune when you train Gan Effect.
I think you use ESRGAN model for this fine-tune.
but i don't know what kinds of layer for fine-tune, and numbers of layer.

can you explain how you transfer the model PSNR Effect to Gan Effect. :)

老师,我训练esrgan网络,同时用另一个网络只有l1,发现两个生成网络参数插值后推理图片变得很暗?

老师,我训练esrgan网络,同时用另一个网络只有l1,发现两个生成网络参数插值后推理图片变得很暗?
这是什么原因呀,请求指点下

L1的结果
image

Gan的结果
image

两者插值的结果
image

def load_network_interpolation(load_path, network, load_path_l1, l1_a=0.5, strict=True):
    load_net = torch.load(load_path)
	load_net_l1 = torch.load(load_path_l1)
    load_net_interpolation = OrderedDict()  
    for k, v in load_net.items():
        v_l1 = load_net_l1[k]
        load_net_interpolation[k] = v*(1-l1_a) + v_l1*l1_a
    network.load_state_dict(load_net_interpolation, strict=strict)

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.