ML之回归预测:利用两种机器学习算法(LiR,XGBoost(调优+重要性可视化+特征选择模型))对无人驾驶汽车系统参数(2017年的data,18+2)进行回归预测值VS真实值

简介: ML之回归预测:利用两种机器学习算法(LiR,XGBoost(调优+重要性可视化+特征选择模型))对无人驾驶汽车系统参数(2017年的data,18+2)进行回归预测值VS真实值

输出结果


1、LiR模型


LiR:The value of default measurement of LiR is 0.8729775261968014

LiR:R-squared value of DecisionTreeRegressor: 0.8729775261968014




2、XGBoost模型


ML之XGBoost:XGBoost参数调优之经验总结——DIY十多个案例


T1、调用XGBR_GSCV_Shuffle()函数,调优+重要性可视化+特征选择模型


   XGBR_model = XGBRegressor( learning_rate=0.06, max_depth= 4, n_estimators=100 )    #XGBR_GSCV_Shuffle()函数,第一次得到最佳参数组合,输出准确度: 0.9312586298921468



   XGBR_model = XGBRegressor( learning_rate=0.15, max_depth= 4, n_estimators=100 )    #XGBR_GSCV_Shuffle()函数,第二次得到最佳参数组合,输出准确度: 0.9361222829659452




image.png


   XGBR_model = XGBRegressor( learning_rate=0.03, max_depth= 5, n_estimators=200 )    #XGBR_GSCV_Shuffle()函数,第三次得到最佳参数组合,输出准确度: 0.9335316602435876


image.png


Best: -7.044124 using {'learning_rate': 0.03, 'max_depth': 5, 'n_estimators': 200}

XGBR_GSCV_Shuffle score: 2.65407690407428

-13.263615 (3.437888) with: {'learning_rate': 0.03, 'max_depth': 4, 'n_estimators': 100}

-7.085101 (5.544846) with: {'learning_rate': 0.03, 'max_depth': 4, 'n_estimators': 200}

-13.266334 (3.458229) with: {'learning_rate': 0.03, 'max_depth': 5, 'n_estimators': 100}

-7.044124 (5.800332) with: {'learning_rate': 0.03, 'max_depth': 5, 'n_estimators': 200}

-13.379665 (3.515279) with: {'learning_rate': 0.03, 'max_depth': 6, 'n_estimators': 100}

-7.185696 (5.878527) with: {'learning_rate': 0.03, 'max_depth': 6, 'n_estimators': 200}

-13.479146 (3.629065) with: {'learning_rate': 0.03, 'max_depth': 7, 'n_estimators': 100}

-7.324944 (5.854973) with: {'learning_rate': 0.03, 'max_depth': 7, 'n_estimators': 200}

-7.143094 (5.637506) with: {'learning_rate': 0.06, 'max_depth': 4, 'n_estimators': 100}

-7.593377 (6.216784) with: {'learning_rate': 0.06, 'max_depth': 4, 'n_estimators': 200}

-7.098928 (5.750214) with: {'learning_rate': 0.06, 'max_depth': 5, 'n_estimators': 100}

-7.597613 (6.403983) with: {'learning_rate': 0.06, 'max_depth': 5, 'n_estimators': 200}

-7.210929 (5.854905) with: {'learning_rate': 0.06, 'max_depth': 6, 'n_estimators': 100}

-7.759291 (6.498452) with: {'learning_rate': 0.06, 'max_depth': 6, 'n_estimators': 200}

-7.348396 (5.867050) with: {'learning_rate': 0.06, 'max_depth': 7, 'n_estimators': 100}

-7.914092 (6.526464) with: {'learning_rate': 0.06, 'max_depth': 7, 'n_estimators': 200}

-7.514619 (6.090178) with: {'learning_rate': 0.09, 'max_depth': 4, 'n_estimators': 100}

-7.792390 (6.343156) with: {'learning_rate': 0.09, 'max_depth': 4, 'n_estimators': 200}

-7.506378 (6.281410) with: {'learning_rate': 0.09, 'max_depth': 5, 'n_estimators': 100}

-7.757921 (6.477667) with: {'learning_rate': 0.09, 'max_depth': 5, 'n_estimators': 200}

