Valdemar Tunkevic
Valdemar Tunkevic
After installing on Colab and trying to import it, system gives errors ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in () ----> 1 import nonechucks as nc 2 #fruits_dataset...
Is it possible to somehow install this one on google colab, and use it there?
model uses SubPixel1D, model uses with capital D letter.
in model, there is another type: x1 = self.bottle**b**eck(down_outs[-1]) should be: x1 = self.bottle**n**eck(down_outs[-1])
I noticed you use padding for convolutions as: `padding=kernel/2 ` But it seems that your kernel size are not even numbers: `n_filtersizes = [65, 33, 17, 9, 9, 9, 9,...
In model.py self.bottleneck = Bottleneck(in_channels, _**n_filter**_[-1], n_filtersizes[-1]) Should be replace: self.bottleneck = Bottleneck(in_channels, **_n_filters_**[-1], n_filtersizes[-1])