Amin Sadeghi
Amin Sadeghi
For instance: https://idrlnet.readthedocs.io/en/latest/user/get_started/1_simple_poisson.html#solving-simple-poisson-equation
Hi, do you have any plans on releasing 4.0? Thanks
Thank you for creating this great package! My question might not be very closely related to image segmentation, but I'll ask anyway: is it possible to use your package for...
```python from loguru import logger import dask.array as da from dask.diagnostics import ProgressBar a = da.random.normal(size=(10000, 1), chunks=(1000, 1)) def f(x): logger.warning("Ouch!") return x**2 with ProgressBar(): a = a.map_blocks(f) a...
### Is there an existing proposal for this? - [X] I have searched the existing proposals ### Is your feature request related to a problem? It'd be nice if we...
For some reason, I need to hide "some" toctrees from the sidebar (for example, in a certain page, I'm generating two toctrees, but I only need one of them to...
I'm trying to solve the Laplace PDE in 2D with the following boundary conditions: x = 0 ; u = 1 x = 1 ; u = 0 y =...
I'm trying to solve the Laplace PDE in 2D with the following boundary conditions: x = 0 ; u = 1 x = 1 ; u = 0 y =...
It'd be great if you could also publish `neurodiffeq` on `conda-forge` in addition to PyPI. Thanks!
To reproduce: ```python import porespy as ps im = ps.generators.blobs([100, 100, 100], blobiness=0.75, divs=2) ```