-7.626987 (6.321250) with: {'learning_rate': 0.09, 'max_depth': 6, 'n_estimators': 100}

-7.830667 (6.496410) with: {'learning_rate': 0.09, 'max_depth': 6, 'n_estimators': 200}

-7.873006 (6.432751) with: {'learning_rate': 0.09, 'max_depth': 7, 'n_estimators': 100}

-8.036536 (6.584526) with: {'learning_rate': 0.09, 'max_depth': 7, 'n_estimators': 200}

-7.672704 (6.222572) with: {'learning_rate': 0.12000000000000001, 'max_depth': 4, 'n_estimators': 100}

-7.916448 (6.418164) with: {'learning_rate': 0.12000000000000001, 'max_depth': 4, 'n_estimators': 200}

-7.724868 (6.419296) with: {'learning_rate': 0.12000000000000001, 'max_depth': 5, 'n_estimators': 100}

-7.893062 (6.541605) with: {'learning_rate': 0.12000000000000001, 'max_depth': 5, 'n_estimators': 200}

-7.849538 (6.506693) with: {'learning_rate': 0.12000000000000001, 'max_depth': 6, 'n_estimators': 100}

-7.949133 (6.580036) with: {'learning_rate': 0.12000000000000001, 'max_depth': 6, 'n_estimators': 200}

-8.021275 (6.522834) with: {'learning_rate': 0.12000000000000001, 'max_depth': 7, 'n_estimators': 100}

-8.115124 (6.590436) with: {'learning_rate': 0.12000000000000001, 'max_depth': 7, 'n_estimators': 200}

-7.851446 (6.380559) with: {'learning_rate': 0.15000000000000002, 'max_depth': 4, 'n_estimators': 100}

-7.962357 (6.452926) with: {'learning_rate': 0.15000000000000002, 'max_depth': 4, 'n_estimators': 200}

-7.752629 (6.526754) with: {'learning_rate': 0.15000000000000002, 'max_depth': 5, 'n_estimators': 100}

-7.870802 (6.591447) with: {'learning_rate': 0.15000000000000002, 'max_depth': 5, 'n_estimators': 200}

-7.828501 (6.482895) with: {'learning_rate': 0.15000000000000002, 'max_depth': 6, 'n_estimators': 100}

-7.892413 (6.509397) with: {'learning_rate': 0.15000000000000002, 'max_depth': 6, 'n_estimators': 200}

-8.141324 (6.636931) with: {'learning_rate': 0.15000000000000002, 'max_depth': 7, 'n_estimators': 100}

-8.182099 (6.635204) with: {'learning_rate': 0.15000000000000002, 'max_depth': 7, 'n_estimators': 200}

-7.938719 (6.490107) with: {'learning_rate': 0.18000000000000002, 'max_depth': 4, 'n_estimators': 100}

-8.017980 (6.506082) with: {'learning_rate': 0.18000000000000002, 'max_depth': 4, 'n_estimators': 200}

-7.938695 (6.610782) with: {'learning_rate': 0.18000000000000002, 'max_depth': 5, 'n_estimators': 100}

-8.012643 (6.660132) with: {'learning_rate': 0.18000000000000002, 'max_depth': 5, 'n_estimators': 200}

-8.011816 (6.616109) with: {'learning_rate': 0.18000000000000002, 'max_depth': 6, 'n_estimators': 100}

-8.052129 (6.641090) with: {'learning_rate': 0.18000000000000002, 'max_depth': 6, 'n_estimators': 200}

-8.118405 (6.560621) with: {'learning_rate': 0.18000000000000002, 'max_depth': 7, 'n_estimators': 100}

-8.131590 (6.550569) with: {'learning_rate': 0.18000000000000002, 'max_depth': 7, 'n_estimators': 200}

-7.915589 (6.338897) with: {'learning_rate': 0.21000000000000002, 'max_depth': 4, 'n_estimators': 100}

-8.019436 (6.383854) with: {'learning_rate': 0.21000000000000002, 'max_depth': 4, 'n_estimators': 200}

