Skip to content

Commit

Permalink
[doc] Rename toc entry for libraries back to "Ray Libraries" (ray-pro…
Browse files Browse the repository at this point in the history
  • Loading branch information
ericl committed Jul 12, 2022
1 parent 53d8788 commit 4c04c8d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion doc/source/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ parts:
- file: ray-air/examples/feast_example
- file: ray-air/package-ref

- caption: AIR Libraries
- caption: Ray Libraries
chapters:
- file: data/dataset
title: Ray Data
Expand Down
1 change: 0 additions & 1 deletion doc/source/ray-air/examples/pytorch_tabular_starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ def to_tensor_iterator(dataset, batch_size):
)

predicted_probabilities = batch_predictor.predict(test_dataset)
print("PREDICTED PROBABILITIES")
predicted_probabilities.show()
# {'predictions': array([1.], dtype=float32)}
# {'predictions': array([0.], dtype=float32)}
Expand Down
1 change: 0 additions & 1 deletion doc/source/ray-air/examples/tf_tabular_starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ def train_loop_per_worker(config):
)

predicted_probabilities = batch_predictor.predict(test_dataset)
print("PREDICTED LOG PROBABILITIES")
predicted_probabilities.show()
# {'predictions': 0.033036969602108}
# {'predictions': 0.05944341793656349}
Expand Down
1 change: 0 additions & 1 deletion doc/source/ray-air/examples/xgboost_starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
batch_predictor = BatchPredictor.from_checkpoint(checkpoint, XGBoostPredictor)

predicted_probabilities = batch_predictor.predict(test_dataset)
print("PREDICTED PROBABILITIES")
predicted_probabilities.show()
# {'predictions': 0.9970690608024597}
# {'predictions': 0.9943051934242249}
Expand Down

0 comments on commit 4c04c8d

Please sign in to comment.