Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View naoyashiga's full-sized avatar

Naoya naoyashiga

View GitHub Profile
@naoyashiga
naoyashiga / writeIkku.rb
Last active December 27, 2016 12:00
一句(五七五)を抽出してテキストに書き出す
require "ikku"
reviewer = Ikku::Reviewer.new
sourceTextFileName = '../data/wiki.txt'
outputTextFileName = 'math.txt'
outputTextFile = File.open(outputTextFileName,'w')
begin
File.open(sourceTextFileName) do |file|
file.each_line do |line|
@naoyashiga
naoyashiga / SpuriousCorrelations.md
Last active October 4, 2016 00:48
Spurious Correlations指標翻訳まとめ

#Ingestibles

指標A 指標B correlation 捕捉
Hot Dog Eating Contentの優勝者のホットドッグ消費量 NY timesベストセラーリストででフィクション作品が1位になった数 91.5
チーズの消費量 ベッドのシーツのもつれ事故 94.7
マーガリンの消費量 メイン州の離婚率 98.9
チキンの消費量 紙とボード製品の消費量 99.6
マクドナルドの顧客満足度 食道を詰まらせる死亡事故件数 85.6
茶の消費量 芝刈り機の誤操作での死亡人数 93
牛肉の消費量 落雷での死亡数 87
@naoyashiga
naoyashiga / kiji.html
Last active August 19, 2016 02:31
kiji.html
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="ja"><![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" lang="ja"><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9" lang="ja"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="ja"><!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
@naoyashiga
naoyashiga / ir.py
Created May 22, 2016 23:21
image reg
import numpy
import matplotlib.pyplot as plt
import chainer
from chainer import cuda
import chainer.functions as F
import chainer.links as L
from chainer import optimizers
from chainer import cuda, Function, gradient_check, Variable, optimizers, serializers, utils
from chainer import Link, Chain, ChainList
@naoyashiga
naoyashiga / singlePerceptron.py
Last active May 2, 2016 10:19
単純パーセプトロンの実装
# -*- coding: utf-8 -*-
import numpy
import matplotlib.pyplot as plt
def predict(w, x):
output = numpy.dot(w, x)
if output >= 0:
@naoyashiga
naoyashiga / index.html
Created March 20, 2016 02:33
p5.js sound test
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
</style>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.22/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.23/addons/p5.sound.min.js"></script>
@naoyashiga
naoyashiga / mnist_tensorboard.py
Last active March 6, 2016 02:36
MNISTをTensorboardに表示する
# -*- coding: utf-8 -*-
import input_data
import tensorflow as tf
# prameters
learning_rate = 0.01
training_epochs = 1000
def main():
@naoyashiga
naoyashiga / gulpfile.js
Created February 24, 2016 11:19
MyFirst p5.js env
var gulp = require('gulp'),

sass = require('gulp-ruby-sass')

notify = require("gulp-notify")

webserver = require('gulp-webserver');
gulp.task('server', function() {
gulp.src('./')
.pipe(webserver({
@naoyashiga
naoyashiga / BaseParticleWithVector.pde
Created February 23, 2016 14:13
Interactive coding勉強会 Easing
class BaseParticleWithVector implements BaseParticleWithVectorInterface {
PVector location;
PVector velocity;
float scalarVelocity;
float r;
BaseParticleWithVector() {
location = new PVector(random(width), random(height));
velocity = new PVector(0, 0);