Sultan Orazbayev
Sultan Orazbayev
In future, it might also be possible to define tags via comments, see this https://github.com/markellekelly/celltags/issues/1#issuecomment-546431806 Another hack is to do something along these lines: https://stackoverflow.com/questions/36194865/configure-a-first-cell-by-default-in-jupyter-notebooks
Here's how @technic solved it with magic: https://habr.com/en/users/technic93/
When I ran a notebook from within a python script using: ``` papermill.execute_notebook(input_path=nbk_path, output_path=nbk_log_path, parameters=myparameters, kernel_name='python3', log_output=True, autosave_cell_every=60) ``` I don't see the output in my shell and also I...
This is great, thank you!
I would like to express interest in this feature also. To give more context, I am interested in performing some operations on large sparse arrays, however given the scale of...
This is a small example, but with some awareness about emptiness in the graph below only 3 tasks would be needed: ```python from dask.array import eye I = eye(3, chunks=1)...
I'm not sure I understand this approach correctly... shape of a block containing zeros is non-zero, right?
Yes, except given your comment, perhaps a better name is `.is_all_zeros` (or something that emphasizes zeros). The reason `zeros` is good to emphasize is because the implemented logic should be...
Thanks, @hansmohrmann ! I got in touch with @system123 and promised to tag him once I get a meaningful progress on a PR. I can tag you also, or if...
There is a relevant library here: https://github.com/radix-ai/graphchain Here's one example (other than the ones in the docs of graphchain): https://stackoverflow.com/a/72521496/10693596