ddelange

Results 197 comments of ddelange

@georgemarshall could you add to your PR description `Closes #1966, closes #1782, closes #2090, closes #1972, closes #1954, closes #1945` so the related issues get [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) and will close upon...

FYI, I cannot reproduce this error on the Amazon Graviton2 processor and a psutil aarch64 wheel built from source: ```pycon Python 3.8.10 (default, Mar 15 2022, 12:22:08) [GCC 9.4.0] on...

For `armv7l` and `armv6l` wheels you can `export PIP_EXTRA_INDEX_URL=https://www.piwheels.org/simple` ref https://piwheels.org/project/psutil/

Hi @kiudee, From the docstring of `fit()` for X input: https://github.com/kiudee/cs-ranking/blob/f266087244ad446448a76b02075514b1136bf270/csrank/core/fate_network.py#L470-L471 and also the dict check in `_fit()`: https://github.com/kiudee/cs-ranking/blob/f266087244ad446448a76b02075514b1136bf270/csrank/core/fate_network.py#L313 suggest there should already be some kind of support for instances...

> Did some dig into this issue: > > The fundamental issue is that a fresh colab gpu env has `torch==1.11` and `torchtext==0.12.0`. The installation of `autogluon` only updates `torch`...

similarly, is the maximum pin intentional as there are breaking changes in [`1.11.0`](https://github.com/pytorch/pytorch/releases/tag/v1.11.0) that affect `autogluon.text`?

on py3.8 the lowest version of torch available to pip is 1.8.0, which runs fine on py3.8 as far as I can tell: ```console $ pip install -qU torch==1.8.* &&...

> similarly, is the maximum pin intentional as there are breaking changes in [`1.11.0`](https://github.com/pytorch/pytorch/releases/tag/v1.11.0) that affect `autogluon.text`? and what about the API changes in 1.11? they look pretty harmless to...

ah actually I got the heading nesting mixed up, more to review than I thought 😅 unless you trust CI it is probably not a blind bump

I'm not sure if lightning transfers the constraints between torchvision/torchaudio/etc and torch into their install_requires. They're noted in code though: https://github.com/Lightning-AI/lightning/blob/0cf9d73d28d9dd0fd419e2a5ee47b7488e5c1883/requirements/adjust-versions.py#L7 And so, because the torchtext/torchaudio/etc libs don't pin torch...