-7.956674 (6.487618) with: {'learning_rate': 0.21000000000000002, 'max_depth': 5, 'n_estimators': 100}

-8.028267 (6.514906) with: {'learning_rate': 0.21000000000000002, 'max_depth': 5, 'n_estimators': 200}

-8.036983 (6.583115) with: {'learning_rate': 0.21000000000000002, 'max_depth': 6, 'n_estimators': 100}

-8.085323 (6.596389) with: {'learning_rate': 0.21000000000000002, 'max_depth': 6, 'n_estimators': 200}

-8.254193 (6.565100) with: {'learning_rate': 0.21000000000000002, 'max_depth': 7, 'n_estimators': 100}

-8.269231 (6.561241) with: {'learning_rate': 0.21000000000000002, 'max_depth': 7, 'n_estimators': 200}

-8.143765 (6.593441) with: {'learning_rate': 0.24000000000000002, 'max_depth': 4, 'n_estimators': 100}

-8.218321 (6.600359) with: {'learning_rate': 0.24000000000000002, 'max_depth': 4, 'n_estimators': 200}

-8.191637 (6.690425) with: {'learning_rate': 0.24000000000000002, 'max_depth': 5, 'n_estimators': 100}

-8.222861 (6.676068) with: {'learning_rate': 0.24000000000000002, 'max_depth': 5, 'n_estimators': 200}

-8.230726 (6.661499) with: {'learning_rate': 0.24000000000000002, 'max_depth': 6, 'n_estimators': 100}

-8.260381 (6.658228) with: {'learning_rate': 0.24000000000000002, 'max_depth': 6, 'n_estimators': 200}

-8.470876 (6.728413) with: {'learning_rate': 0.24000000000000002, 'max_depth': 7, 'n_estimators': 100}

-8.480391 (6.731554) with: {'learning_rate': 0.24000000000000002, 'max_depth': 7, 'n_estimators': 200}

-7.967612 (6.650860) with: {'learning_rate': 0.27, 'max_depth': 4, 'n_estimators': 100}

-8.051922 (6.656565) with: {'learning_rate': 0.27, 'max_depth': 4, 'n_estimators': 200}

-8.121717 (6.575363) with: {'learning_rate': 0.27, 'max_depth': 5, 'n_estimators': 100}

-8.160381 (6.577406) with: {'learning_rate': 0.27, 'max_depth': 5, 'n_estimators': 200}

-8.070251 (6.545575) with: {'learning_rate': 0.27, 'max_depth': 6, 'n_estimators': 100}

-8.099537 (6.546567) with: {'learning_rate': 0.27, 'max_depth': 6, 'n_estimators': 200}

-8.128970 (6.796862) with: {'learning_rate': 0.27, 'max_depth': 7, 'n_estimators': 100}

-8.138011 (6.797582) with: {'learning_rate': 0.27, 'max_depth': 7, 'n_estimators': 200}

-8.291199 (6.426882) with: {'learning_rate': 0.3, 'max_depth': 4, 'n_estimators': 100}

-8.336647 (6.448367) with: {'learning_rate': 0.3, 'max_depth': 4, 'n_estimators': 200}

-8.148781 (6.531570) with: {'learning_rate': 0.3, 'max_depth': 5, 'n_estimators': 100}

-8.181453 (6.528953) with: {'learning_rate': 0.3, 'max_depth': 5, 'n_estimators': 200}

-8.488194 (6.555250) with: {'learning_rate': 0.3, 'max_depth': 6, 'n_estimators': 100}

-8.499785 (6.552571) with: {'learning_rate': 0.3, 'max_depth': 6, 'n_estimators': 200}

-8.432480 (6.699986) with: {'learning_rate': 0.3, 'max_depth': 7, 'n_estimators': 100}

-8.437643 (6.698732) with: {'learning_rate': 0.3, 'max_depth': 7, 'n_estimators': 200}

XGBR_GSCV_Shuffle_time: 137.92240889430929


T2、调用XGBR_GSCV_Time()函数,调优+重要性可视化+特征选择模型


   XGBR_model = XGBRegressor( learning_rate=0.2, max_depth= 2, n_estimators=100 )     #XGBR_GSCV_Time()函数,第一次得到最佳参数组合,输出准确度: 0.929254087319193

