YOLO Vision 2026:

Hướng dẫn bắt đầu nhanh với Modal cho Ultralytics#

Hướng dẫn này cung cấp phần giới thiệu toàn diện về cách chạy Ultralytics YOLO26 trên Modal, bao gồm suy luận GPU serverless và huấn luyện model.

Modal là nền tảng điện toán đám mây serverless dành cho các workload AI và machine learning. Nền tảng này tự động xử lý việc cấp phát tài nguyên, mở rộng quy mô và thực thi — bạn viết code Python trên máy cục bộ, còn Modal chạy code đó trên cloud với quyền truy cập GPU. Điều này khiến Modal trở nên lý tưởng để chạy các model deep learning như YOLO26 mà không cần quản lý hạ tầng.

Bạn sẽ học được gì#

  • Thiết lập Modal và xác thực
  • Chạy suy luận YOLO26 trên Modal
  • Sử dụng GPU để tăng tốc suy luận
  • Huấn luyện model YOLO26 trên Modal

Điều kiện tiên quyết#

  • Một tài khoản Modal (đăng ký miễn phí tại modal.com)
  • Đã cài đặt Python 3.9 trở lên trên máy cục bộ

Cài đặt#

Cài đặt package Modal cho Python:

pip install modal

Sau đó xác thực CLI bằng tài khoản Modal của bạn:

modal token new
Xác thực

Lệnh modal token new sẽ mở cửa sổ trình duyệt để xác thực tài khoản Modal của bạn. Sau khi xác thực, bạn có thể chạy các lệnh Modal từ terminal.

Chạy suy luận YOLO26#

Tạo một file Python mới có tên modal_yolo.py để chạy suy luận bằng đoạn code sau:

"""
Modal + Ultralytics YOLO26 Quickstart
Run: modal run modal_yolo.py.
"""

import modal

app = modal.App("ultralytics-yolo")

image = modal.Image.debian_slim(python_version="3.11").apt_install("libgl1", "libglib2.0-0").pip_install("ultralytics")

@app.function(image=image)
def predict(image_url: str):
    """Run YOLO26 inference on an image URL."""
    from ultralytics import YOLO

    model = YOLO("yolo26n.pt")
    results = model(image_url)

    for r in results:
        print(f"Detected {len(r.boxes)} objects:")
        for box in r.boxes:
            print(f"  - {model.names[int(box.cls)]}: {float(box.conf):.2f}")

@app.local_entrypoint()
def main():
    """Test inference with sample image."""
    predict.remote("https://ultralytics.com/images/bus.jpg")

Chạy suy luận:

modal run modal_yolo.py

Kết quả dự kiến:

✓ Initialized. View run at https://modal.com/apps/your-username/main/ap-xxxxxxxx
✓ Created objects.
├── 🔨 Created mount modal_yolo.py
└── 🔨 Created function predict.
Downloading https://github.com/ultralytics/assets/releases/download/v8.4.0/yolo26n.pt to 'yolo26n.pt'...
Downloading https://ultralytics.com/images/bus.jpg to 'bus.jpg'...
image 1/1 /root/bus.jpg: 640x480 4 persons, 1 bus, 377.8ms
Speed: 5.8ms preprocess, 377.8ms inference, 0.3ms postprocess per image at shape (1, 3, 640, 480)

Detected 5 objects:
  - bus: 0.92
  - person: 0.91
  - person: 0.91
  - person: 0.87
  - person: 0.53
✓ App completed.

Bạn có thể theo dõi quá trình thực thi function trong dashboard Modal:

Modal Dashboard Function Calls

Sử dụng GPU để tăng tốc suy luận#

Thêm GPU vào function bằng cách chỉ định tham số gpu:

@app.function(image=image, gpu="T4")  # Options: "T4", "A10G", "A100", "H100"
def predict_gpu(image_url: str):
    """Run YOLO26 inference on GPU."""
    from ultralytics import YOLO

    model = YOLO("yolo26n.pt")
    results = model(image_url)
    print(results[0].boxes)
GPUBộ nhớPhù hợp nhất cho
T416 GBSuy luận, huấn luyện model nhỏ
A10G24 GBCác job huấn luyện quy mô vừa
A10040 GBHuấn luyện quy mô lớn
H10080 GBHiệu năng tối đa

Huấn luyện YOLO26 trên Modal#

Để huấn luyện, hãy sử dụng GPU và Volumes của Modal để lưu trữ lâu dài. Tạo một file Python mới có tên train_yolo.py:

import modal

app = modal.App("ultralytics-training")

volume = modal.Volume.from_name("yolo-training-vol", create_if_missing=True)

image = modal.Image.debian_slim(python_version="3.11").apt_install("libgl1", "libglib2.0-0").pip_install("ultralytics")

@app.function(image=image, gpu="T4", timeout=3600, volumes={"/data": volume})
def train():
    """Train YOLO26 model on Modal."""
    from ultralytics import YOLO

    model = YOLO("yolo26n.pt")
    model.train(data="coco8.yaml", epochs=3, imgsz=640, project="/data/runs")

@app.local_entrypoint()
def main():
    train.remote()

Chạy huấn luyện:

modal run train_yolo.py
Tính lâu dài của Volume

Modal Volumes duy trì dữ liệu giữa các lần chạy function. Các weight đã huấn luyện được lưu vào /data/runs/train/weights/.

Chúc mừng! Bạn đã thiết lập thành công Ultralytics YOLO26 trên Modal. Để tìm hiểu thêm:

FAQ#

  • Đối với suy luận, NVIDIA T4 (16 GB) thường là lựa chọn đủ dùng và tiết kiệm chi phí. Đối với huấn luyện hoặc các model lớn hơn như YOLO26x, hãy cân nhắc GPU A10G hoặc A100.

  • Modal áp dụng hình thức tính phí theo giây. Mức giá ước tính: CPU ~$0.05/giờ, T4 ~$0.59/giờ, A10G ~$1.10/giờ, A100 ~$2.10/giờ. Xem bảng giá Modal để biết mức giá hiện tại.

  • Có, bạn có thể chạy model YOLO tùy chỉnh do mình tự huấn luyện trên Modal bằng cách tải file weight từ Modal Volume:

    model = YOLO("/data/my_custom_model.pt")

    Để biết thêm thông tin về việc huấn luyện model tùy chỉnh, hãy xem hướng dẫn huấn luyện.

Những người đóng góp

Bình luận