I have got two issues with modin
Lately I am not able to create modin environment using the command:
conda create -n aikit-modin intel-aikit-modin -c intel -c conda-forge
(as mentioned in the documentation link of AI Analytics toolkit https://software.intel.com/content/www/us/en/develop/articles/installing-ai-kit-with-conda.html#gs.2irfv6 )
It seems documentation correction is required.
I was able to create modin environment using stock
conda create -n stock-modin modin -c conda-forge
(referred-https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/distribution-of-modin.html#gs.2isi2d and Data Science at Scale with Modin documentation:
https://medium.com/intel-analytics-software/data-science-at-scale-with-modin-5319175e6b9a )
But while trying to do the modin sample, NYC_Taxi.ipynb, in the online JupyterLab of Intel devcloud, I am getting a
file save server error JupyterHub server no longer running at /user/uXXXXX/api/contents/modin/examples/jupyter/NYC_Taxi.ipynb. Restart the server at http://jupyter.oneapi.devcloud.intel.com/hub/spawn/uXXXXX
as shown in the screenshot. I was not able to complete the notebook. It seems like a kernel error, even though I created a fresh kernel from the stock-modin environment.
(source of the NYC sample:https://github.com/modin-project/modin/tree/master/examples )
How to execute the samples of Intel Distribution of Modin? Any workarounds?