摘要: Centos7 Git 安装 最新git源码下载地址: https://github.com/git/git/releases https://www.kernel.org/pub/software/scm/git/ 1 移除旧版本git centos自带Git,7.x版本自带git 1.8.3.1 阅读全文
posted @ 2023-09-24 10:24 BSU 阅读(94) 评论(0) 推荐(0)
摘要: 1. 防火墙开放/关闭端口 开放端口 # 开放 9090 端口 firewall-cmd --zone=public --add-port=9090/tcp --permanent # 开放 9090~9095 firewall-cmd --zone=public --add-port=9090-9 阅读全文
posted @ 2022-10-27 17:53 BSU 阅读(815) 评论(0) 推荐(0)
摘要: 管理员权限打开 CMD; 在 CMD 中执行 reg.exe add “HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32” /f /ve Ctrl + Alt + Delete 打开任务 阅读全文
posted @ 2022-03-23 09:25 BSU 阅读(153) 评论(0) 推荐(0)
摘要: (最少交换次数证明) 1. 问题介绍 问题:对第一行数据进行排序,可以任意交换两个元素,求最少的交换次数是多少? 结论: \[ F(N)=N_{node}-N_{ring} \] 其中,$F(N)$为最少交换次数,$N_{node}$为数组长度(或节点数),$N_{ring}$为交换环(或称可交换环 阅读全文
posted @ 2022-03-17 19:16 BSU 阅读(564) 评论(0) 推荐(0)
摘要: Ubuntu 18.04 /usr/share/applications/ # 快捷目录 /usr/share/icons # 图标目录 脱离终端并输出到nul. #!/bin/bash nohup jupyter-lab > /dev/null 2>&1 & 注: 持续更新 ... 阅读全文
posted @ 2021-03-09 08:44 BSU 阅读(62) 评论(0) 推荐(0)
摘要: RoI ​ 在 Fast R-CNN 中提出了 RoI 层的具体概念及其反向传播函数. RoI 层的功能就是要解决卷积层不同尺寸的输出与全连接层固定尺寸输入的连接问题而设计. ​ 卷积层可以对任意尺寸的数据进行处理, 而全连接层的输入尺寸是确定的. 因此, 连接卷积层与全连接层需要进行特殊设计, 一 阅读全文
posted @ 2020-12-22 19:55 BSU 阅读(334) 评论(0) 推荐(0)
摘要: Adam 机器学习算法中的代价函数通常可以分解成每个样本的代价函数的总和. 训练数据的负条件对数似然可以写成 \[ J(\theta)=\mathbb{E}_{x,y \in \hat p_{data}}L(x, y, \theta)=\frac {1} {m} \sum_{i=1}^m L(x^{ 阅读全文
posted @ 2020-11-22 22:23 BSU 阅读(527) 评论(0) 推荐(0)
摘要: ## SGD-随机梯度算法介绍 机器学习算法中的代价函数通常可以分解成每个样本的代价函数的总和. 训练数据的负条件对数似然可以写成 $$ J(\theta)=\mathbb{E}_{x,y \in \hat p_{data}}L(x, y, \theta)=\frac {1} {m} \sum_{i 阅读全文
posted @ 2020-11-20 20:10 BSU 阅读(958) 评论(0) 推荐(0)