小编Pri*_*rko的帖子

YOLOv8:运行时错误:在当前进程完成引导阶段之前尝试启动新进程

在当前进程完成其引导阶段之前,已尝试启动新进程。

    This probably means that you are not using fork to start your
    child processes and you have forgotten to use the proper idiom
    in the main module:

        if __name__ == '__main__':
            freeze_support()
            ...

    The "freeze_support()" line can be omitted if the program
    is not going to be frozen to produce an executable.
Run Code Online (Sandbox Code Playgroud)

** 尝试在 python 环境中训练 YOLOv8 模型时会出现此错误** from ultralytics import YOLO

# Load a model
model = YOLO("yolov8n.yaml")  # build a new model from scratch
model = YOLO("yolov8n.pt") …
Run Code Online (Sandbox Code Playgroud)

python yolo

6
推荐指数
1
解决办法
5112
查看次数

标签 统计

python ×1

yolo ×1