Skip to content

Commit

Permalink
Merge pull request #31 from anyscale/odsc-updates
Browse files Browse the repository at this point in the history
ready for ODSC West
  • Loading branch information
ceteri authored Oct 28, 2020
2 parents e1a1f1e + b1cf70c commit 8617ceb
Show file tree
Hide file tree
Showing 5 changed files with 1,501 additions and 61 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
"metadata": {},
"outputs": [],
"source": [
"ray.init(ignore_reinit_error=True)"
"info = ray.init(ignore_reinit_error=True)"
]
},
{
Expand Down Expand Up @@ -275,7 +275,7 @@
"metadata": {},
"outputs": [],
"source": [
"df.plot(y=\"mean\", yerr=\"std\", xlabel=\"steps\", ylabel=\"regret\", title=\"Cumulative Regret\")"
"df.plot(y=\"mean\", yerr=\"std\", title=\"Cumulative Regret\")"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
"metadata": {},
"outputs": [],
"source": [
"regrets.plot(y=\"mean\", yerr=\"std\", xlabel=\"steps\", title=\"Cumulative Regrets\")"
"regrets.plot(y=\"mean\", title=\"Cumulative Regrets\")"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions ray-rllib/multi-armed-bandits/06-Market-Example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@
"metadata": {},
"outputs": [],
"source": [
"rewards.plot(y=[\"mean\", \"max\"], secondary_y=True, title=\"Rewards vs. Steps\", xlabel=\"step\")"
"rewards.plot(y=[\"mean\", \"max\"], secondary_y=True, title=\"Rewards vs. Steps\")"
]
},
{
Expand Down Expand Up @@ -567,7 +567,7 @@
"metadata": {},
"outputs": [],
"source": [
"regrets.plot(y=\"mean\", yerr=\"std\", title=\"Regrets vs. Steps\", xlabel=\"step\")"
"regrets.plot(y=\"mean\", yerr=\"std\", title=\"Regrets vs. Steps\")"
]
},
{
Expand Down
1,550 changes: 1,495 additions & 55 deletions ray-rllib/recsys/01-Recsys.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gym >= 0.17.2
numpy >= 1.18.5
pandas
pandas >= 1.1.1
requests
torch
torchvision
Expand Down

0 comments on commit 8617ceb

Please sign in to comment.