You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have fielded a few questions recently about running AlphaTracker in Colab. The current colab script is out of date with your most recent updates. Specifically, the version of Miniconda in the colab notebook installs python 3.6, which seems to have a threading issue that gives the error ValueError: signal number 32 out of range when attempting to train the SPPE model. I've changed line 230 in AlphaTracker/Tracking/AlphaTracker/trainCOLAB.py from --nThreads 6 \\\n \ to --nThreads 1 \\\n \ but this did not fix it either.
I've played around with trying to install other Miniconda versions and updating the packages that are installed to match those in setup.py but I have not had any luck in getting the SPPE to train properly. My most recent pairing uses
but this pairing seems to give the following error at the SPPE train step:
*** training sppe ***
training with following setting:
CUDA_VISIBLE_DEVICES=0 python train.py \
--dataset coco \
--img_folder_train /gdrive/AlphaTracker/Tracking/AlphaTracker/train_yolo/darknet//data/Trial/color/ \
--annot_file_train /gdrive/AlphaTracker/Tracking/AlphaTracker/train_sppe//data/Trial/data_newLabeled_01_train.h5 \
--img_folder_val /gdrive/AlphaTracker/Tracking/AlphaTracker/train_yolo/darknet//data/Trial/color/ \
--annot_file_val /gdrive/AlphaTracker/Tracking/AlphaTracker/train_sppe//data/Trial/data_newLabeled_01_val.h5 \
--expID Trial \
--nClasses 4 \
--LR 0.0001 --trainBatch 10 \
--nEpochs 200 \
--nThreads 1 \
--loadModel /gdrive/AlphaTracker/Tracking/AlphaTracker/models/sppe/duc_se.pth
Error: mkl-service + Intel(R) MKL: MKL_THREADING_LAYER=INTEL is incompatible with libgomp.so.1 library.
Try to import numpy first or set the threading layer accordingly. Set MKL_SERVICE_FORCE_INTEL to force it.
Would you please have a look at it? I think there is a lot of interest in using AlphaTracker on Colab. Thanks.
The text was updated successfully, but these errors were encountered:
Hello,
I have fielded a few questions recently about running AlphaTracker in Colab. The current colab script is out of date with your most recent updates. Specifically, the version of Miniconda in the colab notebook installs python 3.6, which seems to have a threading issue that gives the error
ValueError: signal number 32 out of range
when attempting to train the SPPE model. I've changed line 230 in AlphaTracker/Tracking/AlphaTracker/trainCOLAB.py from--nThreads 6 \\\n \
to--nThreads 1 \\\n \
but this did not fix it either.I've played around with trying to install other Miniconda versions and updating the packages that are installed to match those in setup.py but I have not had any luck in getting the SPPE to train properly. My most recent pairing uses
and
but this pairing seems to give the following error at the SPPE train step:
Would you please have a look at it? I think there is a lot of interest in using AlphaTracker on Colab. Thanks.
The text was updated successfully, but these errors were encountered: