Skip to content

Commit

Permalink
removing the unnecessary pip install in the deploy github action
Browse files Browse the repository at this point in the history
removing the unnecessary pip install in the deploy github action
  • Loading branch information
edwinnglabs committed Mar 20, 2024
1 parent 7a90b77 commit 60b3dde
Show file tree
Hide file tree
Showing 24 changed files with 305 additions and 318 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pypi-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,5 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
find ./orbit/stan/ -type f ! -name "*.stan" -delete
pip install .
python -m build --sdist
python -m twine upload dist/*.tar.gz
4 changes: 2 additions & 2 deletions docs/tutorials/backtest.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"1.1.4.5\n"
"1.1.4.6\n"
]
}
],
Expand Down Expand Up @@ -1479,7 +1479,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1b67d774e80a4b0eb5910ac6a9232837",
"model_id": "e93ca708da9e438d9a307fbe96f607f9",
"version_major": 2,
"version_minor": 0
},
Expand Down
20 changes: 10 additions & 10 deletions docs/tutorials/build_your_own_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"1.1.4.5\n"
"1.1.4.6\n"
]
}
],
Expand Down Expand Up @@ -496,7 +496,7 @@
{
"data": {
"text/plain": [
"<orbit.forecaster.svi.SVIForecaster at 0x2a62c8b90>"
"<orbit.forecaster.svi.SVIForecaster at 0x2a6164950>"
]
},
"execution_count": 11,
Expand Down Expand Up @@ -531,25 +531,25 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:14 - orbit - INFO - Using SVI (Pyro) with steps: 501, samples: 100, learning rate: 0.1, learning_rate_total_decay: 1.0 and particles: 100.\n",
"2024-03-19 22:23:15 - orbit - INFO - step 0 loss = 27333, scale = 0.077497\n",
"2024-03-19 23:37:55 - orbit - INFO - Using SVI (Pyro) with steps: 501, samples: 100, learning rate: 0.1, learning_rate_total_decay: 1.0 and particles: 100.\n",
"2024-03-19 23:37:56 - orbit - INFO - step 0 loss = 27333, scale = 0.077497\n",
"INFO:orbit:step 0 loss = 27333, scale = 0.077497\n",
"2024-03-19 22:23:17 - orbit - INFO - step 100 loss = 12594, scale = 0.0092399\n",
"2024-03-19 23:37:58 - orbit - INFO - step 100 loss = 12594, scale = 0.0092399\n",
"INFO:orbit:step 100 loss = 12594, scale = 0.0092399\n",
"2024-03-19 22:23:19 - orbit - INFO - step 200 loss = 12591, scale = 0.0095592\n",
"2024-03-19 23:38:00 - orbit - INFO - step 200 loss = 12591, scale = 0.0095592\n",
"INFO:orbit:step 200 loss = 12591, scale = 0.0095592\n",
"2024-03-19 22:23:21 - orbit - INFO - step 300 loss = 12593, scale = 0.0094199\n",
"2024-03-19 23:38:03 - orbit - INFO - step 300 loss = 12593, scale = 0.0094199\n",
"INFO:orbit:step 300 loss = 12593, scale = 0.0094199\n",
"2024-03-19 22:23:23 - orbit - INFO - step 400 loss = 12591, scale = 0.0092691\n",
"2024-03-19 23:38:06 - orbit - INFO - step 400 loss = 12591, scale = 0.0092691\n",
"INFO:orbit:step 400 loss = 12591, scale = 0.0092691\n",
"2024-03-19 22:23:25 - orbit - INFO - step 500 loss = 12591, scale = 0.0095463\n",
"2024-03-19 23:38:10 - orbit - INFO - step 500 loss = 12591, scale = 0.0095463\n",
"INFO:orbit:step 500 loss = 12591, scale = 0.0095463\n"
]
},
{
"data": {
"text/plain": [
"<orbit.forecaster.svi.SVIForecaster at 0x2a62c8b90>"
"<orbit.forecaster.svi.SVIForecaster at 0x2a6164950>"
]
},
"execution_count": 12,
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/decompose_prediction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"1.1.4.5\n"
"1.1.4.6\n"
]
}
],
Expand Down Expand Up @@ -108,13 +108,13 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:39 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
"2024-03-19 23:38:01 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
]
},
{
"data": {
"text/plain": [
"<orbit.forecaster.full_bayes.FullBayesianForecaster at 0x289733c90>"
"<orbit.forecaster.full_bayes.FullBayesianForecaster at 0x2a578a450>"
]
},
"execution_count": 4,
Expand Down
32 changes: 16 additions & 16 deletions docs/tutorials/dlt.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"1.1.4.5\n"
"1.1.4.6\n"
]
}
],
Expand Down Expand Up @@ -201,7 +201,7 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:43 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
"2024-03-19 23:38:05 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
]
},
{
Expand All @@ -218,8 +218,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1.4 s, sys: 2.05 s, total: 3.45 s\n",
"Wall time: 543 ms\n"
"CPU times: user 1.38 s, sys: 538 ms, total: 1.92 s\n",
"Wall time: 501 ms\n"
]
}
],
Expand Down Expand Up @@ -252,13 +252,13 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:43 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
"2024-03-19 23:38:05 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
]
},
{
"data": {
"text/plain": [
"<orbit.forecaster.full_bayes.FullBayesianForecaster at 0x2a6758ed0>"
"<orbit.forecaster.full_bayes.FullBayesianForecaster at 0x2a9230650>"
]
},
"execution_count": 5,
Expand Down Expand Up @@ -333,7 +333,7 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:46 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
"2024-03-19 23:38:08 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
]
},
{
Expand All @@ -350,8 +350,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1.74 s, sys: 1.55 s, total: 3.28 s\n",
"Wall time: 600 ms\n"
"CPU times: user 1.41 s, sys: 456 ms, total: 1.87 s\n",
"Wall time: 540 ms\n"
]
}
],
Expand Down Expand Up @@ -403,15 +403,15 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:46 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
"2024-03-19 23:38:08 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 845 ms, sys: 858 ms, total: 1.7 s\n",
"Wall time: 412 ms\n"
"CPU times: user 446 ms, sys: 263 ms, total: 709 ms\n",
"Wall time: 419 ms\n"
]
},
{
Expand Down Expand Up @@ -479,7 +479,7 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:47 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
"2024-03-19 23:38:09 - orbit - INFO - Optimizing (CmdStanPy) with algorithm: LBFGS.\n"
]
},
{
Expand All @@ -496,8 +496,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 2.22 s, sys: 1.37 s, total: 3.59 s\n",
"Wall time: 565 ms\n"
"CPU times: user 1.33 s, sys: 264 ms, total: 1.59 s\n",
"Wall time: 681 ms\n"
]
}
],
Expand Down Expand Up @@ -552,7 +552,7 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:23:47 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
"2024-03-19 23:38:09 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
]
},
{
Expand Down
32 changes: 16 additions & 16 deletions docs/tutorials/ets_lgt_dlt_missing_response.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
{
"data": {
"text/plain": [
"'1.1.4.5'"
"'1.1.4.6'"
]
},
"execution_count": 2,
Expand Down Expand Up @@ -297,13 +297,13 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:24:25 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
"2024-03-19 23:38:16 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a783a0db09ea41ce964b52db379d5f8e",
"model_id": "c7e6a75b75ff4e29a877c6b62a3af063",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -317,7 +317,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fc706a087c6f452db483ee44a8db096d",
"model_id": "13409d50a4dd4dc5b731bc24c7b1ad7a",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -331,7 +331,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "37e2aa340b3246e0a98e65bc50eb1305",
"model_id": "103523ea8c8c4d8690ebe5281238fc6c",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -345,7 +345,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "440c04862eb0400db78f1fda12afc4ab",
"model_id": "3b580c91f85f4c7489044f99a1814e43",
"version_major": 2,
"version_minor": 0
},
Expand Down Expand Up @@ -397,13 +397,13 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:24:26 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
"2024-03-19 23:38:17 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9233ade8531244488966e91ff90ee043",
"model_id": "785ff8f603a44888b637720af495bb4c",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -417,7 +417,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1250ba8f2a134f57a8f7e01b03eaa8e4",
"model_id": "fadb154ab2a6491eb4e620a0e4f0cbb5",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -431,7 +431,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d7c438e5c5304c13baebd49bf84478a4",
"model_id": "e2a6264052fc4235bdca748b4047b1a9",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -445,7 +445,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "accce814f50b4cb49eee0aa84097a0c9",
"model_id": "d34d3961363c47688de26c7da5f6338c",
"version_major": 2,
"version_minor": 0
},
Expand Down Expand Up @@ -497,13 +497,13 @@
"name": "stderr",
"output_type": "stream",
"text": [
"2024-03-19 22:24:30 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
"2024-03-19 23:38:21 - orbit - INFO - Sampling (CmdStanPy) with chains: 4, cores: 8, temperature: 1.000, warmups (per chain): 225 and samples(per chain): 25.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6aa32c0dd6a54e45b209fca41054424f",
"model_id": "56c718df240146daafcb4678e08fe04b",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -517,7 +517,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f860e2f2692a41e8b84d69bc15294286",
"model_id": "24aa1ce3bd3f43a8bd1cdfcccfc704c7",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -531,7 +531,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1bfb62cb139e4f698965207d83046792",
"model_id": "03bf2330be4447c2bddd9d5571968fd8",
"version_major": 2,
"version_minor": 0
},
Expand All @@ -545,7 +545,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e4946d73f8274676bf9b07cab7ed69e4",
"model_id": "7e20ace6f9b046bd98a5c4a156ba4858",
"version_major": 2,
"version_minor": 0
},
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/exploratory_data_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"1.1.4.5\n"
"1.1.4.6\n"
]
}
],
Expand Down
Loading

0 comments on commit 60b3dde

Please sign in to comment.