GithubHelp home page GithubHelp logo

How to test in CPU mode? about wsr HOT 2 CLOSED

supercaoo avatar supercaoo commented on September 24, 2024
How to test in CPU mode?

from wsr.

Comments (2)

supercaoO avatar supercaoO commented on September 24, 2024

@scimg Hello! If your machine has no GPUs or your PyTorch only supports CPU mode (i.e., torch.cuda.is_available() == False), you can try the following code modification to test in CPU mode temporarily .

Specifically, modify the codes between Line 331 and Line 334 in ./solvers/SRSolver.py

checkpoint = torch.load(model_path)
if 'state_dict' in checkpoint.keys(): checkpoint = checkpoint['state_dict']
load_func = self.model.load_state_dict if isinstance(self.model, nn.DataParallel) \
    else self.model.module.load_state_dict

to

if self.use_gpu:
    checkpoint = torch.load(model_path)
    if 'state_dict' in checkpoint.keys(): checkpoint = checkpoint['state_dict']
    load_func = self.model.load_state_dict if isinstance(self.model, nn.DataParallel) \
    else self.model.module.load_state_dict
else:
    checkpoint = torch.load(model_path, map_location=lambda storage, loc: storage)
    if 'state_dict' in checkpoint.keys(): checkpoint = checkpoint['state_dict']
    checkpoint_cpu = {}
    for key in checkpoint.keys():
        checkpoint_cpu[key.replace('module.', '')] = checkpoint[key]
    checkpoint = checkpoint_cpu
    load_func = self.model.load_state_dict

Then, try to test the pre-trained model again:

cd WSR
python test.py -opt options/test/test_WSR_Set5.json

I will update the repository to support CPU mode as soon as possible.

from wsr.

scimg avatar scimg commented on September 24, 2024

@supercaoO Thanks for replying, it works fine now.

from wsr.

Related Issues (2)

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.