Oleksii Bulygin
Oleksii Bulygin
> results in `settings.logits_all=True` on startup. you can pass False with an empty string `--logits_all ''` but a better way would be to add either `action='store_true'` or `action=argparse.BooleanOptionalAction` when adding...
Issue is likely with custom nodes reinstalling pytorch+cpu instead of CUDA because of poorly written requirements or dependencies. Reinstall torch with CUDA https://pytorch.org/get-started/locally/
base_path is supposed to do exactly that ``` whatever: base_path: ```
Probably installation of bitsandbytes installed non-rocm pytorch. Can you run the following commands to verify that? ```rocminfo``` ```pip show torch``` ```python -c "import torch; print(torch.version.hip)"```