forked from ray-project/kuberay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RayJob] [Doc] Add real-world Ray Job use case tutorial for KubeRay (r…
…ay-project#1361) Adds a sample YAML file for RayJob batch inference --------- Signed-off-by: Archit Kulkarni <[email protected]>
- Loading branch information
1 parent
b86e027
commit fcd5287
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
108 changes: 108 additions & 0 deletions
108
ray-operator/config/samples/ray-job.batch-inference.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
apiVersion: ray.io/v1alpha1 | ||
kind: RayJob | ||
metadata: | ||
name: rayjob-sample | ||
spec: | ||
entrypoint: python /home/ray/samples/sample_code.py | ||
rayClusterSpec: | ||
rayVersion: '2.6.3' | ||
headGroupSpec: | ||
rayStartParams: | ||
dashboard-host: '0.0.0.0' | ||
template: | ||
spec: | ||
containers: | ||
- name: ray-head | ||
image: rayproject/ray-ml:2.6.3-gpu | ||
ports: | ||
- containerPort: 6379 | ||
name: gcs-server | ||
- containerPort: 8265 | ||
name: dashboard | ||
- containerPort: 10001 | ||
name: client | ||
resources: | ||
limits: | ||
nvidia.com/gpu: "4" | ||
cpu: "54" | ||
memory: "54Gi" | ||
requests: | ||
nvidia.com/gpu: "4" | ||
cpu: "54" | ||
memory: "54Gi" | ||
volumeMounts: | ||
- mountPath: /home/ray/samples | ||
name: code-sample | ||
nodeSelector: | ||
cloud.google.com/gke-accelerator: nvidia-tesla-t4 | ||
volumes: | ||
- name: code-sample | ||
configMap: | ||
name: ray-job-code-sample | ||
items: | ||
- key: sample_code.py | ||
path: sample_code.py | ||
|
||
######################Ray code ################################# | ||
# This sample is from https://docs.ray.io/en/latest/data/examples/huggingface_vit_batch_prediction.html | ||
# It is mounted into the container. | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: ray-job-code-sample | ||
data: | ||
sample_code.py: | | ||
import ray | ||
s3_uri = "s3://anonymous@air-example-data-2/imagenette2/val/" | ||
ds = ray.data.read_images( | ||
s3_uri, mode="RGB" | ||
) | ||
ds | ||
from typing import Dict | ||
import numpy as np | ||
from transformers import pipeline | ||
from PIL import Image | ||
BATCH_SIZE = 16 | ||
class ImageClassifier: | ||
def __init__(self): | ||
# If doing CPU inference, set `device="cpu"` instead. | ||
self.classifier = pipeline("image-classification", model="google/vit-base-patch16-224", device=0) # TODO:archit | ||
def __call__(self, batch: Dict[str, np.ndarray]): | ||
# Convert the numpy array of images into a list of PIL images which is the format the HF pipeline expects. | ||
outputs = self.classifier( | ||
[Image.fromarray(image_array) for image_array in batch["image"]], | ||
top_k=1, | ||
batch_size=BATCH_SIZE) | ||
# `outputs` is a list of length-one lists. For example: | ||
# [[{'score': '...', 'label': '...'}], ..., [{'score': '...', 'label': '...'}]] | ||
batch["score"] = [output[0]["score"] for output in outputs] | ||
batch["label"] = [output[0]["label"] for output in outputs] | ||
return batch | ||
predictions = ds.map_batches( | ||
ImageClassifier, | ||
compute=ray.data.ActorPoolStrategy(size=4), # Change this number based on the number of GPUs in your cluster. | ||
num_gpus=1, # Specify 1 GPU per model replica. | ||
batch_size=BATCH_SIZE # Use the largest batch size that can fit on our GPUs | ||
) | ||
prediction_batch = predictions.take_batch(5) | ||
from PIL import Image | ||
print("A few sample predictions: ") | ||
for image, prediction in zip(prediction_batch["image"], prediction_batch["label"]): | ||
img = Image.fromarray(image) | ||
# Display the image | ||
img.show() | ||
print("Label: ", prediction) | ||
# Write to local disk, or external storage, e.g. S3 | ||
# ds.write_parquet("s3://my_bucket/my_folder") |