Boosting方法-从AdaBoost到LightGBM,涵盖了adaboost xgboost lightgbm等经典boosting方法的原理详细介绍
2019-12-21 19:36:38 3.86MB 机器学习 boost
1
http://blog.csdn.net/csnd_ayo/article/details/61577634 代码介绍
2019-12-21 19:36:35 21KB Boost Asio
1
支持TCP/SSL 的网络库,基于boost asio,支持客户端自动重连、同时支持阻塞和异步模式,可直接应用在项目了,简单易维护
2019-12-21 19:30:25 770KB boost asio 网络库 TCP/SSL
1
C++ boost application development cookbook 第二版,含pdf, epub, azw3和源代码
2019-12-21 19:28:17 10.45MB c++ boost
1
vc6可利用boost库使用正则表达式。支持vc6的最高boost版本是1.34.1。很多人编译boost库遇到这样那样的问题。这个是我编译好的库,直接解压后,在vc中设置好include和lib路径即可使用。 测试程序: #include #include #include #include #include using namespace std; using namespace boost; int main( int argc, char * argv[]) { regex expression_r_r_r_r( " (\\d+)-(\\d+)-(\\d+) " ); // 注意转义方式 string in ( " Today: 2007-06-23 " ); cmatch what; // 如果用 regex_match 方法将需要完全匹配, // 不能在字符串中找寻模式,可用于验证输入 if (regex_search( in.c_str(), what, expression_r_r_r_r)) { for ( int i = 0 ;i < what.size();i ++ ) { cout << " str : [" << what[i].str() << "]" << endl; } } return 0 ; }
2019-12-21 19:26:03 20.71MB boost vc6 regex
1
boost_1_47_setup
2019-12-21 19:26:01 198KB boost_1_47_setup
1
boost_1_71_0.tar.bz2
2019-12-21 19:25:24 95.49MB boost
1
详细介绍了3.3kW大功率CCM模式的PFC设计和参数的计算,包括电感的设计,磁芯的选择,MOSFET的选型,输入整流桥的选择,输出电容的计算等等,是一个很给力的PFC资料。
2019-12-21 19:23:55 195KB 3.3kW,PFC,电路设计
1
打包英文书籍和随书的代码,请给个好评
2019-12-21 19:23:06 3.51MB boost asio 网络编程
1
该程序基于 Boost 和 MPI 实现了Cannon 算法实现对矩阵得并行求积。
2019-12-21 18:57:43 78KB MPI Boost 矩阵 并行
1