代码改变世界

阅读排行榜

K-fold Train Version2

2021-05-19 17:01 by DataBases, 63 阅读, 收藏,
摘要: # config.pyTRAINING_FILE = "../input/mnist_train_folds.csv"MODEL_OUTPUT = "../models/"# train.pyimport argparseimport osimport configimport joblibimpo 阅读全文

Stochastic Gradient Descent (SGD)

2021-06-07 16:31 by DataBases, 61 阅读, 收藏,
摘要: Initialize the weights.For each image, use these weights to predict whether it appears to be a 3 or a 7.Based on these predictions, calculate how good 阅读全文

tensorflow

2021-05-30 19:15 by DataBases, 58 阅读, 收藏,
摘要: import tensorflow as tfmnist = tf.keras.datasets.mnist(x_train, y_train),(x_test,y_test) = mnist.load_data()x_train, x_test = x_train / 255.0,x_test / 阅读全文

Machine Learning and Deep Learning Courses

2021-04-25 13:09 by DataBases, 58 阅读, 收藏,
摘要: 导数计算 http://www.calcul.com/show/calculator/derivative? https://www.derivative-calculator.net/ https://elvissaravia.substack.com/ https://elvissaravia. 阅读全文

LinearRegression

2021-06-30 15:52 by DataBases, 56 阅读, 收藏,
摘要: import numpy as npimport pandas as pdimport matplotlib.pyplot as pltimport torchfrom torch import nnfrom torch.optim import Adamfrom sklearn.model_sel 阅读全文