-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
119 joss example data generator #121
Conversation
553b41c
to
5b4b02b
Compare
3d4d97a
to
8b737e5
Compare
3b7afb2
to
c9ff6c0
Compare
c9ff6c0
to
f6dc236
Compare
Hi @SarahAlidoost, when you have time, could you please review this PR? I this regarding a comment we got from JOSS review. When working on this, several other issues poped up so I fixed them in one go. |
docs/notebooks/example_dnn.ipynb
Outdated
@@ -7,7 +7,8 @@ | |||
"source": [ | |||
"This notebooks demonstrate how to split data to train-test execute parallel DNN trainings.\n", | |||
"\n", | |||
"The example dataset `./example1_data.zarr/` can be generated using this [Jupyter Notebook](https://vegewaterdynamics.github.io/motrainer/notebooks/example_daskml/)." | |||
"The example dataset `./example1_data.zarr/` can be generated using the following Jupyter Notebook:\n", | |||
"- [Covert a nested DataFrame to a Dataset](../example_read_from_one_df)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"- [Covert a nested DataFrame to a Dataset](../example_read_from_one_df)" | |
"- [Covert a nested DataFrame to a Dataset](./example_read_from_one_df.ipynb)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @SarahAlidoost, here I am linking to the rendered webpage rather than the Notebook itself. I find the original link works. Maybe let's keep it as it was?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After discussion, we used the absolute links in the docs site.
"- [Prallely training sklearn models with dask-ml](../example_daskml)\n", | ||
"- [Prallely training DNN with Tensorflow](../example_dnn)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"- [Prallely training sklearn models with dask-ml](../example_daskml)\n", | |
"- [Prallely training DNN with Tensorflow](../example_dnn)" | |
"- [Prallely training sklearn models with dask-ml](./example_daskml.ipynb)\n", | |
"- [Prallely training DNN with Tensorflow](./example_dnn.ipynb)" |
docs/notebooks/example_daskml.ipynb
Outdated
@@ -6,7 +6,8 @@ | |||
"source": [ | |||
"This notebooks demonstrate how to execute parallel machine learning training using [`dask-ml`](https://ml.dask.org/) and motrainer.\n", | |||
"\n", | |||
"The example dataset `./example1_data.zarr/` can be generated using this [Jupyter Notebook](https://vegewaterdynamics.github.io/motrainer/notebooks/example_daskml/)." | |||
"The example dataset `./example1_data.zarr/` can be generated using the following Jupyter Notebook:\n", | |||
"- [Covert a nested DataFrame to a Dataset](../example_read_from_one_df)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"- [Covert a nested DataFrame to a Dataset](../example_read_from_one_df)" | |
"- [Covert a nested DataFrame to a Dataset](./example_read_from_one_df.ipynb)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rogerkuou thanks, the relative links were not working. I suggested fixes. The rest of the changes look good. 👍
Co-authored-by: SarahAlidoost <[email protected]>
Fix #119. Meanwhile also solve some popped up issues.
motrainer/util.py::performance
since the model graph issue has been solvedtf.keras.losses.mean_squared_error
totf.keras.losses.MeanSquaredError()
to adapt to Tensorflow change