View oblique
#!/usr/bin/python | |
import random | |
strategies = [ | |
'(Organic) machinery', | |
'A line has two sides', | |
'A very small object Its center', | |
'Abandon desire', | |
'Abandon normal instructions', | |
'Abandon normal instruments', |
View NNExample.py
import numpy as np | |
from chainer import Function, Variable, optimizers | |
from chainer import Chain | |
import chainer.functions as F | |
import chainer.links as L | |
class NN(Chain): | |
def __init__(self): |
View central_limit.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View color_scatter.py
import numpy as np | |
import matplotlib.cm as cm | |
import matplotlib.pyplot as plt | |
if __name__ == '__main__': | |
N = 100 | |
X = np.random.rand(N, 2) | |
y = np.random.rand(N) * 2 - 1 | |
sc = plt.scatter(X[:, 0], X[:, 1], vmin=-1, vmax=1, c=y, cmap=cm.seismic) | |
plt.colorbar(sc) |
View sampling.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View introduction_of_kernel.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View sum_test.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View positive_definite_kernel.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View PressureLinearRegression.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View PearsonCorrelationAnalysis.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer