squirrel2300

导航

2017年12月19日 #

将 windows 目录结构 复制到 linux 上

摘要: 思路:生成目录结构文件,复制到linux上,然后建立每个文件即可 借助unix_utils( https://sourceforge.net/projects/unxutils/) 1. windows(in source_path): ufind . -type d | sed "s/\\/\// 阅读全文

posted @ 2017-12-19 16:06 squirrel2300 阅读(165) 评论(0) 推荐(0) 编辑

2017年12月6日 #

gdb 调试 python

摘要: gdb 版本 >7 的 对python调试有特别支持,参考: https://docs.python.org/devguide/gdb.html?highlight=gdb https://blog.csdn.net/BaishanCloud/article/details/76422782 可用命 阅读全文

posted @ 2017-12-06 09:15 squirrel2300 阅读(268) 评论(0) 推荐(0) 编辑

2017年10月27日 #

wikipedia 维基百科 语料 获取 与 提取 处理 by python3.5

摘要: 英文维基百科 https://dumps.wikimedia.org/enwiki/ 中文维基百科 https://dumps.wikimedia.org/zhwiki/ 全部语言的列表 https://dumps.wikimedia.org/backup-index.html 提取处理可以使用 w 阅读全文

posted @ 2017-10-27 20:33 squirrel2300 阅读(3539) 评论(0) 推荐(0) 编辑

2017年8月21日 #

快速排序的两种实现 -- 种轴partition : 比值partition(更精巧)

摘要: 实现1:种轴partition,not in place--取定枢轴,将小于等于枢轴的放到枢轴左边,大于枢轴的放到右边 # python algorithm en_2nd edition p125def partition_mlh(arr):# 3-partition, use extra plac 阅读全文

posted @ 2017-08-21 17:26 squirrel2300 阅读(279) 评论(0) 推荐(0) 编辑

2017年7月27日 #

mingw using pthread

摘要: 转载http://www.cnblogs.com/tfanalysis/p/5505163.html ftp://sourceware.org/pub/pthreads-win32/ 有的时候需要使用多线程来测试代码啥的,在Linux下有pthread,在windows也有。 我这儿是使用MingW 阅读全文

posted @ 2017-07-27 13:44 squirrel2300 阅读(1802) 评论(0) 推荐(0) 编辑

2017年5月31日 #

windows tensorboard http://0.0.0.0:6006 无法访问 解决方法 - using chrome and localhost as ip

摘要: 启动命令: tensorboard --logdir="tensorboard" 启动后显示 Starting TensorBoard b'47' at http://0.0.0.0:6006 ... 因为 win10 将 localhost 解析为 ipv6地址 [::1],所以无法使用 http 阅读全文

posted @ 2017-05-31 18:24 squirrel2300 阅读(4270) 评论(0) 推荐(0) 编辑

machine learning data sets

摘要: http://archive.ics.uci.edu/ml/datasets.html 例如 3 分类 鸢尾花 数据集: http://archive.ics.uci.edu/ml/datasets/Iris # import sklearn dir(sklearn.datasets) from s 阅读全文

posted @ 2017-05-31 16:05 squirrel2300 阅读(190) 评论(0) 推荐(0) 编辑

2017年5月25日 #

win 10 kms 激活 后 火狐 上 https 网站 报错

摘要: 原因: 系统导入了未知的根证书 影响:?? 解决方法: http://mozilla.com.cn/thread-374897-1-1.html 阅读全文

posted @ 2017-05-25 15:53 squirrel2300 阅读(167) 评论(0) 推荐(0) 编辑

2017年5月19日 #

NN 激活函数 待修改

摘要: Softmax 函数/算法 https://www.zhihu.com/question/23765351 RELU 激活函数及其他相关的函数 http://blog.csdn.net/u013146742/article/details/51986575 http://www.cnblogs.co 阅读全文

posted @ 2017-05-19 09:01 squirrel2300 阅读(141) 评论(0) 推荐(0) 编辑

2017年5月17日 #

python 3.5 import theano ::hypot error

摘要: # win10 , mingw(nuwen,g++ 6.3), python 3.5 , 描述: import theano 时生成动态的 mod.cpp ,然后编译库的时候报 ::hypot 未定义 原因: hypot 在"C:\Program Files\Python35\include\pyc 阅读全文

posted @ 2017-05-17 16:20 squirrel2300 阅读(367) 评论(0) 推荐(0) 编辑