image.png

image.png


image.png


Best: 0.8637 using {'learning_rate': 0.2, 'max_depth': 2, 'n_estimators': 100}

XGBR_GSCV_Time score: 0.92951600308978

-53.652829 (8.524886) with: {'learning_rate': 0.0001, 'max_depth': 2, 'n_estimators': 50}

-53.111776 (8.432226) with: {'learning_rate': 0.0001, 'max_depth': 2, 'n_estimators': 100}

-52.045728 (8.249767) with: {'learning_rate': 0.0001, 'max_depth': 2, 'n_estimators': 200}

-49.976399 (7.896034) with: {'learning_rate': 0.0001, 'max_depth': 2, 'n_estimators': 400}

-53.652829 (8.524886) with: {'learning_rate': 0.0001, 'max_depth': 4, 'n_estimators': 50}

-53.111776 (8.432226) with: {'learning_rate': 0.0001, 'max_depth': 4, 'n_estimators': 100}

-52.045728 (8.249767) with: {'learning_rate': 0.0001, 'max_depth': 4, 'n_estimators': 200}

-49.976399 (7.896034) with: {'learning_rate': 0.0001, 'max_depth': 4, 'n_estimators': 400}

-53.652829 (8.524886) with: {'learning_rate': 0.0001, 'max_depth': 6, 'n_estimators': 50}

-53.111776 (8.432226) with: {'learning_rate': 0.0001, 'max_depth': 6, 'n_estimators': 100}

-52.045728 (8.249767) with: {'learning_rate': 0.0001, 'max_depth': 6, 'n_estimators': 200}

-49.976399 (7.896034) with: {'learning_rate': 0.0001, 'max_depth': 6, 'n_estimators': 400}

-53.652829 (8.524886) with: {'learning_rate': 0.0001, 'max_depth': 8, 'n_estimators': 50}

-53.111776 (8.432226) with: {'learning_rate': 0.0001, 'max_depth': 8, 'n_estimators': 100}

-52.045728 (8.249767) with: {'learning_rate': 0.0001, 'max_depth': 8, 'n_estimators': 200}

-49.976399 (7.896034) with: {'learning_rate': 0.0001, 'max_depth': 8, 'n_estimators': 400}

-48.970063 (7.724229) with: {'learning_rate': 0.001, 'max_depth': 2, 'n_estimators': 50}

-44.237571 (6.918364) with: {'learning_rate': 0.001, 'max_depth': 2, 'n_estimators': 100}

-36.078697 (5.538471) with: {'learning_rate': 0.001, 'max_depth': 2, 'n_estimators': 200}

-23.929587 (3.519751) with: {'learning_rate': 0.001, 'max_depth': 2, 'n_estimators': 400}

-48.970063 (7.724229) with: {'learning_rate': 0.001, 'max_depth': 4, 'n_estimators': 50}

-44.237571 (6.918364) with: {'learning_rate': 0.001, 'max_depth': 4, 'n_estimators': 100}

-36.078697 (5.538471) with: {'learning_rate': 0.001, 'max_depth': 4, 'n_estimators': 200}

-23.929587 (3.519751) with: {'learning_rate': 0.001, 'max_depth': 4, 'n_estimators': 400}

-48.970063 (7.724229) with: {'learning_rate': 0.001, 'max_depth': 6, 'n_estimators': 50}

-44.237571 (6.918364) with: {'learning_rate': 0.001, 'max_depth': 6, 'n_estimators': 100}

-36.078697 (5.538471) with: {'learning_rate': 0.001, 'max_depth': 6, 'n_estimators': 200}

-23.929587 (3.519751) with: {'learning_rate': 0.001, 'max_depth': 6, 'n_estimators': 400}

-48.970063 (7.724229) with: {'learning_rate': 0.001, 'max_depth': 8, 'n_estimators': 50}

-44.237571 (6.918364) with: {'learning_rate': 0.001, 'max_depth': 8, 'n_estimators': 100}

-36.078697 (5.538471) with: {'learning_rate': 0.001, 'max_depth': 8, 'n_estimators': 200}

