Philip Meier
Philip Meier
The [official instructions](https://sphinx-gallery.github.io/stable/configuration.html#building-without-executing-examples) for building `html-noplot` include setting `-D plot_gallery=0 -b html $(ALLSPHINXOPTS)`. This will emit the following warning: ``` The config value `plot_gallery' has type `str', defaults to `bool'....
Our current strategy is to wrap all file handles in a [`StreamWrapper`](https://github.com/pytorch/pytorch/blob/88fca3be5924dd089235c72e651f3709e18f76b8/torch/utils/data/datapipes/utils/common.py#L154). It dispatches all calls to wrapped object and adds a `__del__` method: ```py class StreamWrapper: def __init__(self, file_obj):...
The `buffer_size` parameter is currently fairly inconsistent across datapipes: | name | default `buffer_size` | infinite `buffer_size` | warn on infinite | |--------------------|-------------------------|--------------------------|--------------------| | Demultiplexer | 1e3 | -1 |...
For example ```shell $ pip install flit==3.6.0 [...] $ python -c "import flit_core; print(flit_core.__version__)" 3.7.0 ``` This was detected, because the 3.7.0 release broke some build workflows (still investigating what...
Although we needed #60 to move forward, we also lost significant test coverage. Since we no longer have the ability to test the individual parts (due to `pip`'s internal changes),...
Imagine you already have a PyTorch distribution installed. Installing another without `--pytorch-computation-backend` set should detect that first and only afterwards look at the hardware. See pytorch/pytorch#77242 for an example.
When debugging it is often useful to install nightlies from a specific day. Right now, we need to do ```shell $ ltt install --pytorch-channel=nightly torch==0.12.0.dev20220510 torchvision==0.12.0.dev20220510 ``` This is inconvenient...
I don't want to merge this PR. This more like a feature branch that we can discuss on. For the actual port we can either cleanup this PR or use...
This PR cleans up the recent changes to our prototype transforms functional test frameworks. It merges the files `test_prototype_transforms_kernels.py` and `test_prototype_transforms_dispatchers.py` into `test_prototype_transforms_functional.py` while removing any obsolete code in the...
Follow-up to #6566 for segmentation references.