Python Python Minibatch Minibatch? Mini batch is from Training from Machine Learning. For training, if we use all training data, training... 2019.08.27 Python
Data Python Activation function Activation function Activation function is for Neural Network. We will use activation function in output layer. ... 2019.08.24 DataPython
Data Python Numpy2 matrix Create matrix from array of array import numpy as np # 3 x 2 matrix mat1 = np.array(, ]) print(mat1) # # ] Create... 2019.08.24 DataPython
Data Python Numpy1 array Contents Import NumpyCreate 1 dim arrayNumpy array methods Import Numpy import numpy as np After this, you ... 2019.08.24 DataPython
Python Python Random number Numpy Random number Use Numpy random to generate random number easily This is simple an example. import numpy.... 2019.08.11 Python