-23.929587 (3.519751) with: {'learning_rate': 0.001, 'max_depth': 8, 'n_estimators': 400}

-19.414644 (2.830758) with: {'learning_rate': 0.01, 'max_depth': 2, 'n_estimators': 50}

-6.744672 (0.933997) with: {'learning_rate': 0.01, 'max_depth': 2, 'n_estimators': 100}

-0.216053 (0.050337) with: {'learning_rate': 0.01, 'max_depth': 2, 'n_estimators': 200}

0.848897 (0.024814) with: {'learning_rate': 0.01, 'max_depth': 2, 'n_estimators': 400}

-19.414644 (2.830758) with: {'learning_rate': 0.01, 'max_depth': 4, 'n_estimators': 50}

-6.743499 (0.932824) with: {'learning_rate': 0.01, 'max_depth': 4, 'n_estimators': 100}

-0.254126 (0.091086) with: {'learning_rate': 0.01, 'max_depth': 4, 'n_estimators': 200}

0.831512 (0.008093) with: {'learning_rate': 0.01, 'max_depth': 4, 'n_estimators': 400}

-19.414644 (2.830758) with: {'learning_rate': 0.01, 'max_depth': 6, 'n_estimators': 50}

-6.743499 (0.932824) with: {'learning_rate': 0.01, 'max_depth': 6, 'n_estimators': 100}

-0.260028 (0.093910) with: {'learning_rate': 0.01, 'max_depth': 6, 'n_estimators': 200}

0.829355 (0.015182) with: {'learning_rate': 0.01, 'max_depth': 6, 'n_estimators': 400}

-19.414644 (2.830758) with: {'learning_rate': 0.01, 'max_depth': 8, 'n_estimators': 50}

-6.743499 (0.932824) with: {'learning_rate': 0.01, 'max_depth': 8, 'n_estimators': 100}

-0.258236 (0.092933) with: {'learning_rate': 0.01, 'max_depth': 8, 'n_estimators': 200}

0.831777 (0.028036) with: {'learning_rate': 0.01, 'max_depth': 8, 'n_estimators': 400}

0.852283 (0.003829) with: {'learning_rate': 0.1, 'max_depth': 2, 'n_estimators': 50}

0.813154 (0.046960) with: {'learning_rate': 0.1, 'max_depth': 2, 'n_estimators': 100}

0.829779 (0.037321) with: {'learning_rate': 0.1, 'max_depth': 2, 'n_estimators': 200}

0.832717 (0.031505) with: {'learning_rate': 0.1, 'max_depth': 2, 'n_estimators': 400}

0.785207 (0.061920) with: {'learning_rate': 0.1, 'max_depth': 4, 'n_estimators': 50}

0.757671 (0.097880) with: {'learning_rate': 0.1, 'max_depth': 4, 'n_estimators': 100}

0.772923 (0.083151) with: {'learning_rate': 0.1, 'max_depth': 4, 'n_estimators': 200}

0.777985 (0.077499) with: {'learning_rate': 0.1, 'max_depth': 4, 'n_estimators': 400}

0.800020 (0.031554) with: {'learning_rate': 0.1, 'max_depth': 6, 'n_estimators': 50}

0.722744 (0.115322) with: {'learning_rate': 0.1, 'max_depth': 6, 'n_estimators': 100}

0.718966 (0.120953) with: {'learning_rate': 0.1, 'max_depth': 6, 'n_estimators': 200}

0.716761 (0.123083) with: {'learning_rate': 0.1, 'max_depth': 6, 'n_estimators': 400}

0.816402 (0.004015) with: {'learning_rate': 0.1, 'max_depth': 8, 'n_estimators': 50}

0.766141 (0.059941) with: {'learning_rate': 0.1, 'max_depth': 8, 'n_estimators': 100}

0.756297 (0.069550) with: {'learning_rate': 0.1, 'max_depth': 8, 'n_estimators': 200}

0.755626 (0.070178) with: {'learning_rate': 0.1, 'max_depth': 8, 'n_estimators': 400}

0.855146 (0.003964) with: {'learning_rate': 0.2, 'max_depth': 2, 'n_estimators': 50}

