Richard Brown

Results 40 issues of Richard Brown

To autofix notebooks, I run a command like this: ```bash jupytext "$filename" \ --pipe "autoflake --in-place --remove-unused-variables --imports numpy,monai,matplotlib,torch,ignite {}" \ --pipe "isort -" \ --pipe "black -l 79 -"...

### Problem description spaces in command get randomly deleted, and I'm not sure why. ### Steps to reproduce the behavior. `cd ~/Documents` (with space) > `-bash~/Documents: No such file or...

bug report

Documentation detailing the possible choices of `--conf` would be useful. I'd like to set the default to be `PersistentDataset`, which I tried with `-c dataset PersistentDataset` and `-c dataset_type PersistentDataset`....

documentation

Apologies for all of the different issues. I would love to see the default save locations be outside of both the `--studies` and `--app` folders. If I use the same...

enhancement
backlog

If I launch a training using `PersistentDataset` instead of `CacheDataset`, then reload the connection to the MONAI server, the table is reverted to its default, not the options that are...

bug
enhancement
backlog

Training progress bar shows as 100%, Training: DONE ![image](https://user-images.githubusercontent.com/33289025/152562443-e716e062-ce7d-462a-93b9-76ae7e2fe39c.png) Whilst the log accurately shows that it's on epoch 2/50: ![image](https://user-images.githubusercontent.com/33289025/152562585-9814c66b-b903-4963-923c-e36192114c0a.png) Edit: Reloading the connection to the server seems to solve...

bug

As per the [volume rendering example in the README](https://github.com/maartenbreddels/ipyvolume#volume-rendering), I have the following code in a jupyter cell: ``` import ipyvolume hdz = ipyvolume.datasets.hdz2000.fetch() ipyvolume.volshow(hdz.data, lighting=True, width=300, height=300, level=[0.4, 0.6,...

If I create a PR and someone suggests a change which I approve and commit (all via the browser), the commit isn't signed off and then the DCO fails. Since...

Addresses: https://github.com/Project-MONAI/MONAI/issues/4746. ### Description Adds video datasets. Videos can be from file or capture device (e.g., webcam). Requires a corresponding tutorial. ### Status **Hold** ### Types of changes - [x]...

### Description Implements r2 metric to compare similarities between two tensors. This is a useful metric as it can be expressed as a percentage, as opposed to MSE for example...