Ashley Gillman

Results 21 issues of Ashley Gillman

Adds StdInCommandLine and EnvironmentInputCommandLine # What is this? I have implemented this for some custom Interfaces that I have had to create. They wrapped scripts that either took inputs as...

Hi, FYI - I had an issue with Illegal characters in path. I had to modify: https://github.com/alopezrivera/owo/blob/f3defa80035fcc93c75e043b4f915e580acb587a/src/Conversion/Conversion-Config.psm1#L279 To exclude "//?/". I'm migrating PC unfortunately, so I won't be able to...

bug

- [x] Get comments - [ ] Test scatter - [x] Rebase away the first commit - it was just for easier building and testing. This PR Shouldn't actually change...

in-progress

- [ ] Rebase @rijobro commit with places needing updates onto master and use as base for this PR. - [x] Modify DiscretisedDensity's constructor from ProjDataInfo to be centered in...

enhancement

To be honest, I do not see the added value of the function `cd_to_working_dir` as it's use is just to change directory to a directory where the user will store...

Mathematically, they are different. If `w=[1 1 1]` we get x_i = 1/6 x_{i-1} + 2/3 x_i + 1/6 x_{i+1} and if `w=[1 0 1]` we get x_i = 1/4...

G'day Casper, Loving this tool, thanks. There are a few issues with using resolutions other than mMR. The Shape class should cast its calculations to type np.int (and floor?) Otherwise...

The cache file in `get_mmr_fromfile()` is generated based only on a subset of the input parameters (specifically, not the noise level/sigma). This can also be surprising for the user that...

This was discussed in Tuesday/Wednesdays Training School Meeting. This is done by overriding a [torch.autograd.Function](https://pytorch.org/docs/stable/autograd.html#torch.autograd.Function) object, and should define `forward` and `backward`. https://pytorch.org/tutorials/beginner/examples_autograd/two_layer_net_custom_function.html https://pytorch.org/docs/stable/notes/extending.html Here is an example of the...