0.863665 (0.002430) with: {'learning_rate': 0.2, 'max_depth': 2, 'n_estimators': 100}

0.862916 (0.000224) with: {'learning_rate': 0.2, 'max_depth': 2, 'n_estimators': 200}

0.849430 (0.007344) with: {'learning_rate': 0.2, 'max_depth': 2, 'n_estimators': 400}

0.758113 (0.097414) with: {'learning_rate': 0.2, 'max_depth': 4, 'n_estimators': 50}

0.759158 (0.098429) with: {'learning_rate': 0.2, 'max_depth': 4, 'n_estimators': 100}

0.754193 (0.102434) with: {'learning_rate': 0.2, 'max_depth': 4, 'n_estimators': 200}

0.748421 (0.107894) with: {'learning_rate': 0.2, 'max_depth': 4, 'n_estimators': 400}

0.780980 (0.061204) with: {'learning_rate': 0.2, 'max_depth': 6, 'n_estimators': 50}

0.773959 (0.067553) with: {'learning_rate': 0.2, 'max_depth': 6, 'n_estimators': 100}

0.773742 (0.067638) with: {'learning_rate': 0.2, 'max_depth': 6, 'n_estimators': 200}

0.773425 (0.067856) with: {'learning_rate': 0.2, 'max_depth': 6, 'n_estimators': 400}

0.804540 (0.032247) with: {'learning_rate': 0.2, 'max_depth': 8, 'n_estimators': 50}

0.800325 (0.036309) with: {'learning_rate': 0.2, 'max_depth': 8, 'n_estimators': 100}

0.800133 (0.036625) with: {'learning_rate': 0.2, 'max_depth': 8, 'n_estimators': 200}

0.800134 (0.036625) with: {'learning_rate': 0.2, 'max_depth': 8, 'n_estimators': 400}

0.804575 (0.055743) with: {'learning_rate': 0.3, 'max_depth': 2, 'n_estimators': 50}

0.823723 (0.042951) with: {'learning_rate': 0.3, 'max_depth': 2, 'n_estimators': 100}

0.832058 (0.027793) with: {'learning_rate': 0.3, 'max_depth': 2, 'n_estimators': 200}

0.824320 (0.028952) with: {'learning_rate': 0.3, 'max_depth': 2, 'n_estimators': 400}

0.684716 (0.174854) with: {'learning_rate': 0.3, 'max_depth': 4, 'n_estimators': 50}

0.683423 (0.176741) with: {'learning_rate': 0.3, 'max_depth': 4, 'n_estimators': 100}

0.676494 (0.183628) with: {'learning_rate': 0.3, 'max_depth': 4, 'n_estimators': 200}

0.676418 (0.183173) with: {'learning_rate': 0.3, 'max_depth': 4, 'n_estimators': 400}

0.533161 (0.294224) with: {'learning_rate': 0.3, 'max_depth': 6, 'n_estimators': 50}

0.520398 (0.307576) with: {'learning_rate': 0.3, 'max_depth': 6, 'n_estimators': 100}

0.520455 (0.307122) with: {'learning_rate': 0.3, 'max_depth': 6, 'n_estimators': 200}

0.520411 (0.307169) with: {'learning_rate': 0.3, 'max_depth': 6, 'n_estimators': 400}

0.666960 (0.156246) with: {'learning_rate': 0.3, 'max_depth': 8, 'n_estimators': 50}

0.668800 (0.154254) with: {'learning_rate': 0.3, 'max_depth': 8, 'n_estimators': 100}

0.668832 (0.154209) with: {'learning_rate': 0.3, 'max_depth': 8, 'n_estimators': 200}

0.668832 (0.154209) with: {'learning_rate': 0.3, 'max_depth': 8, 'n_estimators': 400}

XGBR_GSCV_Time_time: 61.41017997421118


