腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(85)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
Statsmodels的Logit.fit_
regularized
永远运行
statsmodels.api as sm result=logit.fit_
regularized
浏览 0
提问于2018-11-05
得票数 2
回答已采纳
3
回答
AWK:如何清理bibtex文件?
例如,从以下条目中删除文件字段: title = {Fast {Rates} for {
Regularized
} {ObjectivesShai and Srebro, Nathan}, pages = {1545--1552}, file = {3400-fast-rates-for-
regularized
-objectives.pdf:/home/johnros/.zotero/zo
浏览 8
提问于2015-09-29
得票数 1
回答已采纳
1
回答
用JAMA库实现Java中Logistic回归的代价函数
; j< n; j++) { } double[][] reg =
regularized
.getArray(); for (int
浏览 4
修改于2014-05-07
得票数 1
2
回答
在简单的一维数据集上,LogisticRegressionCV选择可怕的超参数,其结果是毫无意义的。
np.random.seed(6)y_data = np.array([gen_y(x) for x in x_data])
regularized
_logistic_regressi
浏览 0
修改于2020-10-26
得票数 3
1
回答
正则2F1超几何在R中的应用
例如,在Mathematica中,两种计算如下:out: 7.86105*10^-9in: Hypergeometric2F1
Regularized
[31, 13, 18, -2.651542]在R中,我尝试了以下类似的方法,但结果与上述不同(31, 13, 18, -2.651542, log = F) :我想知道在R中,Mathemat
浏览 0
提问于2016-01-24
得票数 3
回答已采纳
1
回答
具有正则化的GLM模型
poisson_model = sm_glm.GLM(y, X, family=sm.families.Poisson()) 然而,我得到了错误"'GLM‘对象没有属性'fit_
regularized
'“,你知道为什么吗?
浏览 9
修改于2017-12-30
得票数 1
2
回答
我的方法的JUnit测试
countSellingOrdersInQueue(String principal) { List<String> states = Arrays.asList(PENDING.name(),
REGULARIZED
.name
浏览 0
修改于2018-07-15
得票数 0
回答已采纳
1
回答
如何覆盖方法并选择要调用的方法
def cost_value(self): return self.compute_cost_
regularized
() return self.compute_cost() net_
regularized
',net_
regularized
.cost_value()) 输出是:这是来自net_default 10的答案,是来自
浏览 3
修改于2022-03-29
得票数 1
回答已采纳
2
回答
优化算法的选择是否影响多类logistic回归的准确性?
模型成本函数: return 1 / (1 + np.exp(-z)) - (1-y) @ np.log(1-sigmoid(X@theta))) + reg beta = sigmoid(X@theta) - y regterm = lda
浏览 0
修改于2017-07-06
得票数 7
回答已采纳
2
回答
tf.scatter_update或tf.scatter_nd_update可以用来更新张量的列切片吗?
The number of rows to be
regularized
are specified by the percent_t.percent_t -- percentage of the total rows Output: the
regularized
浏览 0
修改于2020-12-09
得票数 1
回答已采纳
2
回答
pylab.show()不起作用
#
Regularized
least-squares. pylab.xlabel('||A*x-b||_2^2') pylab.grid() pylab.title('
Regularized
浏览 0
提问于2016-04-29
得票数 1
1
回答
学习岭回归UnboundLocalError
1)但是,当我试图以完全相同的方式实现Ridge回归时,我会得到以下错误:
regularized
_regr.fit(X,Y) File "/usr/local/lib/python2.7
浏览 2
提问于2014-05-01
得票数 0
回答已采纳
1
回答
使用新的存在/不存在列堆叠pandas数值列
0.813 | 0.9346 | 0.342 | 0.564 param | accuracy |
regularized
浏览 3
提问于2021-02-19
得票数 1
回答已采纳
2
回答
在MATLAB中用@()调用函数
J = LRCOSTFUNCTION(theta, X, y, lambda) computes the cost of using % theta as the parameter for
regularized
浏览 2
提问于2014-07-26
得票数 1
回答已采纳
1
回答
状态模型与滑雪板岭回归的失配
接下来,statsmodels和OLS.fit_
regularized
ols = sm.OLS(y, X).fit_
regularized
lasso.coef_ penalty = np.array([0, 0.5, 0.5, 0.5, 0.5]) ols = sm.OLS(y, X).fit_
regularized
浏览 13
提问于2022-05-16
得票数 1
回答已采纳
1
回答
dropout是否适用于Keras中的正则化项?
model.add(Dense(128, activation='relu'))# The last layer is
regularized
浏览 1
提问于2019-07-23
得票数 1
1
回答
如何在OLS回归[状态模型]上进行线性测试
import linear_reset y = np.random.randn(100) regression = sm.OLS(y, x).fit_
regularized
浏览 15
修改于2022-08-26
得票数 0
1
回答
logistic回归的Python正则化梯度下降
., k=0.1) # call for
regularized
GD: C=10以下是结果(权重向量):[0.035736331265589463, 0.032464572442830832] [5.0979561973044096e-06, 4.6312243707352652e-06]# UNregularized GD [0.28801877, 0.09179177]
浏览 0
修改于2018-02-26
得票数 2
2
回答
用上面行中的数据更新每一行
假设我的表是这样的: -----------------------------|2019-01-03| 250 | 0 | 0 ||storeID| Date | Stock | Medition |
Regularized
浏览 0
修改于2019-06-21
得票数 2
1
回答
为什么我在使用状态模型预测测试值时会收到这个错误?
train_test_split(X_new_np, y, test_size=0.2, random_state=42)reg = logit.fit_
regularized
浏览 2
修改于2020-12-20
得票数 0
回答已采纳
第 2 页
第 3 页
第 4 页
第 5 页
点击加载更多
领券