i want to train my model with yolov8 but after starting training this problem appears ( The kernel for ultralytics/datasets/lollipop/Untitled.ipynb appears to have died. It will restart automatically.) and i have gtx 1650 with 4gb of memory and this is my code : import torch
from ultralytics import YOLO
Load the model
model = YOLO(‘yolov8s.pt’)
Train the model
results=model.train(data=’data.yaml’, epochs=100, imgsz=640, device=0, perspective=0.001, degrees=15, fliplr=0, batch=4)
i want to train and i dont know what is the cause of this can someone help me and thanks
Mohamed Amine Aichaoui is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.