- 博客(14)
- 收藏
- 关注
转载 mathtype试用期到期 解决办法
看到的非常方便的解决方法1.win + R 打开运行窗口,输入regedit2.按照如下目录找到注册表计算机\HKEY_CURRENT_USER\SOFTWARE\Install Options3. 删掉options6.9
2022-04-20 15:51:22 6225 3
转载 vscode更新后连接不上服务器
“command ‘_workbench.downloadResource’ failed” when connecting to a remote host via ssh看到vscode一直提醒更新, 没忍住手欠点了更新, 然后‘愉快’的度过了一晚上在这里插入图片描进入服务器下~/.vscode-server/bin下,看下面文件名,根据对应的文件名操作下面的2,3,4....
2021-09-09 01:03:53 258
原创 pytorch tensorboard 可视化 .tensorboard: command not find
1. 先安装相应的库pip3 install tensorboardXpip3 install tensorboard2 tensorboard: command not found 问题运行tensorboardtensorboard --logdir='path_to_data' --port port_numport_num 可以指定端口号。但是可能会遇到 command not found 的问题。 下面是解决方案1)先检查是否安装tensorflow, 因为tensorboar
2021-03-26 14:18:22 3639 5
转载 服务器上使用jupyter notebook
1.安装与配置第一步:安装jupyterpip3 install jupyter (此处使用的是python3)第二步:生成配置文件jupyter notebook --generate-config第三步:生成密钥 打开python3 ,然后输入1. from notebook.auth import passwd 2. passwd() 3. 此时会让你两次输入密码,然后就会生成秘钥 4. ************ 第四步:远程登录和 端口转发可以利用putty
2021-03-23 20:36:32 196
原创 sourcetree 使用 与git 命令对应
在所在文件夹,创建一个仓库repository 命令: git initsourcetree 中用creat 按钮创建2. 每一次文件有改动, 则 需要git add <文件名> 对应sourcetree 点击暂存文件, 右边显示文件更改内容git commit -m "备注内容“ 对应sourcetree 下面方框写入备注内容(若选中立即推送变更到 origin/main, 则 git push 一起操作 )3.git push / pul.
2021-01-14 19:55:55 683
原创 Python中list与dictionary作为函数的形参时,会该改变 实参
python 中,数据类型分为 可变(mutable) 和 不可变(unmutable)。例如 integers, floats, strings, booleans, tuples 皆为 不可变的。但 list 和 dictionaries 时可变的。 这意味着,当函数有 list 或者 dictionary 作为形参时, 会改变其 实参的值(在函数中若改动其值)。(对比, 在c或者c++ 中,函数调用 发生的数据传递时单向的, 即, 只能把实参的值 传递给形参, 而不能把形参的值传给实参。在函数调
2020-12-10 22:00:31 605
原创 cs231n Assignment1 softmax classifier.
1)IntroductionIt turns out that the SVM is one of two commonly seen classifiers. The other popular choice is the Softmax classifier, which has a different loss function. Softmax 分类器是常用的分类器之一。Example:Li为损失函数, 损失函数评价当前 网络结构的好坏。直观地讲,当评分函数输出结果与真实结果之间差异越大
2020-11-30 23:09:36 176
原创 cs231n assignment svm公式推导
简要记录学习理解。1. svm 是一个线性分类器直接由权重矩阵和图片(input x) 得到一个值,通过svm算法,不断更新W,使 正确的标签的一栏得分最高。2. Loss functionLoss function 就是评价目前这个W矩阵有’多坏‘。 其值越高,则分类效果越差, 值越低,则值效果越好3. Regularization作用:简而言之,防止过拟合。所以总的Loss function 为4. 公式推导 & 代码解析svm_loss_naive 函数def
2020-11-26 19:55:44 236
原创 cs231n assignment knn
CS231 机器学习 KNN k_nearest_neighbor.py def compute_distances_two_loops(self, X): """ Compute the distance between each test point in X and each training point in self.X_train using a nested loop over both the training data and the
2020-11-12 23:27:43 169
原创 stm32 RTC 应用 cubeMX配置
在配置好的项目中,点开.ioc 文件, 打开cubeMX.然后generate code。在函数中定义你要存放日期和时间的结构体RTC_DateTypeDef sdatestructureget;RTC_TimeTypeDef stimestructureget;利用 HAL_RTC_GetTime(&hrtc, &stimestructureget, RTC_FORMAT_BIN);HAL_RTC_GetDate(&hrtc, &sdatestructureg
2020-05-08 17:43:43 1170
转载 有__weak前缀的函数
__weak是一个宏,和__packed是同一种东西都是gcc的扩展属性:#define __packed attribute((packed))#define __weak attribute((weak))如果这个关键字用在函数定义上面,一般情况下和一般函数没有两样。但是当有一个同名函数但是不带__weak被定义时,所有对这个函数的调用都是指向后者(不带__weak那个), 如果有两个一...
2020-05-07 14:09:01 379
原创 关于scanf()函数返回值及EOF
scanf() 函数返会一个整数值, 该值等于scanf() 成功读取的项数或者EOF#include <stdio.h>int main(void){ int i,j; int n = scanf("%d %d", &i, &j); printf ("%d", n); return 0;}若输入为两个数,则输出 2(不是in...
2020-03-06 12:22:14 1868
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人