can't set attribute error
here is everything:
wb@i7:~/git/6th/audiotagging2019$ python run.py --model xresnet18ssa --base_dim 128 --SZ 256 --fold_number -1 --n_epochs 80 --loss_name FocalLoss --weights_file model1 --csv_name submission1.csv
Starting run using the following configuration: path : data working_path : . base_dim : 128 SZ : 256 BS : 64 lr : 0.01 n_epochs : 80 epoch_size : 1000 f2cl : 1 fold_number : -1 loss_name : FocalLoss csv_name : submission1.csv model : xresnet18ssa load_weights : weights_file : model1 max_processors: 8 force : False
Computing mel spectrograms for the curated train dataset and saving as .png: || 100.00% [4970/4970 00:55<00:00] Computing mel spectrograms for the noisy train dataset and saving as .png: || 100.00% [19815/19815 05:58<00:00] Computing mel spectrograms for the test dataset: || 100.00% [3361/3361 01:04<00:00]
Loading train data:
Traceback (most recent call last):00]
File "run.py", line 250, in
fastai.version == 1.0.60
I downgrade fastai to 1.0.51 as described in the README ,same error occurs.
@mnpinto
@wubinbai Sorry for the late reply, I didn't get a notification before. Your problem is due to a newer version of Pytorch. I merged a newer branch that solves that problem. Let me know if there are any additional issue.
@mnpinto HI there is actually one more problem with this new update of your code:
when running run.py:
/pytorch/aten/src/ATen/native/IndexingUtils.h:20: UserWarning: indexing with dtype torch.uint8 is now deprecated, please use a dtype torch.bool instead. Warning: indexing with dtype torch.uint8 is now deprecated, please use a dtype torch.bool instead. (expandTensors at /pytorch/aten/src/ATen/native/IndexingUtils.h:20)
Hello! I am wondering if this repo is still good to implement or not since last time I have encountered that problem. Probably I will try it if this is useful. Otherwise, it looks like the repo for the newly closed competition (kaggle's rainforest) is good to follow haha. Thanks!!
Hello! The https://github.com/mnpinto/dl_pipeline is probably a better starting point as it uses already the new fastai version and the code is more modular and easier to adapt to other problems. Keep in mind that my solution for Kaggle's rainforest is designed for single class classification, for multiclass it may need a few changes.
Could you please tell me the version of the libraie, such as librosa, numpy,etc. used in this repo? Thanks