摘要: > 今天你的车加油了吗? 在评论区说说你的烦心事和开心事。 **一首歌送给各位小兄弟!** 阅读全文
posted @ 2021-06-02 20:34 小肚腩的世界 阅读(31) 评论(0) 推荐(0) 编辑
摘要: ssh使用手册 安装 windows: 1)控制面板-》程序和功能-》启用或关闭windows功能-》openssh 2)设置-》应用-》可选功能-》-》添加功能-》OpenSSH客户端 启动服务: net start sshd net stop sshd ubuntu sudo apt-get i 阅读全文
posted @ 2022-01-22 17:24 小肚腩的世界 阅读(301) 评论(0) 推荐(0) 编辑
摘要: git学习笔记 常用命令 # 拷贝远程代码仓库 git clone remote_repo_url # 切换分支 git checkout branch_name # 创建分支 git branch new_branch_name branch_name(or hash) # 临时代码栈 git s 阅读全文
posted @ 2021-08-12 19:33 小肚腩的世界 阅读(30) 评论(0) 推荐(0) 编辑
摘要: jupyter notebokk报错情况出现背景:手动下载pytoch的whl安装文件,使用pip install pytorch.whl命令安装pytorch。 出现的原因是因为有两个重复的文件libiomp5md.dll在python环境中。 解决办法: 第一种:搜索anaconda安装文件夹, 阅读全文
posted @ 2021-07-29 20:41 小肚腩的世界 阅读(6039) 评论(3) 推荐(1) 编辑
摘要: python画统计图 python有一个画图的库matplotlib,非常方便我们日常使用或者写论文做插图等等。我们不需要考虑样式的问题,输入数据就可以轻轻松松把图画出来。你用Excel、matlab等工具,我也没意见。 matplotlib: Visualization with Python M 阅读全文
posted @ 2021-07-21 10:44 小肚腩的世界 阅读(1788) 评论(2) 推荐(0) 编辑
摘要: XGBoost专题(三) XGBoost是由$k$个基模型组成的一个加法模型。假设第$t$次迭代的树模型是$f_t(x)$ \[ \widehat{y}_i^{(t)}=\sum_{k=1}^k f_k(x_i)=\widehat{y}_i^{(t-1)}+f_t(x_i) \] 特点 优化过的分布 阅读全文
posted @ 2021-07-20 15:16 小肚腩的世界 阅读(44) 评论(0) 推荐(0) 编辑
摘要: XGBoost专题(二) API目录结构: Global Configuration Core Data Structure Learning API Scikit-Learn API Plotting API Callback API Dask API xgboost.train(): 包里的方法 阅读全文
posted @ 2021-07-20 15:15 小肚腩的世界 阅读(195) 评论(0) 推荐(0) 编辑
摘要: XGBoost专题(一) 安装 **仅 Linux 平台支持使用多个 GPU 进行训练。**仅介绍PYTHON语言 二进制包安装 pip install xgboost -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 这 阅读全文
posted @ 2021-07-20 15:14 小肚腩的世界 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 目录pandas使用笔记基础概念日期处理数据比较 pandas使用笔记 基础概念 DataFrame类 # 注:[]表示里面是传入参数 # 属性 DataFrame.index # 取序列号 DataFrame.columns # 取表的字段 DataFrame.info([...]) # 表的统计 阅读全文
posted @ 2021-07-20 15:10 小肚腩的世界 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 数据库查询语言 查询 不重复数据查询 select distinct name, score from students 联表查询 select distinct stu.name, stu.score, tea.teacher from student as stu, teacher as tea 阅读全文
posted @ 2021-07-20 15:08 小肚腩的世界 阅读(83) 评论(0) 推荐(0) 编辑
摘要: docker使用手册 docker介绍 docker这个程序只是一个控制台程序,用于attach,真正操作docker的是运行在后台的docker daemon,也就是我们需要通过systemctl start docker来启动docker daemon。(所以说即使我们设置了环境变量http_p 阅读全文
posted @ 2021-07-20 15:05 小肚腩的世界 阅读(286) 评论(4) 推荐(0) 编辑