OmniParser icon indicating copy to clipboard operation
OmniParser copied to clipboard

Run gradio_demo.py error

Open gorojack opened this issue 1 year ago • 4 comments

I got an error when running the command in README.md python gradio_demo.py --icon_detect_model weights/icon_detect_v1_5/model_v1_5.pt --icon_caption_model florence2

(omni) PS D:\work\OmniParser> python gradio_demo.py --icon_detect_model weights/icon_detect_v1_5/model_v1_5.pt --icon_caption_model florence2 
[2025-02-09 22:08:24,724] [ WARNING] easyocr.py:80 - Neither CUDA nor MPS are available - defaulting to CPU. Note: This module is much faster with a GPU.
Traceback (most recent call last):
  File "D:\work\OmniParser\gradio_demo.py", line 72, in <module>
    yolo_model = get_yolo_model(model_path=icon_detect_model)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\work\OmniParser\utils.py", line 73, in get_yolo_model
    model = YOLO(model_path)
            ^^^^^^^^^^^^^^^^
  File "D:\work\OmniParser\omni\Lib\site-packages\ultralytics\models\yolo\model.py", line 23, in __init__
    super().__init__(model=model, task=task, verbose=verbose)
  File "D:\work\OmniParser\omni\Lib\site-packages\ultralytics\engine\model.py", line 142, in __init__
    self._load(model, task=task)
  File "D:\work\OmniParser\omni\Lib\site-packages\ultralytics\engine\model.py", line 229, in _load
    self.model, self.ckpt = attempt_load_one_weight(weights)
                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\work\OmniParser\omni\Lib\site-packages\ultralytics\nn\tasks.py", line 788, in attempt_load_one_weight        
    ckpt, weight = torch_safe_load(weight)  # load ckpt
                   ^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\work\OmniParser\omni\Lib\site-packages\ultralytics\nn\tasks.py", line 714, in torch_safe_load
    ckpt = torch.load(file, map_location="cpu")
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "D:\work\OmniParser\omni\Lib\site-packages\torch\serialization.py", line 1470, in load
    raise pickle.UnpicklingError(_get_wo_message(str(e))) from None
_pickle.UnpicklingError: Weights only load failed. This file can still be loaded, to do so you have two options, do those steps only if you trust the source of the checkpoint.
        (1) In PyTorch 2.6, we changed the default value of the `weights_only` argument in `torch.load` from `False` to `True`. Re-running `torch.load` with `weights_only` set to `False` will likely succeed, but it can result in arbitrary code execution. Do it only if you got the file from a trusted source.
        (2) Alternatively, to load with `weights_only=True` please check the recommended steps in the following error message.
        WeightsUnpickler error: Unsupported global: GLOBAL ultralytics.nn.tasks.DetectionModel was not an allowed global by default. Please use `torch.serialization.add_safe_globals([DetectionModel])` or the `torch.serialization.safe_globals([DetectionModel])` context manager to allowlist this global if you trust this class/function.

Check the documentation of torch.load to learn more about types accepted by default with weights_only https://pytorch.org/docs/stable/generated/torch.load.html.

gorojack avatar Feb 09 '25 14:02 gorojack

I have this same issue

Acacia19 avatar Feb 10 '25 00:02 Acacia19

I got the same error

karinTan avatar Feb 16 '25 04:02 karinTan

Had the same error fixed by downgrading ultralytics to ultralytics==8.3.70.

alirezashojaei avatar Feb 16 '25 10:02 alirezashojaei

I got the this error too

ManiacXHG avatar Feb 16 '25 16:02 ManiacXHG

It works, Just put the OmniParser Model Repository into weights folder

gorojack avatar Feb 18 '25 03:02 gorojack

Ok thank you

ManiacXHG avatar Feb 18 '25 15:02 ManiacXHG