Skip to content

Instantly share code, notes, and snippets.

@ronekko
ronekko / .clang-tidy
Created February 15, 2020 11:27
.clang-tidy
Checks: |
-*,
boost-*,
bugprone-*,
cert-*,
cppcoreguidelines-*,
clang-analyzer-*,
google-*,
misc-*,
modernize-*,
@ronekko
ronekko / google_search_quote_link.user.js
Last active February 29, 2020 08:23
Google Search - "Quote" link
@ronekko
ronekko / rotate_image.py
Last active June 22, 2018 07:40
Rotation of images in chainer
# -*- coding: utf-8 -*-
"""
Created on Fri Jun 22 15:40:40 2018
@author: sakurai
"""
import matplotlib.pyplot as plt
import numpy as np
# -*- coding: utf-8 -*-
"""
Created on Thu May 24 17:00:23 2018
@author: sakurai
"""
import numpy as np
import sympy.geometry as sg
# -*- coding: utf-8 -*-
"""
Created on Sun Jan 28 18:29:22 2018
@author: ryuhei
"""
import numpy as np
import matplotlib.pyplot as plt
@ronekko
ronekko / blend_shape.py
Created January 31, 2018 10:01
2d blend shapeの練習
# -*- coding: utf-8 -*-
"""
Created on Sun Jan 28 21:16:31 2018
@author: ryuhei
"""
import numpy as np
import matplotlib.pyplot as plt
# -*- coding: utf-8 -*-
"""
Created on Sat Jan 6 23:41:17 2018
@author: sakurai
"""
import numpy as np
import matplotlib.pyplot as plt
from sklearn.metrics import pairwise_distances
@ronekko
ronekko / chainer_gan_1d_gaussian.py
Created December 19, 2017 06:08
Generative adversarial network (GAN) for 1-dimensional Gaussian
# -*- coding: utf-8 -*-
"""
Created on Fri Dec 15 15:22:04 2017
@author: sakurai
"""
import matplotlib.pyplot as plt
import numpy as np
# -*- coding: utf-8 -*-
"""
Created on Wed Dec 6 19:51:57 2017
@author: sakurai
"""
import numpy as np
from basic_distributions import (
ProbabilityDistribution, Multinomial, Gaussian, Poisson
# -*- coding: utf-8 -*-
"""
Created on Mon Aug 10 14:40:04 2015
@author: ryuhei
"""
import numpy as np
from basic_distributions import (
ProbabilityDistribution, Multinomial, Gaussian, Poisson