Giter Club home page Giter Club logo

knowledge-distillation-for-super-resolution's People

Contributors

vincent-hoo 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

knowledge-distillation-for-super-resolution's Issues

How to implement dataloader with new version of pytorch (> pytorch v1.10.0)?

I see there are several method called MSDataLoader and _MSDataLoaderIter you defined in "dataloader.py", which _MSDataLoaderIter is inherited from _DataLoaderIter in pytorch v1.1.0. However, as we know there is no "_DataLoaderIter " after pytorch v1.2.0, I tried to change it to derived from "_MultiProcessingDataLoaderIter" but failed.

I tried to install pytorch 1.1.0 but it's too old to be installed and not compatible with other libs.

Could you give me a clue how to change the code to adapt newer version of pytorch? Thanks

sharing paper

Hi Vincent,

This repo seems super interesting! Would you mind sharing your paper? I would love to read it! My email is [email protected]. Thanks very much!

paper

同学你好,我是清华深研院MEAI2020级的同学,我对你的这份工作非常感兴趣,想follow你的工作。不知道能不能交个朋友,我们一起搞点新的东西。我之前有发过顶会的。

Test data tar file not accessible.

I am unable to download the tar file for the testing data. If it is not possible to share, can you help me understand how I can prepare the test data on my own?

Thanks.

affinity matrix is very big

very thanks for your job! and I still have a little question, in fakd, even if the feat map size is [256x256], the size of affinity matrix is [1,1,65536,65536], and only batch size =1 (1 teacher feat and 1 student feat) will use almost 33 GiB memory! How to run the method correctly?

class EDSR member function forward() has some bugs.

def forward(self, x):
feature_maps = []
x = self.sub_mean(x)
x = self.head(x)
feature_maps.append(x)

    res = self.body1(x)
    feature_maps.append(x)  <===  SHOULD BE feature_maps.append(res) 
    res = self.body2(res)
    feature_maps.append(x)  <===  SHOULD BE feature_maps.append(res)
    res = self.body3(res)
    feature_maps.append(res)
    
    res += x
    

    x = self.tail(res)
    x = self.add_mean(x)

    return feature_maps, x 

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.