Fix YAML frontmatter in ray-data and ray-train skills

Quote dependencies with brackets (ray[data], ray[train]) to fix
YAML parsing errors.

https://claude.ai/code/session_01W55m9cXpr4gbDnJFNZdQHu
This commit is contained in:
Claude
2026-02-02 10:19:37 +00:00
parent 87777c11e5
commit 13b73c2228
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ version: 1.0.0
author: Orchestra Research
license: MIT
tags: [Data Processing, Ray Data, Distributed Computing, ML Pipelines, Batch Inference, ETL, Scalable, Ray, PyTorch, TensorFlow]
dependencies: [ray[data], pyarrow, pandas]
dependencies: ["ray[data]", pyarrow, pandas]
---
# Ray Data - Scalable ML Data Processing
+1 -1
View File
@@ -5,7 +5,7 @@ version: 1.0.0
author: Orchestra Research
license: MIT
tags: [Ray Train, Distributed Training, Orchestration, Ray, Hyperparameter Tuning, Fault Tolerance, Elastic Scaling, Multi-Node, PyTorch, TensorFlow]
dependencies: [ray[train], torch, transformers]
dependencies: ["ray[train]", torch, transformers]
---
# Ray Train - Distributed Training Orchestration