Skip to content

Instantly share code, notes, and snippets.

View yumatsuoka's full-sized avatar

YumaMatsuoka yumatsuoka

  • Tokyo
View GitHub Profile
@yumatsuoka
yumatsuoka / 3 layer neural net smarter .ipynb
Last active August 14, 2016 18:19
apply 3 layer neural network to 'XOR problem' and 'UCI Iris dataset'.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@yumatsuoka
yumatsuoka / 2 layer neural net.ipynb
Created August 13, 2016 14:55
training 2 layer neural network. Used only numpy library on randomize list and indexing
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@yumatsuoka
yumatsuoka / otsu numpy.ipynb
Created August 12, 2016 12:55
大津の2値化(Otsu method)をPython(Numpy)を使って実装
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@yumatsuoka
yumatsuoka / CVML_2-n 2-2.ipynb
Created August 11, 2016 18:31
Exercise on image processing
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/sbin/env python
# -*- coding: utf-8 -*-
# Fizz_Buzz
from __future__ import print_function
print("easy ver\n")
for i in range(1, 101):
if i % 15 == 0:
print("fizzbuzz")