Raphaël Merx
Raphaël Merx
Had the same problem, resolved it by using the driver from https://github.com/astsam/rtl8812au instead. That package is also available as a package for Kali. So: - remove this driver: `dkms remove...
Same issue here, the server was not starting without outputting any log, neither in the specified `--log-file` nor in `runtime/default`. Turns out it was defaulting to java11. Fixed with `update-alternatives...
Had the same issue, and was unable to resolve it. There is no trace of error in any of the log files under `runtime/default/logs`. Here is a Colab notebook that...
Here you go: ``` ```
I think I've fixed the issue, it was during the training step, had to add `CUDA_VISIBLE_DEVICES=0` to the command, e.g. `!CUDA_VISIBLE_DEVICES=0 ./mmt create en it cleaned/ --train-steps 10000`. @kiitaamuuraa could...
@Plkmoi here's an example of setting up this package on Colab: https://colab.research.google.com/drive/1gbNicAwFFQ0pWXUlMhWPA7H_xeBvHXoR?usp=sharing
Just ran into the same issue, but related to finding `commonmarker-0.17.9` instead: ``` /usr/local/lib/ruby/gems/2.5.0/gems/bundler-1.16.3/lib/bundler/spec_set.rb:91:in `block in materialize': Could not find commonmarker-0.17.9 in any of the sources (Bundler::GemNotFound) ```
> Anybody any suggestions on how to deal with this? We could change the icon inside that button to a checkmark when the location is successfully detected. See commit https://github.com/enketo/enketo-core/commit/b59454654519dabe938064f61d6f76c4093b7edf,...
This is how is looks once location has been successfully retrieved:
Likely the issue is that the xformers library installed by the notebook is compiled for T4 and A100 GPUs, not for a 3060: https://github.com/brian6091/xformers-wheels/releases/tag/0.0.15.dev0%2B4c06c79 Try without using xformers. You might...