Results 2 issues of raytroop

https://github.com/Cadene/pretrained-models.pytorch/blob/56aa8c921819d14fb36d7248ab71e191b37cb146/pretrainedmodels/utils.py#L54-L59 I assume we keep aspect ratio when `preserve_aspect_ratio` is True, this way. code snippt should be ```python if preserve_aspect_ratio: height = int(self.input_size[1] / self.scale) width = int(self.input_size[2] / self.scale)...

https://github.com/wulffern/aic2023/blob/56a207308234d282a7b11ade8cd8183d530d18c7/ex/q.py#L40-L49 Hi Carsten Wulff, Here is one problem, why we generate `np.hanning(N+1) ` length of window, but drop the last one multiplied with signal `w[0:N]` Isn't `np.hanning(N)` OK? Thanks