邏輯迴歸中的係數的意義
#%%
import math
from sklearn import linear_model
#samples'features, there are 6 samples
X = [[20,3],
[23,7],
[31,10],
[42,13],
[50,7],
[60,5]]
#relative tags
y = [0,
1,
1,
1,
0,
0]
#create the object and train the model
# theta_x = theta_0 + theta_1*x_1 + theta_2*x_2
lr = linear_model.LogisticRegression()
# get the good value of the theta_0, theta_1 and theta_2
lr.fit(X,y)
#there is a test
testX = [[28,8]]
#predict the test
label = lr.predict(testX)
print("predicted label = ", label)
#and the probability
prob = lr.predict_proba(testX)
print("probability = ", prob)
#the coefficient meaning
#%%
theta_0 = lr.intercept_
theta_1 = lr.coef_[0][0]
theta_2 = lr.coef_[0][1]
print("theta_0 =", theta_0)
print("theta_1 =", theta_1)
print("theta_2 =", theta_2)
#the previous data
testX = [[28,8]]
# get the probability of y=0 and y=1
prob = lr.predict_proba(testX)
ratio = prob[0][1]/prob[0][0]
# the value of the second feature + 1
# 8->9 then, relate the value of theta_2
testX = [[28,9]]
prob_new = lr.predict_proba(testX)
ratio_new = prob_new[0][1]/prob_new[0][0]
#the ratio's ratio
ratio_of_ratio = ratio_new / ratio
print("ratio_of_ratio = ",ratio_of_ratio)
#test
theta_2_e = math.exp(theta_2)
print("e^theta _2 = ", theta_2_e)
相關文章
- 邏輯迴歸邏輯迴歸
- 邏輯迴歸模型邏輯迴歸模型
- Python邏輯迴歸Python邏輯迴歸
- 線性迴歸與邏輯迴歸邏輯迴歸
- 對數機率迴歸(邏輯迴歸)原理與Python實現邏輯迴歸Python
- 邏輯迴歸:使用Python的簡化方法邏輯迴歸Python
- 邏輯迴歸演算法邏輯迴歸演算法
- 對比線性迴歸、邏輯迴歸和SVM邏輯迴歸
- 讓程式設計迴歸原始的意義!程式設計
- 機器學習 | 線性迴歸與邏輯迴歸機器學習邏輯迴歸
- 【小白學AI】線性迴歸與邏輯迴歸(似然引數估計)AI邏輯迴歸
- 機器學習:邏輯迴歸機器學習邏輯迴歸
- 2.3 邏輯迴歸演算法邏輯迴歸演算法
- 4.邏輯迴歸(Logistic Regression)邏輯迴歸
- Tensorflow教程(前三)——邏輯迴歸邏輯迴歸
- 邏輯迴歸 損失函式邏輯迴歸函式
- 機器學習整理(邏輯迴歸)機器學習邏輯迴歸
- 2.3邏輯迴歸損失函式邏輯迴歸函式
- 邏輯迴歸為什麼使用sigmod邏輯迴歸
- 機器學習之邏輯迴歸機器學習邏輯迴歸
- 邏輯迴歸(Logistic Regression)原理及推導邏輯迴歸
- 從零開始學習邏輯迴歸邏輯迴歸
- 邏輯迴歸損失函式(cost function)邏輯迴歸函式Function
- 三、邏輯迴歸logistic regression——分類問題邏輯迴歸
- 實驗11-使用keras完成邏輯迴歸Keras邏輯迴歸
- 人工智慧-機器學習-邏輯迴歸人工智慧機器學習邏輯迴歸
- COMP 330正則化邏輯迴歸分類邏輯迴歸
- 邏輯迴歸演算法推理與實現邏輯迴歸演算法
- chapter3——邏輯迴歸手動+sklean版本APT邏輯迴歸
- 【機器學習基礎】邏輯迴歸——LogisticRegression機器學習邏輯迴歸
- 分類演算法(1)-LR邏輯迴歸演算法邏輯迴歸
- 邏輯迴歸:損失函式與梯度下降邏輯迴歸函式梯度
- 關係代數與邏輯最佳化規則 (一): 定義
- [Rscript]邏輯迴歸識別學生群體的R實現邏輯迴歸
- 【深度學習基礎-14】迴歸中的相關係數r和決定係數R^2深度學習
- 機器學習之邏輯迴歸:計算概率機器學習邏輯迴歸
- 機器學習之邏輯迴歸:模型訓練機器學習邏輯迴歸模型
- 機器學習之使用Python完成邏輯迴歸機器學習Python邏輯迴歸