MatthewBM

Results 9 comments of MatthewBM

For those that are interested, I've created a bootstrapped workaround for BinderHub to run an unprivileged Kaniko builder for `repo2docker`. Since this skips repo2docker, The Binderhub will only work with...

I'd like to raise more attention to this issue due to a few developments in the past couple years. Docker has become deprecated in K8S, and using containerd/DIND and exposing...

I realized the home path doesn't work in this context, I have fixed it by changing: `--partition_volumes ~/third_party/neuroproof_examples/validation_sample/af.h5:af` to `--partition_volumes validation1:/home/user/third_party/neuroproof_examples/validation_sample/af.h5:af`

I didn't reproduce the exact demo data in the paper because it's a different species than what I'm interested in but it performs great on my data.

I'm not sure what you're asking. FFN is a 3D solver, the output is 3D.

Hi @FrayaMiner, Why don't you send me an email [email protected] with a little more detail about what you're trying to do.

I'm having stability issues with both `fsspec=0.9.0`. Only fsspec == 0.8.7 is working for me currently using Zarr and S3 fsspec=0.9.0` cannot use on_error because `fsspec`'s `map` operator no longer...

Does this run and look like a good test script for you? ``` import z5py import numpy as np import os from shutil import copyfile filename = '/tmp/test_chunk_requests' + '.n5'...

You cannot add a convolution to `x_init` and still call it a residual connection. ![image](https://github.com/rishikksh20/ResUnet/assets/9689438/908b2984-4689-4edc-8e4a-8241cff60097) Here is a code example for the Pytorch Implementation of the original Resnet Paper: [...