ParticularMiner
ParticularMiner
Tests have now been added.
I have also just now added support for `dask.dataframe.Series` to `CountVectorizer` and `TfidfVectorizer`.
Hi @TomAugspurger Thanks for your review. From your comments I realize that the dask programming paradigm is to delay all computations until such a time that the user executes `compute()`...
Hi @TomAugspurger > If possible, yes. But sometimes intermediate computation is inevitable. .fit will often require a compute to learn the parameters (e.g. StandardScaler), we just want to make sure...
@TomAugspurger By the way, I do not have access to a cluster, so I'm not sure how the code scales with the cluster-size. I merely presumed that if I wrote...
Hi @GenevieveBuckley , Thank you! Until now, I had been unaware of `dask.array.image.imread()`. The API of `dask.array.image.imread()` is certainly attractive, in that it allows the use of other readers. But...
Sure. * [Download video file: test_vid.mp4.](https://github.com/ParticularMiner/dask/raw/video/dask/array/tests/test_vid.mp4) I was also unable to open the demo video files at the link you provided. * conda list \# packages in environment at /path/to/conda/environment:...
@GenevieveBuckley After updating the python package `pims` and applying the fix you provided [here](https://github.com/soft-matter/pims/pull/415#issue-1233315266), I was able to use `dask.array.image.imread()` to open the video file! Thanks! However, I noticed that...
Thanks for your reply. Sorry, it seems my original post was not clear. What I meant was that I was aware that the following code-snippet *does* work for single and...
Many thanks @jakirkham ! > The simplest solution is to just [provide your own ProcessPoolExecutor](https://github.com/dask/dask/blob/cccb9d8d8e33a891396b1275c2448c352ef40c27/dask/multiprocessing.py#L180) ... I followed your first suggestion since that was the easiest one to understand (as...