pytorch-timeseries
pytorch-timeseries copied to clipboard
PyTorch implementations of neural networks for timeseries classification
Noticed this nice repo had no LICENSE, how about this one?
The general flow of data for an inception block is: ``` input data -> bottleneck -> [filters of different sizes] -> output ``` In your implementation, the filters of different...
I didn't find the Maxpool operation inside the InceptionBlock, and the results of the different convolution layers didn't concat up
I've noticed some differences to the original ResNet code at https://github.com/cauchyturing/UCR_Time_Series_Classification_Deep_Learning_Baseline/blob/master/ResNet.py. You're missing at BatchNorm right at the start of the network, and also the residual should be added before...