I’ve been trying to capture a NAM of a Hellwin amplifier for several days, but when I run step 1, called ‘set-up’, I get the following error:
---
Checking GPU availability... GPU available!
Getting the code...
Checking for code updates...
Installing dependencies...
Mounting google drive...
Mounted at /content/drive
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-2-727379d7cf67> in <cell line: 0>()
50 os.environ["CUBLAS_WORKSPACE_CONFIG"] = ":4096:2"
51
---> 52 from colab_functions import wav2tensor, extract_best_esr_model, create_csv_aidax
53 from prep_wav import WavParse
54 import plotly.graph_objects as go
5 frames
/usr/local/lib/python3.11/dist-packages/torch/_library/fake_impl.py in register(self, func, source)
RuntimeError: operator torchvision::nms does not exist
I’ve tried it from several computers, but the error persists, and I want to continue capturing amps. I waited a few days for someone else to report the error, but I think I’m the only one experiencing this."
if version_higher(pytorch_version, required_pytorch_version) or version_higher(cuda_version, required_cuda_version):
print(f"WARNING: Your environment has PyTorch {pytorch_version} and CUDA {cuda_version}. This environment is not supported.")
print(“Proceeding to install required dependencies…”)
!pip3 uninstall --disable-pip-version-check -y torch torchvision torchaudio tensorflow tensorboard
!pip3 install --disable-pip-version-check --no-cache-dir torch==2.0.1+cu117 torchvision==0.15.2+cu117 torchaudio==2.0.2+cu117 -f https://download.pytorch.org/whl/torch_stable.html
#!pip3 install --disable-pip-version-check --no-cache-dir tensorflow==2.12.0 tensorboard==2.12.0
Then run the step 0 deps cell and run the step 1 to mount drive.
You’ll get an error message afterwards but don’t fret, go back to step 0 again and swap the old version code with the default code and run step 0 once again. when that’s done, run step 1 (mount drive) again. It should say that the drive has been mounted. If so then you can move on to the step 2 and so on.
Before you start model training, create a new cell before the model training stage and type !pip install tensorboard
Then run that cell you’ve created. This prevents you from getting that tensorboard error that messes up training.
That’s been my recent experience with the model trainer. Eventually, the trainer will break in new ways and I might no longer find any more workarounds to future problems.
The colab page keeps finding new ways to fail time & time again which is really quite embarrassing when you compare it to the likes of ToneZone 3000 and so on.
Well, it didn’t work for me lol. As soon as I make the change in Deps, it throws a syntax error, and no matter how much I’ve tried to figure it out, I can’t fix it
“Well, it did work, it gave me a capture, but of very poor quality. It’s a high-gain amplifier and it sounds like the input, without any kind of gain or anything.”
Yes, I could pass you my target and input. Write to my email and I’ll gladly send them to you, my email is "niideaf3gmail.com. Perhaps it’s my mistake as the capture might be of poor quality
The Google Colabs have been totally abandoned by the AIDA and NAM devs. It’s pretty disappointing, especially since updating them now and then probably wouldn’t take much effort. They really don’t make things easy for the average user. I ended up giving up on AIDAX and just use the ToneHunt website now for my NAM captures—much simpler. I really wanted to support AIDA, and if they ever make the capture process easier, I’d definitely give them another shot.
last time there was a change and aida/mod needed to update, they were here to help and it isn’t that long ago.
I think we need to make some kind of guide to set up a docker image and run the profile on our own end. With some help from @madmaxwell and ChatGPT I coudl get it to work
rough and cutting corners;
on Windows;
install docker desktop (free)
install git
git clone https://github.com/aidadsp/Automated-GuitarAmpModelling.git
cd Automated-GuitarAmpModelling && git checkout next && git submodule update --init --recursive
docker compose up -d
then open your browser and type
http://localhost:8080
you should see the Jupyter interface. Note that it require you to setup docker and you need GPU support and nvidia drivers in place. How to do so is well documented for several platforms and OSes since everybody do training these times!!!