Code Monkey home page Code Monkey logo

Comments (4)

Tianxiaomo avatar Tianxiaomo commented on July 23, 2024 2

you can refer to models.py

if __name__ == "__main__":
    model = Yolov4()

    pretrained_dict = torch.load('weight/yolov4.pth')
    model.load_state_dict(pretrained_dict)

    num_classes = 80
    if num_classes == 20:
        namesfile = 'data/voc.names'
    elif num_classes == 80:
        namesfile = 'data/coco.names'
    else:
        namesfile = 'data/names'

    use_cuda = 0
    if use_cuda:
        model.cuda()

    from PIL import Image

    img = Image.open("data/dog.jpg").convert('RGB')
    sized = img.resize((608, 608))
    from tool.utils import *

    boxes = do_detect(model, sized, 0.5, 0.4, use_cuda)

    class_names = load_class_names(namesfile)
    plot_boxes(img, boxes, 'predictions.jpg', class_names)

from pytorch-yolov4.

vkrd avatar vkrd commented on July 23, 2024

If you use the --load argument when calling train.py, then you can just pass the location of your model.pth

from pytorch-yolov4.

vkrd avatar vkrd commented on July 23, 2024

Or use @Tianxiaomo's answer if you want to apply the model to an image

from pytorch-yolov4.

MRGAO1996 avatar MRGAO1996 commented on July 23, 2024

you can refer to models.py

if __name__ == "__main__":
    model = Yolov4()

    pretrained_dict = torch.load('weight/yolov4.pth')
    model.load_state_dict(pretrained_dict)

    num_classes = 80
    if num_classes == 20:
        namesfile = 'data/voc.names'
    elif num_classes == 80:
        namesfile = 'data/coco.names'
    else:
        namesfile = 'data/names'

    use_cuda = 0
    if use_cuda:
        model.cuda()

    from PIL import Image

    img = Image.open("data/dog.jpg").convert('RGB')
    sized = img.resize((608, 608))
    from tool.utils import *

    boxes = do_detect(model, sized, 0.5, 0.4, use_cuda)

    class_names = load_class_names(namesfile)
    plot_boxes(img, boxes, 'predictions.jpg', class_names)

My bad, I only looked into 'tool', 'models.py' works. Thank you!

from pytorch-yolov4.

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.