当前位置: 首页 > news >正文

wordpress自定义登录界面背景图像汕头seo优化项目

wordpress自定义登录界面背景图像,汕头seo优化项目,wordpress搬家至本地及域名替换,手机网址打不开怎么解决目的 线性回归是很常用的模型#xff1b;在局部可解释性上也经常用到。 数据归一化 归一化通常是为了确保不同特征之间的数值范围差异不会对线性模型的训练产生过大的影响。在某些情况下#xff0c;特征归一化可以提高模型的性能#xff0c;但并不是所有情况下都需要进行归一…目的 线性回归是很常用的模型在局部可解释性上也经常用到。 数据归一化 归一化通常是为了确保不同特征之间的数值范围差异不会对线性模型的训练产生过大的影响。在某些情况下特征归一化可以提高模型的性能但并不是所有情况下都需要进行归一化。 归一化的必要性取决于你的数据和所使用的算法。对于某些线性模型比如线性回归和支持向量机数据归一化是一个常见的实践因为它们对特征的尺度敏感。 但对于其他算法如决策树和随机森林通常不需要进行归一化。 在实际应用中建议根据你的数据和所选用的模型来决定是否进行归一化。如果你的数据特征具有不同的尺度并且你使用的是那些对特征尺度敏感的线性模型那么进行归一化可能会有所帮助。否则你可以尝试在没有归一化的情况下训练模型然后根据模型性能来决定是否需要进行归一化。 对新数据进行归一化处理 new_data_sample_scaled scaler.transform(new_data_sample)# 使用模型进行预测 predicted_value model.predict(new_data_sample_scaled) 这样就能确保在预测新数据时特征的尺度与训练数据保持一致。 MinMaxScaler底层代码 class MinMaxScaler Found at: sklearn.preprocessing.dataclass MinMaxScaler(BaseEstimator, TransformerMixin):def __init__(self, feature_range(0, 1), copyTrue):self.feature_range feature_rangeself.copy copydef _reset(self):Reset internal data-dependent state of the scaler, if necessary.__init__ parameters are not touched.# Checking one attribute is enough, becase they are all set together# in partial_fitif hasattr(self, scale_):del self.scale_del self.min_del self.n_samples_seen_del self.data_min_del self.data_max_del self.data_range_def fit(self, X, yNone):Compute the minimum and maximum to be used for later scaling.Parameters----------X : array-like, shape [n_samples, n_features]The data used to compute the per-feature minimum and maximumused for later scaling along the features axis.# Reset internal state before fittingself._reset()return self.partial_fit(X, y)def partial_fit(self, X, yNone):Online computation of min and max on X for later scaling.All of X is processed as a single batch. This is intended for caseswhen fit is not feasible due to very large number of n_samplesor because X is read from a continuous stream.Parameters----------X : array-like, shape [n_samples, n_features]The data used to compute the mean and standard deviationused for later scaling along the features axis.y : Passthrough for Pipeline compatibility.feature_range self.feature_rangeif feature_range[0] feature_range[1]:raise ValueError(Minimum of desired feature range must be smaller than maximum. Got %s. % str(feature_range))if sparse.issparse(X):raise TypeError(MinMaxScaler does no support sparse input. You may consider to use MaxAbsScaler instead.)X check_array(X, copyself.copy, warn_on_dtypeTrue, estimatorself, dtypeFLOAT_DTYPES)data_min np.min(X, axis0)data_max np.max(X, axis0)# First passif not hasattr(self, n_samples_seen_):self.n_samples_seen_ X.shape[0]else:data_min np.minimum(self.data_min_, data_min)data_max np.maximum(self.data_max_, data_max)self.n_samples_seen_ X.shape[0] # Next stepsdata_range data_max - data_minself.scale_ (feature_range[1] - feature_range[0]) / _handle_zeros_in_scale(data_range)self.min_ feature_range[0] - data_min * self.scale_self.data_min_ data_minself.data_max_ data_maxself.data_range_ data_rangereturn selfdef transform(self, X):Scaling features of X according to feature_range.Parameters----------X : array-like, shape [n_samples, n_features]Input data that will be transformed.check_is_fitted(self, scale_)X check_array(X, copyself.copy, dtypeFLOAT_DTYPES)X * self.scale_X self.min_return Xdef inverse_transform(self, X):Undo the scaling of X according to feature_range.Parameters----------X : array-like, shape [n_samples, n_features]Input data that will be transformed. It cannot be sparse.check_is_fitted(self, scale_)X check_array(X, copyself.copy, dtypeFLOAT_DTYPES)X - self.min_X / self.scale_return X 数据分箱 n_bins [5] kb KBinsDiscretizer(n_binsn_bins, encode ordinal) kb.fit(X[selected_features]) X_trainkb.transform(X_train[selected_features]) from sklearn.preprocessing import KBinsDiscretizer import joblib# 创建 KBinsDiscretizer 实例并进行分箱 est KBinsDiscretizer(n_bins3, encodeordinal, strategyuniform) X_binned est.fit_transform(X)# 保存 KBinsDiscretizer 参数到文件 joblib.dump(est, kbins_discretizer.pkl)# 加载 KBinsDiscretizer 参数 loaded_estimator joblib.load(kbins_discretizer.pkl)# 使用加载的参数进行分箱 X_binned_loaded loaded_estimator.transform(X)from sklearn.preprocessing import KBinsDiscretizerdef save_kbins_discretizer_params(estimator, filename):params {n_bins: estimator.n_bins,encode: estimator.encode,strategy: estimator.strategy,# 其他可能的参数}with open(filename, w) as f:for key, value in params.items():f.write(f{key}: {value}\n)# 创建 KBinsDiscretizer 实例并进行分箱 est KBinsDiscretizer(n_bins3, encodeordinal, strategyuniform)# 保存 KBinsDiscretizer 参数到文本文件 save_kbins_discretizer_params(est, kbins_discretizer_params.txt)KBinsDiscretizer 的源代码 KBinsDiscretizer 的源代码参数包括n_bins指定要创建的箱的数量。 encode指定编码的方法。可以是onehot、onehot-dense、ordinal中的一个。 strategy指定分箱的策略。可以是uniform、quantile、kmeans中的一个。 dtype指定输出数组的数据类型。 bin_edges_一个属性它包含每个特征的箱的边界。 以下是 KBinsDiscretizer 类的源代码参数的简要说明n_bins用于指定要创建的箱的数量。默认值为5。 encode指定编码的方法。可选值包括 onehot使用一热编码。 onehot-dense使用密集矩阵的一热编码。 ordinal使用整数标签编码。默认为 onehot。 strategy指定分箱的策略。可选值包括 uniform将箱的宽度保持相等。 quantile将箱的数量保持不变但是每个箱内的样本数量大致相等。 kmeans将箱的数量保持不变但是使用 k-means 聚类来确定箱的边界。默认为 quantile。 dtype指定输出数组的数据类型。默认为 np.float64。 bin_edges_一个属性它包含每个特征的箱的边界。这是一个列表其中每个元素都是一个数组表示相应特征的箱的边界。 您可以在 sklearn/preprocessing/_discretization.py 中找到 KBinsDiscretizer 类的完整源代码以查看详细的参数和实现细节。
文章转载自:
http://www.morning.jbqwb.cn.gov.cn.jbqwb.cn
http://www.morning.gycyt.cn.gov.cn.gycyt.cn
http://www.morning.qdsmile.cn.gov.cn.qdsmile.cn
http://www.morning.qtwd.cn.gov.cn.qtwd.cn
http://www.morning.tdgwg.cn.gov.cn.tdgwg.cn
http://www.morning.cfhwn.cn.gov.cn.cfhwn.cn
http://www.morning.gtqws.cn.gov.cn.gtqws.cn
http://www.morning.jqwpw.cn.gov.cn.jqwpw.cn
http://www.morning.wdwfm.cn.gov.cn.wdwfm.cn
http://www.morning.bsplf.cn.gov.cn.bsplf.cn
http://www.morning.bqwnp.cn.gov.cn.bqwnp.cn
http://www.morning.pqyms.cn.gov.cn.pqyms.cn
http://www.morning.lynb.cn.gov.cn.lynb.cn
http://www.morning.zmnyj.cn.gov.cn.zmnyj.cn
http://www.morning.wjplm.cn.gov.cn.wjplm.cn
http://www.morning.zryf.cn.gov.cn.zryf.cn
http://www.morning.tfwg.cn.gov.cn.tfwg.cn
http://www.morning.phnbd.cn.gov.cn.phnbd.cn
http://www.morning.xnqjs.cn.gov.cn.xnqjs.cn
http://www.morning.jzsgn.cn.gov.cn.jzsgn.cn
http://www.morning.hpxxq.cn.gov.cn.hpxxq.cn
http://www.morning.smj79.cn.gov.cn.smj79.cn
http://www.morning.bbxbh.cn.gov.cn.bbxbh.cn
http://www.morning.zlnyk.cn.gov.cn.zlnyk.cn
http://www.morning.mlnby.cn.gov.cn.mlnby.cn
http://www.morning.ypnxq.cn.gov.cn.ypnxq.cn
http://www.morning.qwpdl.cn.gov.cn.qwpdl.cn
http://www.morning.qgjgsds.com.cn.gov.cn.qgjgsds.com.cn
http://www.morning.fkyqt.cn.gov.cn.fkyqt.cn
http://www.morning.nydtt.cn.gov.cn.nydtt.cn
http://www.morning.hhfqk.cn.gov.cn.hhfqk.cn
http://www.morning.gwyml.cn.gov.cn.gwyml.cn
http://www.morning.pwxkn.cn.gov.cn.pwxkn.cn
http://www.morning.pjrgb.cn.gov.cn.pjrgb.cn
http://www.morning.gqcd.cn.gov.cn.gqcd.cn
http://www.morning.lmxzw.cn.gov.cn.lmxzw.cn
http://www.morning.kpcjl.cn.gov.cn.kpcjl.cn
http://www.morning.qcymf.cn.gov.cn.qcymf.cn
http://www.morning.kqrql.cn.gov.cn.kqrql.cn
http://www.morning.kbqqn.cn.gov.cn.kbqqn.cn
http://www.morning.cywf.cn.gov.cn.cywf.cn
http://www.morning.xlyt.cn.gov.cn.xlyt.cn
http://www.morning.wmglg.cn.gov.cn.wmglg.cn
http://www.morning.njfgl.cn.gov.cn.njfgl.cn
http://www.morning.klltg.cn.gov.cn.klltg.cn
http://www.morning.hqgkx.cn.gov.cn.hqgkx.cn
http://www.morning.xpwdf.cn.gov.cn.xpwdf.cn
http://www.morning.wqrdx.cn.gov.cn.wqrdx.cn
http://www.morning.rsfp.cn.gov.cn.rsfp.cn
http://www.morning.pzjfz.cn.gov.cn.pzjfz.cn
http://www.morning.hslgq.cn.gov.cn.hslgq.cn
http://www.morning.ryxgk.cn.gov.cn.ryxgk.cn
http://www.morning.kjyqr.cn.gov.cn.kjyqr.cn
http://www.morning.rrpsw.cn.gov.cn.rrpsw.cn
http://www.morning.rrcxs.cn.gov.cn.rrcxs.cn
http://www.morning.smdkk.cn.gov.cn.smdkk.cn
http://www.morning.lwgrf.cn.gov.cn.lwgrf.cn
http://www.morning.tfznk.cn.gov.cn.tfznk.cn
http://www.morning.xlmpj.cn.gov.cn.xlmpj.cn
http://www.morning.rjmd.cn.gov.cn.rjmd.cn
http://www.morning.bwttp.cn.gov.cn.bwttp.cn
http://www.morning.gcdzp.cn.gov.cn.gcdzp.cn
http://www.morning.jljwk.cn.gov.cn.jljwk.cn
http://www.morning.zcncb.cn.gov.cn.zcncb.cn
http://www.morning.fxzlg.cn.gov.cn.fxzlg.cn
http://www.morning.dshkp.cn.gov.cn.dshkp.cn
http://www.morning.jjzxn.cn.gov.cn.jjzxn.cn
http://www.morning.rhfbl.cn.gov.cn.rhfbl.cn
http://www.morning.taojava.cn.gov.cn.taojava.cn
http://www.morning.qgzmz.cn.gov.cn.qgzmz.cn
http://www.morning.pynzj.cn.gov.cn.pynzj.cn
http://www.morning.smkxm.cn.gov.cn.smkxm.cn
http://www.morning.cthkh.cn.gov.cn.cthkh.cn
http://www.morning.tslfz.cn.gov.cn.tslfz.cn
http://www.morning.dgfpp.cn.gov.cn.dgfpp.cn
http://www.morning.srkwf.cn.gov.cn.srkwf.cn
http://www.morning.lpcct.cn.gov.cn.lpcct.cn
http://www.morning.bxqry.cn.gov.cn.bxqry.cn
http://www.morning.tckxl.cn.gov.cn.tckxl.cn
http://www.morning.rzbgn.cn.gov.cn.rzbgn.cn
http://www.tj-hxxt.cn/news/239462.html

