Skip to content

Instantly share code, notes, and snippets.

-- logger module started --
main debug: VLC media player - 3.0.14 Vetinari
main debug: Copyright © 1996-2021 the VideoLAN team
main debug: revision 3.0.14-0-g41878ff4f2
main debug: configured with /home/jenkins/workspace/vlc-release/windows/vlc-release-win32-x64/extras/package/win32/../../../configure '--enable-update-check' '--enable-lua' '--enable-faad' '--enable-flac' '--enable-theora' '--enable-avcodec' '--enable-merge-ffmpeg' '--enable-dca' '--enable-mpc' '--enable-libass' '--enable-schroedinger' '--enable-realrtsp' '--enable-live555' '--enable-shout' '--enable-goom' '--enable-sse' '--enable-mmx' '--enable-libcddb' '--enable-zvbi' '--disable-telx' '--enable-nls' '--host=x86_64-w64-mingw32' '--with-contrib=../contrib/x86_64-w64-mingw32' '--with-breakpad=https://win.crashes.videolan.org' '--enable-qt' '--enable-skins2' '--enable-dvdread' '--enable-caca' 'host_alias=x86_64-w64-mingw32' 'CFLAGS= ' 'CXXFLAGS= ' 'PKG_CONFIG=pkg-config' 'PKG_CONFIG_LIBDIR=/usr/x86_64-w64-mingw32/lib/pkgconfig:/usr/lib/x86_64-
@metamath1
metamath1 / backward_tranconv.py
Last active May 2, 2019 07:56
Experiment on whether 'transpose convolution' and 'backward pass of convolution' are the same
import torch
import torch.nn.functional as F
x = torch.randn(1 ,1, 4, 4, requires_grad=True)
w = torch.randn(1, 1, 3, 3)
o = F.conv2d(x, w, stride=2, padding=1)
print("x")
print(x)