相关文章
|
8月前
|
人工智能 自然语言处理 IDE
模型微调不再被代码难住!PAI和Qwen3-Coder加速AI开发新体验
通义千问 AI 编程大模型 Qwen3-Coder 正式开源,阿里云人工智能平台 PAI 支持云上一键部署 Qwen3-Coder 模型,并可在交互式建模环境中使用 Qwen3-Coder 模型。
1291 109
|
9月前
|
人工智能 自然语言处理 运维
【新模型速递】PAI-Model Gallery云上一键部署Kimi K2模型
月之暗面发布开源模型Kimi K2,采用MoE架构,参数达1T,激活参数32B,具备强代码能力及Agent任务处理优势。在编程、工具调用、数学推理测试中表现优异。阿里云PAI-Model Gallery已支持云端部署,提供企业级方案。
535 0
【新模型速递】PAI-Model Gallery云上一键部署Kimi K2模型
|
10月前
|
机器学习/深度学习 算法 安全
差分隐私机器学习:通过添加噪声让模型更安全,也更智能
本文探讨在敏感数据上应用差分隐私(DP)进行机器学习的挑战与实践。通过模拟DP-SGD算法,在模型训练中注入噪声以保护个人隐私。实验表明,该方法在保持71%准确率和0.79 AUC的同时,具备良好泛化能力,但也带来少数类预测精度下降的问题。研究强调差分隐私应作为模型设计的核心考量,而非事后补救,并提出在参数调优、扰动策略选择和隐私预算管理等方面的优化路径。
680 3
差分隐私机器学习:通过添加噪声让模型更安全,也更智能
|
9月前
|
人工智能 自然语言处理 运维
【新模型速递】PAI-Model Gallery云上一键部署gpt-oss系列模型
阿里云 PAI-Model Gallery 已同步接入 gpt-oss 系列模型,提供企业级部署方案。
|
10月前
|
机器学习/深度学习 人工智能 算法
Post-Training on PAI (4):模型微调SFT、DPO、GRPO
阿里云人工智能平台 PAI 提供了完整的模型微调产品能力,支持 监督微调(SFT)、偏好对齐(DPO)、强化学习微调(GRPO) 等业界常用模型微调训练方式。根据客户需求及代码能力层级,分别提供了 PAI-Model Gallery 一键微调、PAI-DSW Notebook 编程微调、PAI-DLC 容器化任务微调的全套产品功能。
|
11月前
|
存储 人工智能 运维
企业级MLOps落地:基于PAI-Studio构建自动化模型迭代流水线
本文深入解析MLOps落地的核心挑战与解决方案,涵盖技术断层分析、PAI-Studio平台选型、自动化流水线设计及实战构建,全面提升模型迭代效率与稳定性。
514 6
|
10月前
|
机器学习/深度学习 分布式计算 Java
Java 大视界 -- Java 大数据机器学习模型在遥感图像土地利用分类中的优化与应用(199)
本文探讨了Java大数据与机器学习模型在遥感图像土地利用分类中的优化与应用。面对传统方法效率低、精度差的问题,结合Hadoop、Spark与深度学习框架,实现了高效、精准的分类。通过实际案例展示了Java在数据处理、模型融合与参数调优中的强大能力,推动遥感图像分类迈向新高度。
|
10月前
|
机器学习/深度学习 存储 Java
Java 大视界 -- Java 大数据机器学习模型在游戏用户行为分析与游戏平衡优化中的应用(190)
本文探讨了Java大数据与机器学习模型在游戏用户行为分析及游戏平衡优化中的应用。通过数据采集、预处理与聚类分析,开发者可深入洞察玩家行为特征,构建个性化运营策略。同时,利用回归模型优化游戏数值与付费机制,提升游戏公平性与用户体验。
|
10月前
|
机器学习/深度学习 算法 Java
Java 大视界 -- Java 大数据机器学习模型在舆情分析中的情感倾向判断与话题追踪(185)
本篇文章深入探讨了Java大数据与机器学习在舆情分析中的应用,重点介绍了情感倾向判断与话题追踪的技术实现。通过实际案例,展示了如何利用Java生态工具如Hadoop、Hive、Weka和Deeplearning4j进行舆情数据处理、情感分类与趋势预测,揭示了其在企业品牌管理与政府决策中的重要价值。文章还展望了多模态融合、实时性提升及个性化服务等未来发展方向。

热门文章

最新文章