Skip to content

Commit

Permalink
[data] [docs] Datastream docs rename [5/n] (ray-project#34512)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericl authored and architkulkarni committed May 16, 2023
1 parent f6c7a27 commit 5083d3e
Show file tree
Hide file tree
Showing 153 changed files with 1,663 additions and 1,948 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Ray is a unified framework for scaling AI and Python applications. Ray consists
Learn more about `Ray AIR`_ and its libraries:

- `Datasets`_: Distributed Data Preprocessing
- `Data`_: Distributed ML Preprocessing
- `Train`_: Distributed Training
- `Tune`_: Scalable Hyperparameter Tuning
- `RLlib`_: Scalable Reinforcement Learning
Expand All @@ -44,7 +44,7 @@ Install Ray with: ``pip install ray``. For nightly wheels, see the
`Installation page <https://docs.ray.io/en/latest/installation.html>`__.

.. _`Serve`: https://docs.ray.io/en/latest/serve/index.html
.. _`Datasets`: https://docs.ray.io/en/latest/data/dataset.html
.. _`Data`: https://docs.ray.io/en/latest/data/data.html
.. _`Workflow`: https://docs.ray.io/en/latest/workflows/concepts.html
.. _`Train`: https://docs.ray.io/en/latest/train/train.html
.. _`Tune`: https://docs.ray.io/en/latest/tune/index.html
Expand Down
2 changes: 1 addition & 1 deletion doc/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ py_test_run_all_subdirectory(
include = ["source/data/doc_code/*.py"],
exclude = [
"source/ray-air/doc_code/predictors.py",
"source/data/doc_code/creating_datasets_untested.py"
"source/data/doc_code/creating_datastreams_untested.py"
],
extra_srcs = [],
tags = ["exclusive", "team:core"],
Expand Down
2 changes: 1 addition & 1 deletion doc/source/_static/js/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ document.addEventListener("DOMContentLoaded", function() {
"Ray Clusters", "Deploying on Kubernetes", "Deploying on VMs",
"Applications Guide", "Ray Cluster Management API",
"Ray AI Runtime (AIR)", "Ray AIR API",
"Ray Data", "Ray Datasets API", "Integrations",
"Ray Data", "Ray Data API", "Integrations",
"Ray Train", "Ray Train API",
"Ray Tune", "Ray Tune Examples", "Ray Tune API",
"Ray Serve", "Ray Serve API",
Expand Down
2 changes: 1 addition & 1 deletion doc/source/_static/js/top-navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ librariesMenu.innerHTML = "<a href='#'>Libraries" + downCaret + "</a>"
librariesList = document.createElement("ul")
librariesList.innerHTML += "<li><a href='" + getNavURL("ray-core/walkthrough.html") + "'><span class='primary'>Ray Core</span><span class='secondary'>Scale general Python applications</span></a></li>"
librariesList.innerHTML += "<li><a href='" + getNavURL("ray-air/getting-started.html") + "'><span class='primary'>Ray AIR</span><span class='secondary'>Scale AI applications</span></a></li>"
librariesList.innerHTML += "<li><a href='" + getNavURL("data/dataset.html") + "'><span class='primary'>Ray Datasets</span><span class='secondary'>Scale data ingest and preprocessing</span></a></li>"
librariesList.innerHTML += "<li><a href='" + getNavURL("data/data.html") + "'><span class='primary'>Ray Data</span><span class='secondary'>Scale data ingest and preprocessing</span></a></li>"
librariesList.innerHTML += "<li><a href='" + getNavURL("train/train.html") + "'><span class='primary'>Ray Train</span><span class='secondary'>Scale machine learning training</span></a></li>"
librariesList.innerHTML += "<li><a href='" + getNavURL("tune/index.html") + "'><span class='primary'>Ray Tune</span><span class='secondary'>Scale hyperparameter tuning</span></a></li>"
librariesList.innerHTML += "<li><a href='" + getNavURL("serve/index.html") + "'><span class='primary'>Ray Serve</span><span class='secondary'>Scale model serving</span></a></li>"
Expand Down
7 changes: 3 additions & 4 deletions doc/source/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ parts:
- file: ray-air/api/api
- file: ray-air/benchmarks

- file: data/dataset
- file: data/data
title: Ray Data
sections:
- file: data/getting-started
Expand All @@ -95,10 +95,9 @@ parts:
- file: data/examples/nyc_taxi_basic_processing
title: Processing the NYC taxi dataset
- file: data/examples/batch_training
title: Batch Training with Ray Datasets
title: Batch Training with Ray Data
- file: data/examples/ocr_example
title: Scaling OCR with Ray Datasets
- file: data/examples/advanced-pipelines
title: Scaling OCR with Ray Data
- file: data/examples/random-access
- file: data/faq
- file: data/api/api
Expand Down
11 changes: 5 additions & 6 deletions doc/source/data/api/api.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
.. _data-api:

Ray Datasets API
Ray Data API
================

.. toctree::
:maxdepth: 2

input_output.rst
dataset.rst
dataset_iterator.rst
dataset_pipeline.rst
datastream.rst
data_iterator.rst
execution_options.rst
grouped_dataset.rst
dataset_context.rst
grouped_data.rst
data_context.rst
data_representations.rst
random_access_dataset.rst
utility.rst
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. _dataset-context-api:
.. _data-context-api:

DataContext API
===============
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions doc/source/data/api/data_representations.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _data-representations:

Data Representations
====================
Data Representations (internal)
===============================

.. currentmodule:: ray.data

Expand Down Expand Up @@ -34,7 +34,7 @@ Row API

row.TableRow

.. _dataset-tensor-extension-api:
.. _datastream-tensor-extension-api:

Tensor Column Extension API
---------------------------
Expand Down
165 changes: 0 additions & 165 deletions doc/source/data/api/dataset.rst

This file was deleted.

99 changes: 0 additions & 99 deletions doc/source/data/api/dataset_pipeline.rst

This file was deleted.

Loading

0 comments on commit 5083d3e

Please sign in to comment.