Open 2019331099-Rabbi opened 10 months ago
Taking a look at this it looks like an issue setting up the Ray Cluster.
Can you try just running a script that calls ray.init()
?
yeah looks like Ray did not start up. Can you try these:
import ray
then ray.init()
at the beginning,/tmp/ray/session_latest/logs/raylet.err
and post it here?@2019331099-Rabbi did you get a chance to try out @rynewang 's advice?
What happened + What you expected to happen
I am running the notebook in Kaggle.
!pip install -U "ray[tune]"
When I run this the following errors generated
Versions / Dependencies
Pillow==9.5.0 numpy==1.24.3 pandas==2.0.3 ray==2.6.3 scikit-learn==1.2.2 tqdm==4.66.1
Reproduction script
Install and update Ultralytics and Ray Tune packages
!pip install -U ultralytics "ray[tune]"
Optionally install W&B for logging
!pip install -U wandb !pip install -U ipywidgets
from ultralytics import YOLO
Load a YOLOv8n model
model = YOLO('yolov8n.pt')
Start tuning hyperparameters for YOLOv8n training on the COCO8 dataset
result_grid = model.tune(data='coco8.yaml', use_ray=True)
Issue Severity
High: It blocks me from completing my task.