相关文章:

  • asp做网站好不好wordpress 菜单 文章
  • 三里屯网站建设wordpress 国内优化
  • 网站服务器重启延庆精神文明建设的门户网站
  • 如何编写网站开发文档茶叶网页设计素材
  • 网站平台规划详情页设计模板详情页设计素材
  • 对外贸易电商平台开鲁seo网站
  • 垂直网站怎么做dw里面怎么做网站轮播图
  • 网站建设公司岗位营销网站建设要注意什么
  • 毕业设计做网站应该学什么专业公司网站 南通
  • 利用业务时间做的网站与公司有关吗广东建设继续教育网站首页
  • 怎么把做的网页放网站网站建设要域名和什么科目
  • 手机网站建设代理商网站建设文件夹名字
  • 电脑十大免费游戏网站西宁微网站建设多少钱
  • 网站建设logo尺寸什么网站招聘外国人做兼职
  • 阳江市网站建设中山企业建网站
  • 西安网站托管公司招聘政务网站的建设原则
  • 电子商务网站建设与维护总结网站制作的费用
  • wordpress大前端dux5.2珠海网站设计网络优化
  • 德阳网站seo江西省上饶市建设局网站
  • 南京市城市建设档案馆网站怎么寻找做有意做网站的客户
  • 网站群建设报价禁止wordpress保存修订版
  • 网站页面结构网站建设财务上怎么处理
  • 哪些网站的做的好看的小红书推广在哪里
  • 网站定制开发微信运营鹤壁市建设工程交易中心网站
  • 做网站来钱快制定 网站改版优化方案
  • 晋中营销型网站建设网页界面设计要根据谁的色彩心理进行合理的配色
  • 12网站免费建站宛城区网站推广
  • 网站 单页前端开发和后端开发哪个好些
  • discuz修改网站关键词菜单栏颜色wordpress
  • 怎么免费制作一个网站wordpress两侧有空白