Skip to content

Instantly share code, notes, and snippets.

@amacbee
amacbee / beta_dist.py
Last active August 29, 2015 14:07
ベータ分布のサンプル
# -*- coding: utf-8 -*-
import matplotlib
colors = matplotlib.rcParams['axes.color_cycle']
from matplotlib import pyplot as plt
from scipy.stats import beta
import numpy as np
x = np.linspace(0,1, num=200)
@amacbee
amacbee / git-for-beginners.md
Last active August 29, 2015 14:19
Git for Beginners 事前準備

Git for Beginners - 事前準備のお願い

以下のイベント参加のための事前準備に関するページです
参加予定者の皆様は,必ず目を通して頂きますようよろしくお願いします.

持参して頂くもの

  • Wi-Fiが利用可能なPC
@amacbee
amacbee / requirements.txt
Created October 28, 2015 10:11
Deep Learning入門 - 環境
appnope==0.1.0
backports.ssl-match-hostname==3.4.0.2
certifi==2015.9.6.2
chainer==1.3.1
decorator==4.0.4
filelock==2.0.4
Flask==0.10.1
funcsigs==0.4
functools32==3.2.3.post2
gnureadline==6.3.3

NUT Hackathon ver.2

開催概要

  • 日時: 12月7日(土) 8:50 - 17:50
  • 場所: Yk研
  • 持物: 個人のノートPC,朝起きれるだけの何か
  • HashTag: nut_hackathon

参加者

  • @yuk4420
  • @namu_r21

Effective Python

1章 Python流思考 (Pythonic Thinking)

Pythonっぽい書き方なコードをPythonicなコードと呼ぶ.
Pythonの言語思想は import this するとわかる.
http://qiita.com/IshitaTakeshi/items/e4145921c8dbf7ba57ef

項目1: 使っているPythonのバージョンを知っておく