- 博客(19)
- 资源 (5)
- 问答 (2)
- 收藏
- 关注
原创 访问远程主机上的Tensorboard
1. Xshell中设置:2. 然后再目标主机上启动tensorboard:tensorboard --host=0.0.0.0 --port=50022, --logdir=...# 把 --host 替换成 --bind_all 也行3. 再本机浏览器上访问 localhost:6006
2021-09-05 15:15:01
350
转载 机器学习之类别不平衡问题
机器学习之类别不平衡问题 (1) —— 各种评估指标 - 知乎 (zhihu.com)机器学习之类别不平衡问题 (2) —— ROC和PR曲线 - 知乎 (zhihu.com)机器学习之类别不平衡问题 (3) —— 采样方法 - 知乎 (zhihu.com)
2021-08-18 15:06:03
219
原创 Git 常用操作
撤销git reset --hard还原自上次commit以来工作目录里文件的修改Resets the index and working tree. Any changes to tracked files in the working tree since<commit>are discarded.存储凭证# 临时git config --global credential.helper cache --timeout <seconds># ..
2021-08-10 17:49:10
141
转载 python中global和nonlocal用法的详细说明
https://www.cnblogs.com/yuzhanhong/p/9183161.html
2021-08-07 17:06:19
137
原创 python函数参数列表中的*与/
/ 符号之前的所有参数,都必须以位置参数穿参,不可以关键字参数传参* 符号之后的所有参数,都必须以关键字方式传参,不得以位置方式传参如果 * 出现在 / 之前,会报错,因为在 * 和 / 之间存在矛盾...
2021-08-03 18:57:01
125
原创 matplotlib支持中文的方法
添加plt.rcParams['font.sans-serif'] = ['simhei']plt.rcParams['axes.unicode_minus'] = False这两行
2021-07-31 11:20:32
107
转载 pandas .loc 返回DataFrame与Series
When usinglocdf.loc[:]=Dataframedf.loc[int]=Dataframeif you have more than one column andSeriesif you have only 1 column in the dataframedf.loc[:, ["col_name"]]=Dataframeif you have more than one row andSeriesif you have only 1 row in th...
2021-06-30 16:38:10
1783
原创 BeautifulSoup笔记
Beautiful Soup is a Python library for pulling data out of HTML and XML files. It works with your favorite parser to provide idiomatic ways of navigating,searching, and modifying the parse tree. It commonly saves programmers hours or days of work.
2015-09-12 20:04:56
664
原创 Python编码问题
#coding:utf-8Python头两行类似上述的语句只是声明Python源代码的编码方式,与其他需要编解码的地方的默认方式无关。 官方原文:If a comment in the first or second line of the Python script matches the regular expressioncoding[=:]\s*([-\w.]+), this c
2015-09-12 10:19:57
513
原创 Linux shell 中$() ` `,${},$[] $(()),[ ] (( )) [[ ]]作用与区别
对shell script常会遇到的$() ` `,${},$[] $(()),[ ] (( )) [[ ]]作了详细的解释。
2015-06-17 17:03:03
59508
3
转载 Linux中各种kill signal 汇总
kill号令用于终止指定的过程(terminate a process),是Unix/Linux下过程经管的常用号令。凡是,我们在须要终止某个或某些过程时,先应用ps/pidof/pstree/top等对象获取过程PID,然后应用kill号令来杀掉该过程。kill号令的别的一个用处就是向指定的过程或过程组发送旌旗灯号(The command kill sends the specified si
2015-06-09 17:00:10
14972
2
转载 详解Linux系统中的average load
1. load average 定义linux系统中的Load对当前CPU工作量的度量。简单的说是进程队列的长度。Load Average 就是一段时间 (1 分钟、5分钟、15分钟) 内平均 Load 。通过系统命令"w"查看当前load average情况 上边0.31,0.30,0.31表示第一位0.31:表示最近1分钟平均负载第二位0.30:表示最近
2015-06-08 17:56:25
929
W3CSchool.chm(html,xml及各种脚本)
2015-06-15
Linux System and Performance Monitoring
2015-06-15
怎么找javax中的接口在tomcat中的实现类是哪个?
2016-04-12
Python登录问题题题题题
2015-09-13
TA创建的收藏夹 TA关注的收藏夹
TA关注的人