09 2020 档案

摘要:import numpy as np #将数据降维的函数,输出值一定在-1~1之间,可以定性(男/女) def sigmoid(x): return 1 / (1 + np.exp(-x)) def deriv_sigmoid(x): fx = sigmoid(x) return fx * (1 - 阅读全文
posted @ 2020-09-18 17:40 千心 阅读(212) 评论(0) 推荐(0)
摘要:Meet your new best friend, Pareto - The Pareto principle states that for most things, 80% of the results come from 20% of the causes. Before you even 阅读全文
posted @ 2020-09-15 17:11 千心 阅读(418) 评论(0) 推荐(0)
摘要:前文提要 上章我们建立了模型来拟合数据,这章我们将检验模型。 Model-Validation(check accuracy,验证) You've built a model. But how good is it? In this lesson, you will learn to use mod 阅读全文
posted @ 2020-09-03 09:17 千心 阅读(131) 评论(0) 推荐(0)