I am Charmie

メモとログ

2018-07-01から1ヶ月間の記事一覧

IPA fonts installation on Ubuntu 16.04

To compile Japanese document with xelatex, I decided to use IPA fonts. Download IPA font files files (*.ttf files) from here. Create a directory to save the font files as sudo mkdir /usr/share/fonts/truetype/ttf-ipa-font Copy the font file…

PyTorch: visualize trained filters and feature maps

I just wrote a simple code to visualize trained filters and feature maps of pytorch. For simplicity, the below code uses pretrained AlexNet but the code must work with any network with Conv2d layers. [code lang="python"] !/usr/bin/env pyth…