GithubHelp home page GithubHelp logo

Comments (5)

huanghoujing avatar huanghoujing commented on June 21, 2024

Hi, thanks for your attention. After training is over, you can add --only_test true to test the model, keeping other parameters the same as your training command. In this case, model_weight.pth is not needed and you don't need to specify --model_weight_file. The program will automatically use ckpt.pth in your exp_dir.

from alignedreid-re-production-pytorch.

weiyuxingchen avatar weiyuxingchen commented on June 21, 2024

why is the size of 'model_weight.pth' and 'ckpt.pth' different

from alignedreid-re-production-pytorch.

huanghoujing avatar huanghoujing commented on June 21, 2024

@weiyuxingchen ckpt.pth contains model weights and optimizer intermediate states; model_weight.pth only contains model weights. I upload model_weight.pth only to save disk. For testing your just-trained model, you can specify --only_test true and the code will use ckpt.pth in your exp_dir to run testing.

from alignedreid-re-production-pytorch.

chj1933 avatar chj1933 commented on June 21, 2024

@huanghoujing ,Hello, if I want to save the final model_weight.pth, how should I do?

from alignedreid-re-production-pytorch.

huanghoujing avatar huanghoujing commented on June 21, 2024

Hi, example to extract model weight from checkpoint file and save it to model_weight_file (to save disk space) is shown below.

ckpt_file = 'ckpt.pth'
model_weight_file = 'model_weight.pth'
map_location = lambda storage, loc: storage
ckpt = torch.load(ckpt_file, map_location=map_location)
model_weight = ckpt['state_dicts'][0]
torch.save(model_weight, model_weight_file)

from alignedreid-re-production-pytorch.

Related Issues (20)

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.